/* ============================================================================
   Jasa Digital Marketing - Bold Modern Design
   Red (#ef4444) + Pink (#ec4899) + Orange accent
   ============================================================================ */

:root {
  --dm-primary: #ef4444;
  --dm-primary-light: #f87171;
  --dm-primary-dark: #dc2626;
  --dm-accent: #ec4899;
  --dm-accent-light: #f472b6;
  --dm-accent-dark: #db2777;
  --dm-orange: #f97316;
  --dm-orange-light: #fb923c;
  --dm-dark: #18181b;
  --dm-darker: #09090b;
  --dm-slate: #27272a;
  --dm-text: #e4e4e7;
  --dm-text-light: #f4f4f5;
  --dm-border: rgba(244, 63, 94, 0.15);
}

.dm-single {
  background: linear-gradient(180deg, var(--dm-darker) 0%, var(--dm-dark) 50%, var(--dm-slate) 100%);
  color: var(--dm-text);
  overflow: hidden;
}

/* UTILITY CLASSES */
.dm-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.dm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  gap: 8px;
  border: none;
}

.dm-btn--primary {
  background: linear-gradient(135deg, var(--dm-primary), var(--dm-accent));
  color: white;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

.dm-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.5);
}

.dm-btn--outline {
  background: transparent;
  color: var(--dm-primary-light);
  border: 2px solid var(--dm-primary);
}

.dm-btn--outline:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: var(--dm-accent);
  color: var(--dm-accent-light);
}

.dm-btn--large {
  padding: 18px 48px;
  font-size: 17px;
}

/* ============================================================================
   BREADCRUMB
   ============================================================================ */

.dm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.dm-breadcrumb a {
  color: var(--dm-accent-light);
  text-decoration: none;
  transition: color 0.2s;
}

.dm-breadcrumb a:hover {
  color: var(--dm-primary-light);
}

.dm-breadcrumb span {
  color: var(--dm-text);
  opacity: 0.4;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.dm-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.dm-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.dm-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.dm-gradient-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--dm-primary), transparent);
  top: -100px;
  right: -100px;
}

.dm-gradient-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--dm-accent), transparent);
  bottom: 0;
  left: -50px;
}

.dm-gradient-orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--dm-orange), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dm-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dm-hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dm-badge {
  display: inline-flex;
  width: fit-content;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(236, 72, 153, 0.2));
  border: 2px solid var(--dm-primary);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dm-primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dm-hero__title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, var(--dm-primary-light), var(--dm-accent-light), var(--dm-orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dm-hero__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--dm-text);
  margin: 0;
  max-width: 560px;
}

.dm-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dm-hero__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--dm-border);
}

.dm-stat-mini {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dm-stat-mini__icon {
  font-size: 24px;
}

.dm-stat-mini__number {
  font-size: 18px;
  font-weight: 800;
  color: var(--dm-text-light);
}

.dm-stat-mini__label {
  font-size: 12px;
  color: var(--dm-text);
  opacity: 0.7;
}

.dm-hero__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 3px solid var(--dm-border);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(236, 72, 153, 0.1));
  box-shadow: 0 20px 60px rgba(239, 68, 68, 0.2);
}

.dm-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================================
   SECTIONS
   ============================================================================ */

.dm-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--dm-border);
}

.dm-section--stats {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(236, 72, 153, 0.05));
  padding: 60px 0;
}

.dm-section--channels {
  background: rgba(249, 115, 22, 0.03);
}

.dm-section--funnel {
  background: linear-gradient(180deg, transparent, rgba(236, 72, 153, 0.05), transparent);
}

.dm-section--kpis {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(236, 72, 153, 0.06));
}

.dm-section--faq {
  background: rgba(239, 68, 68, 0.02);
}

.dm-section--cta {
  background: linear-gradient(135deg, var(--dm-primary), var(--dm-accent), var(--dm-orange));
  border: none;
}

.dm-section__head {
  text-align: center;
  margin-bottom: 60px;
}

.dm-section__head h2 {
  font-size: 42px;
  font-weight: 900;
  margin: 0 0 16px;
  background: linear-gradient(135deg, var(--dm-primary-light), var(--dm-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dm-section--cta .dm-section__head h2 {
  color: white;
  -webkit-text-fill-color: unset;
  background: none;
}

.dm-section__head p {
  font-size: 16px;
  color: var(--dm-text);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* ============================================================================
   STATS GRID
   ============================================================================ */

.dm-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.dm-stat-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(236, 72, 153, 0.08));
  border: 2px solid var(--dm-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dm-stat-card:hover {
  border-color: var(--dm-accent);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(236, 72, 153, 0.12));
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.2);
}

.dm-stat-card__icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.dm-stat-card__number {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--dm-primary-light), var(--dm-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.dm-stat-card__label {
  font-size: 14px;
  color: var(--dm-text);
  opacity: 0.8;
}

/* ============================================================================
   SERVICES GRID
   ============================================================================ */

.dm-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.dm-service-card {
  padding: 32px;
  border-radius: 16px;
  background: rgba(39, 39, 42, 0.6);
  border: 1px solid var(--dm-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.dm-service-card:hover {
  border-color: var(--dm-primary);
  background: rgba(39, 39, 42, 0.8);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.15);
}

.dm-service-card__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.dm-service-card__title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--dm-text-light);
}

.dm-service-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dm-text);
  margin: 0 0 16px;
  opacity: 0.9;
}

.dm-service-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dm-service-card__features li {
  font-size: 13px;
  color: var(--dm-text);
  padding-left: 0;
}

/* ============================================================================
   CHANNELS GRID
   ============================================================================ */

.dm-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.dm-channel-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid var(--dm-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dm-channel-badge:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: var(--dm-primary);
  transform: scale(1.05);
}

.dm-channel-badge__icon {
  font-size: 24px;
}

.dm-channel-badge__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dm-text-light);
}

/* ============================================================================
   PRICING PACKAGES
   ============================================================================ */

.dm-section--pricing {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(236, 72, 153, 0.08));
}

.dm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.dm-pricing-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 20px;
  background: rgba(39, 39, 42, 0.6);
  border: 2px solid var(--dm-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.dm-pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--dm-primary);
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.2);
}

.dm-pricing-card--popular {
  border-color: var(--dm-accent);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(236, 72, 153, 0.1));
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.25);
}

.dm-pricing-card--popular:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 24px 60px rgba(236, 72, 153, 0.35);
}

.dm-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--dm-primary), var(--dm-accent));
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.dm-pricing-card__header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--dm-border);
}

.dm-pricing-card__name {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--dm-primary-light), var(--dm-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dm-pricing-card__tagline {
  font-size: 14px;
  color: var(--dm-text);
  margin: 0 0 20px;
  opacity: 0.8;
}

.dm-pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.dm-pricing-card__amount {
  font-size: 42px;
  font-weight: 900;
  color: var(--dm-text-light);
}

.dm-pricing-card__period {
  font-size: 16px;
  color: var(--dm-text);
  opacity: 0.7;
}

.dm-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dm-pricing-card__features li {
  font-size: 15px;
  color: var(--dm-text);
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.dm-pricing-card__features li::before {
  content: '✓';
  color: var(--dm-primary-light);
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}

.dm-btn--block {
  width: 100%;
  justify-content: center;
}

/* ============================================================================
   FUNNEL
   ============================================================================ */

.dm-funnel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.dm-funnel__stage {
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--dm-border);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dm-funnel__stage--top {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(236, 72, 153, 0.08));
  border-color: var(--dm-primary);
}

.dm-funnel__stage--mid {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(249, 115, 22, 0.08));
  border-color: var(--dm-accent);
  margin-left: 40px;
}

.dm-funnel__stage--bottom {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(239, 68, 68, 0.08));
  border-color: var(--dm-orange);
  margin-left: 80px;
}

.dm-funnel__stage--end {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(236, 72, 153, 0.1));
  border-color: var(--dm-accent);
  margin-left: 120px;
}

.dm-funnel__stage:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.2);
}

.dm-funnel__title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--dm-text-light);
}

.dm-funnel__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dm-text);
  margin: 0 0 16px;
}

.dm-funnel__tactics {
  font-size: 13px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  color: var(--dm-primary-light);
  font-weight: 600;
  border-left: 3px solid var(--dm-primary);
}

/* ============================================================================
   KPI BOXES
   ============================================================================ */

.dm-kpis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.dm-kpi-box {
  padding: 40px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(236, 72, 153, 0.08));
  border: 2px solid var(--dm-primary);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dm-kpi-box:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.25);
}

.dm-kpi-box__metric {
  font-size: 14px;
  font-weight: 700;
  color: var(--dm-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  opacity: 0.7;
}

.dm-kpi-box__value {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--dm-primary-light), var(--dm-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.dm-kpi-box__period {
  font-size: 13px;
  color: var(--dm-text);
  opacity: 0.8;
}

/* ============================================================================
   PROCESS
   ============================================================================ */

.dm-process {
  display: grid;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.dm-process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  background: rgba(39, 39, 42, 0.6);
  border: 1px solid var(--dm-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dm-process__step:hover {
  border-color: var(--dm-primary);
  background: rgba(39, 39, 42, 0.8);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.15);
}

.dm-process__number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dm-primary), var(--dm-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.dm-process__title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--dm-text-light);
}

.dm-process__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dm-text);
  margin: 0 0 16px;
}

.dm-process__deliverable {
  font-size: 14px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--dm-primary);
  color: var(--dm-text);
}

.dm-process__deliverable strong {
  color: var(--dm-primary-light);
}

/* ============================================================================
   CONTENT SECTION
   ============================================================================ */

.dm-section--content {
  background: rgba(236, 72, 153, 0.02);
}

.dm-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

.dm-content h2:not(:first-of-type) {
  display: none;
}

.dm-content p {
  margin: 0 0 20px;
  color: var(--dm-text);
}

.dm-content a {
  color: var(--dm-primary-light);
  text-decoration: none;
  transition: color 0.2s;
}

.dm-content a:hover {
  color: var(--dm-accent-light);
  text-decoration: underline;
}

.dm-content strong {
  color: var(--dm-text-light);
  font-weight: 700;
}

.dm-content ul,
.dm-content ol {
  margin: 20px 0;
  padding-left: 24px;
}

.dm-content li {
  margin-bottom: 8px;
  color: var(--dm-text);
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */

.dm-faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dm-faq__item {
  border: 1px solid var(--dm-border);
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.06);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dm-faq__item:hover {
  border-color: var(--dm-primary);
  background: rgba(239, 68, 68, 0.1);
}

.dm-faq__item[open] {
  border-color: var(--dm-accent);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(236, 72, 153, 0.08));
}

.dm-faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--dm-text-light);
  user-select: none;
  list-style: none;
}

.dm-faq__summary::-webkit-details-marker {
  display: none;
}

.dm-faq__question {
  flex: 1;
  font-size: 16px;
}

.dm-faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dm-primary), var(--dm-accent));
  color: white;
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dm-faq__item[open] .dm-faq__icon {
  transform: rotate(45deg);
}

.dm-faq__answer {
  padding: 0 24px 24px;
  color: var(--dm-text);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid var(--dm-border);
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================================
   CTA BOX
   ============================================================================ */

.dm-cta-box {
  text-align: center;
  padding: 80px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.dm-cta-box__title {
  font-size: 40px;
  font-weight: 900;
  margin: 0 0 16px;
  color: white;
}

.dm-cta-box__desc {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1024px) {
  .dm-hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dm-hero__title {
    font-size: 42px;
  }

  .dm-section__head h2 {
    font-size: 32px;
  }

  .dm-services-grid {
    grid-template-columns: 1fr;
  }

  .dm-funnel__stage--mid {
    margin-left: 20px;
  }

  .dm-funnel__stage--bottom {
    margin-left: 40px;
  }

  .dm-funnel__stage--end {
    margin-left: 60px;
  }
}

@media (max-width: 768px) {
  .dm-shell {
    padding: 0 16px;
  }

  .dm-section {
    padding: 60px 0;
  }

  .dm-hero {
    padding: 80px 0 60px;
  }

  .dm-hero__title {
    font-size: 32px;
  }

  .dm-hero__lead {
    font-size: 16px;
  }

  .dm-hero__actions {
    flex-direction: column;
  }

  .dm-btn {
    width: 100%;
  }

  .dm-hero__stats {
    flex-direction: column;
    gap: 16px;
  }

  .dm-section__head h2 {
    font-size: 28px;
  }

  .dm-stats-grid,
  .dm-channels-grid,
  .dm-pricing-grid,
  .dm-kpis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dm-pricing-card--popular {
    transform: scale(1);
  }

  .dm-pricing-card--popular:hover {
    transform: translateY(-8px) scale(1);
  }

  .dm-funnel__stage {
    margin-left: 0 !important;
  }

  .dm-process__step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dm-process__number {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin: 0 auto;
  }

  .dm-cta-box {
    padding: 60px 24px;
  }

  .dm-cta-box__title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .dm-hero__title {
    font-size: 26px;
  }

  .dm-hero__lead {
    font-size: 15px;
  }

  .dm-badge {
    font-size: 11px;
    padding: 8px 16px;
  }

  .dm-section__head h2 {
    font-size: 24px;
  }

  .dm-section__head p {
    font-size: 14px;
  }

  .dm-stat-card__number {
    font-size: 28px;
  }

  .dm-service-card {
    padding: 24px;
  }

  .dm-pricing-card {
    padding: 32px 24px;
  }

  .dm-pricing-card__name {
    font-size: 24px;
  }

  .dm-pricing-card__amount {
    font-size: 36px;
  }

  .dm-funnel__title {
    font-size: 18px;
  }

  .dm-kpi-box__value {
    font-size: 36px;
  }

  .dm-cta-box__title {
    font-size: 24px;
  }

  .dm-cta-box__desc {
    font-size: 15px;
  }
}

