/* ============================================
   ClearOnc Insights — Website Styles
   Brand Guidelines Aligned Edition (FY26)
   ============================================ */

/* --- CSS Variables / Design Tokens (Brand Guidelines) --- */
:root {
    /* Primary Colors */
    --color-navy: #20366A;           /* Moffitt Deep Blue */
    --color-navy-light: #4E5D88;     /* Moffitt Deep Blue - tint 1 */
    --color-navy-lighter: #8F9AB4;   /* Moffitt Deep Blue - tint 2 */
    --color-teal: #24C8B9;           /* Brand Teal */
    --color-teal-light: #62D4C7;     /* Teal - tint 1 */
    --color-teal-bg: #D1F1ED;        /* Teal - tint 3 (background) */
    --color-accent: #FF7900;         /* Brand Orange */
    --color-accent-hover: #FF954B;   /* Orange - tint 1 */
    --color-accent-light: #FFBD91;   /* Orange - tint 2 */
    --color-light-blue: #A2DCE9;     /* Light Blue */
    --color-light-blue-bg: #E8F6F8;  /* Light Blue - tint 3 (background) */
    --color-midnight: #00232B;       /* Midnight Blue */
    --color-sand: #E6E5D3;           /* Sand */
    --color-sand-light: #F2F2E9;     /* Sand - tint 2 */
    --color-sand-bg: #F9F8F4;        /* Sand - tint 3 (lightest) */

    /* Text */
    --color-text: #00232B;           /* Midnight Blue for body text */
    --color-text-light: #364F56;     /* Midnight Blue - tint 1 */
    --color-text-lighter: #819296;   /* Midnight Blue - tint 2 */

    /* Backgrounds */
    --color-bg: #FFFFFF;
    --color-bg-alt: #F9F8F4;         /* Sand lightest */
    --color-bg-warm: #F2F2E9;        /* Sand light */
    --color-bg-dark: #20366A;        /* Moffitt Deep Blue */
    --color-border: #D1EDF4;         /* Light Blue tint for borders */
    --color-red: #D81271;            /* Brand Magenta for errors/alerts */

    /* Typography — Outfit (≈ Kallisto) + Inter (≈ Acumin Pro Wide) */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(32, 54, 106, 0.06);
    --shadow-md: 0 4px 16px rgba(32, 54, 106, 0.08);
    --shadow-lg: 0 8px 32px rgba(32, 54, 106, 0.12);
    --shadow-xl: 0 16px 48px rgba(32, 54, 106, 0.16);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Hide HubSpot branding badge/sprocket --- */
#hs-eu-cookie-confirmation,
.hs-cta-wrapper,
#hubspot-messages-iframe-container,
.sprocket-icon,
#hs_show_banner_button,
#hs-web-interactives-top-anchor,
.hs-web-interactives-top-anchor,
#LeadinModal-header_container,
.leadinModal,
#hubspot-conversations-inline-parent,
#hubspot-conversations-inline-iframe,
.widget-align-right,
[data-test-id="chat-widget-wrapper"],
#hs_chatflows_container {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

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

/* --- Typography Utilities --- */
.text-gradient {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, var(--color-teal), var(--color-teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-teal);
    background: var(--color-teal-bg);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-navy);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.section-title-light {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 0.01em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Animation --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
    transition-delay: var(--delay, 0s);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(36, 200, 185, 0.3); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(36, 200, 185, 0); }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 121, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

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

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-teal);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.btn-text:hover {
    color: var(--color-teal-light);
    gap: 10px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.logo-img.logo-light {
    height: 60px;
}

.footer-brand .logo-img {
    height: 64px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--color-teal);
}

.nav-cta {
    background: var(--color-accent) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
    background: var(--color-accent-hover) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    transition: all var(--transition);
    border-radius: 2px;
}

/* ============================================
   1. HERO — Warm, Photo-Driven
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 0;
    background: linear-gradient(180deg, var(--color-light-blue-bg) 0%, #ffffff 60%, var(--color-bg-alt) 100%);
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-left {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-teal);
    background: var(--color-teal-bg);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(36, 200, 185, 0.15);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-navy);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* --- Hero Image --- */
.hero-image-wrapper {
    position: relative;
}

.hero-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(36, 200, 185, 0.15);
    z-index: -1;
}

.hero-float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    animation: float 6s ease-in-out infinite;
}

.hero-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-teal-bg);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.hero-float-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-navy);
}

.hero-float-card span {
    font-size: 0.8rem;
    color: var(--color-text-lighter);
}

/* --- Hero Trust Strip --- */
.hero-trust {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.6);
}

.hero-trust .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.hero-trust strong {
    color: var(--color-navy);
    font-weight: 700;
}

.trust-sep {
    color: var(--color-border);
    margin: 0 4px;
}

/* ============================================
   PHOTO DIVIDER — Warm Full-Width Section
   ============================================ */
.photo-divider {
    position: relative;
    overflow: hidden;
}

.photo-divider-inner {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color-navy);
}

.photo-divider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32, 54, 106, 0.82), rgba(255, 121, 0, 0.35));
}

.photo-divider-quote {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.photo-divider-quote p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
    font-style: italic;
}

/* ============================================
   PATIENT IMPACT — Warm Photo Section
   ============================================ */
.patient-impact {
    position: relative;
    overflow: hidden;
}

.patient-impact-inner {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center top;
    background-color: var(--color-navy);
}

.patient-impact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32, 54, 106, 0.88), rgba(32, 54, 106, 0.75));
}

.patient-impact-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.patient-impact-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.patient-impact-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 48px;
}

.patient-impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pi-stat {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.pi-stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #24C8B9;
    margin-bottom: 4px;
}

.pi-stat span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   2. FINANCIAL RISK — Dark Section
   ============================================ */
.financial-risk {
    padding: 80px 0;
    background: var(--color-navy);
    text-align: center;
}

.risk-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 40px;
}

.risk-stat {
    padding: 32px 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.risk-stat:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
    border-color: rgba(36, 200, 185, 0.3);
}

.risk-stat-number {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #24C8B9;
    line-height: 1;
    margin-bottom: 8px;
}

.risk-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.risk-supporting {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: normal;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   3. PROBLEM — Two Column Layout
   ============================================ */
.problem-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.problem-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.problem-two-col {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.problem-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.problem-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.1);
    color: var(--color-red);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.problem-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(36, 200, 185, 0.1);
    color: var(--color-teal);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.problem-divider {
    width: 1px;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(to bottom, transparent, var(--color-border), transparent);
}

.problem-list-impact li {
    color: var(--color-text);
    font-weight: 500;
}

/* ============================================
   4. BREAKTHROUGH — Feature Blocks
   ============================================ */
.breakthrough {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.breakthrough .section-header {
    margin-bottom: 56px;
}

.feature-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-block {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all var(--transition);
}

.feature-block:hover {
    border-color: rgba(36, 200, 185, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(36, 200, 185, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--color-teal);
}

.feature-block h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-block p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.breakthrough-supporting {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text-light);
    margin-top: 40px;
    font-style: italic;
}

/* ============================================
   5. HOW IT WORKS — Horizontal Workflow
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--color-bg);
}

.how-it-works .section-title {
    text-align: center;
    margin-bottom: 56px;
}

.workflow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}

.workflow-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.workflow-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-teal);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.workflow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--color-teal-bg);
    border-radius: var(--radius-md);
    margin: 0 auto 16px;
    color: var(--color-teal);
}

.workflow-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.workflow-step p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.workflow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    padding-top: 48px;
    flex-shrink: 0;
}

/* ============================================
   6. MOFFITT AUTHORITY — With Photo
   ============================================ */
.moffitt-authority {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.moffitt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.moffitt-text .section-title {
    text-align: left;
}

.moffitt-text > p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.moffitt-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.moffitt-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
}

.moffitt-bullets li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Moffitt Image --- */
.moffitt-image {
    position: relative;
}

.moffitt-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.moffitt-image-badge {
    position: absolute;
    bottom: -16px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.moffitt-image-badge span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.3;
}

/* Legacy badge styles (kept for about page) */
.moffitt-badge {
    display: flex;
    justify-content: center;
}

.moffitt-badge-inner {
    text-align: center;
    padding: 48px 36px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    border-radius: var(--radius-lg);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.moffitt-badge-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(36, 200, 185, 0.15), transparent 60%);
    pointer-events: none;
}

.moffitt-badge-icon {
    position: relative;
    margin-bottom: 20px;
}

.moffitt-badge-label {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    margin-bottom: 8px;
}

.moffitt-badge-sub {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

/* ============================================
   7. LONGITUDINAL CARE
   ============================================ */
.longitudinal {
    padding: 80px 0;
    background: var(--color-bg);
}

.longitudinal .section-header {
    margin-bottom: 40px;
}

.long-care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.long-care-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition);
}

.long-care-item:hover {
    border-color: rgba(36, 200, 185, 0.3);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.long-care-item svg {
    flex-shrink: 0;
}

.long-care-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 32px;
}

/* ============================================
   8. ROI / ECONOMIC IMPACT
   ============================================ */
.roi-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-navy), #00232B);
    position: relative;
    overflow: hidden;
}

.roi-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(36, 200, 185, 0.15), transparent 60%);
    pointer-events: none;
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 40px;
    position: relative;
}

.roi-stat {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.roi-stat:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
    border-color: rgba(36, 200, 185, 0.3);
}

.roi-stat-number {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #24C8B9;
    line-height: 1;
    margin-bottom: 4px;
}

.roi-stat-context {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.roi-stat p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.roi-example {
    max-width: 800px;
    margin: 0 auto;
    padding: 28px 36px;
    background: rgba(36, 200, 185, 0.1);
    border: 1px solid rgba(36, 200, 185, 0.2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-align: center;
    position: relative;
}

.roi-example strong {
    color: #24C8B9;
}

/* ============================================
   9. BUILT FOR — Who It's For
   ============================================ */
.built-for {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.built-for .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.built-for-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.built-for-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    color: var(--color-teal);
}

.built-for-card:hover {
    border-color: rgba(36, 200, 185, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.built-for-card svg {
    margin-bottom: 14px;
}

.built-for-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.3;
}

.built-for-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-lighter);
    margin-top: 28px;
}

/* ============================================
   10. TRUST & COMPLIANCE
   ============================================ */
.trust-compliance {
    padding: 80px 0;
    background: var(--color-bg);
}

.trust-compliance .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}

.trust-card:hover {
    border-color: rgba(36, 200, 185, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.trust-card svg {
    margin-bottom: 16px;
}

.trust-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ============================================
   11. TEAM — Minimal
   ============================================ */
.team-minimal {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.team-minimal .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.team-min-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.team-min-card {
    text-align: center;
    padding: 24px 16px;
}

.team-min-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-navy), #4E5D88);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 16px;
    position: relative;
}

.team-min-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(36, 200, 185, 0.2);
}

.team-min-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.team-min-card span {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* ============================================
   Impact Stats (Evidence-Based Impact section)
   ============================================ */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 640px;
    margin: 40px auto 0;
}

.impact-stat {
    padding: 32px 28px;
    border-radius: var(--radius-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition);
}

.impact-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-teal);
}

.impact-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-teal);
    line-height: 1;
    margin-bottom: 12px;
}

.impact-stat-label {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.faq-category {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-teal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-teal-bg);
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-navy);
    line-height: 1.4;
    transition: color var(--transition);
}

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

.faq-icon {
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform var(--transition);
    color: var(--color-teal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-contact {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-lighter);
}

.faq-contact a {
    color: var(--color-teal);
    text-decoration: none;
    font-weight: 500;
}

.faq-contact a:hover {
    text-decoration: underline;
}

/* ============================================
   12. FINAL CTA — With Background Photo
   ============================================ */
.final-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color-navy);
}

.final-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32, 54, 106, 0.92), rgba(32, 54, 106, 0.85));
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(36, 200, 185, 0.2), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(36, 200, 185, 0.12), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.final-cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.final-cta-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.final-cta-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.final-cta-form {
    position: relative;
}

/* --- Form Card --- */
.cta-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-xl);
}

.cta-form-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 10px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    background: var(--color-bg);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(36, 200, 185, 0.12);
}

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

.form-group select {
    cursor: pointer;
    appearance: auto;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 64px 0 32px;
    background: var(--color-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-powered {
    font-size: 0.75rem !important;
}

/* ============================================
   DIFFERENTIATOR — Key Value Proposition
   ============================================ */
.differentiator {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-teal-bg) 0%, var(--color-light-blue-bg) 50%, #ffffff 100%);
    position: relative;
}

.differentiator-content {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.differentiator-lead {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.journey-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto 48px;
}

.journey-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.journey-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(36, 200, 185, 0.12);
    border: 2px solid rgba(36, 200, 185, 0.2);
    border-radius: 50%;
    margin: 0 auto 16px;
    color: var(--color-teal);
    transition: all var(--transition);
}

.journey-step:hover .journey-icon {
    background: var(--color-teal);
    color: #fff;
    border-color: var(--color-teal);
    transform: scale(1.1);
}

.journey-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 6px;
    line-height: 1.3;
}

.journey-step p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.journey-connector {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-teal-light));
    margin-top: 32px;
    flex-shrink: 0;
    border-radius: 1px;
}

.differentiator-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(36, 200, 185, 0.15);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.differentiator-note strong {
    color: var(--color-teal);
}

/* ============================================
   SOLUTION PAGE — Hero & CTA
   ============================================ */
.solution-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--color-light-blue-bg) 0%, #ffffff 100%);
    overflow: hidden;
}

.solution-hero-content {
    max-width: 720px;
}

.solution-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--color-navy);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.solution-hero-lead {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Solution page nav active state */
.nav-active {
    color: var(--color-teal) !important;
    font-weight: 600 !important;
}

.solution-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-navy), #00232B);
    position: relative;
    overflow: hidden;
}

.solution-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(36, 200, 185, 0.15), transparent 60%);
    pointer-events: none;
}

.solution-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.solution-cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.solution-cta-content > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 36px;
}

.solution-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.solution-cta-buttons .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.solution-cta-buttons .btn-outline:hover {
    border-color: #fff;
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-left {
        max-width: 100%;
        text-align: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-image-accent {
        display: none;
    }
    .risk-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .problem-two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .problem-divider {
        width: 100%;
        height: 1px;
        min-height: auto;
    }
    .feature-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
    .workflow {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .workflow-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }
    .moffitt-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .moffitt-photo {
        height: 320px;
    }
    .moffitt-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .long-care-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .roi-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .patient-impact-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .built-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-min-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .journey-timeline {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    .journey-step {
        flex: 0 0 calc(50% - 48px);
    }
    .journey-connector {
        display: none;
    }
    .final-cta-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .final-cta-text {
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        z-index: 999;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 110px 0 0;
        min-height: auto;
    }

    .hero-photo {
        height: 360px;
    }

    .hero-float-card {
        left: 50%;
        transform: translateX(-50%);
        animation: none;
    }

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

    .feature-blocks {
        grid-template-columns: 1fr;
    }

    .long-care-grid {
        grid-template-columns: 1fr;
    }

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

    .patient-impact-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .built-for-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .team-min-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .hero-trust .container {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 0.8rem;
    }

    .photo-divider-inner {
        padding: 64px 0;
    }

    .photo-divider-quote p {
        font-size: 1.1rem;
    }

    .patient-impact-inner {
        padding: 64px 0;
    }

    .journey-timeline {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .journey-step {
        flex: none;
        width: 100%;
        max-width: 280px;
    }
    .journey-connector {
        display: none;
    }

    .solution-hero {
        padding: 120px 0 60px;
    }

    .solution-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .btn-text {
        width: auto;
    }
    .built-for-grid {
        grid-template-columns: 1fr;
    }
    .team-min-grid {
        grid-template-columns: 1fr;
    }
    .hero-photo {
        height: 280px;
    }
}
