/* ============================================
   DESIGN SYSTEM — CONDOR PHARMA
   Aesthetic: Authoritative / Editorial / Refined
   Inspired by The Lancet, Nature, FT
============================================ */
:root {
    --navy:        #0C2340;
    --navy-mid:    #163352;
    --teal:        #0A6B8A;
    --teal-light:  #1A8BAD;
    --amber:       #C8860A;
    --amber-light: #E8A020;
    --green:       #0A7A55;
    --red:         #B91C1C;
    --slate:       #3D5166;
    --slate-light: #6B8099;
    --stone:       #F5F3EF;
    --stone-mid:   #EAE6DF;
    --white:       #FFFFFF;
    --ink:         #111827;
    --ink-mid:     #374151;

    --serif:  'Playfair Display', Georgia, serif;
    --body:   'Source Serif 4', Georgia, serif;
    --mono:   'JetBrains Mono', monospace;

    --max-w: 1160px;
    --section-pad: 6rem 2rem;
}

.email {
    color: var(--amber);
    font-weight: 700;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    background: var(--white);
    color: var(--ink);
    line-height: 1.75;
    overflow-x: hidden;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}

body.modal-open, body.menu-open { overflow: hidden; }

/* ── COOKIE BANNER ─────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    color: var(--white);
    padding: 1.25rem 2rem;
    z-index: 9999;
    border-top: 3px solid var(--amber);
}
.cookie-content {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cookie-text p { font-size: 0.875rem; line-height: 1.5; }
.cookie-text p:first-child { font-weight: 600; font-family: var(--serif); margin-bottom: 0.25rem; }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-family: var(--body);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s;
}
.cookie-accept { background: var(--amber); color: var(--white); }
.cookie-accept:hover { background: var(--amber-light); }
.cookie-reject { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.cookie-reject:hover { background: rgba(255,255,255,0.1); }

/* ── HEADER ────────────────────────────── */
header {
    background: var(--navy);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--amber);
    box-shadow: 0 2px 30px rgba(12,35,64,0.4);
}
.header-content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.9rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-container { display: flex; align-items: center; gap: 1rem; }
.logo-image { width: 110px; height: auto; }
.logo-subtitle {
    font-family: var(--mono);
    font-size: 0.58rem;
    opacity: 0.7;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: -12px;
    margin-left: 2px;
}

nav { display: flex; align-items: center; gap: 0; }
nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-family: var(--body);
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0.4rem 0.75rem;
    position: relative;
    transition: color 0.2s;
    letter-spacing: 0.3px;
}
nav a:hover { color: var(--white); }
nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 1rem; right: 1rem;
    height: 2px;
    background: var(--amber);
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
nav a:hover::after { transform: scaleX(1); }
nav a.nav-cta {
    background: var(--amber);
    color: var(--white);
    border-radius: 2px;
    margin-left: 0.5rem;
    padding: 0.45rem 1.25rem;
    font-weight: 600;
}
nav a.nav-cta::after { display: none; }
nav a.nav-cta:hover { background: var(--amber-light); color: var(--white); }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px; height: 18px;
    background: none; border: none;
    cursor: pointer; padding: 0; z-index: 1001;
}
.mobile-menu-toggle span {
    width: 100%; height: 2px;
    background: white; border-radius: 2px;
    transition: all 0.3s ease;
}

/* ── HERO ──────────────────────────────── */
.hero {
    background: var(--navy);
    color: var(--white);
    padding: 5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
    left: 0;
    right: 0;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(26,139,173,0.06) 20px,
            rgba(26,139,173,0.06) 40px
        );
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-light) 0%, var(--amber) 100%);
}
.hero-content {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.opportunity-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10,107,138,0.2);
    border: 1px solid var(--teal-light);
    color: var(--teal-light);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 2px;
    margin-bottom: 1.75rem;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    letter-spacing: -0.015em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.hero h1 em {
    font-style: italic;
    color: var(--teal-light);
    text-decoration: none;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--amber-light);
    margin-bottom: 1.75rem;
    font-weight: 300;
    line-height: 1.7;
}
.hero-body {
    font-size: 0.975rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}
.hero-body strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* Stats row */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}
.stat {
    background: rgba(255,255,255,0.04);
    padding: 1.5rem 1.75rem;
    transition: background 0.2s;
}
.stat:hover { background: rgba(255,255,255,0.08); }
.stat-number {
    display: block;
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--amber-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.point-qualifier { font-size: 1rem; opacity: 0.7; }
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
    font-family: var(--body);
}

.btn-primary {
    display: inline-block;
    background: var(--amber);
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 2.25rem;
    font-family: var(--body);
    font-size: 0.975rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 2px;
    transition: all 0.25s;
    border: 2px solid var(--amber);
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200,134,10,0.35);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 2.25rem;
    font-family: var(--body);
    font-size: 0.975rem;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 2px;
    transition: all 0.25s;
    cursor: pointer;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-reference {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}
.hero-reference a { color: rgba(255,255,255,0.5); text-decoration: underline; text-underline-offset: 2px; }
.hero-reference a:hover { color: rgba(255,255,255,0.8); }

/* ── TRUST BAR ─────────────────────────── */
.trust-bar {
    background: var(--stone);
    border-bottom: 1px solid var(--stone-mid);
    padding: 1.1rem 2rem;
}
.trust-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--slate);
    font-family: var(--mono);
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.trust-item span.dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}
.trust-divider { width: 1px; height: 24px; background: var(--stone-mid); }

/* ── SECTIONS ──────────────────────────── */
section { padding: var(--section-pad); }

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
    display: block;
}

h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* ── OPPORTUNITY SECTION ───────────────── */
#opportunity { background: var(--stone); }

.risk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.risk-card {
    background: var(--white);
    border: 1px solid var(--stone-mid);
    border-top: 3px solid var(--teal);
    padding: 1.75rem;
    border-radius: 2px;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}
.risk-card:hover {
    box-shadow: 0 8px 30px rgba(12,35,64,0.1);
    transform: translateY(-2px);
}
.risk-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}
.risk-icon {
    font-size: 1.6rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    display: inline-block;
}
.risk-card h3 { 
    color: var(--navy); 
    font-size: 1.05rem; 
    margin: 0;
    line-height: 1.3;
    font-family: var(--serif);
    font-weight: 600;
    display: inline-block;
}
.risk-card p { font-size: 0.925rem; color: var(--slate); line-height: 1.7; }

.callout-box {
    background: #EDF6FA;
    border: 1px solid #A8D4E3;
    border-left: 4px solid var(--teal);
    padding: 1.5rem;
    border-radius: 2px;
    margin-top: 0.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.callout-box-icon {
    font-size: 1.8rem;
    color: var(--teal);
    flex-shrink: 0;
    line-height: 1;
}
.callout-box-content {
    flex: 1;
}
.callout-box p {
    font-size: 0.975rem;
    color: var(--ink-mid);
    line-height: 1.8;
}
.callout-box strong { color: var(--ink); }
.callout-box .callout-ref {
    display: block;
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--slate-light);
}
.callout-box .callout-ref a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }

/* ── SOLUTION SECTION ──────────────────── */
#solution { background: var(--white); }

.deliverables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
    margin-top: 0;
}
.deliverables-grid > * {
    min-width: 0; /* Prevent grid overflow */
}
.deliverables-list { list-style: none; }
.deliverables-list li {
    display: flex;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--stone-mid);
    font-size: 0.925rem;
    color: var(--ink-mid);
    line-height: 1.65;
}
.deliverables-list li:last-child { border-bottom: none; }
.check-icon {
    color: var(--green);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-family: var(--mono);
}
.deliverables-list strong { color: var(--navy); font-weight: 600; }

/* ── MODULES SECTION ───────────────────── */
#modules { background: var(--navy); }
#modules .eyebrow { color: var(--amber-light); }
#modules h2 { color: var(--white); }
#modules .section-lead { color: rgba(255,255,255,0.65); }

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}
.module-card {
    background: rgba(255,255,255,0.04);
    padding: 2rem 1.75rem;
    transition: background 0.2s;
    position: relative;
}
.module-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--teal-light);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.module-card:hover { background: rgba(255,255,255,0.08); }
.module-card:hover::before { transform: scaleX(1); }
.module-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}
.module-icon { 
    font-size: 1.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    display: inline-block;
}
.module-card h3 {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
    display: inline-block;
}
.module-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.module-tag {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.5px;
    color: var(--teal-light);
    opacity: 0.8;
}

/* ── PLATFORM SECTION ──────────────────── */
#platform { background: var(--stone); }

.platform-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 0;
}
.platform-block {
    background: var(--white);
    border: 1px solid var(--stone-mid);
    border-radius: 3px;
    overflow: hidden;
    transition: box-shadow 0.25s;
}
.platform-block:hover { box-shadow: 0 12px 40px rgba(12,35,64,0.12); }
.platform-block-label {
    background: var(--navy);
    color: var(--amber-light);
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
}
.platform-block-body { padding: 1.5rem 1.75rem; }
.platform-block h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.platform-block p { font-size: 0.9rem; color: var(--slate); line-height: 1.65; margin-bottom: 1.25rem; }
.platform-block img {
    width: 100%;
    height: auto;
    display: block;
    border-top: 1px solid var(--stone-mid);
    cursor: zoom-in;
    transition: opacity 0.2s;
}
.platform-block img:hover { opacity: 0.9; }

/* Image modal */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12,35,64,0.92);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.image-modal.active { display: flex; }
.modal-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 3px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

/* ── ABOUT SECTION ─────────────────────── */
#about { background: var(--white); }

.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}
.about-aside {
    position: sticky;
    top: 120px;
    text-align: center;
}
.about-aside picture {
    display: block;
    margin: 0;
}
.about-aside img { 
    width: 200px; 
    max-width: 100%;
    height: auto; 
    margin: 0 auto 0.75rem;
    display: block;
    visibility: visible;
    opacity: 1;
    filter: invert(1) brightness(1.1);
}
.about-aside .tagline {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--slate-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.about-body p {
    font-size: 0.975rem;
    color: var(--ink-mid);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.about-body > p:last-of-type { margin-bottom: 2rem; }

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 0;
}
.expertise-card {
    background: var(--stone);
    border: 1px solid var(--stone-mid);
    border-top: 2px solid var(--teal);
    padding: 1.25rem 1.5rem;
    border-radius: 2px;
}
.expertise-card h4 {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.expertise-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

/* ── PRICING / LIFE-GUARD SECTION ──────── */
#pricing { background: var(--stone); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--stone-mid);
    border: 1px solid var(--stone-mid);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.pricing-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    transition: background 0.2s;
    min-width: 0; /* Prevent grid overflow */
}
.pricing-card.featured { background: var(--navy); }
.pricing-header {
    padding: 1.75rem 1.5rem 1.25rem;
    border-bottom: 1px solid var(--stone-mid);
}
.pricing-card.featured .pricing-header { border-bottom-color: rgba(255,255,255,0.12); }
.pricing-header h4 {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.pricing-card.featured .pricing-header h4 { color: var(--amber-light); }
.price {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.pricing-card.featured .price { color: var(--white); }
.price-sub {
    font-size: 0.78rem;
    color: var(--slate-light);
    font-family: var(--mono);
}
.pricing-card.featured .price-sub { color: rgba(255,255,255,0.5); }
.pricing-features {
    padding: 1.25rem 1.5rem;
    flex: 1;
}
.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--ink-mid);
    border-bottom: 1px solid var(--stone);
}
.feature-row:last-child { border-bottom: none; }
.pricing-card.featured .feature-row { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.08); }
.feat-check { color: var(--green); font-weight: 700; font-family: var(--mono); flex-shrink: 0; }
.feat-cross { color: var(--slate-light); font-family: var(--mono); flex-shrink: 0; }
.pricing-card.featured .feat-check { color: var(--amber-light); }

.pricing-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--stone-mid);
}
.pricing-card.featured .pricing-footer { border-top-color: rgba(255,255,255,0.12); }
.pricing-footer a {
    display: block;
    text-align: center;
    padding: 0.65rem;
    border-radius: 2px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--body);
    text-decoration: none;
    transition: all 0.2s;
}
.pricing-footer .btn-navy {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
}
.pricing-footer .btn-navy:hover { background: var(--navy-mid); }
.pricing-footer .btn-amber { background: var(--amber); color: var(--white); }
.pricing-footer .btn-amber:hover { background: var(--amber-light); }
.pricing-footer .btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
}
.pricing-footer .btn-ghost:hover { background: var(--navy); color: var(--white); }
.pricing-footer .btn-ghost-w {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.3);
}
.pricing-footer .btn-ghost-w:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.custom-modules-note {
    background: var(--white);
    border: 1px solid var(--stone-mid);
    border-left: 4px solid var(--teal);
    padding: 1.25rem 1.75rem;
    border-radius: 2px;
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 2rem;
}
.custom-modules-note strong { color: var(--navy); }

/* ── FAQ SECTION ───────────────────────── */
#faq { background: var(--white); }

.faq-list { width: 100%; }
.faq-item {
    border-bottom: 1px solid var(--stone-mid);
    padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--stone-mid); }
.faq-q {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.65rem;
    line-height: 1.35;
    cursor: default;
}
.faq-a {
    font-size: 0.925rem;
    color: var(--slate);
    line-height: 1.8;
}

/* ── CTA SECTION ───────────────────────── */
#contact {
    background: var(--navy);
    text-align: center;
}
#contact h2 {
    color: var(--white);
    margin-bottom: 1rem;
}
#contact .lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin: 0 auto 2.25rem;
    line-height: 1.75;
    font-weight: 300;
}

/* ── FOOTER ────────────────────────────── */
footer {
    background: #08192E;
    color: rgba(255,255,255,0.5);
    padding: 3rem 2rem;
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.footer-brand picture {
    display: block;
    margin-bottom: 0.75rem;
}
.footer-brand img { width: 100px; height: auto; }
.footer-brand p { font-size: 0.825rem; line-height: 1.7; color: rgba(255,255,255,0.45); }
.footer-info { font-size: 0.825rem; line-height: 1.9; }
.footer-info strong { color: rgba(255,255,255,0.7); font-weight: 600; }
.footer-info a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-info a:hover { color: var(--amber-light); }
.footer-bottom {
    max-width: var(--max-w);
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-reg-tags {
    display: flex;
    gap: 1rem;
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.5px;
}

/* ── RESPONSIVE ────────────────────────── */
/* 1024px — Desktop adjustments */
@media (max-width: 1024px) {
    .pricing-grid { 
        grid-template-columns: 1fr 1fr; 
    }
    .price {
        font-size: 1.75rem;
    }
    .price-sub {
        font-size: 0.72rem;
    }
}

/* 900px — Tablet and mobile layouts */
@media (max-width: 900px) {
    :root { --section-pad: 4rem 1.5rem; }
    
    .deliverables-grid { grid-template-columns: 1fr; gap: 0; }
    .modules-grid { grid-template-columns: 1fr 1fr; }
    .platform-blocks { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; gap: 2rem; }
    .about-aside { position: static; }
    .footer-inner { grid-template-columns: 1fr; }
    
    /* Trust bar adjustments */
    .trust-divider { display: none; }
    .trust-bar-inner { gap: 1.5rem; }
    
    /* Hero stats stay 3-col but tighter */
    .hero-stats {
        gap: 1px;
        margin-bottom: 2rem;
    }
    .stat {
        padding: 1.25rem 1rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    
    /* Mobile menu */
    nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    nav.active {
        display: flex;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        gap: 0;
    }
    nav.active a {
        font-size: 1.25rem;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        width: 100%;
        text-align: center;
        margin: 0;
    }
    nav.active a::after {
        display: none;
    }
    nav.active a.nav-cta {
        margin-top: 1rem;
        border-radius: 2px;
        border-bottom: none;
    }
    
    .hero {
        padding: 3rem 1rem 2rem;
    }
    .hero-content {
        padding: 0 1rem;
    }
    .hero h1 { font-size: clamp(2.6rem, 7.5vw, 4rem); }
    .hero-cta-row { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 1rem;
    }
    .btn-primary, .btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .risk-grid { grid-template-columns: 1fr; }
    .modules-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    
    .section-inner {
        padding: 0 1rem;
    }
    .risk-card {
        padding: 1.5rem;
    }
    .module-card {
        padding: 1.5rem 1rem;
    }
    .platform-block-body {
        padding: 1.25rem 1rem;
    }
    .faq-item {
        padding: 1.25rem 0;
    }
}

/* 480px — True mobile */
@media (max-width: 480px) {
    :root { --section-pad: 3rem 1rem; }
    
    .header-content {
        padding: 0.9rem 1rem;
    }
    
    .modules-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    
    /* Cookie banner stacks vertically */
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
    }
    
    /* Long CTA button text handling */
    .btn-primary, .btn-outline {
        word-break: break-word;
        white-space: normal;
        line-height: 1.3;
    }
    
    .trust-bar-inner {
        gap: 1rem;
        flex-wrap: wrap;
    }
    .trust-item {
        font-size: 0.7rem;
        flex: 1 1 auto;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    .stat {
        padding: 1rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .hero h1 { font-size: clamp(2.6rem, 10.5vw, 4.2rem); letter-spacing: -0.02em; margin-bottom: 1.25rem; line-height: 1.12; text-shadow: 0 6px 18px rgba(0,0,0,0.35); }
}

/* ── SCROLL ANIMATIONS ─────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
