/* ========================================================================
   CancerInsight — Modern, elegant, reassuring design system
   Palette: deep medical teal + warm coral + cream
   Fonts : Fraunces (serif display) + Inter (UI)
   ======================================================================== */

:root {
    /* Brand */
    --primary:        #0E5E5B;
    --primary-dark:   #083F3D;
    --primary-soft:   #DCEAE8;
    --primary-tint:   #F0F7F5;

    --accent:         #E8896E;   /* warm coral */
    --accent-dark:    #C46A4F;
    --accent-soft:    #F7DCD0;

    --gold:           #C79A55;

    /* Neutrals */
    --text:           #16302E;
    --text-light:     #4F6361;
    --text-muted:     #8A9896;
    --text-subtle:    #B5BEBC;

    --bg:             #FFFFFF;
    --bg-cream:       #FAF7F1;   /* main warm page background */
    --bg-cream-2:     #F3EDE0;
    --bg-mist:        #F0F4F3;   /* cool alt */

    --border:         #E8E2D3;
    --border-soft:    #F0EBDE;

    /* Shadows — soft, layered */
    --shadow-xs: 0 1px 2px rgba(16,48,46,0.04);
    --shadow-sm: 0 2px 8px rgba(16,48,46,0.06);
    --shadow-md: 0 10px 30px -10px rgba(16,48,46,0.14);
    --shadow-lg: 0 24px 60px -20px rgba(16,48,46,0.22);
    --shadow-xl: 0 40px 90px -25px rgba(16,48,46,0.30);

    /* Radii */
    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-pill: 999px;

    /* Typography */
    --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Motion */
    --t: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    --t-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

    /* Layout */
    --maxw: 1200px;
    --maxw-narrow: 880px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text);
    background: var(--bg-cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "cv02", "cv03", "cv11", "ss01";
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--t);
}
a:hover { color: var(--accent-dark); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
    font-variation-settings: "SOFT" 50, "WONK" 0;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; letter-spacing: -0.01em; }

p { margin-bottom: 1rem; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

.display-serif {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    color: var(--accent-dark);
}

/* ---------- Layout ---------- */
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: var(--maxw-narrow);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--r-sm);
    z-index: 10000;
    font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ========================================================================
   HEADER
   ======================================================================== */
.site-header {
    background: var(--bg-cream);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--t), background var(--t);
}

.site-header.scrolled {
    background: rgba(250,247,241,0.92);
    backdrop-filter: saturate(1.2) blur(14px);
    -webkit-backdrop-filter: saturate(1.2) blur(14px);
    box-shadow: 0 1px 0 rgba(16,48,46,0.06);
}

.header-top {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.825rem;
    padding: 0.55rem 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-top a { color: #fff; font-weight: 600; }
.header-top a:hover { color: var(--accent-soft); }

.data-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.08);
    padding: 0.22rem 0.7rem;
    border-radius: var(--r-pill);
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.08);
}

.header-main {
    padding: 1rem 0;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled .header-main {
    border-bottom-color: var(--border-soft);
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.55rem;
    letter-spacing: -0.02em;
    color: var(--text);
}
.logo:hover { color: var(--text); }
.logo svg { width: 36px; height: 36px; color: var(--primary); }
.logo span { font-style: italic; font-weight: 400; color: var(--accent-dark); }

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.1rem;
    align-items: center;
}

.main-nav a {
    display: inline-block;
    padding: 0.55rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--r-sm);
    transition: all var(--t);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-dark);
}

.main-nav a.active {
    position: relative;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
}

.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 0.7rem 1.3rem !important;
    border-radius: var(--r-pill) !important;
    font-weight: 600 !important;
    box-shadow: 0 6px 16px -8px rgba(14,94,91,0.6);
    transition: all var(--t) !important;
}
.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -10px rgba(14,94,91,0.7);
}
.nav-cta::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-soft);
    margin-right: 0.4rem;
    vertical-align: middle;
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(247,220,208,0.7); }
    50%      { box-shadow: 0 0 0 6px rgba(247,220,208,0); }
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text);
}
.mobile-toggle svg { width: 28px; height: 28px; }

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
    position: relative;
    padding: 4.5rem 0 5rem;
    background: var(--bg-cream);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 50% at 90% 0%, rgba(232,137,110,0.16) 0%, transparent 60%),
        radial-gradient(55% 60% at 0% 100%, rgba(14,94,91,0.10) 0%, transparent 55%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-copy h1 {
    margin-bottom: 1.25rem;
    max-width: 620px;
}

.hero-copy .lede {
    font-size: 1.18rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.92rem;
}

.hero-trust .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust .trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.hero-trust .sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-subtle);
}

/* Old site kept .hero-search and .hero-stats; restyled here but hidden via PHP */
.hero-search { display: none; }
.hero-stats  { display: none; }

/* Hero lead-capture card */
.hero-card {
    position: relative;
    background: #fff;
    border-radius: var(--r-xl);
    padding: 2.25rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-soft);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: auto -14px -14px auto;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 30% 30%, var(--accent-soft), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(8px);
}

.hero-card-head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.35rem;
}

.hero-card-head .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ECC71;
    box-shadow: 0 0 0 4px rgba(46,204,113,0.18);
}

.hero-card-head .label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-light);
    text-transform: uppercase;
}

.hero-card h2 {
    font-size: 1.55rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-card p.subtitle {
    color: var(--text-light);
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}

.hero-card .form-group { margin-bottom: 0.85rem; }

.hero-card .btn-primary {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.02rem;
}

.hero-card .fineprint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.9rem;
    text-align: center;
    line-height: 1.5;
}

/* Small hero for internal pages */
.hero-small {
    background: var(--bg-cream);
    padding: 3.25rem 0 2.5rem;
    position: relative;
}

.hero-small::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 70% at 90% 0%, rgba(232,137,110,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-small .container { position: relative; z-index: 1; }

.hero-small h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.6rem;
}

.hero-small .subtitle {
    font-size: 1.08rem;
    color: var(--text-light);
    max-width: 640px;
}

/* ========================================================================
   TRUST RIBBON (logos / partners)
   ======================================================================== */
.trust-ribbon {
    padding: 2.5rem 0;
    background: #fff;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.trust-ribbon .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-ribbon .label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.trust-ribbon .trust-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: -0.01em;
    opacity: 0.85;
    transition: opacity var(--t);
}

.trust-ribbon .trust-name:hover { opacity: 1; color: var(--primary); }

/* ========================================================================
   SECTION BASE
   ======================================================================== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-sm { padding: 3.5rem 0; }

.section-cream   { background: var(--bg-cream); }
.section-cream-2 { background: var(--bg-cream-2); }
.section-white   { background: #fff; }
.section-mist    { background: var(--bg-mist); }

.section-dark {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.88);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.section-header h2 { margin-bottom: 1rem; }

.section-header p {
    color: var(--text-light);
    font-size: 1.08rem;
    line-height: 1.7;
}

.section-header.left { text-align: left; margin-left: 0; }

/* ========================================================================
   REASSURANCE RIBBON — stats
   ======================================================================== */
.reassurance {
    padding: 3.5rem 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.reassurance-item {
    text-align: center;
    padding: 0 0.5rem;
    border-left: 1px solid var(--border);
}

.reassurance-item:first-child { border-left: none; }

.reassurance-item .big {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--primary-dark);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.reassurance-item .big em {
    font-style: italic;
    color: var(--accent-dark);
    font-weight: 400;
}

.reassurance-item .label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ========================================================================
   HOW IT WORKS — 3 steps
   ======================================================================== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 2.25rem 1.75rem;
    background: #fff;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-soft);
    transition: all var(--t);
    counter-increment: step;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.step-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-dark);
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.step-num::before {
    content: counter(step, decimal-leading-zero);
    display: inline-block;
    margin-right: 0.6rem;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    vertical-align: middle;
    letter-spacing: -0.02em;
}

.step h3 {
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.7;
    margin: 0;
}

/* ========================================================================
   CANCER TYPES GRID
   ======================================================================== */
.cancer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.25rem;
}

.cancer-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: all var(--t);
    overflow: hidden;
}

.cancer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-color, var(--primary));
    opacity: 0.7;
    transition: opacity var(--t);
}

.cancer-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--card-color, var(--primary));
    opacity: 0.06;
    transition: all var(--t-slow);
}

.cancer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.cancer-card:hover::before { opacity: 1; }
.cancer-card:hover::after { opacity: 0.12; transform: scale(1.3); }

.cancer-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cancer-card .card-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-color, var(--primary));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    flex-shrink: 0;
    opacity: 0.92;
}

.cancer-card h3 {
    font-size: 1.22rem;
    margin: 0;
    letter-spacing: -0.01em;
}

.cancer-card h3 a { color: var(--text); }
.cancer-card h3 a:hover { color: var(--primary); }

.cancer-card .card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    position: relative;
    z-index: 1;
}

.cancer-card .stat-item { text-align: center; padding: 0 0.5rem; }
.cancer-card .stat-item + .stat-item { border-left: 1px solid var(--border-soft); }

.cancer-card .stat-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-dark);
    display: block;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cancer-card .stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
    display: block;
}

.cancer-card .card-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.cancer-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.2rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.cancer-card .card-link::after {
    content: '→';
    transition: transform var(--t);
}

.cancer-card:hover .card-link::after { transform: translateX(4px); }

/* ========================================================================
   WHY US / FEATURE CARDS
   ======================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.feature {
    background: #fff;
    padding: 2rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-soft);
    transition: all var(--t);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg { width: 26px; height: 26px; }

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* Stat cards (legacy homepage) */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
}

.stat-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 1.75rem;
    text-align: center;
    border: 1px solid var(--border-soft);
    transition: all var(--t);
}

.stat-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.stat-card .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.35rem;
    background: var(--primary-soft);
    color: var(--primary);
}

.stat-card .stat-number {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 500;
    color: var(--primary-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.stat-card .stat-text {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-top: 0.35rem;
    line-height: 1.5;
}

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 2rem;
    border: 1px solid var(--border-soft);
    position: relative;
    transition: all var(--t);
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.4;
    font-style: italic;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.55;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-author .name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.testimonial-author .meta {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ========================================================================
   BREADCRUMBS
   ======================================================================== */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-cream);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.4rem; }
.breadcrumbs li + li::before { content: '›'; color: var(--text-subtle); }

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .current { color: var(--text); font-weight: 600; }

/* ========================================================================
   CANCER TYPE DETAIL PAGE
   ======================================================================== */
.type-hero {
    padding: 4rem 0 2.5rem;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.type-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 70% at 100% 0%, var(--accent-color, rgba(232,137,110,0.15)) 0%, transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.type-hero .container { position: relative; z-index: 1; }

.type-hero .type-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: var(--r-pill);
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.type-hero h1 {
    max-width: 820px;
    margin-bottom: 1rem;
}

.type-hero .type-subtitle {
    font-size: 1.08rem;
    color: var(--text-light);
    max-width: 760px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.type-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    max-width: 820px;
    background: #fff;
    padding: 1.25rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-xs);
}

.type-hero-stat {
    padding: 0.5rem 1rem;
    border-left: 1px solid var(--border-soft);
    text-align: left;
}

.type-hero-stat:first-child { border-left: none; }

.type-hero-stat .label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.type-hero-stat .value {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Content layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3.5rem;
    align-items: start;
}

.content-main { min-width: 0; }

.content-sidebar {
    position: sticky;
    top: 120px;
}

.info-section { margin-bottom: 3rem; }

.info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 1.1rem;
}

.info-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    bottom: 0.25em;
    width: 4px;
    border-radius: 4px;
    background: var(--accent);
}

.info-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

/* Treatment list */
.treatment-list { display: grid; gap: 0.75rem; }

.treatment-item {
    background: #fff;
    border-radius: var(--r-md);
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-soft);
    border-left: 4px solid var(--primary);
    transition: all var(--t);
}

.treatment-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
    border-left-color: var(--accent);
}

.treatment-item .treatment-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-body);
}

.treatment-item .treatment-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
}

/* Risk factors */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.6rem;
}

.risk-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-sm);
    font-size: 0.93rem;
    color: var(--text-light);
}

.risk-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* Stage badges */
.stages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stage-badge {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    padding: 0.55rem 1.1rem;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-light);
    transition: all var(--t);
}

.stage-badge:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ========================================================================
   FAQ
   ======================================================================== */
.faq-list { display: grid; gap: 0.75rem; }

.faq-item {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all var(--t);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
    color: var(--text);
    font-family: var(--font-body);
    gap: 1rem;
    transition: color var(--t);
}

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

.faq-question .icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
    transition: all var(--t);
}

.faq-item.active .faq-question .icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

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

.faq-answer-inner {
    padding: 0 1.5rem 1.4rem;
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.98rem;
}

/* ========================================================================
   SIDEBAR WIDGETS
   ======================================================================== */
.sidebar-widget {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    transition: box-shadow var(--t);
}

.sidebar-widget:hover { box-shadow: var(--shadow-xs); }

.sidebar-widget h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.callback-widget {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
}

.callback-widget::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.35;
    border-radius: 50%;
}

.callback-widget h3 { color: #fff; font-family: var(--font-display); font-weight: 500; }

.callback-widget p {
    opacity: 0.88;
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.callback-form { position: relative; z-index: 1; }

.callback-form input,
.callback-form select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    transition: all var(--t);
}

.callback-form input::placeholder { color: rgba(255,255,255,0.6); }

.callback-form input:focus,
.callback-form select:focus {
    outline: none;
    border-color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.15);
}

.callback-form .btn-callback {
    width: 100%;
    padding: 0.95rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
    box-shadow: 0 6px 16px -8px rgba(0,0,0,0.35);
    letter-spacing: 0.01em;
}

.callback-form .btn-callback:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -10px rgba(0,0,0,0.5);
}

.callback-widget .micro {
    font-size: 0.78rem;
    opacity: 0.7;
    margin-top: 0.8rem;
    margin-bottom: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

/* Sidebar nav */
.nav-links { list-style: none; }
.nav-links li { border-bottom: 1px solid var(--border-soft); }
.nav-links li:last-child { border-bottom: none; }
.nav-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
}
.nav-links a:hover { color: var(--primary); padding-left: 0.3rem; }
.nav-links a::after { content: '›'; color: var(--text-subtle); font-size: 1.2rem; }

/* ========================================================================
   CLINICAL TRIALS
   ======================================================================== */
.trials-grid { display: grid; gap: 1rem; }

.trial-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-md);
    padding: 1.5rem;
    transition: all var(--t);
}

.trial-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.trial-card .trial-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.8rem;
    border-radius: var(--r-pill);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.trial-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.trial-status.recruiting { background: #E6F4EC; color: #2E7D4E; }
.trial-status.active     { background: #E3F0F7; color: #185B86; }
.trial-status.completed  { background: #F3EEFC; color: #5A3AA8; }

.trial-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    font-family: var(--font-display);
    font-weight: 500;
}

.trial-card .card-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.trial-card .trial-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0.75rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-soft);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.trial-card .trial-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.trial-card .trial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.85rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.trials-search-form {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 1.85rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-xs);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: all var(--t);
    background: #fff;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14,94,91,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.55;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1.5;
}
.checkbox-label input { margin-top: 0.25rem; flex-shrink: 0; }

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.9rem;
    border: none;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    transition: all var(--t);
    text-decoration: none;
    letter-spacing: 0.005em;
    line-height: 1.2;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 22px -10px rgba(14,94,91,0.5);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px -12px rgba(14,94,91,0.6);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 22px -10px rgba(232,137,110,0.6);
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px -12px rgba(232,137,110,0.7);
}

.btn-secondary {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    box-shadow: inset 0 0 0 1.5px var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: inset 0 0 0 1.5px var(--primary);
}

.btn-white {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    background: #fff;
    color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost-white {
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.35);
}

.btn-ghost-white:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.6);
}

.btn-lg { padding: 1.05rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.85rem; }

.btn svg { width: 18px; height: 18px; }

/* ========================================================================
   BIG CTA SECTION (call us)
   ======================================================================== */
.cta-section {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content h2 {
    color: #fff;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}

.cta-content h2 em {
    font-style: italic;
    color: var(--accent-soft);
    font-weight: 400;
}

.cta-content p {
    color: rgba(255,255,255,0.88);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 520px;
}

.cta-methods {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.cta-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.08);
    border-radius: var(--r-md);
    border: 1px solid rgba(255,255,255,0.14);
    transition: all var(--t);
}

.cta-method:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
}

.cta-method .method-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.cta-method .method-icon svg { width: 20px; height: 20px; }

.cta-method .method-label {
    font-size: 0.82rem;
    opacity: 0.72;
}

.cta-method .method-value {
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
}
.cta-method .method-value a { color: #fff; }

/* Form card variant for CTA right-column */
.cta-form-card {
    background: #fff;
    color: var(--text);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.cta-form-card .badge {
    position: absolute;
    top: -14px;
    left: 2rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: var(--r-pill);
    letter-spacing: 0.04em;
    box-shadow: 0 8px 16px -6px rgba(232,137,110,0.5);
}

.cta-form-card h3 {
    font-size: 1.55rem;
    margin-bottom: 0.4rem;
}

.cta-form-card .form-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ========================================================================
   DATA BADGES
   ======================================================================== */
.data-sources {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0;
}

.data-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-pill);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
}

.data-source-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

/* ========================================================================
   STATES
   ======================================================================== */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.spinner {
    width: 38px;
    height: 38px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.empty-state .empty-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.6;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    background: var(--text);
    color: #fff;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    font-weight: 500;
    transform: translateY(140%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 10000;
    max-width: 400px;
    font-size: 0.95rem;
}

.toast.show { transform: translateY(0); }
.toast.success { background: #1E6B44; }
.toast.error   { background: #B43B2E; }

/* ========================================================================
   FOOTER
   ======================================================================== */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 4.5rem 0 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-about .logo {
    color: #fff;
    margin-bottom: 1rem;
}
.footer-about .logo svg { color: var(--accent-soft); }
.footer-about .logo span { color: var(--accent-soft); }

.footer-about p {
    font-size: 0.93rem;
    line-height: 1.7;
    max-width: 420px;
}

.footer-about .data-source-badge {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}
.footer-about .data-source-badge .badge-dot { background: #2ECC71; }

.footer-col h4 {
    color: #fff;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-family: var(--font-body);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }

.footer-col a {
    color: rgba(255,255,255,0.62);
    font-size: 0.93rem;
    transition: color var(--t);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }

.footer-disclaimer {
    background: rgba(0,0,0,0.22);
    padding: 1.25rem 0;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-disclaimer strong { color: #fff; }

/* ========================================================================
   FLOATING CTA (mobile sticky + FAB)
   ======================================================================== */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.fab-button {
    min-width: 58px;
    height: 58px;
    padding: 0 1.2rem 0 1rem;
    border-radius: var(--r-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--t);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-body);
    background: var(--accent);
}

.fab-button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.fab-button svg { width: 20px; height: 20px; }

.fab-phone.fab-compact {
    min-width: 58px;
    width: 58px;
    padding: 0;
}

/* Bottom sticky mobile bar */
.mobile-stickybar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 30px -15px rgba(16,48,46,0.2);
}

.mobile-stickybar .bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mobile-stickybar .btn {
    width: 100%;
    padding: 0.85rem 0.5rem;
    font-size: 0.92rem;
}

/* ========================================================================
   MODAL
   ======================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,63,61,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    max-height: 95vh;
    overflow-y: auto;
}

.modal-overlay.active .modal { transform: scale(1) translateY(0); }

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-cream);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t);
}
.modal-close:hover { background: var(--primary); color: #fff; }

.modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.modal-icon svg { width: 28px; height: 28px; }

.modal h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.modal .modal-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
    line-height: 1.6;
}

.modal .form-group { margin-bottom: 0.85rem; }

.modal .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.modal .micro {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.85rem;
    margin-bottom: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.modal .micro svg { width: 13px; height: 13px; color: var(--primary); }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 1100px) {
    .hero .container,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-copy h1 { max-width: 100%; }

    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .content-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; max-width: 520px; }

    .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
    .reassurance-item { border-left: none; }
    .reassurance-item:nth-child(3) { border-top: 1px solid var(--border); padding-top: 1.25rem; }
    .reassurance-item:nth-child(4) { border-top: 1px solid var(--border); padding-top: 1.25rem; }

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

    .type-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .type-hero-stat  { border-left: none; border-top: 1px solid var(--border-soft); padding-top: 0.75rem; }
    .type-hero-stat:nth-child(-n+2) { border-top: none; padding-top: 0.5rem; }
}

@media (max-width: 768px) {
    html { font-size: 15.5px; }

    .section   { padding: 4rem 0; }
    .hero      { padding: 3rem 0 3.5rem; }
    .cta-section { padding: 4rem 0; }

    .header-top      { display: none; }
    .mobile-toggle   { display: block; }

    .main-nav { display: none; }
    .main-nav.open {
        display: flex;
        position: fixed;
        inset: 0;
        top: 72px;
        background: var(--bg-cream);
        z-index: 999;
        padding: 1.5rem;
        overflow-y: auto;
    }
    .main-nav.open ul { flex-direction: column; width: 100%; }
    .main-nav.open a {
        width: 100%;
        padding: 1.1rem;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border-soft);
        border-radius: 0;
    }
    .main-nav.open a.nav-cta {
        margin-top: 1rem;
        text-align: center;
        border-radius: var(--r-pill) !important;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-about { max-width: 100%; }
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

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

    .mobile-stickybar { display: block; }
    body { padding-bottom: 80px; }
    .floating-cta { display: none; }

    .hero-card { padding: 1.75rem; }
    .cta-form-card { padding: 2rem 1.5rem; }

    .info-section h2 { font-size: 1.55rem; }
}

@media (max-width: 480px) {
    .reassurance-grid { grid-template-columns: 1fr; }
    .reassurance-item { border-top: 1px solid var(--border); padding-top: 1rem; }
    .reassurance-item:first-child { border-top: none; padding-top: 0; }

    .type-hero-stats { grid-template-columns: 1fr; padding: 0.75rem; }
    .type-hero-stat { padding: 0.65rem 0.75rem; border-top: 1px solid var(--border-soft); }
    .type-hero-stat:first-child { border-top: none; }
}

/* Print */
@media print {
    .site-header, .site-footer, .floating-cta, .mobile-stickybar,
    .callback-widget, .modal-overlay, .cta-section { display: none; }
    .content-layout { grid-template-columns: 1fr; }
    body { color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
}
