﻿/* ==============================================
   MARKETING SERVICES — Page-Specific Styles
   ============================================== */

/* ---- HERO SECTION ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-indigo), transparent 70%);
    top: -10%;
    left: -10%;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-emerald), transparent 70%);
    bottom: -15%;
    right: -10%;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-cta {
    font-size: 1.05rem;
    padding: 1rem 2rem;
    gap: 0.5rem;
}

/* Hero Metrics */
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-metric-card {
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-metric-card .card-content {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---- PROBLEM / SOLUTION ---- */
.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
}

.ps-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ps-column-title {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.ps-title-red {
    color: #ef4444;
}

.ps-title-green {
    color: var(--accent-emerald);
}

.ps-card {
    position: relative;
    overflow: hidden;
}

.ps-card .card-content {
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ps-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 36px;
    text-align: center;
}

.ps-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.ps-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Red/Green tinted cards */
.ps-card-red {
    border-left: 2px solid rgba(239, 68, 68, 0.3);
}

.ps-card-green {
    border-left: 2px solid rgba(16, 185, 129, 0.3);
}

.card-glow-red {
    background: radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.08), transparent 60%);
}

.ps-asset {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 120px;
    align-self: center;
}

.ps-asset .asset-3d-mock svg {
    width: 120px;
    height: 120px;
    animation: assetSpin 20s linear infinite;
}

@keyframes assetSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ---- SERVICE DETAIL BLOCKS ---- */
.service-detail-block {
    position: relative;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-subtle);
}

.service-detail-block:first-of-type {
    margin-top: 2rem;
}

.service-detail-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-icon-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.service-icon-indigo {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
    color: var(--accent-indigo);
}

.service-icon-emerald {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--accent-emerald);
}

.service-icon-amber {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
    color: var(--accent-amber);
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-detail-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
}

.service-detail-content {
    position: relative;
}

/* Process Steps Grid */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.process-step {
    position: relative;
    overflow: hidden;
}

.process-step .card-content {
    padding: 1.5rem;
}

.step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-indigo);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: 0.75rem;
}

.step-number-emerald {
    color: var(--accent-emerald);
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Floating Assets */
.service-float-asset {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    z-index: 0;
    opacity: 0.4;
}

.service-float-asset .asset-3d-mock svg {
    width: 100%;
    height: 100%;
}

.asset-glow-ring {
    position: absolute;
    inset: -20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

.asset-glow-ring-emerald {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent 70%);
}

.asset-glow-ring-amber {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent 70%);
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ---- CRO BEFORE/AFTER ---- */
.cro-before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.cro-metric-card {
    position: relative;
    overflow: hidden;
}

.cro-metric-card .card-content {
    padding: 2rem;
}

.cro-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.cro-label-before {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.cro-label-after {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
}

.cro-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cro-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cro-stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.cro-stat-value.cro-stat-green {
    color: var(--accent-emerald);
}

.cro-stat-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.cro-stat-change {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    display: inline-block;
    width: fit-content;
}

.cro-arrow {
    color: var(--accent-indigo);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
}

/* ---- RETARGETING FUNNEL ---- */
.retarget-funnel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 700px;
    position: relative;
}

.funnel-layer {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.funnel-layer:hover {
    transform: translateX(8px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
}

.funnel-layer .card-content {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.funnel-layer-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-indigo);
    background: rgba(99, 102, 241, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.funnel-layer h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    flex-shrink: 0;
    min-width: 200px;
}

.funnel-layer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Progressive funnel opacity */
.funnel-layer[data-layer="1"] .funnel-layer-num { color: #ef4444; background: rgba(239,68,68,0.1); }
.funnel-layer[data-layer="2"] .funnel-layer-num { color: #f97316; background: rgba(249,115,22,0.1); }
.funnel-layer[data-layer="3"] .funnel-layer-num { color: var(--accent-amber); background: rgba(245,158,11,0.1); }
.funnel-layer[data-layer="4"] .funnel-layer-num { color: #84cc16; background: rgba(132,204,22,0.1); }
.funnel-layer[data-layer="5"] .funnel-layer-num { color: var(--accent-emerald); background: rgba(16,185,129,0.1); }
.funnel-layer[data-layer="6"] .funnel-layer-num { color: #06b6d4; background: rgba(6,182,212,0.1); }
.funnel-layer[data-layer="7"] .funnel-layer-num { color: var(--accent-indigo); background: rgba(99,102,241,0.1); }

/* ---- PROCESS TIMELINE ---- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-subtle);
}

.timeline-progress {
    position: absolute;
    left: 24px;
    top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-indigo), var(--accent-emerald));
    transition: height 0.3s ease;
}

.timeline-step {
    position: relative;
    padding-left: 64px;
    margin-bottom: 2rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 14px;
    top: 1.5rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-indigo);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.timeline-step.active .timeline-dot {
    background: var(--accent-indigo);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-indigo);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-step.active .dot-pulse {
    opacity: 1;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.timeline-card {
    position: relative;
    overflow: hidden;
}

.timeline-card .card-content {
    padding: 1.5rem;
}

.timeline-phase {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-indigo);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-deliverables {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.deliverable-tag {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent-indigo-glow);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

/* ---- RESULTS GRID ---- */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.result-card {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.result-card .card-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.result-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.result-icon-emerald {
    background: rgba(16, 185, 129, 0.1);
}

.result-icon-amber {
    background: rgba(245, 158, 11, 0.1);
}

.result-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.result-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.result-context {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* ---- PRICING ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card .card-content {
    padding: 2rem;
}

.pricing-card-featured {
    border: 1px solid rgba(16, 185, 129, 0.3);
    transform: scale(1.03);
}

.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-emerald));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 1.25rem;
    border-radius: 0 0 8px 8px;
    z-index: 2;
}

.pricing-tier-header {
    margin-bottom: 1.5rem;
}

.pricing-tier-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.pricing-tier-desc {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    align-self: flex-start;
    margin-top: 0.25rem;
}

.pricing-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-value-custom {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-left: 0.25rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.feature-included {
    color: var(--text-secondary);
}

.feature-excluded {
    color: var(--text-tertiary);
    opacity: 0.5;
}

.pricing-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ---- FAQ ACCORDION ---- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.faq-trigger:hover {
    color: var(--accent-indigo-glow);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-tertiary);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-indigo);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- FINAL CTA ---- */
.cta-section {
    padding-bottom: 6rem;
}

.cta-block {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.card-glow-cta {
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1), transparent 60%);
}

.cta-content {
    padding: 4rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-badge-wrap {
    margin-bottom: 1rem;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-btn-main {
    gap: 0.5rem;
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
}

.cta-trust-signals {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ---- GRADIENT TEXT ---- */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }

    .ps-asset {
        display: none;
    }

    .process-steps-grid {
        grid-template-columns: 1fr;
    }

    .cro-before-after {
        grid-template-columns: 1fr;
    }

    .cro-arrow {
        transform: rotate(90deg);
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

    .service-float-asset {
        display: none;
    }

    .funnel-layer .card-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .funnel-layer h4 {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1.25rem 3rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-metric-card .card-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        padding-left: 52px;
    }

    .timeline-line,
    .timeline-progress {
        left: 16px;
    }

    .timeline-dot {
        left: 6px;
        width: 22px;
        height: 22px;
    }

    .cta-content {
        padding: 2.5rem 1.5rem;
    }

    .cta-trust-signals {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- 480px Mobile --- */
@media (max-width: 480px) {
    .hero-metrics { grid-template-columns: 1fr !important; gap: var(--space-sm); }
    .problem-solution-grid { grid-template-columns: 1fr !important; }
    .cro-before-after { grid-template-columns: 1fr !important; }
    .results-grid { grid-template-columns: 1fr !important; }
    .pricing-grid { grid-template-columns: 1fr !important; }
}