/* ========================================
   DIGITAL MARKETING PAGE CSS - LinkCodeAI
   Consistent with About Page color scheme
   ======================================== */

/* === VARIABLES (matching About Page) === */
:root {
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f7fa;
    --gray-medium: #6b7280;
    --orange-primary: #ff6b35;
    --orange-hover: #ff5722;
    --green-accent: #10b981;
    --blue-hover: #3b82f6;
    --navy-dark: #0a1929;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;

    /* Extended palette for DM page */
    --dm-gradient-start: #0a1929;
    --dm-gradient-mid: #0d2137;
    --dm-gradient-end: #1a3a5c;
    --dm-accent-glow: rgba(255, 107, 53, 0.15);
    --dm-green-glow: rgba(16, 185, 129, 0.12);
    --dm-card-border: rgba(255, 255, 255, 0.08);
    --dm-card-bg: rgba(255, 255, 255, 0.04);

    /* Typography */
    --font-heading: 'Poppins', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --section-padding-sm: 60px 0;
    --container-max: 1280px;
    --container-pad: 0 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.16);
    --shadow-orange: 0 8px 24px rgba(255, 107, 53, 0.3);
    --shadow-green: 0 8px 24px rgba(16, 185, 129, 0.25);
}

/* ========================================
   RESET / BASE
   ======================================== */
.dm-hero-section *,
.dm-problem-section *,
.dm-solution-section *,
.dm-process-section *,
.dm-pricing-section *,
.dm-results-section *,
.dm-testimonials-section *,
.dm-faq-section *,
.dm-why-section *,
.dm-final-cta-section * {
    box-sizing: border-box;
}

/* ========================================
   SHARED UTILITIES
   ======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-pad);
    width: 100%;
}

.dm-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-accent), var(--orange-primary));
    border-radius: 2px;
    margin: 16px auto 0;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-medium);
    line-height: 1.6;
    margin-top: 20px;
}

/* Shared Breadcrumbs */
.breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumbs li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-normal);
    position: relative;
}

.breadcrumbs a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--orange-primary);
    transition: width var(--transition-normal);
}

.breadcrumbs a:hover { color: var(--orange-primary); }
.breadcrumbs a:hover::after { width: 100%; }
.breadcrumbs li[aria-current="page"] { color: var(--orange-primary); font-weight: 600; }

/* ========================================
   SHARED BUTTONS
   ======================================== */
.dm-btn-primary,
.dm-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    padding: 16px 36px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.dm-btn-primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-hover));
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.dm-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.dm-btn-primary:hover::before {
    width: 350px;
    height: 350px;
}

.dm-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.dm-btn-primary svg,
.dm-btn-secondary svg {
    transition: transform var(--transition-normal);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.dm-btn-primary:hover svg,
.dm-btn-secondary:hover svg {
    transform: translateX(5px);
}

.dm-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.dm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.dm-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dm-gradient-start);
}

.dm-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dm-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.25;
}

.dm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 25, 41, 0.92) 0%,
        rgba(10, 25, 41, 0.78) 50%,
        rgba(26, 58, 92, 0.85) 100%
    );
    z-index: 1;
}

/* Animated background gradient orbs */
.dm-hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    z-index: 1;
    animation: floatOrb 8s ease-in-out infinite;
    pointer-events: none;
}

.dm-hero-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    z-index: 1;
    animation: floatOrb 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

.dm-hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
}

.dm-hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

/* Hero Badge */
.dm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--green-accent);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

/* Hero Headline */
.dm-hero-headline {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.dm-hero-headline span {
    background: linear-gradient(135deg, var(--orange-primary), #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dm-hero-subheadline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

.dm-hero-problem {
    background: rgba(255, 107, 53, 0.08);
    border-left: 3px solid var(--orange-primary);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 28px;
}

.dm-hero-problem p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 8px;
}

.dm-hero-problem p:last-child { margin: 0; }
.dm-hero-problem strong { color: var(--white); }

/* Hero Bullets */
.dm-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dm-hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.5;
}

.dm-hero-bullets li svg {
    color: var(--green-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Hero CTA */
.dm-hero-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Live Stats */
.dm-live-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.live-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--green-accent);
    border-radius: 50%;
    flex-shrink: 0;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* Hero Visual — Trust Cards */
.dm-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dm-trust-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.2);
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
}

.trust-plus {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange-primary);
}

.trust-decimal {
    font-size: 32px;
}

.trust-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    letter-spacing: 0.3px;
    display: block;
}

/* Channel Spokes Visual */
.dm-channels-visual {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.channels-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-size: 11px;
    line-height: 1.3;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.15), 0 0 0 16px rgba(255, 107, 53, 0.07);
    animation: hubPulse 3s ease-in-out infinite;
}

@keyframes hubPulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(255,107,53,0.15), 0 0 0 16px rgba(255,107,53,0.07); }
    50% { box-shadow: 0 0 0 12px rgba(255,107,53,0.1), 0 0 0 24px rgba(255,107,53,0.04); }
}

.channel-spoke {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 2px;
    transform-origin: 0 50%;
    transform: rotate(calc(var(--i) * 60deg)) translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.channel-spoke::before {
    content: '';
    position: absolute;
    left: 50px;
    width: 40px;
    height: 1px;
    background: rgba(16, 185, 129, 0.4);
}

.channel-spoke span {
    position: absolute;
    right: -8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--green-accent);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
    white-space: nowrap;
    transform: rotate(calc(var(--i) * -60deg));
    transition: all var(--transition-normal);
}

.dm-channels-visual:hover .channel-spoke span {
    background: rgba(16, 185, 129, 0.25);
    border-color: var(--green-accent);
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.dm-problem-section {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.dm-complexity-banner {
    background: linear-gradient(135deg, var(--navy-dark), var(--dm-gradient-end));
    color: var(--white);
    padding: 24px 36px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.dm-complexity-banner strong {
    color: var(--orange-primary);
    font-size: 18px;
}

.dm-pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.dm-pain-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.dm-pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange-primary), var(--orange-hover));
    transform: scaleY(0);
    transition: transform var(--transition-slow);
    transform-origin: top;
}

.dm-pain-card:hover::before {
    transform: scaleY(1);
}

.dm-pain-card:hover {
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.pain-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 87, 34, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    margin-bottom: 16px;
    transition: all var(--transition-slow);
}

.dm-pain-card:hover .pain-card-icon {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-hover));
    color: var(--white);
    transform: scale(1.05) rotate(-3deg);
}

.pain-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.pain-scenario p {
    color: var(--gray-medium);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
    font-style: italic;
}

.pain-solution {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    padding: 14px 16px;
}

.fix-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--green-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.pain-solution p {
    font-size: 14px;
    color: var(--black);
    line-height: 1.6;
    margin: 0;
}

.dm-problem-bottom {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.bottom-line-statement {
    font-size: 20px;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* ========================================
   SOLUTION / SERVICES SECTION
   ======================================== */
.dm-solution-section {
    padding: var(--section-padding);
    background: var(--white);
}

.dm-solution-intro {
    text-align: center;
    font-size: 18px;
    color: var(--gray-medium);
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto 60px;
}

.dm-solution-intro strong {
    color: var(--black);
}

.dm-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.dm-service-card {
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: all var(--transition-slow);
    overflow: hidden;
}

.dm-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(225deg, rgba(16, 185, 129, 0.06), transparent);
    border-radius: 0 20px 0 120px;
    transition: all var(--transition-slow);
}

.dm-service-card:hover {
    border-color: var(--green-accent);
    box-shadow: var(--shadow-green);
    transform: translateY(-8px);
}

.dm-service-card:hover::after {
    width: 160px;
    height: 160px;
    background: linear-gradient(225deg, rgba(16, 185, 129, 0.1), transparent);
}

.service-card-number {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--orange-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-accent);
    margin-bottom: 20px;
    transition: all var(--transition-slow);
    position: relative;
    z-index: 1;
}

.dm-service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--green-accent), #059669);
    color: var(--white);
    transform: scale(1.08) rotate(-5deg);
    box-shadow: var(--shadow-green);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.service-card-tagline {
    font-size: 13px;
    color: var(--orange-primary);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card-items {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.service-card-items li {
    font-size: 14px;
    color: var(--gray-medium);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.service-card-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: 700;
    font-size: 12px;
}

.service-card-deliverable {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.04));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.service-card-deliverable svg {
    color: var(--green-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.dm-solution-cta {
    text-align: center;
}

.dm-solution-cta p {
    font-size: 18px;
    color: var(--gray-medium);
    margin-bottom: 28px;
    line-height: 1.6;
}

.dm-solution-cta strong { color: var(--black); }

/* ========================================
   PROCESS SECTION
   ======================================== */
.dm-process-section {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.dm-process-phases {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    position: relative;
}

/* Horizontal connector line */
.dm-process-phases::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-primary), var(--green-accent));
    z-index: 0;
    opacity: 0.3;
}

.dm-phase-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 20px;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-sm);
}

.dm-phase-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-orange);
}

.phase-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.phase-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-hover));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: all var(--transition-slow);
}

.dm-phase-card:hover .phase-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: var(--shadow-orange);
}

.phase-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 4px;
}

.phase-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-period {
    font-size: 11px;
    color: var(--gray-medium);
    line-height: 1.4;
}

.phase-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.phase-activities {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.phase-activities li {
    font-size: 12px;
    color: var(--gray-medium);
    padding-left: 14px;
    position: relative;
    line-height: 1.4;
}

.phase-activities li::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: var(--orange-primary);
    font-weight: 700;
}

.phase-deliverable {
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 6px;
    padding: 8px 10px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.phase-your-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gray-medium);
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.phase-your-time svg { color: var(--green-accent); flex-shrink: 0; }

.phase-connector {
    display: none; /* handled by CSS grid */
}

/* Timeline Bar */
.dm-timeline-bar {
    display: flex;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 48px;
    border: 1px solid #e5e7eb;
}

.timeline-bar-item {
    flex: 1;
    padding: 18px 16px;
    text-align: center;
    background: var(--white);
    border-right: 1px solid #e5e7eb;
    transition: all var(--transition-normal);
}

.timeline-bar-item:last-child { border-right: none; }

.timeline-bar-item:hover {
    background: rgba(255, 107, 53, 0.05);
}

.timeline-bar-item--highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), rgba(16, 185, 129, 0.06));
}

.timeline-bar-month {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.timeline-bar-result {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.dm-process-cta { text-align: center; }

/* ========================================
   PRICING SECTION
   ======================================== */
.dm-pricing-section {
    padding: var(--section-padding);
    background: var(--white);
}

.dm-pricing-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 15px;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.dm-pricing-notice svg { color: var(--green-accent); flex-shrink: 0; margin-top: 2px; }

.dm-pricing-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
    align-items: start;
}

.dm-package-card {
    border-radius: 20px;
    padding: 36px 28px;
    border: 2px solid #e5e7eb;
    background: var(--white);
    position: relative;
    transition: all var(--transition-slow);
}

.dm-package-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--gray-medium);
}

.dm-package-card--featured {
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--dm-gradient-end) 100%);
    border-color: var(--orange-primary);
    color: var(--white);
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(10, 25, 41, 0.25);
}

.dm-package-card--featured:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 28px 70px rgba(10, 25, 41, 0.35);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-hover));
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: var(--shadow-orange);
}

.package-tier {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange-primary);
    margin-bottom: 16px;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-medium);
}

.dm-package-card--featured .price-currency { color: rgba(255,255,255,0.6); }

.price-amount {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.dm-package-card--featured .price-amount { color: var(--white); }

.price-period {
    font-size: 14px;
    color: var(--gray-medium);
}

.dm-package-card--featured .price-period { color: rgba(255,255,255,0.6); }

.package-best-for {
    font-size: 13px;
    color: var(--gray-medium);
    line-height: 1.5;
    margin-bottom: 8px;
}

.dm-package-card--featured .package-best-for { color: rgba(255,255,255,0.7); }

.package-setup {
    font-size: 12px;
    color: var(--gray-medium);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.dm-package-card--featured .package-setup {
    color: rgba(255,255,255,0.5);
    border-bottom-color: rgba(255,255,255,0.1);
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-includes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--black);
    line-height: 1.5;
}

.dm-package-card--featured .package-includes li { color: rgba(255,255,255,0.85); }

.package-includes li svg {
    color: var(--green-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.package-results {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.5;
}

.dm-package-card--featured .package-results {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: rgba(255,255,255,0.85);
}

.package-results strong {
    display: block;
    color: var(--green-accent);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.dm-btn-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 24px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.dm-btn-package--primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-hover));
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.dm-btn-package--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,107,53,0.5);
}

.dm-btn-package--primary svg { transition: transform var(--transition-normal); }
.dm-btn-package--primary:hover svg { transform: translateX(4px); }

.dm-btn-package--outline {
    border: 2px solid #e5e7eb;
    color: var(--black);
    background: transparent;
}

.dm-btn-package--outline:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.05);
}

/* Comparison Table */
.dm-comparison-table-wrap {
    margin-bottom: 48px;
}

.comparison-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 24px;
}

.dm-comparison-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.dm-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 560px;
}

.dm-comparison-table th {
    background: var(--navy-dark);
    color: var(--white);
    padding: 16px 20px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
}

.dm-comparison-table th:first-child {
    text-align: left;
    border-radius: 12px 0 0 0;
}

.dm-comparison-table th:last-child { border-radius: 0 12px 0 0; }

.dm-comparison-table th.highlight-col { background: var(--orange-primary); }

.dm-comparison-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    color: var(--black);
}

.dm-comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--black);
    background: rgba(245, 247, 250, 0.5);
}

.dm-comparison-table td.highlight-col {
    background: rgba(255, 107, 53, 0.04);
    font-weight: 600;
}

.dm-comparison-table tbody tr:last-child td { border-bottom: none; }
.dm-comparison-table tbody tr:hover td { background: rgba(255, 107, 53, 0.03); }

/* Pricing Notes */
.dm-pricing-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--gray-light);
    border-radius: 12px;
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-medium);
}

.pricing-note svg { color: var(--orange-primary); flex-shrink: 0; margin-top: 2px; }
.pricing-note strong { color: var(--black); }

.dm-pricing-cta { text-align: center; }
.dm-pricing-cta p {
    font-size: 18px;
    color: var(--gray-medium);
    margin-bottom: 24px;
}

/* ========================================
   RESULTS SECTION
   ======================================== */
.dm-results-section {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.dm-results-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.result-stat {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    border: 2px solid transparent;
}

.result-stat:hover {
    border-color: var(--orange-primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-orange);
}

.result-stat-prefix {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-medium);
    display: block;
    margin-bottom: 2px;
}

.result-stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    display: block;
    line-height: 1;
}

.result-stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--orange-primary);
}

.result-stat-label {
    display: block;
    font-size: 14px;
    color: var(--gray-medium);
    margin-top: 8px;
}

.dm-case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.dm-case-study-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-slow);
}

.dm-case-study-card:hover {
    border-color: var(--green-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-green);
}

.cs-industry {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.08);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 16px;
}

.cs-headline {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 20px;
}

.cs-challenge, .cs-solution {
    margin-bottom: 16px;
}

.cs-challenge strong, .cs-solution strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-medium);
    margin-bottom: 4px;
}

.cs-challenge p, .cs-solution p {
    font-size: 14px;
    color: var(--black);
    line-height: 1.6;
    margin: 0;
}

.cs-results {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cs-results li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.cs-results li svg { color: var(--green-accent); flex-shrink: 0; }

.cs-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-medium);
}

.cs-duration svg { color: var(--orange-primary); }

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.dm-testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
}

.dm-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dm-testimonial-card {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 32px 28px;
    border: 2px solid transparent;
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.dm-testimonial-card:hover {
    background: var(--white);
    border-color: var(--orange-primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-orange);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--black);
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 16px;
    flex: 1;
}

.testimonial-text p { margin: 0; }

.testimonial-result {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--green-accent);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-initials {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
}

.author-company {
    font-size: 12px;
    color: var(--gray-medium);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.dm-faq-section {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.dm-faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dm-faq-item {
    background: var(--white);
    border-radius: 12px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: border-color var(--transition-normal);
}

.dm-faq-item:has(.dm-faq-answer:not([hidden])),
.dm-faq-item.is-open {
    border-color: var(--orange-primary);
}

.dm-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    transition: color var(--transition-normal);
}

.dm-faq-question:hover { color: var(--orange-primary); }

.dm-faq-question[aria-expanded="true"] { color: var(--orange-primary); }

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-normal);
    color: var(--gray-medium);
}

.dm-faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--orange-primary);
}

.dm-faq-answer {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.7;
}

.dm-faq-answer[hidden] { display: none; }

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.dm-why-section {
    padding: var(--section-padding);
    background: var(--white);
}

.dm-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.dm-why-card {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.dm-why-card::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent);
    border-radius: 50%;
    transition: all var(--transition-slow);
}

.dm-why-card:hover {
    background: var(--white);
    border-color: var(--green-accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-green);
}

.dm-why-card:hover::before {
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
}

.why-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.06));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-accent);
    margin: 0 auto 20px;
    transition: all var(--transition-slow);
}

.dm-why-card:hover .why-card-icon {
    background: linear-gradient(135deg, var(--green-accent), #059669);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-green);
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.why-card-desc {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.7;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.dm-final-cta-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--dm-gradient-mid) 50%, var(--dm-gradient-end) 100%);
    overflow: hidden;
    text-align: center;
}

.dm-final-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dm-final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.35);
    color: var(--orange-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.final-cta-headline {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.final-cta-subheadline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}

.final-cta-bonuses {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 560px;
    margin: 0 auto 36px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.bonus-item svg { color: var(--green-accent); flex-shrink: 0; }

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.dm-btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 44px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-hover));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.dm-btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.6);
}

.dm-btn-cta-primary svg { transition: transform var(--transition-normal); }
.dm-btn-cta-primary:hover svg { transform: translateX(5px); }

.dm-btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    transition: all var(--transition-normal);
}

.dm-btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.final-cta-disclaimer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.final-cta-disclaimer svg { color: var(--green-accent); }

/* ========================================
   FADE-IN UTILITY
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   FOCUS / ACCESSIBILITY
   ======================================== */
.dm-btn-primary:focus-visible,
.dm-btn-secondary:focus-visible,
.dm-btn-package:focus-visible,
.dm-faq-question:focus-visible,
.dm-btn-cta-primary:focus-visible,
.dm-btn-cta-secondary:focus-visible {
    outline: 3px solid var(--green-accent);
    outline-offset: 3px;
}

/* ========================================
   RESPONSIVE — TABLET (≤1200px)
   ======================================== */
@media (max-width: 1200px) {
    .dm-hero-inner {
        grid-template-columns: 1fr 360px;
        gap: 40px;
    }

    .dm-hero-headline { font-size: 44px; }

    .dm-process-phases {
        grid-template-columns: repeat(3, 1fr);
    }

    .dm-process-phases::before { display: none; }

    .dm-pricing-packages { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .dm-package-card--featured { transform: none; }
    .dm-package-card--featured:hover { transform: translateY(-6px); }

    .dm-results-stats { grid-template-columns: repeat(2, 1fr); }
    .dm-case-studies-grid { grid-template-columns: 1fr; }
}

/* ========================================
   RESPONSIVE — TABLET (≤1024px)
   ======================================== */
@media (max-width: 1024px) {
    :root { --section-padding: 80px 0; }

    .section-title { font-size: 36px; }

    .dm-hero-inner {
        grid-template-columns: 1fr;
    }

    .dm-hero-visual { order: -1; }
    .dm-trust-cards { grid-template-columns: repeat(4, 1fr); }
    .dm-channels-visual { display: none; }

    .dm-services-grid { grid-template-columns: repeat(2, 1fr); }
    .dm-why-grid { grid-template-columns: repeat(2, 1fr); }
    .dm-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .dm-process-phases { grid-template-columns: repeat(2, 1fr); }
    .dm-pain-points-grid { grid-template-columns: 1fr; }
    .dm-pricing-notes { grid-template-columns: 1fr; }
}

/* ========================================
   RESPONSIVE — MOBILE (≤768px)
   ======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-sm);
        --container-pad: 0 16px;
    }

    .dm-hero-section .container {
        padding-top: 90px;
        padding-bottom: 60px;
    }

    .dm-hero-headline { font-size: 32px; letter-spacing: -0.3px; }
    .dm-hero-subheadline { font-size: 16px; }

    .dm-hero-cta-buttons {
        flex-direction: column;
    }

    .dm-btn-primary, .dm-btn-secondary {
        justify-content: center;
    }

    .dm-trust-cards { grid-template-columns: repeat(2, 1fr); }

    .section-title { font-size: 28px; }

    .dm-services-grid { grid-template-columns: 1fr; }
    .dm-why-grid { grid-template-columns: 1fr; }
    .dm-testimonials-grid { grid-template-columns: 1fr; }
    .dm-process-phases { grid-template-columns: 1fr; }
    .dm-results-stats { grid-template-columns: repeat(2, 1fr); }

    .result-stat-number { font-size: 36px; }

    .final-cta-headline { font-size: 30px; }
    .final-cta-buttons { flex-direction: column; align-items: center; }
    .dm-btn-cta-primary, .dm-btn-cta-secondary { width: 100%; max-width: 320px; justify-content: center; }

    .dm-timeline-bar { flex-direction: column; }
    .timeline-bar-item { border-right: none; border-bottom: 1px solid #e5e7eb; }
    .timeline-bar-item:last-child { border-bottom: none; }
}

/* ========================================
   REDUCE MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .dm-hero-section::before,
    .dm-hero-section::after,
    .channels-hub,
    .live-dot {
        animation: none !important;
    }
}