/* ========================================
   ANALOG AGENCY — FUNNEL STYLES
   Dark & Premium Theme
   ======================================== */

/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-card: #16161a;
    --bg-card-hover: #1c1c21;
    --text-primary: #f0f0f0;
    --text-secondary: #8b8b9e;
    --text-muted: #5a5a6e;
    --accent: #c8ff00;
    --accent-dim: rgba(200, 255, 0, 0.1);
    --accent-glow: rgba(200, 255, 0, 0.3);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent);
    color: #0a0a0b;
}

.btn-primary:hover {
    background: #d9ff33;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.05rem;
}

/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #a0e000 50%, #7fff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* SECTION STYLES */
.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--accent);
    color: #0a0a0b;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #d9ff33;
    transform: translateY(-1px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 255, 0, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 255, 0, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(100, 100, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--accent-dim);
    border: 1px solid rgba(200, 255, 0, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 32px;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.metric-suffix {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 4px;
}

.metric-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */
.proof-bar {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.proof-bar-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.platform-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.platform-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.platform-logo:hover {
    color: var(--text-primary);
}

.platform-logo span {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem {
    padding: 120px 0;
}

.problem .section-title {
    margin-bottom: 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.problem-icon {
    color: #ff4d4d;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.solution .section-desc {
    margin-bottom: 60px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    border-color: rgba(200, 255, 0, 0.2);
    transform: translateY(-4px);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.solution-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ========================================
   WORK / PORTFOLIO
   ======================================== */
.work {
    padding: 120px 0;
}

.work .section-desc {
    margin-bottom: 60px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.work-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.work-item:hover {
    border-color: rgba(200, 255, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.work-item-video {
    aspect-ratio: 1 / 1;
}

.work-item-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

.work-item-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(200, 255, 0, 0.15);
    border: 1px solid rgba(200, 255, 0, 0.25);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.work-cta {
    text-align: center;
}

.work-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 24px;
    font-style: italic;
}

/* ========================================
   PROCESS
   ======================================== */
.process {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.process .section-title {
    margin-bottom: 80px;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.process-step-line {
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    width: calc(100% - 72px + 32px);
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 300px;
    margin: 0 auto;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 120px 0;
}

.testimonials .section-title {
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dim), var(--bg-card-hover));
    border: 1px solid var(--border);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   BOOKING / CTA SECTION
   ======================================== */
.booking {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.booking .section-title,
.booking .section-desc {
    text-align: center;
}

.booking .section-desc {
    margin: 0 auto 60px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.booking-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.booking-form-wrapper h3,
.booking-calendly h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238b8b9e' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-calendly {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    min-height: 700px;
}

.calendly-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

.calendly-placeholder-inner {
    text-align: center;
    color: var(--text-muted);
}

.calendly-placeholder-inner p {
    margin-top: 16px;
    font-weight: 600;
}

.calendly-placeholder-inner span {
    font-size: 0.8rem;
    display: block;
    margin-top: 8px;
}

/* Calendly widget override */
.calendly-inline-widget {
    border-radius: var(--radius);
    overflow: hidden;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 120px 0;
}

.faq .section-title {
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

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

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    padding: 120px 0;
    text-align: center;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 255, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta .section-title {
    margin-bottom: 16px;
}

.final-cta .section-desc {
    margin: 0 auto 40px;
    text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 12px;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   ANIMATIONS (scroll reveal)
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 1024px) {
    .problem-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .process-step-line {
        display: none;
    }

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

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

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 768px) {
    /* Global mobile spacing */
    .container {
        padding: 0 20px;
    }

    section {
        /* Tighter section padding on mobile */
    }

    .problem,
    .solution,
    .work,
    .testimonials,
    .faq,
    .final-cta,
    .booking {
        padding: 80px 0;
    }

    .process {
        padding: 80px 0;
    }

    /* Nav mobile */
    .nav {
        padding: 16px 0;
    }

    .nav.scrolled {
        padding: 12px 0;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-cta {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    /* Hero mobile */
    .hero {
        min-height: 100svh;
        padding: 100px 20px 60px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
        margin-bottom: 24px;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
        margin-bottom: 20px;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 48px;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 16px 28px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 18px 32px;
    }

    .hero-metrics {
        gap: 20px;
    }

    .metric-number,
    .metric-suffix {
        font-size: 1.8rem;
    }

    .metric-label {
        font-size: 0.7rem;
    }

    .metric-divider {
        height: 32px;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

    /* Section titles mobile */
    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .section-desc {
        font-size: 1rem;
    }

    .section-label {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    /* Social proof bar mobile */
    .proof-bar {
        padding: 32px 0;
    }

    .proof-bar-label {
        font-size: 0.7rem;
        margin-bottom: 20px;
    }

    .platform-logos {
        gap: 20px;
    }

    .platform-logo svg {
        width: 22px;
        height: 22px;
    }

    .platform-logo span {
        font-size: 0.6rem;
    }

    /* Problem cards mobile */
    .problem .section-title {
        margin-bottom: 36px;
    }

    .problem-card {
        padding: 28px;
    }

    /* Solution cards mobile */
    .solution .section-desc {
        margin-bottom: 36px;
    }

    .solution-card {
        padding: 28px;
    }

    /* Work/Portfolio mobile */
    .work .section-desc {
        margin-bottom: 36px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .work-item-video {
        aspect-ratio: 1 / 1;
    }

    .work-item-overlay {
        padding: 16px;
    }

    .work-item-tag {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    /* Process mobile */
    .process .section-title {
        margin-bottom: 48px;
    }

    .process-step-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    /* Testimonials mobile */
    .testimonials .section-title {
        margin-bottom: 36px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Booking mobile */
    .booking .section-desc {
        margin-bottom: 36px;
    }

    .booking-form-wrapper,
    .booking-calendly {
        padding: 24px;
        border-radius: var(--radius);
    }

    .booking-calendly {
        min-height: auto;
    }

    .booking-form-wrapper h3,
    .booking-calendly h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* prevents iOS zoom on focus */
    }

    /* Calendly mobile */
    .calendly-inline-widget {
        min-width: 100% !important;
    }

    /* FAQ mobile */
    .faq .section-title {
        margin-bottom: 32px;
    }

    .faq-question {
        padding: 20px 0;
        font-size: 0.95rem;
    }

    .faq-question span {
        padding-right: 16px;
    }

    /* Final CTA mobile */
    .final-cta .section-desc {
        margin-bottom: 32px;
    }

    /* Footer mobile */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 28px;
        margin-bottom: 28px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* ========================================
   RESPONSIVE — SMALL MOBILE
   ======================================== */
@media (max-width: 400px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 16px 50px;
    }

    .hero-headline {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }

    .hero-sub {
        font-size: 0.9rem;
    }

    .hero-metrics {
        gap: 16px;
    }

    .metric-number,
    .metric-suffix {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .problem-card,
    .solution-card,
    .testimonial-card {
        padding: 24px;
    }

    .booking-form-wrapper,
    .booking-calendly {
        padding: 20px;
    }
}

/* ========================================
   TOUCH DEVICE OPTIMIZATIONS
   ======================================== */
@media (hover: none) {
    .problem-card:hover,
    .solution-card:hover,
    .testimonial-card:hover,
    .work-item:hover {
        transform: none;
    }

    .btn-primary:hover {
        transform: none;
        box-shadow: none;
    }

    /* Active states for touch */
    .btn-primary:active {
        transform: scale(0.98);
        background: #d9ff33;
    }

    .btn-secondary:active {
        border-color: var(--accent);
        color: var(--accent);
    }

    .faq-question:active {
        color: var(--accent);
    }
}

/* Safe area for notched phones */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer-bottom {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }

    .nav {
        padding-top: calc(20px + env(safe-area-inset-top));
    }

    .nav.scrolled {
        padding-top: calc(14px + env(safe-area-inset-top));
    }
}

/* ========================================
   FORM SUCCESS STATE
   ======================================== */
.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success svg {
    color: var(--accent);
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
