/* ============================================================
   ECOMMERCE SEO AGENCY — UK PAGE STYLESHEET
   File: /ecommerce-seo-agency/style.css
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --navy:         #0a0e1a;
    --navy-dark:    #060810;
    --navy-mid:     #111827;
    --navy-card:    #141c2e;
    --navy-border:  #1e2a42;
    --gold:         #f59e0b;
    --gold-dark:    #d97706;
    --gold-light:   #fbbf24;
    --gold-dim:     rgba(245, 158, 11, 0.12);
    --white:        #ffffff;
    --off-white:    #f9fafb;
    --grey-50:      #f9fafb;
    --grey-100:     #f3f4f6;
    --grey-200:     #e5e7eb;
    --grey-400:     #9ca3af;
    --grey-500:     #6b7280;
    --grey-700:     #374151;
    --text-body:    #374151;
    --text-muted:   #6b7280;
    --text-light:   #9ca3af;
    --border:       #e5e7eb;
    --radius-sm:    6px;
    --radius:       12px;
    --radius-lg:    20px;
    --radius-xl:    28px;
    --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
    --shadow:       0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:    0 16px 48px rgba(0,0,0,.14);
    --shadow-gold:  0 8px 32px rgba(245,158,11,.25);
    --font-h:       'Manrope', sans-serif;
    --font-b:       'DM Sans', sans-serif;
    --transition:   0.25s ease;
    --section-py:   90px;
    --container:    1260px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-b);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Utilities ─────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold  { color: var(--gold); }
.gold-link  { color: var(--gold); font-weight: 600; }
.gold-link:hover { text-decoration: underline; }

.dark-section {
    background: var(--navy);
    color: var(--white);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-gold {
    background: var(--gold);
    color: var(--navy);
}
.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-full { width: 100%; }

/* Header-sized buttons */
.btn-gold-sm, .btn-outline-sm {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-gold-sm { background: var(--gold); color: var(--navy); }
.btn-gold-sm:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline-sm { border: 2px solid rgba(255,255,255,.3); color: var(--white); }
.btn-outline-sm:hover { border-color: var(--gold); color: var(--gold); }

/* ── Section Header ────────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.eyebrow {
    display: inline-block;
    font-family: var(--font-h);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.eyebrow.light { color: var(--gold); }

.section-header h2 {
    font-family: var(--font-h);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 16px;
}
.dark-section .section-header h2 { color: var(--white); }

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.dark-section .section-sub { color: rgba(255,255,255,.65); }

.section-cta-wrap {
    text-align: center;
    margin-top: 48px;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    background: transparent;
}
.site-header.scrolled {
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
    padding: 0;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-badge {
    width: 38px;
    height: 38px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--white);
    letter-spacing: -0.01em;
}
.logo-sub {
    font-family: var(--font-b);
    font-size: 0.72rem;
    color: rgba(255,255,255,.55);
    letter-spacing: 0.04em;
    margin-top: 2px;
}
.logo-dot { color: var(--gold); margin: 0 2px; }

/* Main Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav a {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 0.875rem;
    color: rgba(255,255,255,.8);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.main-nav a:hover {
    color: var(--gold);
    background: var(--gold-dim);
}

.header-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero content */
.hero-content { color: var(--white); }

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-dim);
    border: 1px solid rgba(245,158,11,.3);
    color: var(--gold-light);
    font-family: var(--font-h);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero-content h1 {
    font-family: var(--font-h);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--white);
}
.hero-content h1 .text-gold { color: var(--gold); }

.hero-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 28px;
    line-height: 1.75;
}
.hero-lead strong { color: var(--white); }

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 40px;
}
.trust-badges li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,.8);
    font-weight: 500;
}
.tick {
    color: var(--gold);
    font-weight: 800;
    font-size: 0.85rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 32px;
}
.stat-item { text-align: center; }
.stat-num-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px;
}
.stat-num {
    font-family: var(--font-h);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
}
.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,.55);
    margin-top: 4px;
    font-weight: 500;
    line-height: 1.3;
}

/* Hero form card */
.hero-form-wrap { position: relative; }
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 32px 80px rgba(0,0,0,.4);
    overflow: hidden;
}
.form-card-header {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-card) 100%);
    padding: 28px 32px 24px;
    border-bottom: 1px solid var(--navy-border);
}
.form-card-title {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}
.form-card-sub { font-size: 0.85rem; color: rgba(255,255,255,.6); }

.inquiry-form { padding: 28px 32px 32px; }

/* ── Form elements ── */
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-family: var(--font-h);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--grey-700);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 0.9rem;
    color: var(--navy);
    background: var(--grey-50);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--grey-400);
    text-align: center;
    margin-top: 12px;
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* Form states */
.form-success {
    text-align: center;
    padding: 32px 28px 36px;
}
.success-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.form-success h3 {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}
.form-success p { font-size: 0.92rem; color: var(--text-muted); }

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: #dc2626;
}
.alert-error a { color: #dc2626; text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   INTRO / WHAT IS ECOMMERCE SEO
══════════════════════════════════════════════════════════════ */
.intro-section { padding: var(--section-py) 0; }
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.intro-text .eyebrow { display: block; margin-bottom: 10px; }
.intro-text h2 {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 20px;
}
.intro-text p {
    color: var(--text-body);
    margin-bottom: 16px;
    font-size: 1rem;
}
.intro-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.intro-stat strong {
    display: block;
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 6px;
}
.intro-stat span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }

.intro-checklist {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: sticky;
    top: 90px;
}
.intro-checklist h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--navy-border);
}
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,.8);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    line-height: 1.5;
}
.checklist li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════════════════ */
.services-section { padding: var(--section-py) 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,.3);
}
.svc-icon { font-size: 2rem; }
.service-card h3 {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
}
.service-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
    flex: 1;
}
.card-cta {
    font-family: var(--font-h);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}
.card-cta:hover { gap: 8px; }

/* ══════════════════════════════════════════════════════════════
   PLATFORMS SECTION
══════════════════════════════════════════════════════════════ */
.platforms-section { padding: var(--section-py) 0; background: var(--grey-50); }
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.platform-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.platform-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(245,158,11,.12);
    transform: translateY(-3px);
}
.platform-icon { font-size: 1.8rem; }
.platform-name {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
}
.platform-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════
   WHY US SECTION
══════════════════════════════════════════════════════════════ */
.why-section { padding: var(--section-py) 0; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card:hover { border-color: var(--gold); }
.why-card:hover .why-num { color: var(--gold); }
.why-num {
    font-family: var(--font-h);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255,255,255,.08);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--transition);
    letter-spacing: -0.04em;
}
.why-card h3 {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════════════════════════ */
.process-section { padding: var(--section-py) 0; }
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}
.process-steps::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(245,158,11,.1) 100%);
}
.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-num {
    width: 64px;
    height: 64px;
    background: var(--navy);
    border: 3px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.step-body { flex: 1; padding-top: 10px; }
.step-body h3 {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}
.step-body p { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════════
   RESULTS / CASE STUDIES
══════════════════════════════════════════════════════════════ */
.results-section { padding: var(--section-py) 0; }
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.result-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
}
.result-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.result-featured {
    border-color: var(--gold);
    background: linear-gradient(160deg, rgba(245,158,11,.06) 0%, var(--navy-card) 100%);
}
.result-category {
    font-family: var(--font-h);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.result-card h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}
.result-location { font-size: 0.82rem; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.result-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.metric-num {
    display: block;
    font-family: var(--font-h);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.metric-lbl { font-size: 0.75rem; color: rgba(255,255,255,.5); line-height: 1.4; }
.result-card p { font-size: 0.875rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials-section { padding: var(--section-py) 0; background: var(--grey-50); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all var(--transition);
}
.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(245,158,11,.1);
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testimonial-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}
.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.t-avatar {
    width: 42px;
    height: 42px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.t-author cite {
    display: block;
    font-style: normal;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
}
.t-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════════ */
.pricing-section { padding: var(--section-py) 0; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    position: relative;
}
.pricing-featured {
    border-color: var(--gold);
    background: linear-gradient(160deg, rgba(245,158,11,.07) 0%, var(--navy-card) 60%);
    transform: scale(1.02);
}
.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-h);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.pricing-tier {
    font-family: var(--font-h);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.pricing-name {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.pricing-desc { font-size: 0.875rem; color: rgba(255,255,255,.55); margin-bottom: 24px; line-height: 1.6; }
.pricing-list {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,.75);
    line-height: 1.5;
}
.pricing-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 800;
    flex-shrink: 0;
    font-size: 0.82rem;
    margin-top: 1px;
}
.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,.5);
    margin-top: 32px;
}

/* Outline btn on dark bg */
.dark-section .btn-outline {
    border-color: rgba(255,255,255,.25);
    color: rgba(255,255,255,.85);
}
.dark-section .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   FAQs
══════════════════════════════════════════════════════════════ */
.faq-section { padding: var(--section-py) 0; }
.faq-wrap { max-width: 860px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    transition: color var(--transition);
    background: none;
    cursor: pointer;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-q[aria-expanded="true"] { color: var(--gold-dark); }
.faq-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
    padding: 0 0 20px;
    overflow: hidden;
}
.faq-a p { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; }

/* ══════════════════════════════════════════════════════════════
   LOCAL AREAS
══════════════════════════════════════════════════════════════ */
.areas-section { padding: var(--section-py) 0; }
.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.area-box {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
    text-decoration: none;
}
.area-box:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(245,158,11,.15);
}
.area-icon { font-size: 1.6rem; }
.area-name {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--white);
}
.area-kw { font-size: 0.7rem; color: rgba(255,255,255,.4); line-height: 1.4; }

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════════ */
.cta-section {
    background: var(--navy);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,.06) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cta-content .eyebrow { margin-bottom: 12px; }
.cta-content h2 {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.cta-content p {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    margin-bottom: 28px;
}
.cta-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cta-bullets li {
    font-size: 0.9rem;
    color: rgba(255,255,255,.8);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* CTA form */
.cta-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.cta-form .form-group { margin-bottom: 14px; }
.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 13px 16px;
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--grey-50);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    font-family: var(--font-b);
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: var(--grey-400); }
.cta-form input:focus,
.cta-form textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.cta-form textarea { resize: vertical; min-height: 80px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--navy-dark);
    border-top: 1px solid var(--navy-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 24px 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
    margin-bottom: 14px;
}
.footer-email {
    font-size: 0.875rem;
    color: var(--gold);
    font-weight: 600;
    transition: color var(--transition);
}
.footer-email:hover { color: var(--gold-light); }

.footer-nav-col h4 {
    font-family: var(--font-h);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-col a {
    font-size: 0.875rem;
    color: rgba(255,255,255,.6);
    transition: color var(--transition);
}
.footer-nav-col a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid var(--navy-border);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 24px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.35); }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a { font-size: 0.8rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 4px 16px rgba(245,158,11,.4);
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--transition);
    pointer-events: none;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root { --section-py: 70px; }

    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-form-wrap { order: -1; }
    .hero-content h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
    .hero-stats { grid-template-columns: repeat(4, 1fr); }

    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-checklist { position: static; }
    .intro-stats-row { grid-template-columns: repeat(3, 1fr); }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .platforms-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: 1fr; gap: 20px; }
    .pricing-featured { transform: scale(1); }
    .pricing-grid { grid-template-columns: 1fr; gap: 20px; max-width: 520px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
    .areas-grid { grid-template-columns: repeat(4, 1fr); }
    .cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .main-nav { display: none; }
    .header-ctas { display: none; }
    .nav-toggle { display: flex; }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10,14,26,.98);
        backdrop-filter: blur(12px);
        padding: 16px 0 24px;
        border-bottom: 1px solid var(--navy-border);
        z-index: 999;
    }
    .main-nav.open ul {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 0 16px;
    }
    .main-nav.open a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
    .main-nav.open + .header-ctas {
        display: flex;
        position: absolute;
        /* revealed via JS */
    }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 640px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    :root { --section-py: 56px; }

    .hero-section { padding: 96px 0 56px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .form-row-2 { grid-template-columns: 1fr; }

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

    .process-steps::before { left: 24px; }
    .step-num { width: 48px; height: 48px; font-size: 0.9rem; }
    .process-step { gap: 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .cta-form-wrap { padding: 28px 20px; }
    .inquiry-form { padding: 20px 20px 24px; }
    .form-card-header { padding: 20px 20px 16px; }

    .intro-stats-row { grid-template-columns: 1fr; gap: 16px; }
    .result-metrics { grid-template-columns: 1fr 1fr; }

    .pricing-grid { max-width: 100%; }
}

/* ── Print Styles ──────────────────────────────────────────── */
@media print {
    .site-header, .back-to-top, .hero-form-wrap, .cta-section { display: none; }
    body { font-size: 12pt; color: #000; }
    .dark-section { background: #fff; color: #000; }
    h1, h2, h3 { color: #000; }
}
