/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

:root {
    /* Brand Colors - Equilibrium Teal (Updated to match branding #2f8aa0) */
    --primary-50: #eef7f8;
    --primary-100: #d4ecef;
    --primary-200: #add9e0;
    --primary-300: #76bac7;
    --primary-400: #2f8aa0;
    --primary-500: #356d79;
    --primary-600: #2c5c66;
    --primary-700: #244b53;
    --primary-800: #1d3c42;
    --primary-900: #173035;
    --primary-950: #0f1f22;

    /* Accent Colors - Clean Blue */
    --accent-50: var(--primary-50);
    --accent-100: var(--primary-100);
    --accent-200: var(--primary-200);
    --accent-300: var(--primary-300);
    --accent-400: var(--primary-400);
    --accent-500: var(--primary-500);
    --accent-600: var(--primary-600);
    --accent-700: var(--primary-700);
    --accent-800: var(--primary-800);
    --accent-900: var(--primary-900);

    /* Neutrals */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Fonts */
    --font-sans: 'Lato', sans-serif;
    --font-serif: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Layout */
    --max-width: 1280px;
    --header-height: 96px;
    --top-bar-height: 40px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.6;
    background-color: white;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 0.75rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

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

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-1 {
    flex: 1;
}

.flex-grow {
    flex-grow: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-10 {
    gap: 2.5rem;
}

.grid {
    display: grid;
}

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

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .md\:gap-12 {
        gap: 3rem;
    }

    .md\:p-16 {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

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

.uppercase {
    text-transform: uppercase;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-tight {
    letter-spacing: -0.02em;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-light {
    font-weight: 300;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

@media (min-width: 768px) {
    .md\:text-base {
        font-size: 1rem;
    }

    .md\:text-5xl {
        font-size: 3rem;
    }

    .md\:text-7xl {
        font-size: 4.5rem;
    }

    .md\:border-b-0 {
        border-bottom: 0;
    }

    .md\:border-r {
        border-right: 1px solid;
    }

    .md\:p-32 {
        padding: 8rem;
    }

    .md\:flex-row {
        flex-direction: row;
    }
}

.text-white {
    color: white;
}

.text-primary-50 {
    color: var(--primary-50);
}

.text-primary-100 {
    color: var(--primary-100);
}

.text-primary-600 {
    color: var(--primary-600);
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-gray-800 {
    color: var(--gray-800);
}

.text-gray-900 {
    color: var(--gray-900);
}

.text-white\/90 {
    color: rgba(255, 255, 255, 0.9);
}

.bg-white {
    background-color: white;
}

.bg-primary-600 {
    background-color: var(--primary-600);
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.block {
    display: block;
}

.hidden {
    display: none;
}

.w-full {
    width: 100%;
}

.w-4 {
    width: 1rem;
}

.h-full {
    height: 100%;
}

.h-4 {
    height: 1rem;
}

.h-64 {
    height: 16rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.p-0 {
    padding: 0;
}

.p-3 {
    padding: 0.75rem;
}

.p-8 {
    padding: 2rem;
}

.p-16 {
    padding: 4rem;
}

.p-12 {
    padding: 3rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-20 {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.border-b {
    border-bottom: 1px solid;
}

.border-gray-50 {
    border-color: var(--gray-50);
}

.border-gray-200 {
    border-color: var(--gray-200);
}

.border-white\/30 {
    border-color: rgba(255, 255, 255, 0.3);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-sm {
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.transition-all {
    transition: all 0.3s ease;
}

.hover\:underline:hover {
    text-decoration: underline;
}

.hover\:text-primary-600:hover {
    color: var(--primary-600);
}

.hover\:bg-gray-50:hover {
    background-color: var(--gray-50);
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:bg-white\/10:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.overflow-hidden {
    overflow: hidden;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

/* Custom Sections */

/* Header */
.top-bar {
    height: var(--top-bar-height);
    background-color: var(--gray-100);
    font-size: 0.875rem;
    color: var(--gray-600);
}

.main-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(14px) saturate(1.6);
    backdrop-filter: blur(14px) saturate(1.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.logo-container img {
    height: 60px;
    width: auto;
}

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

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: 1.5rem;
    color: var(--gray-700);
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Startup Splash (Marketing/PWA) */
.marketing-startup-splash {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: #2f8aa0;
}

.marketing-startup-splash__content {
    display: grid;
    place-items: center;
    padding: 1rem;
    animation: marketing-startup-splash-in 0.8s ease-out forwards;
}

.marketing-startup-splash__logo {
    width: clamp(120px, 30vw, 180px);
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

@keyframes marketing-startup-splash-in {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.marketing-startup-splash--exit {
    animation: marketing-startup-splash-out 0.52s ease forwards;
}

@keyframes marketing-startup-splash-out {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marketing-startup-splash {
        display: none !important;
    }
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    backdrop-filter: blur(20px) saturate(1.5);
    min-width: 280px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 2px solid var(--primary-600);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.2s ease;
    white-space: nowrap;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background-color: rgba(0, 128, 128, 0.06);
    color: var(--primary-600);
    border-left-color: var(--primary-600);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--gray-100);
    margin: 0.5rem 0;
}

/* Mobile Submenu Styles */
.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0.25rem;
    font-weight: 600;
    color: var(--primary-300);
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-submenu-toggle:hover {
    color: var(--primary-200);
}

.mobile-submenu-heading {
    color: var(--primary-300);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-submenu.active {
    max-height: 800px;
    padding: 0.5rem 0;
}

.mobile-submenu-link {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.mobile-submenu-link:hover {
    color: var(--primary-300);
    border-left-color: var(--primary-400);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-link {
    display: block;
    padding: 1rem 0.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.mobile-menu-link:hover {
    color: var(--primary-300);
    padding-left: 0.5rem;
}

.submenu-icon {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
}

.btn-icon {
    color: var(--gray-700);
    padding: 0.5rem;
    font-size: 1.25rem;
}

/* Hero */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: calc(var(--header-height) * -1);
    /* Full bleed */
}

.hero--subpage {
    height: 60vh !important;
    min-height: 480px;
}

@media (max-width: 767px) {
    .hero {
        margin-top: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding-top: calc(var(--header-height) + var(--top-bar-height) + 0.5rem);
        padding-bottom: 1.5rem;
        height: auto;
        min-height: auto;
        background-color: var(--primary-700);
    }

    .hero--subpage {
        padding-top: calc(var(--header-height) + 2rem);
    }

    .hero::before {
        display: none;
    }

    .hero picture {
        display: block;
        position: relative;
        z-index: 1;
        order: 2;
        width: 100%;
        padding: 0 1rem;
    }

    .hero .hero-bg {
        position: static;
        display: block;
        width: 100%;
        height: auto;
        inset: auto;
        z-index: 1;
        object-fit: cover;
        border-radius: 1.25rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hero-content {
        order: 1;
        padding: 2rem 1.5rem !important;
        padding-top: 2rem !important;
        border-radius: 1.25rem;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
        margin-bottom: 1.5rem !important;
        width: calc(100% - 2rem) !important;
        max-width: none !important;
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 8vw, 2.1rem) !important;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-content p {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 1.5rem !important;
    }

    /* Restore original hero behavior for product pages */
    .hero--dimpless,
    .hero--optiweigh,
    .hero--purebody {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        height: auto;
    }

    .hero--dimpless::before,
    .hero--optiweigh::before,
    .hero--purebody::before {
        display: block;
    }

    .hero--dimpless picture,
    .hero--optiweigh picture,
    .hero--purebody picture {
        position: static;
        order: unset;
        padding: 0;
    }

    .hero--dimpless .hero-bg,
    .hero--optiweigh .hero-bg,
    .hero--purebody .hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    /* Lighter overlay for glassmorphism */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-top: var(--header-height);
    /* Glassmorphism / Frosted Glass Effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Glassmorphism Utility - Reusable Glass Panel */
.glass-panel {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .glass-panel {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }

    .product-page .hero-split-content h1 {
        line-height: 1.02 !important;
    }
}

/* Transparent variant for cards inside glass panels */
.hero-split-card-glass {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-600);
}

.btn-teal {
    background-color: var(--primary-600);
    color: white;
}

.btn-teal:hover {
    background-color: var(--primary-700);
    border-color: var(--primary-700);
}

.btn-white {
    background-color: white;
    color: var(--primary-800);
}

.btn-white:hover {
    background-color: var(--gray-50);
}

.btn-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Sections specific */
.bg-teal-container {
    background: var(--primary-600);
    color: white;
    border-radius: 2rem;
    padding: 4rem 2rem;
}

.feature-section {
    color: white;
    overflow: hidden;
}

.split-section {
    display: grid;
    width: 100%;
}

/* Footer */
.site-footer {
    background-color: white;
    color: var(--gray-800);
    padding-top: 5rem;
}

.site-footer-topline {
    height: 4px;
    background: var(--primary-600);
    margin-bottom: 2rem;
}

.site-footer-topnav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.site-footer-topnav-link {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-800);
    opacity: 0.9;
}

.site-footer-topnav-link:hover {
    color: var(--primary-600);
    opacity: 1;
}

.site-footer-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 2.5rem 0 0;
}

.site-footer-brand-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-200);
    flex-wrap: wrap;
    gap: 2rem;
}

.site-footer-legal,
.site-footer-social {
    display: flex;
    gap: 1.5rem;
}

.site-footer-legal {
    justify-content: center;
    flex-wrap: wrap;
}

.site-footer-social {
    justify-content: flex-end;
}

.site-footer-legal-link {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.site-footer-legal-link:hover {
    color: var(--primary-600);
}

.site-footer-bottombar {
    background-color: white;
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-600);
    text-align: center;
}

.site-footer-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: var(--gray-600);
    padding: 1rem 0 2rem;
    flex-wrap: wrap;
    line-height: 1.6;
}

.site-footer-contact-sep {
    color: var(--gray-300);
}

.site-footer-logo {
    max-width: 180px;
    height: auto;
    display: block;
}

.site-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.site-footer-brand-lockup {
    display: flex;
    justify-content: center;
}

.site-footer-powered {
    font-size: 0.75rem;
    color: var(--primary-600);
    text-align: center;
    max-width: 720px;
    margin: 2.5rem auto 0;
    line-height: 1.5;
}

.site-footer-powered,
.site-footer-bottombar-inner {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.site-footer-social-link {
    color: var(--primary-600);
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-footer-social-link:hover {
    opacity: 1;
    color: var(--primary-600);
    transform: translateY(-2px);
}

.site-footer-bottombar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Responsive Footer Adjustments */
@media (max-width: 1024px) {
    .site-footer-brand-row {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .site-footer-legal,
    .site-footer-social {
        justify-content: center;
        gap: 1rem;
    }

    .site-footer-logo {
        max-width: 160px;
    }
}

@media (max-width: 640px) {
    .site-footer-topnav {
        flex-direction: column;
        gap: 1rem;
    }

    .site-footer-topnav-link {
        font-size: 1rem;
    }

    .site-footer-contact {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .site-footer-contact-sep {
        display: none;
    }

    .site-footer-logo {
        max-width: 140px;
    }

    .site-footer-powered {
        font-size: 0.7rem;
    }
}

/* Mobile Nav */
.md-only {
    display: block;
}

.hidden-md {
    display: none !important;
}

@media (min-width: 1024px) {
    .md-only {
        display: none !important;
    }

    .hidden-md {
        display: flex !important;
    }
}

#mobile-menu {
    bottom: 0 !important;
    background: var(--primary-500) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border-top: 3px solid var(--primary-600) !important;
    padding: 1.25rem 1.5rem !important;
}

#mobile-menu .nav-link,
#mobile-menu .mobile-menu-link {
    display: block;
    margin-left: 0 !important;
    padding: 1rem 0.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    letter-spacing: 0.02em;
}

#mobile-menu .nav-link:hover,
#mobile-menu .mobile-menu-link:hover {
    color: rgba(255, 255, 255, 0.72);
    padding-left: 0.5rem;
}

#mobile-menu .mobile-submenu-toggle .nav-link,
#mobile-menu .mobile-submenu-heading {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* CTA Hero */
.cta-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    max-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.cta-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

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

.cta-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.cta-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
    .cta-hero {
        min-height: 85vh;
        max-height: 85vh;
    }

    .cta-hero-title {
        font-size: 2.25rem;
    }

    .cta-hero-subtitle {
        font-size: 1.05rem;
    }
}

.cta-headline {
    padding: 4rem 0;
    background: transparent;
    text-align: center;
    color: var(--gray-800);
}

.cta-headline-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.cta-headline-em {
    font-weight: 700;
    color: var(--primary-600);
}

/* Blog Specific */
.blog-panel {
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    backdrop-filter: blur(18px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.blog-cta-row {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.blog-image-placeholder {
    background-color: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}

.blog-image-placeholder i {
    width: 48px;
    height: 48px;
}

.blog-article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .blog-article {
        grid-template-columns: 1fr 1.5fr;
    }
}

.blog-image-placeholder--article {
    height: 100%;
    min-height: 300px;
    border-radius: 2rem;
}

.blog-image-placeholder--card {
    height: 240px;
    border-radius: 1.5rem 1.5rem 0 0;
}

.blog-card-meta {
    display: inline-block;
    background: var(--primary-600);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.blog-card-points {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
    color: var(--gray-600);
}

.blog-card-points li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger animation delays for multiple elements */
.animate-fade-in-up:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-fade-in-up:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-fade-in-up:nth-child(3) {
    animation-delay: 0.3s;
}

.animate-fade-in-up:nth-child(4) {
    animation-delay: 0.4s;
}

.animate-fade-in-up:nth-child(5) {
    animation-delay: 0.5s;
}

.animate-fade-in-up:nth-child(6) {
    animation-delay: 0.6s;
}

/* =====================================
   Sleek UI Theme (Global Site Rollout)
   ===================================== */
.sleek-ui {
    background:
        radial-gradient(1100px 700px at -10% 8%, rgba(0, 128, 128, 0.1), transparent 62%),
        radial-gradient(860px 560px at 110% 76%, rgba(0, 128, 128, 0.08), transparent 58%),
        linear-gradient(180deg, #f7fcfc 0%, #ffffff 46%, #f7fbfb 100%);
}

.sleek-ui main {
    background:
        radial-gradient(1200px 520px at 50% 0%, rgba(0, 128, 128, 0.05), transparent 70%);
}

.sleek-ui .top-bar {
    background: #f1f5f9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--gray-600);
}

.sleek-ui .top-bar a {
    font-weight: 700;
    letter-spacing: 0.01em;
}

.sleek-ui .main-header {
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(18px) saturate(1.8);
    backdrop-filter: blur(18px) saturate(1.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 12px rgba(8, 24, 25, 0.06);
}

.sleek-ui .logo-container img {
    filter: drop-shadow(0 6px 10px rgba(0, 128, 128, 0.08));
}

.sleek-ui .nav-link {
    font-weight: 700;
    letter-spacing: 0.015em;
    color: #2f8aa0;
}

.sleek-ui .nav-link:hover,
.sleek-ui .nav-link.active {
    color: var(--primary-700);
}

.sleek-ui .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 128, 128, 0.14);
    border-top: 2px solid var(--primary-600);
    box-shadow: 0 20px 45px rgba(6, 18, 19, 0.16);
}

.sleek-ui .dropdown-link:hover {
    background-color: rgba(0, 128, 128, 0.09);
    color: var(--primary-700);
    border-left-color: var(--primary-600);
}

.sleek-ui .hero::before {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.52), rgba(0, 128, 128, 0.34), rgba(0, 128, 128, 0.28));
}

.sleek-ui .hero-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 26px 50px rgba(4, 21, 22, 0.26);
}

.sleek-ui .btn {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.28s ease;
}

.sleek-ui .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(4, 21, 22, 0.17);
}

.sleek-ui .btn-teal {
    background: linear-gradient(130deg, #2f8aa0 0%, #2f8aa0 54%, #2f8aa0 100%);
    color: white;
    border-color: transparent;
}

.sleek-ui .btn-teal:hover {
    background: linear-gradient(130deg, #2f8aa0 0%, #2f8aa0 58%, #2f8aa0 100%);
    border-color: transparent;
}

.sleek-ui .btn-outline {
    border-color: rgba(0, 128, 128, 0.32);
    color: var(--primary-700);
    background: rgba(255, 255, 255, 0.75);
}

.sleek-ui .btn-outline:hover {
    background: var(--primary-600);
    color: #ffffff;
    border-color: var(--primary-600);
}

.sleek-ui .btn-white {
    color: var(--primary-800);
    box-shadow: 0 10px 18px rgba(4, 21, 22, 0.15);
}

.sleek-ui .card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 128, 128, 0.14);
    border-radius: 1.2rem;
    box-shadow: 0 16px 30px rgba(5, 19, 20, 0.09);
}

.sleek-ui .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 40px rgba(5, 19, 20, 0.14);
}

.sleek-ui .bg-teal-container {
    background: linear-gradient(142deg, #2f8aa0 0%, #2f8aa0 52%, #2f8aa0 100%);
    box-shadow: 0 28px 48px rgba(0, 64, 69, 0.24);
}

.sleek-ui .feature-section {
    background: linear-gradient(140deg, #2f8aa0 0%, #2f8aa0 56%, #2f8aa0 100%);
}

.sleek-ui .cta-hero {
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 40px rgba(5, 19, 20, 0.22);
}

.sleek-ui .cta-hero-overlay {
    background: linear-gradient(140deg, rgba(5, 20, 22, 0.66) 0%, rgba(6, 52, 57, 0.58) 52%, rgba(5, 20, 22, 0.56) 100%);
}

.sleek-ui .site-footer {
    background: linear-gradient(180deg, #fbfefe 0%, #f0f8f7 100%);
    border-top: 1px solid rgba(0, 128, 128, 0.14);
}

.sleek-ui .site-footer-topline {
    background: linear-gradient(90deg, #2f8aa0 0%, #2f8aa0 55%, #2f8aa0 100%);
}

.sleek-ui .site-footer-topnav-link,
.sleek-ui .site-footer-legal-link {
    color: #2f8aa0;
}

.sleek-ui .site-footer-topnav-link:hover,
.sleek-ui .site-footer-legal-link:hover,
.sleek-ui .site-footer-social-link:hover {
    color: var(--primary-700);
}

.sleek-ui #mobile-menu {
    background: var(--primary-500) !important;
    border-top: 3px solid var(--primary-600) !important;
}

.sleek-ui #mobile-menu .mobile-menu-link {
    color: #ffffff;
}

.sleek-ui #mobile-menu .mobile-menu-link:hover {
    color: rgba(255, 255, 255, 0.72);
}

.sleek-ui a:focus-visible,
.sleek-ui button:focus-visible {
    outline: 3px solid rgba(0, 128, 128, 0.35);
    outline-offset: 3px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .sleek-ui {
        --top-bar-height: 0px;
        --header-height: 78px;
    }

    .sleek-ui .top-bar {
        display: none;
    }

    .sleek-ui .main-header {
        height: var(--header-height);
    }

    .sleek-ui .logo-container img {
        height: 50px;
    }

    .logo-container {
        gap: 0;
    }

    .sleek-ui .container {
        padding: 0 1.1rem;
    }
}

@media (max-width: 768px) {
    .sleek-ui .py-24 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .sleek-ui .hero-content {
        margin-left: 0.8rem !important;
        margin-right: 0.8rem !important;
        width: calc(100% - 1.6rem) !important;
        border-radius: 1.2rem;
    }

    .sleek-ui .btn {
        letter-spacing: 0.04em;
        font-size: 0.82rem;
    }

    .sleek-ui .card {
        border-radius: 1rem;
    }

    .sleek-ui .cta-hero {
        border-radius: 1.4rem;
        margin-left: 0.8rem;
        margin-right: 0.8rem;
    }
}

/* Non-home pages: force same design language as index */
.sleek-ui:not(.home-page) .hero {
    min-height: clamp(640px, 88vh, 860px);
}

.sleek-ui:not(.home-page) .hero::before {
    background: linear-gradient(145deg, rgba(0, 128, 128, 0.82) 4%, rgba(0, 128, 128, 0.68) 52%, rgba(0, 128, 128, 0.54) 100%) !important;
}

.sleek-ui:not(.home-page) .hero-content {
    max-width: 900px;
    padding-top: clamp(2rem, 4.5vw, 3.4rem);
    background: linear-gradient(138deg, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0.09));
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 30px 56px rgba(3, 20, 22, 0.34);
}

.sleek-ui:not(.home-page) .hero-content .uppercase.tracking-widest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #2f8aa0 !important;
    font-size: 0.78rem !important;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.sleek-ui:not(.home-page) .hero-content .uppercase.tracking-widest::before,
.sleek-ui:not(.home-page) .hero-content .uppercase.tracking-widest::after {
    content: "";
    width: 20px;
    height: 1px;
    background: rgba(216, 247, 245, 0.62);
}

.sleek-ui:not(.home-page) .hero-content .text-7xl,
.sleek-ui:not(.home-page) .hero-content .text-5xl,
.sleek-ui:not(.home-page) .hero-content .text-4xl,
.sleek-ui:not(.home-page) .hero-content .text-3xl {
    font-size: clamp(2rem, 5vw, 4.7rem) !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    text-shadow: none !important;
}

.sleek-ui:not(.home-page) .hero-content .text-xl,
.sleek-ui:not(.home-page) .hero-content .text-base {
    max-width: 720px;
    margin-inline: auto;
    color: rgba(241, 252, 251, 0.94) !important;
    font-size: clamp(1rem, 1.9vw, 1.22rem) !important;
    line-height: 1.62 !important;
    text-shadow: none !important;
}

.sleek-ui:not(.home-page) .hero-content .btn-bounce {
    animation: none;
}

.sleek-ui:not(.home-page) .main-content,
.sleek-ui:not(.home-page) .partnership-section,
.sleek-ui:not(.home-page) section.py-24,
.sleek-ui:not(.home-page) section#articles {
    position: relative;
}

.sleek-ui:not(.home-page) .main-content h1,
.sleek-ui:not(.home-page) .main-content h2,
.sleek-ui:not(.home-page) section.py-24 h1,
.sleek-ui:not(.home-page) section.py-24 h2,
.sleek-ui:not(.home-page) .partnership-section h1,
.sleek-ui:not(.home-page) .partnership-section h2 {
    letter-spacing: -0.02em;
}

.sleek-ui:not(.home-page) .prof-image-card,
.sleek-ui:not(.home-page) .magazine-card,
.sleek-ui:not(.home-page) .magazine-sidecard,
.sleek-ui:not(.home-page) .blog-panel,
.sleek-ui:not(.home-page) .clinical-card,
.sleek-ui:not(.home-page) .clinical-metric,
.sleek-ui:not(.home-page) .clinical-cta,
.sleek-ui:not(.home-page) .event-card,
.sleek-ui:not(.home-page) .benefit-item,
.sleek-ui:not(.home-page) .trust-item {
    border: 1px solid rgba(0, 128, 128, 0.14);
    box-shadow: 0 16px 30px rgba(5, 19, 20, 0.1);
}

.sleek-ui:not(.home-page) .cta-box {
    box-shadow: 0 24px 40px rgba(5, 19, 20, 0.2);
    border: 1px solid rgba(180, 252, 247, 0.3);
}

.sleek-ui:not(.home-page) .plan-image-placeholder--card,
.sleek-ui:not(.home-page) .recipe-image-placeholder--card,
.sleek-ui:not(.home-page) .blog-image-placeholder--card {
    border-radius: 1.15rem 1.15rem 0 0;
    overflow: hidden;
}

.sleek-ui:not(.home-page) .plan-eyebrow,
.sleek-ui:not(.home-page) .page-eyebrow,
.sleek-ui:not(.home-page) .blog-card-meta,
.sleek-ui:not(.home-page) .plan-card-meta {
    color: var(--primary-600);
    font-weight: 700;
}

.sleek-ui:not(.home-page) .modal-content {
    border: 1px solid rgba(0, 128, 128, 0.18);
    box-shadow: 0 28px 46px rgba(5, 19, 20, 0.22);
}

@media (max-width: 1024px) {
    .sleek-ui:not(.home-page) .hero {
        min-height: auto;
    }
}



/* =====================================================
   SPLIT-PANEL HERO — shared across home & inner pages
   ===================================================== */

/* Light background hero */
.hero--split {
    min-height: clamp(750px, 95vh, 1080px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.hero--split::before {
    display: none;
}

.hero--split .home-hero-h1 {
    color: #0f172a;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
}

.hero--split .home-hero-h1 em {
    font-style: normal;
    color: #2f8aa0;
}

.hero--split .home-hero-sub {
    color: #475569;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 2rem;
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(5rem, 10vh, 8rem) 2rem clamp(3rem, 6vh, 5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Responsive */
/* Tablet: keep 2-column layout, tighten spacing */
@media (min-width: 768px) and (max-width: 1024px) {
    .home-hero-inner {
        gap: 2.5rem;
        padding: 2.5rem 1.5rem 3rem;
    }
    .home-hero-img-wrap {
        aspect-ratio: 4 / 3;
    }
    .home-hero-sub {
        max-width: 100%;
    }
}

/* Mobile: image on top, text below — no text on image */
@media (max-width: 767px) {
    .hero--split {
        min-height: auto;
        padding-bottom: 0;
    }
    .home-hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }
    .home-hero-visual {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    .home-hero-visual::before,
    .home-hero-visual::after {
        display: none;
    }
    .home-hero-img-wrap {
        border-radius: 0 !important;
        aspect-ratio: 4 / 3;
        box-shadow: none;
        margin-left: 0;
        margin-right: 0;
    }
    .home-hero-text {
        padding: 2rem 1.25rem 3rem;
    }
    .home-hero-kicker {
        margin-bottom: 0.75rem;
    }
    .home-hero-h1 {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
        margin-bottom: 0.8rem;
    }
    .home-hero-sub {
        font-size: 0.92rem;
        margin-bottom: 1.25rem;
    }
    .home-hero-ctas {
        margin-bottom: 1.25rem;
        gap: 1rem;
        flex-direction: column;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
    }
    .btn-hero-outline {
        color: var(--eq-teal-dark, #1f6b7d) !important;
        border-color: var(--eq-teal, #2f8aa0);
    }
    .home-hero-badges {
        gap: 0.45rem;
    }
    .home-hero-badge {
        padding: 0.35rem 0.7rem;
        font-size: 0.68rem;
    }
    /* who-we-are specific mobile tweaks */
    .home-hero-img-badge {
        padding: 0.75rem 0.9rem;
        margin-bottom: 1rem;
        gap: 0.6rem;
    }
}

/* =====================================================
   HOME HERO — BASE ELEMENT STYLES (desktop-first)
   These are the foundation styles; responsive overrides
   live in the media queries above.
   ===================================================== */

.home-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-600);
}

.home-hero-kicker::before {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-400);
    border-radius: 2px;
    flex-shrink: 0;
}

.home-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

.home-hero-visual {
    position: relative;
}

.home-hero-img-wrap {
    aspect-ratio: 4 / 3;
    border-radius: 2.25rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow:
        0 32px 64px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.55);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.home-hero-img-wrap img,
.home-hero-img-wrap picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 2.25rem;
    display: block;
}

.btn-hero-primary,
.btn-hero-primary:hover {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #2f8aa0;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    border-radius: 12px;
    border: 2px solid #2f8aa0;
    transition: none;
    box-shadow: 0 8px 24px rgba(47, 138, 160, 0.28);
    text-decoration: none;
    transform: none;
}

.btn-hero-outline,
.btn-hero-outline:hover {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #2f8aa0;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    border-radius: 12px;
    border: 2px solid #2f8aa0;
    transition: none;
    text-decoration: none;
    box-shadow: none;
    transform: none;
}

/* Stat badges inside the hero */
.home-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 99px;
    background: rgba(47, 138, 160, 0.08);
    border: 1px solid rgba(47, 138, 160, 0.2);
    color: var(--primary-700);
}

/* No decorative glows — flat accent color only */
.home-hero-visual::before,
.home-hero-visual::after {
    display: none;
}

/* Home-page style rollout from index.html */
.home-page,
.home-page * {
    font-family: 'Lato', sans-serif;
}

.home-page main {
    background: #ffffff;
}

.home-page .top-bar {
    background: #f1f5f9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--gray-600);
}

.home-page .top-bar a {
    font-weight: 700;
    letter-spacing: 0.01em;
}

.home-page .hero {
    min-height: clamp(720px, 95vh, 920px);
}

.home-page .hero--home::before {
    background: linear-gradient(155deg, rgba(3, 31, 35, 0.85) 5%, rgba(0, 82, 88, 0.72) 52%, rgba(2, 120, 128, 0.58) 100%) !important;
}

.home-page .hero--home::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.2), transparent 36%),
        linear-gradient(120deg, rgba(25, 211, 199, 0.17), transparent 48%);
    z-index: -1;
    pointer-events: none;
}

.home-page .hero-content {
    max-width: 900px;
    padding-top: clamp(2rem, 5vw, 3.6rem);
    background: linear-gradient(138deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 30px 60px rgba(2, 26, 29, 0.36);
}

.home-page .hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-family: "Lato", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2f8aa0;
}

.home-page .hero-kicker::before,
.home-page .hero-kicker::after {
    content: "";
    width: 22px;
    height: 1px;
    background: rgba(216, 247, 245, 0.62);
}

.home-page .hero-heading {
    font-size: clamp(2.2rem, 5.4vw, 5rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    text-transform: none;
}

.home-page .hero-subcopy {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(242, 251, 251, 0.94);
    font-family: "Lato", sans-serif;
    font-size: clamp(1.03rem, 2.2vw, 1.32rem);
    line-height: 1.6;
}

.home-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 1.35rem;
}

.home-page .btn-ghost-light {
    border-color: rgba(255, 255, 255, 0.45);
    color: white;
    background: rgba(2, 31, 33, 0.34);
}

.home-page .btn-ghost-light:hover {
    border-color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.18);
    color: white;
}

.home-page .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.home-page .hero-metric {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(3, 25, 27, 0.26);
    backdrop-filter: blur(8px);
    padding: 0.72rem 1rem;
    font-family: "Lato", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #2f8aa0;
}

.home-page .section-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-family: "Lato", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--primary-500);
}

.home-page .section-title {
    font-size: clamp(1.95rem, 4.2vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #2f8aa0;
}

.home-page .section-title--light {
    color: white;
}

.home-page .section-subtitle {
    max-width: 760px;
    margin-inline: auto;
    color: var(--gray-600);
    font-family: "Lato", sans-serif;
    font-size: clamp(1rem, 1.7vw, 1.14rem);
    line-height: 1.7;
}

.home-page .bg-teal-container {
    background: linear-gradient(142deg, #2f8aa0 0%, #2f8aa0 52%, #2f8aa0 100%);
    box-shadow: 0 28px 48px rgba(0, 64, 69, 0.26);
    position: relative;
    overflow: hidden;
}

.home-page .bg-teal-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.2), transparent 38%);
    pointer-events: none;
}

.home-page .card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 128, 128, 0.14);
    box-shadow: 0 14px 26px rgba(5, 19, 20, 0.09);
}

.home-page .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 40px rgba(5, 19, 20, 0.15);
}

.home-page .solution-card .btn-outline {
    width: 100%;
    border-color: rgba(0, 128, 128, 0.35) !important;
    color: var(--primary-700) !important;
    background: rgba(0, 128, 128, 0.04);
}

.home-page .solution-card .btn-outline:hover {
    background: var(--primary-600);
    border-color: var(--primary-600) !important;
    color: white !important;
}

.home-page #wellness-plans {
    background: linear-gradient(140deg, #2f8aa0 0%, #2f8aa0 54%, #2f8aa0 100%) !important;
}

.home-page .split-image {
    background: url('../images/hero-healthy-food.webp') center/cover no-repeat;
    min-height: clamp(430px, 60vh, 720px);
    position: relative;
}

.home-page .split-image::before {
    content: none;
}

.home-page .feature-item {
    padding: 1rem 0 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.home-page .feature-item:last-child {
    border-bottom: 0;
}

.home-page .feature-icon {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.18);
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.home-page .home-links-bar a {
    transition: all 0.28s ease;
}

.home-page .home-links-bar a:hover {
    background: rgba(0, 128, 128, 0.08);
    color: var(--primary-700);
}

/* Wellness Plans Grid */
.home-page .wellness-plans-home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 760px;
    margin: 0 auto;
}

@media (max-width: 560px) {
    .home-page .wellness-plans-home-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
}

.home-page .meal-plan-card {
    border-radius: 1.5rem;
    background: white;
    border: 1px solid rgba(47, 138, 160, 0.14);
    padding: 1.75rem 1.25rem 1.75rem;
    box-shadow: 0 8px 24px rgba(5, 19, 20, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-page .meal-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(5, 19, 20, 0.12);
    border-color: rgba(47, 138, 160, 0.3);
}

.home-page .meal-plan-round {
    width: min(160px, 80%);
    aspect-ratio: 1/1;
    margin: 0 auto 1rem;
    border-radius: 999px;
    overflow: hidden;
    border: 3px solid rgba(47, 138, 160, 0.15);
    box-shadow: 0 8px 20px rgba(5, 19, 20, 0.12);
}

.home-page .meal-plan-card h4 {
    margin-top: 0.5rem;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.home-page .cta-headline {
    padding: 4.8rem 0 2.5rem;
}

.home-page .cta-headline-title {
    font-size: clamp(2rem, 4.3vw, 3.35rem);
    font-weight: 800;
    letter-spacing: 0.03em;
}

.home-page .btn-install-app {
    background: #2f8aa0;
    color: #ffffff;
    border-color: #2f8aa0;
    box-shadow: none;
}

.home-page .btn-install-app:hover {
    background: #267a8e;
    color: #ffffff;
    border-color: #267a8e;
}

.home-page .app-note {
    margin-top: 0.9rem;
    color: rgba(231, 252, 250, 0.9);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.install-bar {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 1100;
    background: rgba(47, 138, 160, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(47, 138, 160, 0.15);
    border-radius: 0.75rem;
    padding: 0.6rem 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 520px;
    margin: 0 auto;
    opacity: 0;
    animation: slideUp 0.4s ease-out forwards;
    animation-delay: 2s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.install-bar .install-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.install-bar-copy {
    flex: 1;
    min-width: 0;
    color: #2f8aa0;
    line-height: 1.3;
    font-size: 0.85rem;
}

.install-bar-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.8;
}

.install-bar-subtitle {
    display: none;
}

.install-bar .btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    background: #2f8aa0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    box-shadow: none;
    opacity: 0.9;
}

.install-bar .btn:hover {
    background: #267a8e;
    opacity: 1;
    transform: none;
}

.home-page .btn-later-app {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #2f8aa0 !important;
    border: none !important;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: none !important;
    opacity: 0.8;
}

.home-page .btn-later-app:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #2f8aa0 !important;
    opacity: 1;
}

.hidden-install {
    display: none !important;
}

.ios-install-sheet {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ios-install-sheet.active {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.ios-install-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(2px);
}

.ios-install-card {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: calc(6rem + env(safe-area-inset-bottom));
    max-width: 400px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1201;
    border-radius: 0.875rem;
    background: rgba(47, 138, 160, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 1rem;
}

.ios-install-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.ios-install-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.ios-install-card strong {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.home-page .ios-install-close {
    margin-top: 0.8rem;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: #2f8aa0;
    border: none;
    border-radius: 6px;
    padding: 0.65rem 1rem;
    font-weight: 600;
    font-size: 0.78rem;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    width: 100%;
}

.home-page .ios-install-close:hover {
    transform: none;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.home-page .ios-install-later {
    flex: 1;
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* Install app btn style specifically in sections */
.home-page .btn-install-app {
    background: #2f8aa0;
    color: #ffffff;
    border: 1px solid #2f8aa0;
    border-radius: 12px;
    font-weight: 800;
    padding: 1rem 2rem;
    transition: all 0.2s ease;
}

.home-page .btn-install-app:hover {
    background: #267a8e;
    border-color: #267a8e;
    color: white;
}



.home-page .cta-hero {
    min-height: 74vh;
    max-height: none;
    border-radius: 2rem;
    overflow: hidden;
    margin: 0 1.5rem 4.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 26px 44px rgba(5, 19, 20, 0.24);
}

.home-page .cta-hero-overlay {
    background: linear-gradient(140deg, rgba(5, 20, 22, 0.7) 0%, rgba(6, 52, 57, 0.62) 46%, rgba(5, 20, 22, 0.58) 100%);
}

.home-page .cta-hero-button {
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(5, 20, 22, 0.25);
}

.home-page .cta-hero-button:hover {
    background: white;
    color: var(--primary-700);
    border-color: white;
}

.home-page.js-motion .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s cubic-bezier(0.2, 0.65, 0.15, 1), transform 0.75s cubic-bezier(0.2, 0.65, 0.15, 1);
}

.home-page.js-motion .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.wellness-plans-content {
    max-width: 720px;
    margin-inline: auto;
    padding: clamp(2.5rem, 4vw, 6rem) !important;
}

.home-page a:focus-visible,
.home-page button:focus-visible {
    outline: 3px solid rgba(0, 128, 128, 0.38);
    outline-offset: 3px;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .home-page {
        --top-bar-height: 0px;
        --header-height: 76px;
    }

    .home-page.has-install-bar {
        padding-bottom: calc(5.4rem + env(safe-area-inset-bottom));
    }

    .home-page .top-bar {
        display: none;
    }

    .home-page .main-header {
        height: var(--header-height);
    }

    .home-page .logo-container img {
        height: 48px;
    }

    .split-section {
        grid-template-columns: 1fr !important;
    }

    .home-page #wellness-plans .wellness-plans-content {
        text-align: center;
        padding: 2.75rem 1.75rem;
    }

    .home-page #wellness-plans .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-page #wellness-plans .feature-item > div {
        text-align: center;
    }

    .home-page #wellness-plans .wellness-plans-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-page .hero {
        min-height: auto;
    }

    .home-page .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .home-page .hero-actions .btn {
        width: 100%;
    }

    .home-page .hero-metrics {
        grid-template-columns: 1fr;
    }

    .home-page .hero-metric {
        border-radius: 16px;
        letter-spacing: 0.06em;
    }

    .home-page .home-hero-img-wrap {
        margin-left: 1rem;
        margin-right: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 2rem;
    }

    .home-page .cta-hero {
        margin: 0 0.9rem 3.25rem;
        border-radius: 1.5rem;
    }

    .home-page .cta-hero-content {
        padding-inline: 1.25rem;
    }

    .home-page #wellness-plans .split-image {
        min-height: 260px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-color: rgba(47, 138, 160, 0.12);
    }

    .site-footer-powered,
    .site-footer-bottombar-inner {
        font-size: 0.68rem;
        line-height: 1.35;
    }
}

@media (min-width: 1025px) {
    .install-bar {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page.js-motion .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.product-page main img {
    border-radius: 1.25rem !important;
}

/* =====================================================
   EQUILIBRIUM MARKETING — GLOBAL PREMIUM DESIGN SYSTEM
   Applied site-wide via styles.css
   ===================================================== */

/* ---- Design tokens (global) ---- */
:root {
    --eq-teal: #2f8aa0;
    --eq-teal-dark: #1f6b7d;
    --eq-teal-light: #e0f2f7;
    --eq-slate: #0f172a;
    --eq-slate-mid: #475569;
    --eq-bg: #f0f8fa;
}

/* =====================================================
   MARKETING SPLASH SCREEN (premium light version)
   ===================================================== */
.mkt-splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f0f8fa;
    gap: 1.5rem;
}

.mkt-splash::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 20% 20%, rgba(47, 138, 160, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(47, 138, 160, 0.1) 0%, transparent 55%);
    pointer-events: none;
}

.mkt-splash-logo {
    width: clamp(90px, 22vw, 130px);
    height: auto;
    position: relative;
    z-index: 1;
    animation: mkt-splash-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes mkt-splash-pop {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.mkt-splash-bar {
    width: 140px;
    height: 3px;
    background: rgba(47, 138, 160, 0.15);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.mkt-splash-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--eq-teal) 0%, var(--eq-teal-dark) 100%);
    border-radius: 99px;
    animation: mkt-splash-load 1.1s ease forwards;
    width: 0%;
}

@keyframes mkt-splash-load {
    0% {
        width: 0%;
    }

    60% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}

.mkt-splash-tagline {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--eq-teal);
    opacity: 0.85;
    position: relative;
    z-index: 1;
    animation: mkt-splash-pop 0.6s 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.mkt-splash--exit {
    animation: mkt-splash-out 0.45s 0.05s ease forwards;
}

@keyframes mkt-splash-out {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* =====================================================
   PAGE HERO — STANDARD INTERNAL PAGE HERO
   Used on all marketing pages except home
   ===================================================== */
.page-hero {
    position: relative;
    min-height: clamp(300px, 45vh, 500px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fa 40%, #e4f0f5 100%);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(15, 23, 42, 0.58) 0%,
            rgba(15, 23, 42, 0.3) 50%,
            rgba(15, 23, 42, 0.15) 100%);
    z-index: 1;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    border-radius: 0 !important;
    transition: transform 0.6s ease;
}

.page-hero:hover .page-hero-bg {
    transform: scale(1.02);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem);
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.page-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.page-hero-kicker::before {
    content: "";
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

.page-hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    margin-bottom: 0.8rem;
}

.page-hero-title em {
    font-style: normal;
    color: rgba(173, 228, 243, 0.95);
}

.page-hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* =====================================================
   GLOBAL SECTION UTILITIES (used on all pages)
   ===================================================== */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--eq-teal);
}

.section-kicker::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--eq-teal);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 1.1rem;
}

.section-subtitle {
    max-width: 680px;
    margin-inline: auto;
    color: #64748b;
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    line-height: 1.75;
}

.section-pad {
    padding: 5.5rem 0;
}

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

.section-bg-light {
    background: #f8fafc;
}

.section-bg-white {
    background: #fff;
}

/* =====================================================
   PREMIUM GLOBAL BUTTONS
   ===================================================== */
.btn-teal-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.9rem;
    background: var(--eq-teal) !important;
    color: #fff !important;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 22px rgba(47, 138, 160, 0.28);
}

.btn-teal-pill:hover {
    background: var(--eq-teal-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(47, 138, 160, 0.36);
}

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.9rem;
    background: rgba(255, 255, 255, 0.75);
    color: var(--eq-teal-dark) !important;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    border: 1.5px solid rgba(47, 138, 160, 0.3);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-outline-pill:hover {
    background: #fff;
    border-color: var(--eq-teal);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(47, 138, 160, 0.14);
}

.btn-white-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.9rem;
    background: #fff;
    color: var(--eq-teal-dark) !important;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-white-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

/* =====================================================
   GLASS CONTENT CARD (reusable)
   ===================================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(47, 138, 160, 0.14);
    border-radius: 1.5rem;
    box-shadow: 0 12px 40px rgba(5, 19, 20, 0.09);
}

.glass-card--accent {
    border-left: 4px solid var(--eq-teal);
}

.glass-card--top {
    border-top: 4px solid var(--eq-teal);
}

/* =====================================================
   PRODUCT / CONTENT CARDS
   ===================================================== */
.eq-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(47, 138, 160, 0.12);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(5, 19, 20, 0.07);
    transition: transform 0.28s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.28s ease;
    border-top: 4px solid var(--eq-teal);
    display: flex;
    flex-direction: column;
}

.eq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(5, 19, 20, 0.13);
}

.eq-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0 !important;
    display: block;
}

.eq-card-body {
    padding: 1.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.eq-card-badge {
    display: inline-block;
    padding: 0.28rem 0.7rem;
    background: rgba(47, 138, 160, 0.1);
    border-radius: 6px;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--eq-teal-dark);
    margin-bottom: 0.7rem;
    width: fit-content;
}

.eq-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.eq-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 1.2rem;
}

/* Expert/Person circular card */
.eq-person-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(47, 138, 160, 0.12);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 28px rgba(5, 19, 20, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border-bottom: 3px solid transparent;
}

.eq-person-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(5, 19, 20, 0.12);
    border-bottom-color: var(--eq-teal);
}

.eq-person-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    border: 3px solid rgba(47, 138, 160, 0.2);
    box-shadow: 0 8px 20px rgba(5, 19, 20, 0.1);
    background: #f0f8fa;
}

.eq-person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 0 !important;
}

.eq-person-name {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.eq-person-role {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--eq-teal);
    margin-bottom: 0.8rem;
}

.eq-person-bio {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.6;
}

/* =====================================================
   FEATURE LIST ITEM (icons + text)
   ===================================================== */
.eq-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.eq-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.eq-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(47, 138, 160, 0.1);
    border: 1px solid rgba(47, 138, 160, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eq-teal);
    flex-shrink: 0;
}

.eq-feature-icon svg,
.eq-feature-icon i {
    width: 20px;
    height: 20px;
}

.eq-feature-title {
    font-size: 0.96rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.eq-feature-desc {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.6;
}

/* =====================================================
   IMPACT/ STATS BAR
   ===================================================== */
.eq-stats-bar {
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 2.5rem 0;
}

.eq-stats-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.eq-stat {
    text-align: center;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.eq-stat:last-child {
    border-right: none;
}

.eq-stat-bar {
    width: 28px;
    height: 3px;
    background: var(--eq-teal);
    border-radius: 99px;
    margin: 0 auto 0.7rem;
}

.eq-stat-num {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.eq-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
}

/* =====================================================
   CTA BANNER (bottom of most pages)
   ===================================================== */
.eq-cta-section {
    padding: 3rem 2rem 5rem;
}

.eq-cta-card {
    max-width: 960px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(47, 138, 160, 0.16);
    border-radius: 2rem;
    border-top: 4px solid var(--eq-teal);
    padding: clamp(2.5rem, 5vw, 4.5rem);
    text-align: center;
    box-shadow: 0 24px 60px rgba(5, 19, 20, 0.1);
    position: relative;
    overflow: hidden;
}

.eq-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(47, 138, 160, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.eq-cta-title {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 0.9rem;
    position: relative;
}

.eq-cta-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #64748b;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 2rem;
    position: relative;
}

/* =====================================================
   SCROLL REVEAL (global)
   ===================================================== */
.js-motion .reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.65s cubic-bezier(0.2, 0.65, 0.15, 1),
        transform 0.65s cubic-bezier(0.2, 0.65, 0.15, 1);
}

.js-motion .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .js-motion .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =====================================================
   HOME PAGE — MOBILE HERO FIX
   Shows the right image on mobile, shows visual panel
   ===================================================== */
@media (max-width: 1024px) {

    /* Show a background hero image on mobile instead of no image */
    .home-page .hero {
        background:
            linear-gradient(to bottom, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.25) 50%, rgba(15, 23, 42, 0.1) 100%),
            url('../images/hero-mobile-home.webp') center/cover no-repeat;
        min-height: clamp(520px, 80vh, 720px);
        align-items: flex-end;
        padding-bottom: 3rem;
    }

    .home-hero-text {
        color: #fff;
    }

    .home-hero-h1 {
        color: #fff;
    }

    .home-hero-h1 em {
        color: rgba(173, 228, 243, 0.95);
    }

    .home-hero-sub {
        color: rgba(255, 255, 255, 0.88);
    }

    .home-hero-kicker {
        color: rgba(255, 255, 255, 0.9);
    }

    .home-hero-kicker::before {
        background: rgba(255, 255, 255, 0.7);
    }

    .home-hero-badge {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.25);
        color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
    }
}

/* =====================================================
   RESPONSIVE HELPERS
   ===================================================== */
@media (max-width: 768px) {
    .eq-stats-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .eq-stat {
        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        padding: 1.25rem 0;
    }

    .eq-stat:last-child {
        border-bottom: none;
    }

    .page-hero {
        min-height: clamp(240px, 50vw, 380px);
    }

    .page-hero-content {
        padding: 1.5rem;
    }

    .page-hero-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
}

/* =====================================================
   UPCOMING EVENTS SECTION
   ===================================================== */
.eq-events-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.eq-events-header {
    text-align: center;
    margin-bottom: 3rem;
}

.eq-events-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2f8aa0;
    margin-bottom: 0.75rem;
}

.eq-events-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 1rem;
}

.eq-events-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

@media (max-width: 1024px) {
    .eq-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .eq-events-grid {
        grid-template-columns: 1fr;
    }
}

.eq-event-card {
    border-radius: 1.5rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
    transition: transform 0.32s cubic-bezier(0.2, 0.65, 0.15, 1), box-shadow 0.32s ease;
}

.eq-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.13);
}

.eq-event-icon-panel {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--event-color-light, rgba(47,138,160,0.1));
}

.eq-event-icon-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 50%, var(--event-color-light, rgba(47,138,160,0.18)) 0%, transparent 70%),
        linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(240,248,250,0.9) 100%);
    pointer-events: none;
}

.eq-event-icon {
    width: 72px;
    height: 72px;
    color: var(--event-color, #2f8aa0);
    position: relative;
    z-index: 1;
    stroke-width: 1.4;
    transition: transform 0.4s cubic-bezier(0.2, 0.65, 0.15, 1);
    filter: drop-shadow(0 6px 16px color-mix(in srgb, var(--event-color, #2f8aa0) 30%, transparent));
}

.eq-event-card:hover .eq-event-icon {
    transform: scale(1.15);
}

/* Hover overlay — works with icon panel too */
.eq-event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(10, 20, 30, 0.92) 0%,
        rgba(10, 20, 30, 0.55) 55%,
        rgba(10, 20, 30, 0.15) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.eq-event-card:hover .eq-event-overlay {
    opacity: 1;
}


.eq-event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #2f8aa0;
    color: #ffffff;
    border-radius: 0.75rem;
    padding: 0.4rem 0.65rem;
    text-align: center;
    line-height: 1.1;
    min-width: 44px;
    box-shadow: 0 4px 12px rgba(47, 138, 160, 0.4);
}

.eq-event-date-month {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
}

.eq-event-date-day {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* Hover overlay with description */
.eq-event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.eq-event-card:hover .eq-event-overlay {
    opacity: 1;
}

.eq-event-overlay-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.eq-event-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffffff;
    background: #2f8aa0;
    border-radius: 8px;
    padding: 0.45rem 0.9rem;
    letter-spacing: 0.04em;
    width: fit-content;
    text-decoration: none;
    transition: background 0.2s ease;
}

.eq-event-overlay-btn:hover {
    background: #267a8e;
}

.eq-event-body {
    padding: 1rem 1.1rem 1.25rem;
}

.eq-event-location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2f8aa0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.eq-event-name {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin-bottom: 0.65rem;
}

.eq-event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.eq-event-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(47, 138, 160, 0.08);
    color: #2f8aa0;
    border: 1px solid rgba(47, 138, 160, 0.2);
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
}

/* =====================================================
   HOME PAGE — LAYOUT REFINEMENTS
   ===================================================== */

/* Fix: images inside overflow:hidden cards should not have their own border-radius */
.home-page .solution-card > img {
    border-radius: 0;
}

/* Wellness plans — right panel gets white bg with dark text */
.home-page #wellness-plans .wellness-plans-content {
    background: #ffffff;
    padding: 4rem 3.5rem;
}

.home-page #wellness-plans .section-kicker {
    color: #2f8aa0;
}

.home-page #wellness-plans .section-title {
    color: #0f172a;
}

.home-page #wellness-plans .feature-item h4 {
    color: #0f172a !important;
}

.home-page #wellness-plans .feature-item p {
    color: #475569 !important;
}

.home-page #wellness-plans .feature-item {
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

.home-page #wellness-plans .feature-icon {
    background: rgba(47, 138, 160, 0.1);
    color: #2f8aa0;
}

/* =====================================================
   WHO WE ARE — STATS ROW
   ===================================================== */
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 2rem 0 2.5rem;
    border-top: 1px solid rgba(47, 138, 160, 0.12);
    border-bottom: 1px solid rgba(47, 138, 160, 0.12);
    padding: 1.75rem 0;
}

.about-stat {
    padding: 0 1.5rem;
    border-right: 1px solid rgba(47, 138, 160, 0.12);
}

.about-stat:last-child {
    border-right: none;
}

.about-stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1;
}

.about-stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.4rem;
}

@media (max-width: 640px) {
    .about-stats-row {
        grid-template-columns: 1fr;
    }
    .about-stat {
        border-right: none;
        border-bottom: 1px solid rgba(47, 138, 160, 0.12);
        padding: 1.25rem 0;
    }
    .about-stat:last-child {
        border-bottom: none;
    }
}

/* =====================================================
   FULL-BLEED CTA SECTION
   Replaces the 3-part cta-headline + cta-hero + cta-hero-copy
   ===================================================== */
/* =====================================================
   CTA SPLIT — Image beside text, no text-on-image
   ===================================================== */
.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 2rem 4rem;
    border-radius: 2.5rem;
    overflow: hidden;
    min-height: clamp(420px, 55vh, 680px);
    box-shadow: 0 32px 72px rgba(15, 23, 42, 0.12);
}

.cta-split-content {
    background: #2f8aa0;
    padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-split-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: white;
    opacity: 0.8;
    margin-bottom: 1.25rem;
}

.cta-split-headline {
    font-family: 'Lato', sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 1.5rem;
}

.cta-split-headline em {
    color: white;
    font-style: normal;
    opacity: 0.85;
}

.cta-split-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.72;
    margin: 0 0 2.25rem;
    max-width: 480px;
}

.cta-split-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 1.05rem 2.4rem;
    background: white;
    color: var(--primary-800);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    border-radius: 12px;
    border: 2px solid white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.cta-split-btn:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: white;
    color: #2f8aa0;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.cta-split-image {
    overflow: hidden;
    position: relative;
}

.cta-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
}

@media (max-width: 900px) {
    .cta-split {
        grid-template-columns: 1fr;
        margin: 0 1rem 3rem;
        border-radius: 1.75rem;
        min-height: auto;
    }
    .cta-split-image {
        min-height: 280px;
        order: -1;
    }
    .cta-split-content {
        padding: 2.5rem 1.75rem;
    }
    .cta-split-btn {
        align-self: stretch;
        text-align: center;
    }
}

/* =====================================================
   BOTTOM NAV — Mobile app-style navigation
   ===================================================== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-top: 1px solid rgba(47, 138, 160, 0.14);
    box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.08);
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav-inner {
    display: flex;
    height: 58px;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    color: var(--gray-400);
    transition: color 0.18s ease;
    text-decoration: none;
    position: relative;
}

.bottom-nav-item.active {
    color: var(--eq-teal);
}

.bottom-nav-item:active {
    color: var(--primary-500);
}

.bottom-nav-item.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    background: var(--eq-teal);
    border-radius: 0 0 2px 2px;
}

.bottom-nav-item [data-lucide] {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
}

.bottom-nav-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
}

@media (max-width: 1024px) {
    .bottom-nav {
        display: flex;
        flex-direction: column;
    }
    /* Push all page content above the nav */
    .has-bottom-nav {
        padding-bottom: calc(58px + env(safe-area-inset-bottom));
    }
    /* When install bar is also showing, stack above bottom nav */
    .install-bar {
        bottom: calc(58px + env(safe-area-inset-bottom));
    }
}

/* =====================================================
   QR ACCESS SECTION — From Box to Dashboard Instantly
   ===================================================== */
.qr-access-section {
    background: #f8fafc;
}

.qr-access-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.qr-access-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2f8aa0;
    margin-bottom: 1.25rem;
}

.qr-access-kicker::before {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: #2f8aa0;
    border-radius: 2px;
    flex-shrink: 0;
}

.qr-access-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
}

.qr-access-sub {
    font-size: 1rem;
    color: #475569;
    line-height: 1.72;
    margin: 0 0 2rem;
    max-width: 520px;
}

.qr-access-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qr-access-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
}

.qr-list-icon {
    width: 20px;
    height: 20px;
    color: #2f8aa0;
    flex-shrink: 0;
    padding: 6px;
    background: rgba(47, 138, 160, 0.1);
    border-radius: 50%;
    box-sizing: content-box;
}

.qr-access-btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: #2f8aa0;
    color: white;
    font-weight: 700;
    font-size: 0.98rem;
    border-radius: 12px;
    border: 2px solid #2f8aa0;
    text-decoration: none;
    transition: all 0.25s ease;
}

.qr-access-btn:hover {
    background: #267a8e;
    border-color: #267a8e;
    color: white;
    transform: translateY(-2px);
}

.qr-access-card-wrap {
    display: flex;
    justify-content: center;
}

.qr-access-card {
    background: #ffffff;
    border: 1px solid rgba(47, 138, 160, 0.12);
    border-radius: 1.75rem;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 360px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.qr-card-icon-wrap {
    width: 96px;
    height: 96px;
    background: rgba(47, 138, 160, 0.1);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.qr-card-icon {
    width: 40px;
    height: 40px;
    color: #2f8aa0;
}

.qr-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.75rem;
}

.qr-card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.qr-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    border: 1.5px solid #2f8aa0;
    border-radius: 99px;
    color: #2f8aa0;
    font-size: 0.82rem;
    font-weight: 700;
}

@media (max-width: 900px) {
    .qr-access-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .qr-access-card-wrap {
        order: -1;
    }
}

/* =====================================================
   JOURNEY WITHIN SECTION — Nautilus Philosophy
   ===================================================== */
@media (max-width: 900px) {
    section[style*="background: #ffffff"] > .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    section[style*="background: #ffffff"] > .container > div[style*="margin-bottom: 5rem"] > div:first-child {
        order: 2;
    }
    
    section[style*="background: #ffffff"] > .container > div[style*="margin-bottom: 5rem"] > div:last-child {
        order: 1;
    }
}

/* Accordion styling for teal sections */
section[style*="background: #2f8aa0"] .info-accordion details {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
}

section[style*="background: #2f8aa0"] .info-accordion details[open] {
    background: white;
}

section[style*="background: #2f8aa0"] .info-accordion summary {
    color: #0f172a;
}

section[style*="background: #2f8aa0"] .info-accordion-content {
    background: white;
    border-top-color: rgba(0, 0, 0, 0.06);
    color: #475569;
}

/* =====================================================
   OPTIMIZED PROFESSIONAL PROFILE STYLES
   ===================================================== */

.prof-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: clamp(5rem, 10vh, 10rem) 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-100);
}

.prof-hero::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -10%;
    width: 45%;
    height: 45%;
    background: radial-gradient(circle, rgba(47, 138, 160, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.prof-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .prof-hero-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 5rem;
    }
}

.prof-hero-image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
    aspect-ratio: 4 / 5;
}

.prof-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.prof-hero-content {
    max-width: 640px;
}

.prof-hero-eyebrow {
    color: var(--eq-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.prof-hero-name {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.prof-hero-title {
    font-size: 1.15rem;
    color: var(--gray-500);
    font-weight: 400;
    margin-bottom: 2rem;
}

.prof-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-100);
}

.prof-stat-item h4 {
    font-size: 1.5rem;
    color: var(--eq-teal);
    margin-bottom: 0.25rem;
}

.prof-stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    font-weight: 700;
}

/* Resources Section with Gating */
.prof-resources {
    padding: 6rem 0;
    background: var(--gray-50);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.resource-thumb {
    aspect-ratio: 16 / 9;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.resource-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.resource-lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resource-card:hover .resource-lock-overlay {
    opacity: 1;
}

.resource-lock-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eq-teal);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.resource-body {
    padding: 1.5rem;
}

.resource-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--eq-teal);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.resource-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

/* Member Drive Banner */
.member-drive {
    background: linear-gradient(135deg, var(--eq-teal) 0%, var(--eq-teal-dark) 100%);
    border-radius: 2rem;
    padding: 4rem;
    color: white;
    text-align: center;
    margin-top: 4rem;
}

.member-drive h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.member-drive p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}


/* =====================================================
   PROFESSIONAL PAGE ENHANCEMENTS
   ===================================================== */

.transformation-section {
    position: relative;
    padding: 8rem 0;
    background: #ffffff;
    overflow: hidden;
}

.transformation-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(47, 138, 160, 0.1);
    border-radius: 2.5rem;
    padding: 3.5rem;
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.08);
}

.transformation-video-wrap {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.25);
    aspect-ratio: 16 / 9;
    background: #000;
}

.transformation-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.transformation-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 0;
    display: grid;
    gap: 1.25rem;
}

.transformation-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--gray-700);
    padding: 1rem 1.5rem;
    background: rgba(47, 138, 160, 0.04);
    border-radius: 1rem;
    border: 1px solid rgba(47, 138, 160, 0.08);
    transition: all 0.3s ease;
}

.transformation-list li:hover {
    background: rgba(47, 138, 160, 0.08);
    transform: translateX(8px);
}

.transformation-list i {
    color: #2f8aa0;
    flex-shrink: 0;
}

/* =====================================================
   WHO WE ARE - EVENTS SECTION
   ===================================================== */

.events-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.event-premium-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #0f172a;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.event-premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.4);
}

.event-premium-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.event-premium-card:hover .event-premium-img {
    opacity: 0.5;
    transform: scale(1.1);
}

.event-premium-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
    color: white;
}

.event-premium-city {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #2f8aa0;
    margin-bottom: 0.5rem;
}

.event-premium-name {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.event-premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    text-decoration: none;
}

.event-premium-card:hover .event-premium-btn {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   BLOG PAGE ENHANCEMENTS
   ===================================================== */

.blog-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.blog-card-premium {
    background: white;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.12);
}

.blog-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-premium:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #2f8aa0;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
}

.blog-card-excerpt {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.blog-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-50);
}

@media (max-width: 768px) {
    .prof-hero-img-wrap {
        margin: 1.5rem !important;
        border-radius: 2rem !important;
    }
}

/* ================================================
   BLOG ARTICLE FULL STYLES
   ================================================ */
.blog-article-full {
    padding: 3.5rem 0;
}

.blog-article-header {
    margin-bottom: 2rem;
}

.blog-article-tag {
    display: inline-block;
    background: rgba(47, 138, 160, 0.1);
    color: #2f8aa0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.blog-article-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.blog-article-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.blog-article-img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    border-radius: 1.5rem;
    margin-bottom: 2.5rem;
}

.blog-article-body {
    color: #334155;
    line-height: 1.85;
    font-size: 1.05rem;
}

.blog-article-body p {
    margin-bottom: 1.25rem;
}

.blog-article-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin: 2rem 0 0.75rem;
    letter-spacing: -0.01em;
}

.blog-article-body ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.blog-article-body ul li {
    padding: 0.85rem 1.25rem;
    background: rgba(47, 138, 160, 0.05);
    border-left: 3px solid #2f8aa0;
    border-radius: 0 0.75rem 0.75rem 0;
    font-size: 0.95rem;
}

.blog-article-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.blog-article-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 1rem 0;
}

/* Blog card premium fixes */
.blog-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card-premium {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.blog-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(47, 138, 160, 0.12);
    border-color: rgba(47, 138, 160, 0.2);
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-premium:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-tag {
    display: inline-block;
    background: rgba(47, 138, 160, 0.1);
    color: #2f8aa0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
    width: fit-content;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-footer {
    margin-top: auto;
}

/* ================================================
   MOBILE GLOBAL IMPROVEMENTS
   ================================================ */
@media (max-width: 768px) {
    /* Blog mobile */
    .blog-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    #articles {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .blog-article-full {
        padding: 2rem 0;
    }

    .blog-article-img {
        border-radius: 1rem;
        aspect-ratio: 16/9;
    }

    .blog-article-cta {
        flex-direction: column;
    }

    .blog-article-cta a {
        text-align: center;
        justify-content: center !important;
    }

    /* Hero split mobile — ensure content text is comfortably padded */
    .hero--split .home-hero-text {
        padding: 2rem 1.25rem 1.5rem !important;
    }

    /* General section spacing on mobile */
    .py-32 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-24 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* Section kicker + title tighter on mobile */
    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
    }

    /* Transformation section mobile */
    .transformation-card {
        padding: 1.5rem !important;
    }

    .transformation-video-wrap iframe {
        height: 220px !important;
    }

    /* Events premium grid mobile */
    .events-premium-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    /* Blog hero badges — don't overflow on mobile */
    .home-hero-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    /* Professional cards on our-professionals mobile */
    .eq-person-card {
        padding: 1.5rem;
    }

    /* Resource grid mobile */
    .resource-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ================================================
   PRODUCT PAGE IMAGE BORDER RADIUS
   ================================================ */
/* Covers opti-weigh, pure-body-balance, dimp-less */
.home-hero-img-wrap {
    overflow: hidden;
    border-radius: 2rem;
}

.home-hero-img-wrap picture img,
.home-hero-img-wrap img {
    border-radius: 0; /* parent has radius, image should fill */
}

/* Product lifestyle images */
#lifestyle .card,
#lifestyle .card img,
#future .card,
#future .card img {
    border-radius: 1.5rem !important;
    overflow: hidden;
}

/* Lifestyle section images specifically */
#lifestyle .grid img,
#future .grid img {
    border-radius: 1.5rem !important;
    overflow: hidden;
}

/* Video wrap */
.video-local {
    border-radius: 1.5rem;
    overflow: hidden;
}
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

:root {
    /* Brand Colors - Equilibrium Teal (Updated to match branding #2f8aa0) */
    --primary-50: #eef7f8;
    --primary-100: #d4ecef;
    --primary-200: #add9e0;
    --primary-300: #76bac7;
    --primary-400: #2f8aa0;
    --primary-500: #356d79;
    --primary-600: #2c5c66;
    --primary-700: #244b53;
    --primary-800: #1d3c42;
    --primary-900: #173035;
    --primary-950: #0f1f22;

    /* Accent Colors - Clean Blue */
    --accent-50: var(--primary-50);
    --accent-100: var(--primary-100);
    --accent-200: var(--primary-200);
    --accent-300: var(--primary-300);
    --accent-400: var(--primary-400);
    --accent-500: var(--primary-500);
    --accent-600: var(--primary-600);
    --accent-700: var(--primary-700);
    --accent-800: var(--primary-800);
    --accent-900: var(--primary-900);

    /* Neutrals */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Fonts */
    --font-sans: 'Lato', sans-serif;
    --font-serif: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Layout */
    --max-width: 1280px;
    --header-height: 96px;
    --top-bar-height: 40px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.6;
    background-color: white;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 0.75rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

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

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-1 {
    flex: 1;
}

.flex-grow {
    flex-grow: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-10 {
    gap: 2.5rem;
}

.grid {
    display: grid;
}

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

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .md\:gap-12 {
        gap: 3rem;
    }

    .md\:p-16 {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

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

.uppercase {
    text-transform: uppercase;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-tight {
    letter-spacing: -0.02em;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-light {
    font-weight: 300;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

@media (min-width: 768px) {
    .md\:text-base {
        font-size: 1rem;
    }

    .md\:text-5xl {
        font-size: 3rem;
    }

    .md\:text-7xl {
        font-size: 4.5rem;
    }

    .md\:border-b-0 {
        border-bottom: 0;
    }

    .md\:border-r {
        border-right: 1px solid;
    }

    .md\:p-32 {
        padding: 8rem;
    }

    .md\:flex-row {
        flex-direction: row;
    }
}

.text-white {
    color: white;
}

.text-primary-50 {
    color: var(--primary-50);
}

.text-primary-100 {
    color: var(--primary-100);
}

.text-primary-600 {
    color: var(--primary-600);
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-gray-800 {
    color: var(--gray-800);
}

.text-gray-900 {
    color: var(--gray-900);
}

.text-white\/90 {
    color: rgba(255, 255, 255, 0.9);
}

.bg-white {
    background-color: white;
}

.bg-primary-600 {
    background-color: var(--primary-600);
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.block {
    display: block;
}

.hidden {
    display: none;
}

.w-full {
    width: 100%;
}

.w-4 {
    width: 1rem;
}

.h-full {
    height: 100%;
}

.h-4 {
    height: 1rem;
}

.h-64 {
    height: 16rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.p-0 {
    padding: 0;
}

.p-3 {
    padding: 0.75rem;
}

.p-8 {
    padding: 2rem;
}

.p-16 {
    padding: 4rem;
}

.p-12 {
    padding: 3rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-20 {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.border-b {
    border-bottom: 1px solid;
}

.border-gray-50 {
    border-color: var(--gray-50);
}

.border-gray-200 {
    border-color: var(--gray-200);
}

.border-white\/30 {
    border-color: rgba(255, 255, 255, 0.3);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-sm {
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.transition-all {
    transition: all 0.3s ease;
}

.hover\:underline:hover {
    text-decoration: underline;
}

.hover\:text-primary-600:hover {
    color: var(--primary-600);
}

.hover\:bg-gray-50:hover {
    background-color: var(--gray-50);
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:bg-white\/10:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.overflow-hidden {
    overflow: hidden;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

/* Custom Sections */

/* Header */
.top-bar {
    height: var(--top-bar-height);
    background-color: var(--gray-100);
    font-size: 0.875rem;
    color: var(--gray-600);
}

.main-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(14px) saturate(1.6);
    backdrop-filter: blur(14px) saturate(1.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.logo-container img {
    height: 60px;
    width: auto;
}

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

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: 1.5rem;
    color: var(--gray-700);
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Startup Splash (Marketing/PWA) */
.marketing-startup-splash {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: #2f8aa0;
}

.marketing-startup-splash__content {
    display: grid;
    place-items: center;
    padding: 1rem;
    animation: marketing-startup-splash-in 0.8s ease-out forwards;
}

.marketing-startup-splash__logo {
    width: clamp(120px, 30vw, 180px);
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

@keyframes marketing-startup-splash-in {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.marketing-startup-splash--exit {
    animation: marketing-startup-splash-out 0.52s ease forwards;
}

@keyframes marketing-startup-splash-out {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marketing-startup-splash {
        display: none !important;
    }
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    backdrop-filter: blur(20px) saturate(1.5);
    min-width: 280px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 2px solid var(--primary-600);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.2s ease;
    white-space: nowrap;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background-color: rgba(0, 128, 128, 0.06);
    color: var(--primary-600);
    border-left-color: var(--primary-600);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--gray-100);
    margin: 0.5rem 0;
}

/* Mobile Submenu Styles */
.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0.25rem;
    font-weight: 600;
    color: var(--primary-300);
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-submenu-toggle:hover {
    color: var(--primary-200);
}

.mobile-submenu-heading {
    color: var(--primary-300);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-submenu.active {
    max-height: 800px;
    padding: 0.5rem 0;
}

.mobile-submenu-link {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.mobile-submenu-link:hover {
    color: var(--primary-300);
    border-left-color: var(--primary-400);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-link {
    display: block;
    padding: 1rem 0.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.mobile-menu-link:hover {
    color: var(--primary-300);
    padding-left: 0.5rem;
}

.submenu-icon {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
}

.btn-icon {
    color: var(--gray-700);
    padding: 0.5rem;
    font-size: 1.25rem;
}

/* Hero */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: calc(var(--header-height) * -1);
    /* Full bleed */
}

.hero--subpage {
    height: 60vh !important;
    min-height: 480px;
}

@media (max-width: 767px) {
    .hero {
        margin-top: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding-top: calc(var(--header-height) + var(--top-bar-height) + 0.5rem);
        padding-bottom: 1.5rem;
        height: auto;
        min-height: auto;
        background-color: var(--primary-700);
    }

    .hero--subpage {
        padding-top: calc(var(--header-height) + 2rem);
    }

    .hero::before {
        display: none;
    }

    .hero picture {
        display: block;
        position: relative;
        z-index: 1;
        order: 2;
        width: 100%;
        padding: 0 1rem;
    }

    .hero .hero-bg {
        position: static;
        display: block;
        width: 100%;
        height: auto;
        inset: auto;
        z-index: 1;
        object-fit: cover;
        border-radius: 1.25rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hero-content {
        order: 1;
        padding: 2rem 1.5rem !important;
        padding-top: 2rem !important;
        border-radius: 1.25rem;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
        margin-bottom: 1.5rem !important;
        width: calc(100% - 2rem) !important;
        max-width: none !important;
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 8vw, 2.1rem) !important;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-content p {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 1.5rem !important;
    }

    /* Restore original hero behavior for product pages */
    .hero--dimpless,
    .hero--optiweigh,
    .hero--purebody {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        height: auto;
    }

    .hero--dimpless::before,
    .hero--optiweigh::before,
    .hero--purebody::before {
        display: block;
    }

    .hero--dimpless picture,
    .hero--optiweigh picture,
    .hero--purebody picture {
        position: static;
        order: unset;
        padding: 0;
    }

    .hero--dimpless .hero-bg,
    .hero--optiweigh .hero-bg,
    .hero--purebody .hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    /* Lighter overlay for glassmorphism */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-top: var(--header-height);
    /* Glassmorphism / Frosted Glass Effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Glassmorphism Utility - Reusable Glass Panel */
.glass-panel {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .glass-panel {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }

    .product-page .hero-split-content h1 {
        line-height: 1.02 !important;
    }
}

/* Transparent variant for cards inside glass panels */
.hero-split-card-glass {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-600);
}

.btn-teal {
    background-color: var(--primary-600);
    color: white;
}

.btn-teal:hover {
    background-color: var(--primary-700);
    border-color: var(--primary-700);
}

.btn-white {
    background-color: white;
    color: var(--primary-800);
}

.btn-white:hover {
    background-color: var(--gray-50);
}

.btn-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Sections specific */
.bg-teal-container {
    background: var(--primary-600);
    color: white;
    border-radius: 2rem;
    padding: 4rem 2rem;
}

.feature-section {
    color: white;
    overflow: hidden;
}

.split-section {
    display: grid;
    width: 100%;
}

/* Footer */
.site-footer {
    background-color: white;
    color: var(--gray-800);
    padding-top: 5rem;
}

.site-footer-topline {
    height: 4px;
    background: var(--primary-600);
    margin-bottom: 2rem;
}

.site-footer-topnav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.site-footer-topnav-link {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-800);
    opacity: 0.9;
}

.site-footer-topnav-link:hover {
    color: var(--primary-600);
    opacity: 1;
}

.site-footer-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 2.5rem 0 0;
}

.site-footer-brand-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-200);
    flex-wrap: wrap;
    gap: 2rem;
}

.site-footer-legal,
.site-footer-social {
    display: flex;
    gap: 1.5rem;
}

.site-footer-legal {
    justify-content: center;
    flex-wrap: wrap;
}

.site-footer-social {
    justify-content: flex-end;
}

.site-footer-legal-link {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.site-footer-legal-link:hover {
    color: var(--primary-600);
}

.site-footer-bottombar {
    background-color: white;
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-600);
    text-align: center;
}

.site-footer-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: var(--gray-600);
    padding: 1rem 0 2rem;
    flex-wrap: wrap;
    line-height: 1.6;
}

.site-footer-contact-sep {
    color: var(--gray-300);
}

.site-footer-logo {
    max-width: 180px;
    height: auto;
    display: block;
}

.site-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.site-footer-brand-lockup {
    display: flex;
    justify-content: center;
}

.site-footer-powered {
    font-size: 0.75rem;
    color: var(--primary-600);
    text-align: center;
    max-width: 720px;
    margin: 2.5rem auto 0;
    line-height: 1.5;
}

.site-footer-powered,
.site-footer-bottombar-inner {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.site-footer-social-link {
    color: var(--primary-600);
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-footer-social-link:hover {
    opacity: 1;
    color: var(--primary-600);
    transform: translateY(-2px);
}

.site-footer-bottombar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Responsive Footer Adjustments */
@media (max-width: 1024px) {
    .site-footer-brand-row {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .site-footer-legal,
    .site-footer-social {
        justify-content: center;
        gap: 1rem;
    }

    .site-footer-logo {
        max-width: 160px;
    }
}

@media (max-width: 640px) {
    .site-footer-topnav {
        flex-direction: column;
        gap: 1rem;
    }

    .site-footer-topnav-link {
        font-size: 1rem;
    }

    .site-footer-contact {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .site-footer-contact-sep {
        display: none;
    }

    .site-footer-logo {
        max-width: 140px;
    }

    .site-footer-powered {
        font-size: 0.7rem;
    }
}

/* Mobile Nav */
.md-only {
    display: block;
}

.hidden-md {
    display: none !important;
}

@media (min-width: 1024px) {
    .md-only {
        display: none !important;
    }

    .hidden-md {
        display: flex !important;
    }
}

#mobile-menu {
    bottom: 0 !important;
    background: var(--primary-500) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border-top: 3px solid var(--primary-600) !important;
    padding: 1.25rem 1.5rem !important;
}

#mobile-menu .nav-link,
#mobile-menu .mobile-menu-link {
    display: block;
    margin-left: 0 !important;
    padding: 1rem 0.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    letter-spacing: 0.02em;
}

#mobile-menu .nav-link:hover,
#mobile-menu .mobile-menu-link:hover {
    color: rgba(255, 255, 255, 0.72);
    padding-left: 0.5rem;
}

#mobile-menu .mobile-submenu-toggle .nav-link,
#mobile-menu .mobile-submenu-heading {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* CTA Hero */
.cta-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    max-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.cta-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

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

.cta-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.cta-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
    .cta-hero {
        min-height: 85vh;
        max-height: 85vh;
    }

    .cta-hero-title {
        font-size: 2.25rem;
    }

    .cta-hero-subtitle {
        font-size: 1.05rem;
    }
}

.cta-headline {
    padding: 4rem 0;
    background: transparent;
    text-align: center;
    color: var(--gray-800);
}

.cta-headline-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.cta-headline-em {
    font-weight: 700;
    color: var(--primary-600);
}

/* Blog Specific */
.blog-panel {
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    backdrop-filter: blur(18px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.blog-cta-row {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.blog-image-placeholder {
    background-color: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}

.blog-image-placeholder i {
    width: 48px;
    height: 48px;
}

.blog-article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .blog-article {
        grid-template-columns: 1fr 1.5fr;
    }
}

.blog-image-placeholder--article {
    height: 100%;
    min-height: 300px;
    border-radius: 2rem;
}

.blog-image-placeholder--card {
    height: 240px;
    border-radius: 1.5rem 1.5rem 0 0;
}

.blog-card-meta {
    display: inline-block;
    background: var(--primary-600);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.blog-card-points {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
    color: var(--gray-600);
}

.blog-card-points li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger animation delays for multiple elements */
.animate-fade-in-up:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-fade-in-up:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-fade-in-up:nth-child(3) {
    animation-delay: 0.3s;
}

.animate-fade-in-up:nth-child(4) {
    animation-delay: 0.4s;
}

.animate-fade-in-up:nth-child(5) {
    animation-delay: 0.5s;
}

.animate-fade-in-up:nth-child(6) {
    animation-delay: 0.6s;
}

/* =====================================
   Sleek UI Theme (Global Site Rollout)
   ===================================== */
.sleek-ui {
    background:
        radial-gradient(1100px 700px at -10% 8%, rgba(0, 128, 128, 0.1), transparent 62%),
        radial-gradient(860px 560px at 110% 76%, rgba(0, 128, 128, 0.08), transparent 58%),
        linear-gradient(180deg, #f7fcfc 0%, #ffffff 46%, #f7fbfb 100%);
}

.sleek-ui main {
    background:
        radial-gradient(1200px 520px at 50% 0%, rgba(0, 128, 128, 0.05), transparent 70%);
}

.sleek-ui .top-bar {
    background: #f1f5f9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--gray-600);
}

.sleek-ui .top-bar a {
    font-weight: 700;
    letter-spacing: 0.01em;
}

.sleek-ui .main-header {
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(18px) saturate(1.8);
    backdrop-filter: blur(18px) saturate(1.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 12px rgba(8, 24, 25, 0.06);
}

.sleek-ui .logo-container img {
    filter: drop-shadow(0 6px 10px rgba(0, 128, 128, 0.08));
}

.sleek-ui .nav-link {
    font-weight: 700;
    letter-spacing: 0.015em;
    color: #2f8aa0;
}

.sleek-ui .nav-link:hover,
.sleek-ui .nav-link.active {
    color: var(--primary-700);
}

.sleek-ui .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 128, 128, 0.14);
    border-top: 2px solid var(--primary-600);
    box-shadow: 0 20px 45px rgba(6, 18, 19, 0.16);
}

.sleek-ui .dropdown-link:hover {
    background-color: rgba(0, 128, 128, 0.09);
    color: var(--primary-700);
    border-left-color: var(--primary-600);
}

.sleek-ui .hero::before {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.52), rgba(0, 128, 128, 0.34), rgba(0, 128, 128, 0.28));
}

.sleek-ui .hero-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 26px 50px rgba(4, 21, 22, 0.26);
}

.sleek-ui .btn {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.28s ease;
}

.sleek-ui .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(4, 21, 22, 0.17);
}

.sleek-ui .btn-teal {
    background: linear-gradient(130deg, #2f8aa0 0%, #2f8aa0 54%, #2f8aa0 100%);
    color: white;
    border-color: transparent;
}

.sleek-ui .btn-teal:hover {
    background: linear-gradient(130deg, #2f8aa0 0%, #2f8aa0 58%, #2f8aa0 100%);
    border-color: transparent;
}

.sleek-ui .btn-outline {
    border-color: rgba(0, 128, 128, 0.32);
    color: var(--primary-700);
    background: rgba(255, 255, 255, 0.75);
}

.sleek-ui .btn-outline:hover {
    background: var(--primary-600);
    color: #ffffff;
    border-color: var(--primary-600);
}

.sleek-ui .btn-white {
    color: var(--primary-800);
    box-shadow: 0 10px 18px rgba(4, 21, 22, 0.15);
}

.sleek-ui .card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 128, 128, 0.14);
    border-radius: 1.2rem;
    box-shadow: 0 16px 30px rgba(5, 19, 20, 0.09);
}

.sleek-ui .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 40px rgba(5, 19, 20, 0.14);
}

.sleek-ui .bg-teal-container {
    background: linear-gradient(142deg, #2f8aa0 0%, #2f8aa0 52%, #2f8aa0 100%);
    box-shadow: 0 28px 48px rgba(0, 64, 69, 0.24);
}

.sleek-ui .feature-section {
    background: linear-gradient(140deg, #2f8aa0 0%, #2f8aa0 56%, #2f8aa0 100%);
}

.sleek-ui .cta-hero {
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 40px rgba(5, 19, 20, 0.22);
}

.sleek-ui .cta-hero-overlay {
    background: linear-gradient(140deg, rgba(5, 20, 22, 0.66) 0%, rgba(6, 52, 57, 0.58) 52%, rgba(5, 20, 22, 0.56) 100%);
}

.sleek-ui .site-footer {
    background: linear-gradient(180deg, #fbfefe 0%, #f0f8f7 100%);
    border-top: 1px solid rgba(0, 128, 128, 0.14);
}

.sleek-ui .site-footer-topline {
    background: linear-gradient(90deg, #2f8aa0 0%, #2f8aa0 55%, #2f8aa0 100%);
}

.sleek-ui .site-footer-topnav-link,
.sleek-ui .site-footer-legal-link {
    color: #2f8aa0;
}

.sleek-ui .site-footer-topnav-link:hover,
.sleek-ui .site-footer-legal-link:hover,
.sleek-ui .site-footer-social-link:hover {
    color: var(--primary-700);
}

.sleek-ui #mobile-menu {
    background: var(--primary-500) !important;
    border-top: 3px solid var(--primary-600) !important;
}

.sleek-ui #mobile-menu .mobile-menu-link {
    color: #ffffff;
}

.sleek-ui #mobile-menu .mobile-menu-link:hover {
    color: rgba(255, 255, 255, 0.72);
}

.sleek-ui a:focus-visible,
.sleek-ui button:focus-visible {
    outline: 3px solid rgba(0, 128, 128, 0.35);
    outline-offset: 3px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .sleek-ui {
        --top-bar-height: 0px;
        --header-height: 78px;
    }

    .sleek-ui .top-bar {
        display: none;
    }

    .sleek-ui .main-header {
        height: var(--header-height);
    }

    .sleek-ui .logo-container img {
        height: 50px;
    }

    .logo-container {
        gap: 0;
    }

    .sleek-ui .container {
        padding: 0 1.1rem;
    }
}

@media (max-width: 768px) {
    .sleek-ui .py-24 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .sleek-ui .hero-content {
        margin-left: 0.8rem !important;
        margin-right: 0.8rem !important;
        width: calc(100% - 1.6rem) !important;
        border-radius: 1.2rem;
    }

    .sleek-ui .btn {
        letter-spacing: 0.04em;
        font-size: 0.82rem;
    }

    .sleek-ui .card {
        border-radius: 1rem;
    }

    .sleek-ui .cta-hero {
        border-radius: 1.4rem;
        margin-left: 0.8rem;
        margin-right: 0.8rem;
    }
}

/* Non-home pages: force same design language as index */
.sleek-ui:not(.home-page) .hero {
    min-height: clamp(640px, 88vh, 860px);
}

.sleek-ui:not(.home-page) .hero::before {
    background: linear-gradient(145deg, rgba(0, 128, 128, 0.82) 4%, rgba(0, 128, 128, 0.68) 52%, rgba(0, 128, 128, 0.54) 100%) !important;
}

.sleek-ui:not(.home-page) .hero-content {
    max-width: 900px;
    padding-top: clamp(2rem, 4.5vw, 3.4rem);
    background: linear-gradient(138deg, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0.09));
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 30px 56px rgba(3, 20, 22, 0.34);
}

.sleek-ui:not(.home-page) .hero-content .uppercase.tracking-widest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #2f8aa0 !important;
    font-size: 0.78rem !important;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.sleek-ui:not(.home-page) .hero-content .uppercase.tracking-widest::before,
.sleek-ui:not(.home-page) .hero-content .uppercase.tracking-widest::after {
    content: "";
    width: 20px;
    height: 1px;
    background: rgba(216, 247, 245, 0.62);
}

.sleek-ui:not(.home-page) .hero-content .text-7xl,
.sleek-ui:not(.home-page) .hero-content .text-5xl,
.sleek-ui:not(.home-page) .hero-content .text-4xl,
.sleek-ui:not(.home-page) .hero-content .text-3xl {
    font-size: clamp(2rem, 5vw, 4.7rem) !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    text-shadow: none !important;
}

.sleek-ui:not(.home-page) .hero-content .text-xl,
.sleek-ui:not(.home-page) .hero-content .text-base {
    max-width: 720px;
    margin-inline: auto;
    color: rgba(241, 252, 251, 0.94) !important;
    font-size: clamp(1rem, 1.9vw, 1.22rem) !important;
    line-height: 1.62 !important;
    text-shadow: none !important;
}

.sleek-ui:not(.home-page) .hero-content .btn-bounce {
    animation: none;
}

.sleek-ui:not(.home-page) .main-content,
.sleek-ui:not(.home-page) .partnership-section,
.sleek-ui:not(.home-page) section.py-24,
.sleek-ui:not(.home-page) section#articles {
    position: relative;
}

.sleek-ui:not(.home-page) .main-content h1,
.sleek-ui:not(.home-page) .main-content h2,
.sleek-ui:not(.home-page) section.py-24 h1,
.sleek-ui:not(.home-page) section.py-24 h2,
.sleek-ui:not(.home-page) .partnership-section h1,
.sleek-ui:not(.home-page) .partnership-section h2 {
    letter-spacing: -0.02em;
}

.sleek-ui:not(.home-page) .prof-image-card,
.sleek-ui:not(.home-page) .magazine-card,
.sleek-ui:not(.home-page) .magazine-sidecard,
.sleek-ui:not(.home-page) .blog-panel,
.sleek-ui:not(.home-page) .clinical-card,
.sleek-ui:not(.home-page) .clinical-metric,
.sleek-ui:not(.home-page) .clinical-cta,
.sleek-ui:not(.home-page) .event-card,
.sleek-ui:not(.home-page) .benefit-item,
.sleek-ui:not(.home-page) .trust-item {
    border: 1px solid rgba(0, 128, 128, 0.14);
    box-shadow: 0 16px 30px rgba(5, 19, 20, 0.1);
}

.sleek-ui:not(.home-page) .cta-box {
    box-shadow: 0 24px 40px rgba(5, 19, 20, 0.2);
    border: 1px solid rgba(180, 252, 247, 0.3);
}

.sleek-ui:not(.home-page) .plan-image-placeholder--card,
.sleek-ui:not(.home-page) .recipe-image-placeholder--card,
.sleek-ui:not(.home-page) .blog-image-placeholder--card {
    border-radius: 1.15rem 1.15rem 0 0;
    overflow: hidden;
}

.sleek-ui:not(.home-page) .plan-eyebrow,
.sleek-ui:not(.home-page) .page-eyebrow,
.sleek-ui:not(.home-page) .blog-card-meta,
.sleek-ui:not(.home-page) .plan-card-meta {
    color: var(--primary-600);
    font-weight: 700;
}

.sleek-ui:not(.home-page) .modal-content {
    border: 1px solid rgba(0, 128, 128, 0.18);
    box-shadow: 0 28px 46px rgba(5, 19, 20, 0.22);
}

@media (max-width: 1024px) {
    .sleek-ui:not(.home-page) .hero {
        min-height: auto;
    }
}



/* =====================================================
   SPLIT-PANEL HERO — shared across home & inner pages
   ===================================================== */

/* Light background hero */
.hero--split {
    min-height: clamp(750px, 95vh, 1080px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.hero--split::before {
    display: none;
}

.hero--split .home-hero-h1 {
    color: #0f172a;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
}

.hero--split .home-hero-h1 em {
    font-style: normal;
    color: #2f8aa0;
}

.hero--split .home-hero-sub {
    color: #475569;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 2rem;
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(5rem, 10vh, 8rem) 2rem clamp(3rem, 6vh, 5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Responsive */
/* Tablet: keep 2-column layout, tighten spacing */
@media (min-width: 768px) and (max-width: 1024px) {
    .home-hero-inner {
        gap: 2.5rem;
        padding: 2.5rem 1.5rem 3rem;
    }
    .home-hero-img-wrap {
        aspect-ratio: 4 / 3;
    }
    .home-hero-sub {
        max-width: 100%;
    }
}

/* Mobile: image on top, text below — no text on image */
@media (max-width: 767px) {
    .hero--split {
        min-height: auto;
        padding-bottom: 0;
    }
    .home-hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }
    .home-hero-visual {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    .home-hero-visual::before,
    .home-hero-visual::after {
        display: none;
    }
    .home-hero-img-wrap {
        border-radius: 0 !important;
        aspect-ratio: 4 / 3;
        box-shadow: none;
        margin-left: 0;
        margin-right: 0;
    }
    .home-hero-text {
        padding: 2rem 1.25rem 3rem;
    }
    .home-hero-kicker {
        margin-bottom: 0.75rem;
    }
    .home-hero-h1 {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
        margin-bottom: 0.8rem;
    }
    .home-hero-sub {
        font-size: 0.92rem;
        margin-bottom: 1.25rem;
    }
    .home-hero-ctas {
        margin-bottom: 1.25rem;
        gap: 1rem;
        flex-direction: column;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
    }
    .btn-hero-outline {
        color: var(--eq-teal-dark, #1f6b7d) !important;
        border-color: var(--eq-teal, #2f8aa0);
    }
    .home-hero-badges {
        gap: 0.45rem;
    }
    .home-hero-badge {
        padding: 0.35rem 0.7rem;
        font-size: 0.68rem;
    }
    /* who-we-are specific mobile tweaks */
    .home-hero-img-badge {
        padding: 0.75rem 0.9rem;
        margin-bottom: 1rem;
        gap: 0.6rem;
    }
}

/* =====================================================
   HOME HERO — BASE ELEMENT STYLES (desktop-first)
   These are the foundation styles; responsive overrides
   live in the media queries above.
   ===================================================== */

.home-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-600);
}

.home-hero-kicker::before {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-400);
    border-radius: 2px;
    flex-shrink: 0;
}

.home-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

.home-hero-visual {
    position: relative;
}

.home-hero-img-wrap {
    aspect-ratio: 4 / 3;
    border-radius: 2.25rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow:
        0 32px 64px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.55);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.home-hero-img-wrap img,
.home-hero-img-wrap picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 2.25rem;
    display: block;
}

.btn-hero-primary,
.btn-hero-primary:hover {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #2f8aa0;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    border-radius: 12px;
    border: 2px solid #2f8aa0;
    transition: none;
    box-shadow: 0 8px 24px rgba(47, 138, 160, 0.28);
    text-decoration: none;
    transform: none;
}

.btn-hero-outline,
.btn-hero-outline:hover {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #2f8aa0;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    border-radius: 12px;
    border: 2px solid #2f8aa0;
    transition: none;
    text-decoration: none;
    box-shadow: none;
    transform: none;
}

/* Stat badges inside the hero */
.home-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 99px;
    background: rgba(47, 138, 160, 0.08);
    border: 1px solid rgba(47, 138, 160, 0.2);
    color: var(--primary-700);
}

/* No decorative glows — flat accent color only */
.home-hero-visual::before,
.home-hero-visual::after {
    display: none;
}

/* Home-page style rollout from index.html */
.home-page,
.home-page * {
    font-family: 'Lato', sans-serif;
}

.home-page main {
    background: #ffffff;
}

.home-page .top-bar {
    background: #f1f5f9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--gray-600);
}

.home-page .top-bar a {
    font-weight: 700;
    letter-spacing: 0.01em;
}

.home-page .hero {
    min-height: clamp(720px, 95vh, 920px);
}

.home-page .hero--home::before {
    background: linear-gradient(155deg, rgba(3, 31, 35, 0.85) 5%, rgba(0, 82, 88, 0.72) 52%, rgba(2, 120, 128, 0.58) 100%) !important;
}

.home-page .hero--home::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.2), transparent 36%),
        linear-gradient(120deg, rgba(25, 211, 199, 0.17), transparent 48%);
    z-index: -1;
    pointer-events: none;
}

.home-page .hero-content {
    max-width: 900px;
    padding-top: clamp(2rem, 5vw, 3.6rem);
    background: linear-gradient(138deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 30px 60px rgba(2, 26, 29, 0.36);
}

.home-page .hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-family: "Lato", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2f8aa0;
}

.home-page .hero-kicker::before,
.home-page .hero-kicker::after {
    content: "";
    width: 22px;
    height: 1px;
    background: rgba(216, 247, 245, 0.62);
}

.home-page .hero-heading {
    font-size: clamp(2.2rem, 5.4vw, 5rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    text-transform: none;
}

.home-page .hero-subcopy {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(242, 251, 251, 0.94);
    font-family: "Lato", sans-serif;
    font-size: clamp(1.03rem, 2.2vw, 1.32rem);
    line-height: 1.6;
}

.home-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 1.35rem;
}

.home-page .btn-ghost-light {
    border-color: rgba(255, 255, 255, 0.45);
    color: white;
    background: rgba(2, 31, 33, 0.34);
}

.home-page .btn-ghost-light:hover {
    border-color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.18);
    color: white;
}

.home-page .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.home-page .hero-metric {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(3, 25, 27, 0.26);
    backdrop-filter: blur(8px);
    padding: 0.72rem 1rem;
    font-family: "Lato", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #2f8aa0;
}

.home-page .section-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-family: "Lato", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--primary-500);
}

.home-page .section-title {
    font-size: clamp(1.95rem, 4.2vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #2f8aa0;
}

.home-page .section-title--light {
    color: white;
}

.home-page .section-subtitle {
    max-width: 760px;
    margin-inline: auto;
    color: var(--gray-600);
    font-family: "Lato", sans-serif;
    font-size: clamp(1rem, 1.7vw, 1.14rem);
    line-height: 1.7;
}

.home-page .bg-teal-container {
    background: linear-gradient(142deg, #2f8aa0 0%, #2f8aa0 52%, #2f8aa0 100%);
    box-shadow: 0 28px 48px rgba(0, 64, 69, 0.26);
    position: relative;
    overflow: hidden;
}

.home-page .bg-teal-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.2), transparent 38%);
    pointer-events: none;
}

.home-page .card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 128, 128, 0.14);
    box-shadow: 0 14px 26px rgba(5, 19, 20, 0.09);
}

.home-page .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 40px rgba(5, 19, 20, 0.15);
}

.home-page .solution-card .btn-outline {
    width: 100%;
    border-color: rgba(0, 128, 128, 0.35) !important;
    color: var(--primary-700) !important;
    background: rgba(0, 128, 128, 0.04);
}

.home-page .solution-card .btn-outline:hover {
    background: var(--primary-600);
    border-color: var(--primary-600) !important;
    color: white !important;
}

.home-page #wellness-plans {
    background: linear-gradient(140deg, #2f8aa0 0%, #2f8aa0 54%, #2f8aa0 100%) !important;
}

.home-page .split-image {
    background: url('../images/hero-healthy-food.webp') center/cover no-repeat;
    min-height: clamp(430px, 60vh, 720px);
    position: relative;
}

.home-page .split-image::before {
    content: none;
}

.home-page .feature-item {
    padding: 1rem 0 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.home-page .feature-item:last-child {
    border-bottom: 0;
}

.home-page .feature-icon {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.18);
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.home-page .home-links-bar a {
    transition: all 0.28s ease;
}

.home-page .home-links-bar a:hover {
    background: rgba(0, 128, 128, 0.08);
    color: var(--primary-700);
}

/* Wellness Plans Grid */
.home-page .wellness-plans-home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 760px;
    margin: 0 auto;
}

@media (max-width: 560px) {
    .home-page .wellness-plans-home-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
}

.home-page .meal-plan-card {
    border-radius: 1.5rem;
    background: white;
    border: 1px solid rgba(47, 138, 160, 0.14);
    padding: 1.75rem 1.25rem 1.75rem;
    box-shadow: 0 8px 24px rgba(5, 19, 20, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-page .meal-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(5, 19, 20, 0.12);
    border-color: rgba(47, 138, 160, 0.3);
}

.home-page .meal-plan-round {
    width: min(160px, 80%);
    aspect-ratio: 1/1;
    margin: 0 auto 1rem;
    border-radius: 999px;
    overflow: hidden;
    border: 3px solid rgba(47, 138, 160, 0.15);
    box-shadow: 0 8px 20px rgba(5, 19, 20, 0.12);
}

.home-page .meal-plan-card h4 {
    margin-top: 0.5rem;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.home-page .cta-headline {
    padding: 4.8rem 0 2.5rem;
}

.home-page .cta-headline-title {
    font-size: clamp(2rem, 4.3vw, 3.35rem);
    font-weight: 800;
    letter-spacing: 0.03em;
}

.home-page .btn-install-app {
    background: #2f8aa0;
    color: #ffffff;
    border-color: #2f8aa0;
    box-shadow: none;
}

.home-page .btn-install-app:hover {
    background: #267a8e;
    color: #ffffff;
    border-color: #267a8e;
}

.home-page .app-note {
    margin-top: 0.9rem;
    color: rgba(231, 252, 250, 0.9);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.install-bar {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 1100;
    background: rgba(47, 138, 160, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(47, 138, 160, 0.15);
    border-radius: 0.75rem;
    padding: 0.6rem 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 520px;
    margin: 0 auto;
    opacity: 0;
    animation: slideUp 0.4s ease-out forwards;
    animation-delay: 2s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.install-bar .install-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.install-bar-copy {
    flex: 1;
    min-width: 0;
    color: #2f8aa0;
    line-height: 1.3;
    font-size: 0.85rem;
}

.install-bar-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.8;
}

.install-bar-subtitle {
    display: none;
}

.install-bar .btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    background: #2f8aa0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    box-shadow: none;
    opacity: 0.9;
}

.install-bar .btn:hover {
    background: #267a8e;
    opacity: 1;
    transform: none;
}

.home-page .btn-later-app {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #2f8aa0 !important;
    border: none !important;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: none !important;
    opacity: 0.8;
}

.home-page .btn-later-app:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #2f8aa0 !important;
    opacity: 1;
}

.hidden-install {
    display: none !important;
}

.ios-install-sheet {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ios-install-sheet.active {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.ios-install-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(2px);
}

.ios-install-card {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: calc(6rem + env(safe-area-inset-bottom));
    max-width: 400px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1201;
    border-radius: 0.875rem;
    background: rgba(47, 138, 160, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 1rem;
}

.ios-install-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.ios-install-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.ios-install-card strong {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.home-page .ios-install-close {
    margin-top: 0.8rem;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: #2f8aa0;
    border: none;
    border-radius: 6px;
    padding: 0.65rem 1rem;
    font-weight: 600;
    font-size: 0.78rem;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    width: 100%;
}

.home-page .ios-install-close:hover {
    transform: none;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.home-page .ios-install-later {
    flex: 1;
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* Install app btn style specifically in sections */
.home-page .btn-install-app {
    background: #2f8aa0;
    color: #ffffff;
    border: 1px solid #2f8aa0;
    border-radius: 12px;
    font-weight: 800;
    padding: 1rem 2rem;
    transition: all 0.2s ease;
}

.home-page .btn-install-app:hover {
    background: #267a8e;
    border-color: #267a8e;
    color: white;
}



.home-page .cta-hero {
    min-height: 74vh;
    max-height: none;
    border-radius: 2rem;
    overflow: hidden;
    margin: 0 1.5rem 4.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 26px 44px rgba(5, 19, 20, 0.24);
}

.home-page .cta-hero-overlay {
    background: linear-gradient(140deg, rgba(5, 20, 22, 0.7) 0%, rgba(6, 52, 57, 0.62) 46%, rgba(5, 20, 22, 0.58) 100%);
}

.home-page .cta-hero-button {
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(5, 20, 22, 0.25);
}

.home-page .cta-hero-button:hover {
    background: white;
    color: var(--primary-700);
    border-color: white;
}

.home-page.js-motion .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s cubic-bezier(0.2, 0.65, 0.15, 1), transform 0.75s cubic-bezier(0.2, 0.65, 0.15, 1);
}

.home-page.js-motion .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.wellness-plans-content {
    max-width: 720px;
    margin-inline: auto;
    padding: clamp(2.5rem, 4vw, 6rem) !important;
}

.home-page a:focus-visible,
.home-page button:focus-visible {
    outline: 3px solid rgba(0, 128, 128, 0.38);
    outline-offset: 3px;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .home-page {
        --top-bar-height: 0px;
        --header-height: 76px;
    }

    .home-page.has-install-bar {
        padding-bottom: calc(5.4rem + env(safe-area-inset-bottom));
    }

    .home-page .top-bar {
        display: none;
    }

    .home-page .main-header {
        height: var(--header-height);
    }

    .home-page .logo-container img {
        height: 48px;
    }

    .split-section {
        grid-template-columns: 1fr !important;
    }

    .home-page #wellness-plans .wellness-plans-content {
        text-align: center;
        padding: 2.75rem 1.75rem;
    }

    .home-page #wellness-plans .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-page #wellness-plans .feature-item > div {
        text-align: center;
    }

    .home-page #wellness-plans .wellness-plans-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-page .hero {
        min-height: auto;
    }

    .home-page .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .home-page .hero-actions .btn {
        width: 100%;
    }

    .home-page .hero-metrics {
        grid-template-columns: 1fr;
    }

    .home-page .hero-metric {
        border-radius: 16px;
        letter-spacing: 0.06em;
    }

    .home-page .home-hero-img-wrap {
        margin-left: 1rem;
        margin-right: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 2rem;
    }

    .home-page .cta-hero {
        margin: 0 0.9rem 3.25rem;
        border-radius: 1.5rem;
    }

    .home-page .cta-hero-content {
        padding-inline: 1.25rem;
    }

    .home-page #wellness-plans .split-image {
        min-height: 260px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-color: rgba(47, 138, 160, 0.12);
    }

    .site-footer-powered,
    .site-footer-bottombar-inner {
        font-size: 0.68rem;
        line-height: 1.35;
    }
}

@media (min-width: 1025px) {
    .install-bar {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page.js-motion .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.product-page main img {
    border-radius: 1.25rem !important;
}

/* =====================================================
   EQUILIBRIUM MARKETING — GLOBAL PREMIUM DESIGN SYSTEM
   Applied site-wide via styles.css
   ===================================================== */

/* ---- Design tokens (global) ---- */
:root {
    --eq-teal: #2f8aa0;
    --eq-teal-dark: #1f6b7d;
    --eq-teal-light: #e0f2f7;
    --eq-slate: #0f172a;
    --eq-slate-mid: #475569;
    --eq-bg: #f0f8fa;
}

/* =====================================================
   MARKETING SPLASH SCREEN (premium light version)
   ===================================================== */
.mkt-splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f0f8fa;
    gap: 1.5rem;
}

.mkt-splash::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 20% 20%, rgba(47, 138, 160, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(47, 138, 160, 0.1) 0%, transparent 55%);
    pointer-events: none;
}

.mkt-splash-logo {
    width: clamp(90px, 22vw, 130px);
    height: auto;
    position: relative;
    z-index: 1;
    animation: mkt-splash-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes mkt-splash-pop {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.mkt-splash-bar {
    width: 140px;
    height: 3px;
    background: rgba(47, 138, 160, 0.15);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.mkt-splash-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--eq-teal) 0%, var(--eq-teal-dark) 100%);
    border-radius: 99px;
    animation: mkt-splash-load 1.1s ease forwards;
    width: 0%;
}

@keyframes mkt-splash-load {
    0% {
        width: 0%;
    }

    60% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}

.mkt-splash-tagline {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--eq-teal);
    opacity: 0.85;
    position: relative;
    z-index: 1;
    animation: mkt-splash-pop 0.6s 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.mkt-splash--exit {
    animation: mkt-splash-out 0.45s 0.05s ease forwards;
}

@keyframes mkt-splash-out {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* =====================================================
   PAGE HERO — STANDARD INTERNAL PAGE HERO
   Used on all marketing pages except home
   ===================================================== */
.page-hero {
    position: relative;
    min-height: clamp(300px, 45vh, 500px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fa 40%, #e4f0f5 100%);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(15, 23, 42, 0.58) 0%,
            rgba(15, 23, 42, 0.3) 50%,
            rgba(15, 23, 42, 0.15) 100%);
    z-index: 1;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    border-radius: 0 !important;
    transition: transform 0.6s ease;
}

.page-hero:hover .page-hero-bg {
    transform: scale(1.02);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem);
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.page-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.page-hero-kicker::before {
    content: "";
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

.page-hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    margin-bottom: 0.8rem;
}

.page-hero-title em {
    font-style: normal;
    color: rgba(173, 228, 243, 0.95);
}

.page-hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* =====================================================
   GLOBAL SECTION UTILITIES (used on all pages)
   ===================================================== */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--eq-teal);
}

.section-kicker::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--eq-teal);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 1.1rem;
}

.section-subtitle {
    max-width: 680px;
    margin-inline: auto;
    color: #64748b;
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    line-height: 1.75;
}

.section-pad {
    padding: 5.5rem 0;
}

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

.section-bg-light {
    background: #f8fafc;
}

.section-bg-white {
    background: #fff;
}

/* =====================================================
   PREMIUM GLOBAL BUTTONS
   ===================================================== */
.btn-teal-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.9rem;
    background: var(--eq-teal) !important;
    color: #fff !important;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 22px rgba(47, 138, 160, 0.28);
}

.btn-teal-pill:hover {
    background: var(--eq-teal-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(47, 138, 160, 0.36);
}

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.9rem;
    background: rgba(255, 255, 255, 0.75);
    color: var(--eq-teal-dark) !important;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    border: 1.5px solid rgba(47, 138, 160, 0.3);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-outline-pill:hover {
    background: #fff;
    border-color: var(--eq-teal);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(47, 138, 160, 0.14);
}

.btn-white-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.9rem;
    background: #fff;
    color: var(--eq-teal-dark) !important;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-white-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

/* =====================================================
   GLASS CONTENT CARD (reusable)
   ===================================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(47, 138, 160, 0.14);
    border-radius: 1.5rem;
    box-shadow: 0 12px 40px rgba(5, 19, 20, 0.09);
}

.glass-card--accent {
    border-left: 4px solid var(--eq-teal);
}

.glass-card--top {
    border-top: 4px solid var(--eq-teal);
}

/* =====================================================
   PRODUCT / CONTENT CARDS
   ===================================================== */
.eq-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(47, 138, 160, 0.12);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(5, 19, 20, 0.07);
    transition: transform 0.28s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.28s ease;
    border-top: 4px solid var(--eq-teal);
    display: flex;
    flex-direction: column;
}

.eq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(5, 19, 20, 0.13);
}

.eq-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0 !important;
    display: block;
}

.eq-card-body {
    padding: 1.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.eq-card-badge {
    display: inline-block;
    padding: 0.28rem 0.7rem;
    background: rgba(47, 138, 160, 0.1);
    border-radius: 6px;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--eq-teal-dark);
    margin-bottom: 0.7rem;
    width: fit-content;
}

.eq-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.eq-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 1.2rem;
}

/* Expert/Person circular card */
.eq-person-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(47, 138, 160, 0.12);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 28px rgba(5, 19, 20, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border-bottom: 3px solid transparent;
}

.eq-person-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(5, 19, 20, 0.12);
    border-bottom-color: var(--eq-teal);
}

.eq-person-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    border: 3px solid rgba(47, 138, 160, 0.2);
    box-shadow: 0 8px 20px rgba(5, 19, 20, 0.1);
    background: #f0f8fa;
}

.eq-person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 0 !important;
}

.eq-person-name {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.eq-person-role {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--eq-teal);
    margin-bottom: 0.8rem;
}

.eq-person-bio {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.6;
}

/* =====================================================
   FEATURE LIST ITEM (icons + text)
   ===================================================== */
.eq-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.eq-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.eq-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(47, 138, 160, 0.1);
    border: 1px solid rgba(47, 138, 160, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eq-teal);
    flex-shrink: 0;
}

.eq-feature-icon svg,
.eq-feature-icon i {
    width: 20px;
    height: 20px;
}

.eq-feature-title {
    font-size: 0.96rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.eq-feature-desc {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.6;
}

/* =====================================================
   IMPACT/ STATS BAR
   ===================================================== */
.eq-stats-bar {
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 2.5rem 0;
}

.eq-stats-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.eq-stat {
    text-align: center;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.eq-stat:last-child {
    border-right: none;
}

.eq-stat-bar {
    width: 28px;
    height: 3px;
    background: var(--eq-teal);
    border-radius: 99px;
    margin: 0 auto 0.7rem;
}

.eq-stat-num {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.eq-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
}

/* =====================================================
   CTA BANNER (bottom of most pages)
   ===================================================== */
.eq-cta-section {
    padding: 3rem 2rem 5rem;
}

.eq-cta-card {
    max-width: 960px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(47, 138, 160, 0.16);
    border-radius: 2rem;
    border-top: 4px solid var(--eq-teal);
    padding: clamp(2.5rem, 5vw, 4.5rem);
    text-align: center;
    box-shadow: 0 24px 60px rgba(5, 19, 20, 0.1);
    position: relative;
    overflow: hidden;
}

.eq-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(47, 138, 160, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.eq-cta-title {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 0.9rem;
    position: relative;
}

.eq-cta-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #64748b;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 2rem;
    position: relative;
}

/* =====================================================
   SCROLL REVEAL (global)
   ===================================================== */
.js-motion .reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.65s cubic-bezier(0.2, 0.65, 0.15, 1),
        transform 0.65s cubic-bezier(0.2, 0.65, 0.15, 1);
}

.js-motion .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .js-motion .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =====================================================
   HOME PAGE — MOBILE HERO FIX
   Shows the right image on mobile, shows visual panel
   ===================================================== */
@media (max-width: 1024px) {

    /* Show a background hero image on mobile instead of no image */
    .home-page .hero {
        background:
            linear-gradient(to bottom, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.25) 50%, rgba(15, 23, 42, 0.1) 100%),
            url('../images/hero-mobile-home.webp') center/cover no-repeat;
        min-height: clamp(520px, 80vh, 720px);
        align-items: flex-end;
        padding-bottom: 3rem;
    }

    .home-hero-text {
        color: #fff;
    }

    .home-hero-h1 {
        color: #fff;
    }

    .home-hero-h1 em {
        color: rgba(173, 228, 243, 0.95);
    }

    .home-hero-sub {
        color: rgba(255, 255, 255, 0.88);
    }

    .home-hero-kicker {
        color: rgba(255, 255, 255, 0.9);
    }

    .home-hero-kicker::before {
        background: rgba(255, 255, 255, 0.7);
    }

    .home-hero-badge {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.25);
        color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
    }
}

/* =====================================================
   RESPONSIVE HELPERS
   ===================================================== */
@media (max-width: 768px) {
    .eq-stats-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .eq-stat {
        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        padding: 1.25rem 0;
    }

    .eq-stat:last-child {
        border-bottom: none;
    }

    .page-hero {
        min-height: clamp(240px, 50vw, 380px);
    }

    .page-hero-content {
        padding: 1.5rem;
    }

    .page-hero-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
}

/* =====================================================
   UPCOMING EVENTS SECTION
   ===================================================== */
.eq-events-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.eq-events-header {
    text-align: center;
    margin-bottom: 3rem;
}

.eq-events-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2f8aa0;
    margin-bottom: 0.75rem;
}

.eq-events-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 1rem;
}

.eq-events-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

@media (max-width: 1024px) {
    .eq-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .eq-events-grid {
        grid-template-columns: 1fr;
    }
}

.eq-event-card {
    border-radius: 1.5rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
    transition: transform 0.32s cubic-bezier(0.2, 0.65, 0.15, 1), box-shadow 0.32s ease;
}

.eq-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.13);
}

.eq-event-icon-panel {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--event-color-light, rgba(47,138,160,0.1));
}

.eq-event-icon-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 50%, var(--event-color-light, rgba(47,138,160,0.18)) 0%, transparent 70%),
        linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(240,248,250,0.9) 100%);
    pointer-events: none;
}

.eq-event-icon {
    width: 72px;
    height: 72px;
    color: var(--event-color, #2f8aa0);
    position: relative;
    z-index: 1;
    stroke-width: 1.4;
    transition: transform 0.4s cubic-bezier(0.2, 0.65, 0.15, 1);
    filter: drop-shadow(0 6px 16px color-mix(in srgb, var(--event-color, #2f8aa0) 30%, transparent));
}

.eq-event-card:hover .eq-event-icon {
    transform: scale(1.15);
}

/* Hover overlay — works with icon panel too */
.eq-event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(10, 20, 30, 0.92) 0%,
        rgba(10, 20, 30, 0.55) 55%,
        rgba(10, 20, 30, 0.15) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.eq-event-card:hover .eq-event-overlay {
    opacity: 1;
}


.eq-event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #2f8aa0;
    color: #ffffff;
    border-radius: 0.75rem;
    padding: 0.4rem 0.65rem;
    text-align: center;
    line-height: 1.1;
    min-width: 44px;
    box-shadow: 0 4px 12px rgba(47, 138, 160, 0.4);
}

.eq-event-date-month {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
}

.eq-event-date-day {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* Hover overlay with description */
.eq-event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.eq-event-card:hover .eq-event-overlay {
    opacity: 1;
}

.eq-event-overlay-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.eq-event-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffffff;
    background: #2f8aa0;
    border-radius: 8px;
    padding: 0.45rem 0.9rem;
    letter-spacing: 0.04em;
    width: fit-content;
    text-decoration: none;
    transition: background 0.2s ease;
}

.eq-event-overlay-btn:hover {
    background: #267a8e;
}

.eq-event-body {
    padding: 1rem 1.1rem 1.25rem;
}

.eq-event-location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2f8aa0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.eq-event-name {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin-bottom: 0.65rem;
}

.eq-event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.eq-event-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(47, 138, 160, 0.08);
    color: #2f8aa0;
    border: 1px solid rgba(47, 138, 160, 0.2);
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
}

/* =====================================================
   HOME PAGE — LAYOUT REFINEMENTS
   ===================================================== */

/* Fix: images inside overflow:hidden cards should not have their own border-radius */
.home-page .solution-card > img {
    border-radius: 0;
}

/* Wellness plans — right panel gets white bg with dark text */
.home-page #wellness-plans .wellness-plans-content {
    background: #ffffff;
    padding: 4rem 3.5rem;
}

.home-page #wellness-plans .section-kicker {
    color: #2f8aa0;
}

.home-page #wellness-plans .section-title {
    color: #0f172a;
}

.home-page #wellness-plans .feature-item h4 {
    color: #0f172a !important;
}

.home-page #wellness-plans .feature-item p {
    color: #475569 !important;
}

.home-page #wellness-plans .feature-item {
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

.home-page #wellness-plans .feature-icon {
    background: rgba(47, 138, 160, 0.1);
    color: #2f8aa0;
}

/* =====================================================
   WHO WE ARE — STATS ROW
   ===================================================== */
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 2rem 0 2.5rem;
    border-top: 1px solid rgba(47, 138, 160, 0.12);
    border-bottom: 1px solid rgba(47, 138, 160, 0.12);
    padding: 1.75rem 0;
}

.about-stat {
    padding: 0 1.5rem;
    border-right: 1px solid rgba(47, 138, 160, 0.12);
}

.about-stat:last-child {
    border-right: none;
}

.about-stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1;
}

.about-stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.4rem;
}

@media (max-width: 640px) {
    .about-stats-row {
        grid-template-columns: 1fr;
    }
    .about-stat {
        border-right: none;
        border-bottom: 1px solid rgba(47, 138, 160, 0.12);
        padding: 1.25rem 0;
    }
    .about-stat:last-child {
        border-bottom: none;
    }
}

/* =====================================================
   FULL-BLEED CTA SECTION
   Replaces the 3-part cta-headline + cta-hero + cta-hero-copy
   ===================================================== */
/* =====================================================
   CTA SPLIT — Image beside text, no text-on-image
   ===================================================== */
.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 2rem 4rem;
    border-radius: 2.5rem;
    overflow: hidden;
    min-height: clamp(420px, 55vh, 680px);
    box-shadow: 0 32px 72px rgba(15, 23, 42, 0.12);
}

.cta-split-content {
    background: #2f8aa0;
    padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-split-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: white;
    opacity: 0.8;
    margin-bottom: 1.25rem;
}

.cta-split-headline {
    font-family: 'Lato', sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 1.5rem;
}

.cta-split-headline em {
    color: white;
    font-style: normal;
    opacity: 0.85;
}

.cta-split-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.72;
    margin: 0 0 2.25rem;
    max-width: 480px;
}

.cta-split-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 1.05rem 2.4rem;
    background: white;
    color: var(--primary-800);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    border-radius: 12px;
    border: 2px solid white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.cta-split-btn:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: white;
    color: #2f8aa0;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.cta-split-image {
    overflow: hidden;
    position: relative;
}

.cta-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
}

@media (max-width: 900px) {
    .cta-split {
        grid-template-columns: 1fr;
        margin: 0 1rem 3rem;
        border-radius: 1.75rem;
        min-height: auto;
    }
    .cta-split-image {
        min-height: 280px;
        order: -1;
    }
    .cta-split-content {
        padding: 2.5rem 1.75rem;
    }
    .cta-split-btn {
        align-self: stretch;
        text-align: center;
    }
}

/* =====================================================
   BOTTOM NAV — Mobile app-style navigation
   ===================================================== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-top: 1px solid rgba(47, 138, 160, 0.14);
    box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.08);
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav-inner {
    display: flex;
    height: 58px;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    color: var(--gray-400);
    transition: color 0.18s ease;
    text-decoration: none;
    position: relative;
}

.bottom-nav-item.active {
    color: var(--eq-teal);
}

.bottom-nav-item:active {
    color: var(--primary-500);
}

.bottom-nav-item.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    background: var(--eq-teal);
    border-radius: 0 0 2px 2px;
}

.bottom-nav-item [data-lucide] {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
}

.bottom-nav-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
}

@media (max-width: 1024px) {
    .bottom-nav {
        display: flex;
        flex-direction: column;
    }
    /* Push all page content above the nav */
    .has-bottom-nav {
        padding-bottom: calc(58px + env(safe-area-inset-bottom));
    }
    /* When install bar is also showing, stack above bottom nav */
    .install-bar {
        bottom: calc(58px + env(safe-area-inset-bottom));
    }
}

/* =====================================================
   QR ACCESS SECTION — From Box to Dashboard Instantly
   ===================================================== */
.qr-access-section {
    background: #f8fafc;
}

.qr-access-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.qr-access-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2f8aa0;
    margin-bottom: 1.25rem;
}

.qr-access-kicker::before {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: #2f8aa0;
    border-radius: 2px;
    flex-shrink: 0;
}

.qr-access-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
}

.qr-access-sub {
    font-size: 1rem;
    color: #475569;
    line-height: 1.72;
    margin: 0 0 2rem;
    max-width: 520px;
}

.qr-access-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qr-access-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
}

.qr-list-icon {
    width: 20px;
    height: 20px;
    color: #2f8aa0;
    flex-shrink: 0;
    padding: 6px;
    background: rgba(47, 138, 160, 0.1);
    border-radius: 50%;
    box-sizing: content-box;
}

.qr-access-btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: #2f8aa0;
    color: white;
    font-weight: 700;
    font-size: 0.98rem;
    border-radius: 12px;
    border: 2px solid #2f8aa0;
    text-decoration: none;
    transition: all 0.25s ease;
}

.qr-access-btn:hover {
    background: #267a8e;
    border-color: #267a8e;
    color: white;
    transform: translateY(-2px);
}

.qr-access-card-wrap {
    display: flex;
    justify-content: center;
}

.qr-access-card {
    background: #ffffff;
    border: 1px solid rgba(47, 138, 160, 0.12);
    border-radius: 1.75rem;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 360px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.qr-card-icon-wrap {
    width: 96px;
    height: 96px;
    background: rgba(47, 138, 160, 0.1);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.qr-card-icon {
    width: 40px;
    height: 40px;
    color: #2f8aa0;
}

.qr-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.75rem;
}

.qr-card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.qr-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    border: 1.5px solid #2f8aa0;
    border-radius: 99px;
    color: #2f8aa0;
    font-size: 0.82rem;
    font-weight: 700;
}

@media (max-width: 900px) {
    .qr-access-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .qr-access-card-wrap {
        order: -1;
    }
}

/* =====================================================
   JOURNEY WITHIN SECTION — Nautilus Philosophy
   ===================================================== */
@media (max-width: 900px) {
    section[style*="background: #ffffff"] > .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    section[style*="background: #ffffff"] > .container > div[style*="margin-bottom: 5rem"] > div:first-child {
        order: 2;
    }
    
    section[style*="background: #ffffff"] > .container > div[style*="margin-bottom: 5rem"] > div:last-child {
        order: 1;
    }
}

/* Accordion styling for teal sections */
section[style*="background: #2f8aa0"] .info-accordion details {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
}

section[style*="background: #2f8aa0"] .info-accordion details[open] {
    background: white;
}

section[style*="background: #2f8aa0"] .info-accordion summary {
    color: #0f172a;
}

section[style*="background: #2f8aa0"] .info-accordion-content {
    background: white;
    border-top-color: rgba(0, 0, 0, 0.06);
    color: #475569;
}

/* =====================================================
   OPTIMIZED PROFESSIONAL PROFILE STYLES
   ===================================================== */

.prof-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: clamp(5rem, 10vh, 10rem) 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-100);
}

.prof-hero::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -10%;
    width: 45%;
    height: 45%;
    background: radial-gradient(circle, rgba(47, 138, 160, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.prof-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .prof-hero-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 5rem;
    }
}

.prof-hero-image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
    aspect-ratio: 4 / 5;
}

.prof-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.prof-hero-content {
    max-width: 640px;
}

.prof-hero-eyebrow {
    color: var(--eq-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.prof-hero-name {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.prof-hero-title {
    font-size: 1.15rem;
    color: var(--gray-500);
    font-weight: 400;
    margin-bottom: 2rem;
}

.prof-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-100);
}

.prof-stat-item h4 {
    font-size: 1.5rem;
    color: var(--eq-teal);
    margin-bottom: 0.25rem;
}

.prof-stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    font-weight: 700;
}

/* Resources Section with Gating */
.prof-resources {
    padding: 6rem 0;
    background: var(--gray-50);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.resource-thumb {
    aspect-ratio: 16 / 9;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.resource-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.resource-lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resource-card:hover .resource-lock-overlay {
    opacity: 1;
}

.resource-lock-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eq-teal);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.resource-body {
    padding: 1.5rem;
}

.resource-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--eq-teal);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.resource-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

/* Member Drive Banner */
.member-drive {
    background: linear-gradient(135deg, var(--eq-teal) 0%, var(--eq-teal-dark) 100%);
    border-radius: 2rem;
    padding: 4rem;
    color: white;
    text-align: center;
    margin-top: 4rem;
}

.member-drive h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.member-drive p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}


/* =====================================================
   PROFESSIONAL PAGE ENHANCEMENTS
   ===================================================== */

.transformation-section {
    position: relative;
    padding: 8rem 0;
    background: #ffffff;
    overflow: hidden;
}

.transformation-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(47, 138, 160, 0.1);
    border-radius: 2.5rem;
    padding: 3.5rem;
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.08);
}

.transformation-video-wrap {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.25);
    aspect-ratio: 16 / 9;
    background: #000;
}

.transformation-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.transformation-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 0;
    display: grid;
    gap: 1.25rem;
}

.transformation-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--gray-700);
    padding: 1rem 1.5rem;
    background: rgba(47, 138, 160, 0.04);
    border-radius: 1rem;
    border: 1px solid rgba(47, 138, 160, 0.08);
    transition: all 0.3s ease;
}

.transformation-list li:hover {
    background: rgba(47, 138, 160, 0.08);
    transform: translateX(8px);
}

.transformation-list i {
    color: #2f8aa0;
    flex-shrink: 0;
}

/* =====================================================
   WHO WE ARE - EVENTS SECTION
   ===================================================== */

.events-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.event-premium-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #0f172a;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.event-premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.4);
}

.event-premium-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.event-premium-card:hover .event-premium-img {
    opacity: 0.5;
    transform: scale(1.1);
}

.event-premium-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
    color: white;
}

.event-premium-city {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #2f8aa0;
    margin-bottom: 0.5rem;
}

.event-premium-name {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.event-premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    text-decoration: none;
}

.event-premium-card:hover .event-premium-btn {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   BLOG PAGE ENHANCEMENTS
   ===================================================== */

.blog-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.blog-card-premium {
    background: white;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.12);
}

.blog-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-premium:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #2f8aa0;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
}

.blog-card-excerpt {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.blog-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-50);
}

@media (max-width: 768px) {
    .prof-hero-img-wrap {
        margin: 1.5rem !important;
        border-radius: 2rem !important;
    }
}

/* ================================================
   BLOG ARTICLE FULL STYLES
   ================================================ */
.blog-article-full {
    padding: 3.5rem 0;
}

.blog-article-header {
    margin-bottom: 2rem;
}

.blog-article-tag {
    display: inline-block;
    background: rgba(47, 138, 160, 0.1);
    color: #2f8aa0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.blog-article-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.blog-article-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.blog-article-img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    border-radius: 1.5rem;
    margin-bottom: 2.5rem;
}

.blog-article-body {
    color: #334155;
    line-height: 1.85;
    font-size: 1.05rem;
}

.blog-article-body p {
    margin-bottom: 1.25rem;
}

.blog-article-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin: 2rem 0 0.75rem;
    letter-spacing: -0.01em;
}

.blog-article-body ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.blog-article-body ul li {
    padding: 0.85rem 1.25rem;
    background: rgba(47, 138, 160, 0.05);
    border-left: 3px solid #2f8aa0;
    border-radius: 0 0.75rem 0.75rem 0;
    font-size: 0.95rem;
}

.blog-article-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.blog-article-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 1rem 0;
}

/* Blog card premium fixes */
.blog-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card-premium {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.blog-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(47, 138, 160, 0.12);
    border-color: rgba(47, 138, 160, 0.2);
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-premium:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-tag {
    display: inline-block;
    background: rgba(47, 138, 160, 0.1);
    color: #2f8aa0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
    width: fit-content;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-footer {
    margin-top: auto;
}

/* ================================================
   MOBILE GLOBAL IMPROVEMENTS
   ================================================ */
@media (max-width: 768px) {
    /* Blog mobile */
    .blog-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    #articles {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .blog-article-full {
        padding: 2rem 0;
    }

    .blog-article-img {
        border-radius: 1rem;
        aspect-ratio: 16/9;
    }

    .blog-article-cta {
        flex-direction: column;
    }

    .blog-article-cta a {
        text-align: center;
        justify-content: center !important;
    }

    /* Hero split mobile — ensure content text is comfortably padded */
    .hero--split .home-hero-text {
        padding: 2rem 1.25rem 1.5rem !important;
    }

    /* General section spacing on mobile */
    .py-32 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-24 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* Section kicker + title tighter on mobile */
    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
    }

    /* Transformation section mobile */
    .transformation-card {
        padding: 1.5rem !important;
    }

    .transformation-video-wrap iframe {
        height: 220px !important;
    }

    /* Events premium grid mobile */
    .events-premium-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    /* Blog hero badges — don't overflow on mobile */
    .home-hero-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    /* Professional cards on our-professionals mobile */
    .eq-person-card {
        padding: 1.5rem;
    }

    /* Resource grid mobile */
    .resource-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ================================================
   PRODUCT PAGE IMAGE BORDER RADIUS
   ================================================ */
/* Covers opti-weigh, pure-body-balance, dimp-less */
.home-hero-img-wrap {
    overflow: hidden;
    border-radius: 2rem;
}

.home-hero-img-wrap picture img,
.home-hero-img-wrap img {
    border-radius: 0; /* parent has radius, image should fill */
}

/* Product lifestyle images */
#lifestyle .card,
#lifestyle .card img,
#future .card,
#future .card img {
    border-radius: 1.5rem !important;
    overflow: hidden;
}

/* Lifestyle section images specifically */
#lifestyle .grid img,
#future .grid img {
    border-radius: 1.5rem !important;
    overflow: hidden;
}

/* Video wrap */
.video-local {
    border-radius: 1.5rem;
    overflow: hidden;
}

/* Neomorphic Styles */
:root {
  --zen-bg: #f0f0f0;
  --zen-shadow-light: rgba(255, 255, 255, 0.8);
  --zen-shadow-dark: rgba(0, 0, 0, 0.1);
  --zen-accent: #2f8aa0;
  --dash-border: rgba(116, 149, 159, 0.2);
}

.neo-bg {
  background-color: var(--zen-bg);
}

.neo-card {
  background: var(--zen-bg);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    14px 14px 28px rgba(15, 50, 56, 0.08), 
    -12px -12px 26px rgba(255, 255, 255, 0.9);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.neo-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    16px 16px 34px rgba(15, 50, 56, 0.12), 
    -14px -14px 30px rgba(255, 255, 255, 0.95);
}

.neo-button {
  background-color: var(--zen-bg);
  border: 1px solid var(--dash-border);
  border-radius: 999px;
  box-shadow: 
    -6px -6px 14px var(--zen-shadow-light), 
    6px 6px 14px var(--zen-shadow-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--zen-accent);
  font-weight: 700;
}

.neo-button:hover {
  transform: translateY(-1px);
  box-shadow: 
    inset -2px -2px 5px var(--zen-shadow-light), 
    inset 2px 2px 5px var(--zen-shadow-dark);
}

.neo-button-primary {
  background: linear-gradient(140deg, #2f8aa0, #3f9ab0);
  color: #fff;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    inset 2px 2px 6px rgba(255, 255, 255, 0.25), 
    inset -3px -3px 6px rgba(15, 62, 74, 0.28), 
    0 12px 24px rgba(20, 78, 90, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-weight: 700;
}

.neo-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    inset 2px 2px 6px rgba(255, 255, 255, 0.25), 
    inset -3px -3px 6px rgba(15, 62, 74, 0.28), 
    0 16px 32px rgba(20, 78, 90, 0.3);
}

.neo-inset {
  background: var(--zen-bg);
  border-radius: 1.5rem;
  box-shadow: 
    inset -4px -4px 10px var(--zen-shadow-light), 
    inset 4px 4px 10px var(--zen-shadow-dark);
}


/* Dashboard Alignment Update */
body.home-page, .home-page {
    background-color: #f0f4f7 !important;
    background-image: none !important;
}

.home-page main, body {
    background-color: #f0f4f7 !important;
}

.hero, .hero--home {
    background: transparent !important;
}
.hero::before, .hero::after, .home-page .hero--home::before, .home-page .hero--home::after {
    background: transparent !important;
}

/* Typography Updates */
h1, h2, h3, h4, h5, h6, .hero-heading, .section-heading, .home-page .hero-heading {
    font-family: 'Lato', sans-serif !important;
    color: #1a2332 !important;
}
body, p, a, span, div, li, button {
    font-family: 'Lato', sans-serif;
}
p, .hero-subcopy, .home-page .hero-subcopy {
    color: #6b7a8d !important;
}
.text-dark {
    color: #1a2332 !important;
}
.text-muted {
    color: #6b7a8d !important;
}

/* Eyebrow Labels */
.hero-kicker, .section-kicker, .home-page .hero-kicker, .home-page .section-kicker {
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #408391 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
}
.hero-kicker::before, .section-kicker::before, .home-page .hero-kicker::before, .home-page .section-kicker::before {
    content: "" !important;
    width: 20px !important;
    height: 2px !important;
    background-color: #408391 !important;
    display: inline-block !important;
    border-radius: 0 !important;
}
.hero-kicker::after, .home-page .hero-kicker::after {
    display: none !important;
}

/* Hero Image */
.hero img, .hero-content img, .hero-image img, .hero-visual img, img.hero-img {
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10) !important;
    border: none !important;
}

/* Button Updates */
/* Primary Button */
.btn-primary, .hero-actions .btn:first-child, .btn-solid, .home-page .hero-actions .btn:first-child {
    background: #408391 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(64,131,145,0.30) !important;
    transition: all 0.2s ease !important;
}
.btn-primary:hover, .hero-actions .btn:first-child:hover, .btn-solid:hover, .home-page .btn-ghost-light:hover {
    background: #336d79 !important;
    box-shadow: 0 6px 20px rgba(64,131,145,0.40) !important;
    color: #ffffff !important;
    border: none !important;
    transform: none !important;
}

/* Secondary Button */
.btn-secondary, .btn-outline, .hero-actions .btn:nth-child(2), .home-page .hero-actions .btn:nth-child(2) {
    background: transparent !important;
    border: 1.5px solid #408391 !important;
    color: #408391 !important;
    border-radius: 10px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}
.btn-secondary:hover, .btn-outline:hover, .hero-actions .btn:nth-child(2):hover, .home-page .hero-actions .btn:nth-child(2):hover {
    background: rgba(64,131,145,0.06) !important;
    color: #408391 !important;
    box-shadow: none !important;
    border-color: #408391 !important;
    transform: none !important;
}

/* Tertiary Button */
.btn-tertiary {
    background: transparent !important;
    border: 1.5px solid #d0d8e0 !important;
    color: #1a2332 !important;
    border-radius: 10px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
}
.btn-tertiary:hover {
    border-color: #408391 !important;
    color: #408391 !important;
    background: transparent !important;
}

/* Trust Badge Pills */
.hero-metric, .trust-badge, .pill, .home-page .hero-metric {
    background: #ffffff !important;
    border: 1px solid #e0e8ef !important;
    border-radius: 999px !important;
    padding: 6px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #1a2332 !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05) !important;
}

/* Navigation */
header, .top-bar, .home-page .top-bar {
    background: #ffffff !important;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06) !important;
    border-bottom: none !important;
}
header a, .top-bar a, .nav-link, .home-page .top-bar a {
    color: #1a2332 !important;
    font-weight: 600 !important;
}
header a:hover, .top-bar a:hover, .nav-link:hover, header a.active, .nav-link.active, .home-page .top-bar a:hover {
    color: #408391 !important;
}

/* General Card Rule */
.card, .panel, .neo-card, .bg-white.rounded-2xl, .bg-white.rounded-xl, .home-page .hero-content {
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
    padding: 24px !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}


/* =====================================================
   HERO SECTION — Neomorphic Dashboard Alignment
   ===================================================== */

/* Page background — cool light gray like the dashboard */
body, .home-page {
    background-color: #eef2f5 !important;
}

/* Hero section wrapper — no tinted overlay, clean gray */
.hero--split {
    background: #eef2f5 !important;
    padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4rem) !important;
    position: relative;
    overflow: hidden;
}

/* Subtle ambient light blob behind text — like the dashboard glow */
.hero--split::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(64,131,145,0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero--split::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(64,131,145,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Inner row */
.home-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .home-hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
    .home-hero-text { flex: 1 1 50%; }
    .home-hero-visual { flex: 1 1 50%; }
}

/* Kicker / eyebrow */
.home-hero-kicker {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.55rem !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #408391 !important;
    margin-bottom: 1.1rem !important;
}
.home-hero-kicker::before {
    content: '' !important;
    display: inline-block !important;
    width: 20px !important;
    height: 2px !important;
    background: #408391 !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
}

/* Heading */
.home-hero-h1 {
    font-family: 'Lato', sans-serif !important;
    font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    color: #1a2332 !important;
    margin-bottom: 1.1rem !important;
    letter-spacing: -0.02em !important;
}
.home-hero-h1 em {
    font-style: normal !important;
    color: #408391 !important;
}

/* Subtext */
.home-hero-sub {
    font-size: clamp(0.97rem, 1.8vw, 1.1rem) !important;
    line-height: 1.7 !important;
    color: #6b7a8d !important;
    max-width: 520px !important;
    margin-bottom: 2rem !important;
}

/* CTA buttons wrapper */
.home-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

/* Primary CTA — teal solid */
.btn-hero-primary, .btn-hero-primary:link, .btn-hero-primary:visited {
    background: #408391 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 13px 26px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(64,131,145,0.28) !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}
.btn-hero-primary:hover {
    background: #336d79 !important;
    box-shadow: 0 6px 22px rgba(64,131,145,0.38) !important;
    transform: translateY(-1px) !important;
    color: #ffffff !important;
}

/* Outline CTA — teal outline */
.btn-hero-outline, .btn-hero-outline:link, .btn-hero-outline:visited {
    background: #ffffff !important;
    color: #408391 !important;
    border: 1.5px solid #408391 !important;
    border-radius: 10px !important;
    padding: 12px 24px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
}
.btn-hero-outline:hover {
    background: rgba(64,131,145,0.06) !important;
    box-shadow: 0 4px 14px rgba(64,131,145,0.16) !important;
    transform: translateY(-1px) !important;
    color: #408391 !important;
}

/* Trust / badge pills */
.home-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.home-hero-badge {
    background: #ffffff !important;
    border: 1px solid #dde5ed !important;
    border-radius: 999px !important;
    padding: 5px 15px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #1a2332 !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05) !important;
    letter-spacing: 0.01em !important;
}

/* Hero image — neomorphic card float */
.home-hero-img-wrap {
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow:
        0 0 0 8px rgba(255,255,255,0.65),
        0 12px 40px rgba(0,0,0,0.10),
        inset 0 1px 0 rgba(255,255,255,0.8) !important;
    background: #ffffff !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.home-hero-img-wrap:hover {
    transform: translateY(-4px) !important;
    box-shadow:
        0 0 0 8px rgba(255,255,255,0.65),
        0 20px 52px rgba(0,0,0,0.13),
        inset 0 1px 0 rgba(255,255,255,0.8) !important;
}
.home-hero-img-wrap img, .home-hero-img-wrap picture img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 20px !important;
}

/* =====================================================
   TRUE NEOMORPHIC HERO — Extruded Surface Design
   ===================================================== */

/* Base surface color — everything shares this */
:root {
    --neo-bg: #edf1f5;
    --neo-shadow-dark: #c8cdd4;
    --neo-shadow-light: #ffffff;
    --neo-teal: #408391;
    --neo-teal-dark: #336d79;
    --neo-text: #2e3a4a;
    --neo-muted: #7a8695;
}

body, .home-page {
    background-color: var(--neo-bg) !important;
    background-image: none !important;
}

/* Hero section — same bg as page so cards "float out" of it */
.hero--split {
    background: var(--neo-bg) !important;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem) !important;
    position: relative !important;
}
.hero--split::before,
.hero--split::after {
    display: none !important;
}

/* Text side */
.home-hero-text {
    position: relative;
    z-index: 1;
}

/* Kicker */
.home-hero-kicker {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--neo-teal) !important;
    margin-bottom: 1rem !important;
    background: none !important;
    box-shadow: none !important;
}
.home-hero-kicker::before {
    content: '' !important;
    width: 20px !important;
    height: 2px !important;
    background: var(--neo-teal) !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
}
.home-hero-kicker::after { display: none !important; }

/* Heading */
.home-hero-h1 {
    font-family: 'Lato', sans-serif !important;
    font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    color: var(--neo-text) !important;
    margin-bottom: 1.1rem !important;
    letter-spacing: -0.02em !important;
}
.home-hero-h1 em {
    font-style: normal !important;
    color: var(--neo-teal) !important;
}

/* Sub text */
.home-hero-sub {
    font-size: clamp(0.97rem, 1.8vw, 1.08rem) !important;
    line-height: 1.75 !important;
    color: var(--neo-muted) !important;
    max-width: 500px !important;
    margin-bottom: 2.2rem !important;
}

/* CTA row */
.home-hero-ctas {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
}

/* Primary button — neomorphic raised teal */
.btn-hero-primary,
.btn-hero-primary:link,
.btn-hero-primary:visited {
    background: var(--neo-teal) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 13px 28px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    box-shadow: 5px 5px 12px rgba(51,109,121,0.45), -3px -3px 8px rgba(255,255,255,0.25) !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}
.btn-hero-primary:hover {
    background: var(--neo-teal-dark) !important;
    box-shadow: 3px 3px 8px rgba(51,109,121,0.55), -2px -2px 6px rgba(255,255,255,0.2) !important;
    transform: translateY(1px) !important;
    color: #fff !important;
}

/* Outline button — neomorphic raised neutral */
.btn-hero-outline,
.btn-hero-outline:link,
.btn-hero-outline:visited {
    background: var(--neo-bg) !important;
    color: var(--neo-text) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 13px 28px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    box-shadow: 5px 5px 12px var(--neo-shadow-dark), -5px -5px 12px var(--neo-shadow-light) !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}
.btn-hero-outline:hover {
    color: var(--neo-teal) !important;
    box-shadow: 3px 3px 8px var(--neo-shadow-dark), -3px -3px 8px var(--neo-shadow-light) !important;
    transform: translateY(1px) !important;
}

/* Trust badge pills — neomorphic inset pressed look */
.home-hero-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.65rem !important;
}
.home-hero-badge {
    background: var(--neo-bg) !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 7px 18px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: var(--neo-text) !important;
    /* Inset shadow = "pressed into" the surface */
    box-shadow: inset 3px 3px 7px var(--neo-shadow-dark), inset -3px -3px 7px var(--neo-shadow-light) !important;
    letter-spacing: 0.01em !important;
}

/* Hero image wrap — neomorphic raised card */
.home-hero-img-wrap {
    background: var(--neo-bg) !important;
    border-radius: 28px !important;
    padding: 12px !important;
    box-shadow: 10px 10px 30px var(--neo-shadow-dark), -10px -10px 30px var(--neo-shadow-light) !important;
    transition: box-shadow 0.3s ease, transform 0.3s ease !important;
    border: none !important;
    overflow: visible !important;
}
.home-hero-img-wrap:hover {
    transform: translateY(-3px) !important;
    box-shadow: 14px 14px 36px var(--neo-shadow-dark), -14px -14px 36px var(--neo-shadow-light) !important;
}
.home-hero-img-wrap img,
.home-hero-img-wrap picture img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 20px !important;
    box-shadow: none !important;
}

/* General neo-card class used throughout the site */
.neo-card {
    background: var(--neo-bg) !important;
    border-radius: 20px !important;
    border: none !important;
    box-shadow: 10px 10px 30px var(--neo-shadow-dark), -10px -10px 30px var(--neo-shadow-light) !important;
}

/* nav header — neomorphic surface */
header {
    background: var(--neo-bg) !important;
    box-shadow: 0 4px 16px var(--neo-shadow-dark) !important;
    border-bottom: none !important;
}
#dashboard-mobile-menu {
    background: var(--neo-bg) !important;
}
#dashboard-mobile-menu .group {
    background: var(--neo-bg) !important;
    border: none !important;
    box-shadow: 5px 5px 12px var(--neo-shadow-dark), -5px -5px 12px var(--neo-shadow-light) !important;
}
#dashboard-mobile-menu .group:hover {
    box-shadow: 3px 3px 8px var(--neo-shadow-dark), -3px -3px 8px var(--neo-shadow-light) !important;
}


/* =====================================================
   TRUE NEOMORPHIC — Page-Wide Application
   ===================================================== */

/* Ensure the entire body and all section backgrounds use the base surface color */
body, .home-page, section, .bg-gray-50, .bg-white, footer {
    background: var(--neo-bg) !important;
}

/* Remove any hard borders or dividers from sections */
section {
    border: none !important;
}

/* Section Headings & Kickers */
.section-kicker {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--neo-teal) !important;
    margin-bottom: 1rem !important;
}
.section-kicker::before {
    content: '' !important;
    display: inline-block !important;
    width: 20px !important;
    height: 2px !important;
    background: var(--neo-teal) !important;
    border-radius: 2px !important;
}
.section-kicker::after {
    display: none !important;
}

.section-title {
    font-family: 'Lato', sans-serif !important;
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    font-weight: 800 !important;
    color: var(--neo-text) !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1.2rem !important;
}

.section-subtitle {
    color: var(--neo-muted) !important;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem) !important;
    line-height: 1.7 !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 3rem !important;
}

/* Base Card Styles (applies to Who We Are, Solutions, Professionals, Blog) */
.card, .neo-card, .solution-card, .professional-card, .blog-card, .bg-white.rounded-2xl, .bg-white.rounded-xl {
    background: var(--neo-bg) !important;
    border-radius: 24px !important;
    border: none !important;
    padding: 2rem !important;
    /* Soft extruded shadow */
    box-shadow: 10px 10px 24px var(--neo-shadow-dark), -10px -10px 24px var(--neo-shadow-light) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    overflow: visible !important;
    position: relative !important;
}

/* Card Hover Effects */
.card:hover, .neo-card:hover, .solution-card:hover, .professional-card:hover, .blog-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 14px 14px 32px var(--neo-shadow-dark), -14px -14px 32px var(--neo-shadow-light) !important;
}

/* Fix images inside cards that previously relied on overflow: hidden */
.card img, .neo-card img, .solution-card img, .professional-card img, .blog-card img, .home-page .hero-content img {
    border-radius: 18px !important;
    box-shadow: none !important;
    border: none !important;
}

/* For solution cards specifically where image is full width at the top */
.solution-card {
    padding: 0 !important; /* Reset padding for full-bleed image */
    display: flex !important;
    flex-direction: column !important;
}
.solution-card > img {
    border-radius: 24px 24px 0 0 !important;
    width: 100% !important;
    object-fit: cover !important;
}
.solution-card > div {
    padding: 2rem !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}
.solution-card h3 {
    font-family: 'Lato', sans-serif !important;
    font-weight: 800 !important;
    color: var(--neo-text) !important;
}

/* Professional Cards Circular Images */
.professional-card img.w-32, .professional-card img.rounded-full {
    border-radius: 50% !important;
    border: 4px solid var(--neo-bg) !important;
    box-shadow: 6px 6px 14px var(--neo-shadow-dark), -6px -6px 14px var(--neo-shadow-light) !important;
    width: 120px !important;
    height: 120px !important;
    margin: -4rem auto 1.5rem !important; /* Pull image up out of the card */
    position: relative !important;
    z-index: 2 !important;
}
/* Adjust card to accommodate pulled-up image */
.professional-card {
    margin-top: 3rem !important;
    padding-top: 0 !important;
}

/* Universal Button Styles */
.btn, .btn-primary, .btn-teal, button[type="submit"] {
    background: var(--neo-teal) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 26px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 5px 5px 12px rgba(51,109,121,0.45), -3px -3px 8px rgba(255,255,255,0.25) !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    margin-top: auto !important; /* Push buttons to bottom of flex cards */
}
.btn:hover, .btn-primary:hover, .btn-teal:hover, button[type="submit"]:hover {
    background: var(--neo-teal-dark) !important;
    box-shadow: 3px 3px 8px rgba(51,109,121,0.55), -2px -2px 6px rgba(255,255,255,0.2) !important;
    transform: translateY(1px) !important;
    color: #fff !important;
}

.btn-outline, .btn-secondary {
    background: var(--neo-bg) !important;
    color: var(--neo-text) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 26px !important;
    font-weight: 700 !important;
    box-shadow: 5px 5px 12px var(--neo-shadow-dark), -5px -5px 12px var(--neo-shadow-light) !important;
    transition: all 0.2s ease !important;
}
.btn-outline:hover, .btn-secondary:hover {
    color: var(--neo-teal) !important;
    box-shadow: 3px 3px 8px var(--neo-shadow-dark), -3px -3px 8px var(--neo-shadow-light) !important;
    transform: translateY(1px) !important;
}

/* Stats Row in Who We Are section */
.about-stats-row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    margin: 2rem 0 !important;
}
.about-stat {
    background: var(--neo-bg) !important;
    border-radius: 16px !important;
    padding: 1.5rem 2rem !important;
    box-shadow: inset 4px 4px 10px var(--neo-shadow-dark), inset -4px -4px 10px var(--neo-shadow-light) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-width: 140px !important;
}
.about-stat-number {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: var(--neo-teal) !important;
    line-height: 1.1 !important;
    margin-bottom: 0.3rem !important;
}
.about-stat-label {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: var(--neo-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* Responsive Grid Gap Adjustments */
@media (max-width: 768px) {
    .grid {
        gap: 2rem !important;
    }
    .solution-card, .professional-card, .blog-card {
        margin-bottom: 1rem !important;
    }
    .professional-card {
        margin-top: 4rem !important; /* Maintain space for pulled-up image on mobile */
    }
}


/* =====================================================
   SECTION-BY-SECTION NEOMORPHIC POLISH
   ===================================================== */

/* --------------------------------------------------
   QR ACCESS SECTION (#qr-access)
   -------------------------------------------------- */
.qr-access-section {
    background: var(--neo-bg) !important;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) !important;
}
.qr-access-inner, .qr-access-section .container {
    background: var(--neo-bg) !important;
    border-radius: 28px !important;
    padding: 3rem !important;
    box-shadow: 12px 12px 28px var(--neo-shadow-dark), -12px -12px 28px var(--neo-shadow-light) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 2.5rem !important;
}
.qr-code-img, .qr-access-section img {
    border-radius: 20px !important;
    box-shadow: inset 6px 6px 14px var(--neo-shadow-dark), inset -6px -6px 14px var(--neo-shadow-light) !important;
    padding: 1rem !important;
    background: var(--neo-bg) !important;
}

/* --------------------------------------------------
   EXPERT / PROFESSIONALS CARDS (#professionals)
   -------------------------------------------------- */
.expert-card, .expert-card.neo-card {
    background: var(--neo-bg) !important;
    border-radius: 28px !important;
    border: none !important;
    overflow: visible !important;
    box-shadow: 10px 10px 24px var(--neo-shadow-dark), -10px -10px 24px var(--neo-shadow-light) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.expert-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 15px 15px 30px var(--neo-shadow-dark), -15px -15px 30px var(--neo-shadow-light) !important;
}
/* Avatar wrapper — inset recess */
.expert-card-avatar-wrap {
    width: 110px !important;
    height: 110px !important;
    border-radius: 50% !important;
    margin: 2rem auto 1rem !important;
    padding: 6px !important;
    background: var(--neo-bg) !important;
    box-shadow: inset 5px 5px 12px var(--neo-shadow-dark), inset -5px -5px 12px var(--neo-shadow-light) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.expert-card-avatar {
    width: 94px !important;
    height: 94px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background: var(--neo-bg) !important;
    box-shadow: 4px 4px 10px var(--neo-shadow-dark), -4px -4px 10px var(--neo-shadow-light) !important;
    padding: 0 !important;
}
.expert-card-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    box-shadow: none !important;
}
.expert-card h3 {
    color: var(--neo-teal) !important;
    font-family: 'Lato', sans-serif !important;
    font-weight: 800 !important;
}
.expert-card p.text-gray-600 {
    color: var(--neo-muted) !important;
}

/* --------------------------------------------------
   WELLNESS PLANS / FEATURE SECTION (#wellness-plans)
   -------------------------------------------------- */
.feature-section {
    background: var(--neo-bg) !important;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) !important;
}
.feature-item {
    background: var(--neo-bg) !important;
    border-radius: 20px !important;
    padding: 1.75rem !important;
    box-shadow: 8px 8px 20px var(--neo-shadow-dark), -8px -8px 20px var(--neo-shadow-light) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.feature-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 12px 12px 26px var(--neo-shadow-dark), -12px -12px 26px var(--neo-shadow-light) !important;
}
.feature-item h4 {
    font-family: 'Lato', sans-serif !important;
    font-weight: 800 !important;
    color: var(--neo-text) !important;
}
.feature-item p {
    color: var(--neo-muted) !important;
}
/* Feature icon — inset pressed circle */
.feature-icon {
    background: var(--neo-bg) !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: inset 4px 4px 10px var(--neo-shadow-dark), inset -4px -4px 10px var(--neo-shadow-light) !important;
    color: var(--neo-teal) !important;
}

/* --------------------------------------------------
   LINKS BAR (.home-links-bar)
   -------------------------------------------------- */
.home-links-bar {
    background: var(--neo-bg) !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 4px 12px var(--neo-shadow-dark), 0 -4px 12px var(--neo-shadow-light) !important;
}
.home-links-bar a {
    color: var(--neo-teal) !important;
    font-weight: 700 !important;
    transition: color 0.2s ease, background 0.2s ease !important;
    border-color: rgba(200, 210, 220, 0.5) !important;
}
.home-links-bar a:hover {
    background: rgba(64, 131, 145, 0.06) !important;
    color: var(--neo-teal-dark) !important;
}

/* --------------------------------------------------
   MEAL PLANS / RECIPES SECTION (#meal-plans)
   -------------------------------------------------- */
#meal-plans {
    background: var(--neo-bg) !important;
}
#meal-plans-grid .card,
#meal-plans-grid > div {
    background: var(--neo-bg) !important;
    border-radius: 22px !important;
    border: none !important;
    box-shadow: 10px 10px 24px var(--neo-shadow-dark), -10px -10px 24px var(--neo-shadow-light) !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
#meal-plans-grid .card:hover,
#meal-plans-grid > div:hover {
    transform: translateY(-4px) !important;
    box-shadow: 14px 14px 30px var(--neo-shadow-dark), -14px -14px 30px var(--neo-shadow-light) !important;
}
#meal-plans-grid img {
    border-radius: 18px 18px 0 0 !important;
    border: none !important;
    box-shadow: none !important;
}
#meal-plans-grid h3, #meal-plans-grid .card-title {
    font-family: 'Lato', sans-serif !important;
    font-weight: 800 !important;
    color: var(--neo-text) !important;
}
#meal-plans-grid p {
    color: var(--neo-muted) !important;
}

/* --------------------------------------------------
   FOOTER
   -------------------------------------------------- */
footer {
    background: var(--neo-bg) !important;
    border-top: none !important;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) !important;
    box-shadow: 0 -6px 24px var(--neo-shadow-dark) !important;
}
footer h3, footer h4, .footer-heading {
    font-family: 'Lato', sans-serif !important;
    font-weight: 800 !important;
    color: var(--neo-text) !important;
    margin-bottom: 1rem !important;
}
footer a {
    color: var(--neo-muted) !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
}
footer a:hover {
    color: var(--neo-teal) !important;
}
.footer-logo img {
    filter: none !important;
    opacity: 1 !important;
}
.footer-divider, .footer hr {
    border: none !important;
    height: 1px !important;
    background: linear-gradient(to right, transparent, var(--neo-shadow-dark), transparent) !important;
    margin: 2rem 0 !important;
}
.footer-bottom, .footer-copy {
    color: var(--neo-muted) !important;
    font-size: 0.875rem !important;
}

/* --------------------------------------------------
   RESPONSIVE REFINEMENTS
   -------------------------------------------------- */
/* Mobile: stack feature items vertically */
@media (max-width: 640px) {
    .feature-item {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .expert-card-avatar-wrap {
        margin: 1.5rem auto 0.75rem !important;
    }
    .home-links-bar a {
        border-right: none !important;
        border-bottom: 1px solid rgba(200, 210, 220, 0.5) !important;
    }
    .home-links-bar a:last-child {
        border-bottom: none !important;
    }
    .qr-access-inner, .qr-access-section .container {
        flex-direction: column !important;
        text-align: center !important;
        padding: 2rem 1.25rem !important;
    }
}

/* Tablet tweaks */
@media (min-width: 641px) and (max-width: 1023px) {
    .expert-card-avatar-wrap {
        width: 90px !important;
        height: 90px !important;
    }
    .expert-card-avatar {
        width: 78px !important;
        height: 78px !important;
    }
}

/* Large screens — generous spacing */
@media (min-width: 1024px) {
    .feature-section .container {
        max-width: 1200px !important;
        margin: 0 auto !important;
    }
    .home-hero-inner {
        gap: 5rem !important;
    }
}

/* =====================================================
   CTA SPLIT SECTION + FOOTER + INSTALL BAR — Final Polish
   ===================================================== */

/* --------------------------------------------------
   CTA SPLIT (.cta-split)
   -------------------------------------------------- */
.cta-split {
    background: var(--neo-bg) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    gap: 0 !important;
    margin: 0 clamp(1rem, 4vw, 3rem) !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 12px 12px 28px var(--neo-shadow-dark), -12px -12px 28px var(--neo-shadow-light) !important;
    border: none !important;
}
.cta-split-content {
    background: var(--neo-bg) !important;
    flex: 1 1 340px !important;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 3.5rem) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 1.25rem !important;
}
.cta-split-kicker {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--neo-teal) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}
.cta-split-kicker::before {
    content: '' !important;
    width: 20px !important;
    height: 2px !important;
    background: var(--neo-teal) !important;
    border-radius: 2px !important;
    display: inline-block !important;
}
.cta-split-headline {
    font-family: 'Lato', sans-serif !important;
    font-size: clamp(2rem, 5vw, 3.2rem) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    color: var(--neo-text) !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
}
.cta-split-headline em {
    font-style: normal !important;
    color: var(--neo-teal) !important;
}
.cta-split-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem) !important;
    line-height: 1.7 !important;
    color: var(--neo-muted) !important;
    max-width: 480px !important;
}
.cta-split-btn, .cta-split-btn:link, .cta-split-btn:visited {
    align-self: flex-start !important;
    background: var(--neo-teal) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 30px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 5px 5px 14px rgba(51,109,121,0.45), -3px -3px 8px rgba(255,255,255,0.25) !important;
    transition: all 0.2s ease !important;
}
.cta-split-btn:hover {
    background: var(--neo-teal-dark) !important;
    transform: translateY(1px) !important;
    box-shadow: 3px 3px 9px rgba(51,109,121,0.55), -2px -2px 6px rgba(255,255,255,0.2) !important;
    color: #fff !important;
}
.cta-split-image {
    flex: 1 1 300px !important;
    min-height: 460px !important;
}
.cta-split-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 18% !important;
    border-radius: 0 !important;
    display: block !important;
    box-shadow: none !important;
}

/* --------------------------------------------------
   SITE FOOTER (.site-footer)
   -------------------------------------------------- */
.site-footer {
    background: var(--neo-bg) !important;
    border-top: none !important;
    box-shadow: 0 -8px 24px var(--neo-shadow-dark) !important;
    padding-top: 3rem !important;
    padding-bottom: 0 !important;
}
.site-footer-topline {
    display: none !important; /* Remove hard top border — shadow is enough */
}
.site-footer-topnav {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin-bottom: 2.5rem !important;
}
.site-footer-topnav-link {
    background: var(--neo-bg) !important;
    color: var(--neo-text) !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    padding: 8px 18px !important;
    border-radius: 999px !important;
    box-shadow: inset 3px 3px 7px var(--neo-shadow-dark), inset -3px -3px 7px var(--neo-shadow-light) !important;
    transition: color 0.2s ease, box-shadow 0.2s ease !important;
    text-decoration: none !important;
}
.site-footer-topnav-link:hover {
    color: var(--neo-teal) !important;
    box-shadow: inset 2px 2px 5px var(--neo-shadow-dark), inset -2px -2px 5px var(--neo-shadow-light) !important;
}
.site-footer-brand-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 2rem !important;
    margin-bottom: 1.5rem !important;
}
.site-footer-legal {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.4rem !important;
}
.site-footer-legal-link {
    color: var(--neo-muted) !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    transition: color 0.2s !important;
}
.site-footer-legal-link:hover {
    color: var(--neo-teal) !important;
}
.site-footer-logo {
    height: 50px !important;
    width: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.site-footer-powered {
    font-size: 0.78rem !important;
    color: var(--neo-muted) !important;
    margin-top: 0.5rem !important;
}
/* Social icons — inset circles */
.site-footer-social {
    display: flex !important;
    gap: 0.75rem !important;
}
.site-footer-social-link {
    width: 42px !important;
    height: 42px !important;
    background: var(--neo-bg) !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: inset 4px 4px 9px var(--neo-shadow-dark), inset -4px -4px 9px var(--neo-shadow-light) !important;
    color: var(--neo-muted) !important;
    transition: color 0.2s ease, box-shadow 0.2s ease !important;
    text-decoration: none !important;
}
.site-footer-social-link:hover {
    color: var(--neo-teal) !important;
    box-shadow: 4px 4px 10px var(--neo-shadow-dark), -4px -4px 10px var(--neo-shadow-light) !important;
}
.site-footer-divider {
    border: none !important;
    height: 1px !important;
    background: linear-gradient(to right, transparent, var(--neo-shadow-dark), transparent) !important;
    margin: 1.5rem 0 !important;
}
.site-footer-contact {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    align-items: center !important;
    font-size: 0.85rem !important;
    color: var(--neo-muted) !important;
    padding-bottom: 1.5rem !important;
}
.site-footer-contact a {
    color: var(--neo-teal) !important;
    font-weight: 600 !important;
}
.site-footer-contact-sep {
    color: var(--neo-shadow-dark) !important;
    opacity: 0.6 !important;
}
.site-footer-bottombar {
    background: linear-gradient(135deg, #d6dde5, #e8edf2) !important;
    padding: 1.25rem 0 !important;
    border-top: none !important;
}
.site-footer-bottombar-inner {
    font-size: 0.78rem !important;
    color: var(--neo-muted) !important;
    text-align: center !important;
}

/* --------------------------------------------------
   INSTALL BAR
   -------------------------------------------------- */
.install-bar {
    background: var(--neo-bg) !important;
    border-top: none !important;
    box-shadow: 0 -6px 20px var(--neo-shadow-dark) !important;
}
.install-bar .btn {
    margin-top: 0 !important;
}

/* --------------------------------------------------
   MOBILE FINAL — stack CTA split vertically
   -------------------------------------------------- */
@media (max-width: 768px) {
    .cta-split {
        margin: 0 1rem !important;
        flex-direction: column !important;
    }
    .cta-split-image {
        min-height: 320px !important;
    }
    .cta-split-image img {
        object-position: center 12% !important;
    }
    .site-footer-brand-row {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .site-footer-social {
        justify-content: flex-start !important;
    }
}


/* =====================================================
   REFINEMENTS: QR Access, Professionals, Wellness Plans
   ===================================================== */

/* 1. Simplify QR Access (Remove nested layers, keep it neat) */
.qr-access-section {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 2rem) !important;
}
.qr-access-inner {
    background: var(--neo-bg) !important;
    border-radius: 28px !important;
    padding: clamp(2.5rem, 5vw, 4rem) !important;
    box-shadow: 10px 10px 24px var(--neo-shadow-dark), -10px -10px 24px var(--neo-shadow-light) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 3.5rem !important;
    border: none !important;
}
.qr-access-content {
    flex: 1 1 360px !important;
}
/* Flatten the nested cards on the right side */
.qr-access-card-wrap.neo-card, .qr-access-card.neo-card, .qr-card-icon-wrap.neo-card, .qr-card-icon.neo-card {
    box-shadow: none !important;
    background: transparent !important;
}
.qr-access-card-wrap {
    flex: 1 1 320px !important;
    display: flex !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}
/* Make the inner card just a neat image/icon container */
.qr-access-card {
    background: var(--neo-bg) !important;
    border-radius: 24px !important;
    padding: 3rem 2rem !important;
    box-shadow: inset 6px 6px 14px var(--neo-shadow-dark), inset -6px -6px 14px var(--neo-shadow-light) !important;
    text-align: center !important;
    max-width: 360px !important;
    width: 100% !important;
}
.qr-card-icon-wrap {
    margin: 0 auto 1.5rem !important;
    width: 80px !important;
    height: 80px !important;
    background: var(--neo-teal) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    box-shadow: 4px 4px 12px rgba(64,131,145,0.3) !important;
    padding: 0 !important;
}
.qr-card-icon-wrap i, .qr-card-icon-wrap svg {
    color: white !important;
    width: 32px !important;
    height: 32px !important;
}

/* 2. Bigger Professionals Pics */
.expert-card-avatar-wrap {
    width: 154px !important;
    height: 154px !important;
    margin: 2.5rem auto 1rem !important;
    padding: 8px !important;
}
.expert-card-avatar {
    width: 138px !important;
    height: 138px !important;
}
@media (max-width: 1023px) {
    .expert-card-avatar-wrap {
        width: 134px !important;
        height: 134px !important;
    }
    .expert-card-avatar {
        width: 118px !important;
        height: 118px !important;
    }
}

/* 3. Smart Wellness Ecosystem Layout Fixes */
#wellness-plans {
    background: var(--neo-bg) !important;
}
#wellness-plans .split-section {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: center !important;
    background: var(--neo-bg) !important;
    border-radius: 28px !important;
    padding: 3.5rem !important;
    box-shadow: 10px 10px 24px var(--neo-shadow-dark), -10px -10px 24px var(--neo-shadow-light) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}
#wellness-plans .wellness-plans-content {
    padding: 0 !important;
}
/* The image container */
#wellness-plans .split-image {
    min-height: 540px !important;
    height: 100% !important;
    border-radius: 20px !important;
    background: url('../images/hero-healthy-food.webp') center/cover no-repeat !important;
    box-shadow: inset 4px 4px 14px rgba(0,0,0,0.15) !important;
}

/* Feature items inside wellness ecosystem - neatened */
.feature-item {
    padding: 1.5rem !important;
    margin-bottom: 1.2rem !important;
    background: var(--neo-bg) !important;
    border-radius: 16px !important;
    border-bottom: none !important;
    box-shadow: 6px 6px 14px var(--neo-shadow-dark), -6px -6px 14px var(--neo-shadow-light) !important;
}
.feature-item:last-child {
    margin-bottom: 2rem !important;
}

/* Mobile Media Queries for Wellness Ecosystem */
@media (max-width: 900px) {
    #wellness-plans .split-section {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        padding: 2.5rem 1.5rem !important;
    }
    #wellness-plans .split-image {
        min-height: 380px !important;
        order: -1 !important; /* Move image to top on mobile */
    }
}
@media (max-width: 600px) {
    .qr-access-inner {
        padding: 2rem 1.5rem !important;
    }
    .qr-access-card {
        padding: 2rem 1.5rem !important;
    }
}



/* Update for QR Access Image */
.qr-access-image-wrap {
    flex: 1 1 320px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
}
.qr-access-img {
    width: 100% !important;
    max-width: 450px !important;
    height: auto !important;
    border-radius: 20px !important;
}
/* Inset image container for true neomorphic feel */
.neo-img-inset {
    background: var(--neo-bg) !important;
    box-shadow: inset 6px 6px 14px var(--neo-shadow-dark), inset -6px -6px 14px var(--neo-shadow-light) !important;
    padding: 1rem !important;
}



/* =====================================================
   PREMIUM WELLNESS PLANS REDESIGN
   ===================================================== */

#wellness-plans {
    padding: clamp(4rem, 8vw, 7rem) 0 !important;
    background: var(--neo-bg) !important;
}

/* Remove the bulky box around the whole section */
#wellness-plans .split-section {
    display: grid !important;
    grid-template-columns: 1fr 1.1fr !important;
    gap: clamp(3rem, 6vw, 6rem) !important;
    align-items: center !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 1.5rem !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
}

/* Content spacing */
#wellness-plans .wellness-plans-content {
    padding-right: 1rem !important;
}
#wellness-plans .section-title {
    font-size: clamp(2.4rem, 4vw, 3.5rem) !important;
    margin-bottom: 3rem !important;
    line-height: 1.1 !important;
}

/* Flatten the feature items to a sleek list */
.feature-item {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 2.5rem !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
    border: none !important;
    transform: none !important;
}
.feature-item:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Premium Inset Icon */
.feature-icon {
    width: 64px !important;
    height: 64px !important;
    background: var(--neo-bg) !important;
    border-radius: 50% !important;
    box-shadow: inset 6px 6px 12px var(--neo-shadow-dark), inset -6px -6px 12px var(--neo-shadow-light) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--neo-teal) !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}
.feature-item:hover .feature-icon {
    color: var(--neo-teal-dark) !important;
    box-shadow: inset 8px 8px 16px var(--neo-shadow-dark), inset -8px -8px 16px var(--neo-shadow-light) !important;
}

/* Text Refinements */
.feature-item h4 {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: var(--neo-text) !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: -0.01em !important;
}
.feature-item p {
    font-size: 1rem !important;
    color: var(--neo-muted) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Buttons */
.wellness-plans-actions {
    margin-top: 1rem !important;
    display: flex !important;
    gap: 1rem !important;
}

/* The Image - Premium treatment */
#wellness-plans .split-image {
    background: url('../images/wellness-plans-sec.webp?v=3') center/cover no-repeat !important;
    border-radius: 32px !important;
    box-shadow: 15px 15px 40px var(--neo-shadow-dark), -15px -15px 40px var(--neo-shadow-light) !important;
    min-height: 760px !important;
    height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}
#wellness-plans .split-image::before,
#wellness-plans .split-image::after {
    content: none !important;
}

/* Mobile Tweaks */
@media (max-width: 900px) {
    #wellness-plans .split-section {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    #wellness-plans .split-image {
        min-height: 480px !important;
        order: -1 !important;
    }
}



/* =====================================================
   DESKTOP ALIGNMENT & HERO FIXES
   ===================================================== */

/* 1. Move Hero Up on Desktop */
.hero--split {
    min-height: auto !important;
    padding-top: clamp(8rem, 14vh, 10rem) !important;
    padding-bottom: clamp(4rem, 8vh, 6rem) !important;
    align-items: flex-start !important;
}
.home-hero-text {
    margin-top: 1rem !important;
}

/* 2. Premium Desktop Footer Grid Layout */
.site-footer > .container {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    grid-template-areas: 
        "brand nav"
        "divider divider"
        "contact contact"
        "legal social";
    row-gap: 2rem !important;
    align-items: center !important;
}

/* Remove wrapper to allow grid positioning of its children */
.site-footer-brand-row {
    display: contents !important;
}

/* Assign areas */
.site-footer-brand { 
    grid-area: brand !important; 
    text-align: left !important; 
}
.site-footer-topnav { 
    grid-area: nav !important; 
    justify-content: flex-end !important; 
    margin: 0 !important; 
}
.site-footer-divider { 
    grid-area: divider !important; 
    margin: 0 !important; 
    width: 100% !important; 
}
.site-footer-contact { 
    grid-area: contact !important; 
    justify-content: center !important; 
    width: 100% !important; 
    text-align: center !important; 
    padding-bottom: 0 !important; 
}
.site-footer-legal { 
    grid-area: legal !important; 
    justify-content: flex-start !important; 
}
.site-footer-social { 
    grid-area: social !important; 
    justify-content: flex-end !important; 
}

/* Fix invisible social icons */
.site-footer-social-link svg, 
.site-footer-social-link i {
    color: var(--neo-teal) !important;
    stroke: var(--neo-teal) !important;
    width: 22px !important;
    height: 22px !important;
}

/* Mobile Fallback for Footer Grid */
@media (max-width: 900px) {
    .site-footer > .container {
        grid-template-columns: 1fr !important;
        grid-template-areas: 
            "brand"
            "nav"
            "divider"
            "contact"
            "social"
            "legal";
        justify-items: center !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }
    .site-footer-brand { text-align: center !important; }
    .site-footer-topnav { justify-content: center !important; }
    .site-footer-legal { justify-content: center !important; }
    .site-footer-social { justify-content: center !important; }
}



/* =====================================================
   MOVE HERO CLOSER TO HEADER (DESKTOP)
   ===================================================== */

@media (min-width: 900px) {
    /* Significantly reduce the top padding of the hero section */
    .hero--split {
        padding-top: clamp(2.5rem, 4vh, 3.5rem) !important;
        padding-bottom: clamp(3rem, 6vh, 5rem) !important;
    }

    /* Force any stray margins on inner containers to 0 */
    .home-hero-inner,
    .home-hero-text,
    .home-page .hero-content {
        margin-top: 0 !important;
    }
}



/* =====================================================
   CENTER CTA SPLIT SECTION
   ===================================================== */

.cta-split {
    max-width: 1200px !important;
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Ensure padding on smaller screens when it hits the edges */
@media (max-width: 1280px) {
    .cta-split {
        margin-left: clamp(1rem, 4vw, 3rem) !important;
        margin-right: clamp(1rem, 4vw, 3rem) !important;
    }
}



/* =====================================================
   FINAL POLISH: Hero Gap & Professionals Size
   ===================================================== */

/* 1. Hero Section - Move even closer to header */
@media (min-width: 1024px) {
    .hero--split {
        padding-top: 0.5rem !important; /* Extremely close to the h-14 spacer */
        padding-bottom: 3rem !important;
    }
    .home-hero-inner {
        padding-top: 0 !important;
    }
}

/* 2. Professionals - Much Bigger Images */
.expert-card-avatar-wrap {
    width: 200px !important;
    height: 200px !important;
    margin: 3rem auto 1.5rem !important;
    padding: 10px !important;
}
.expert-card-avatar {
    width: 180px !important;
    height: 180px !important;
}

/* 3. Media Query Refinements */

/* Tablet Professionals */
@media (max-width: 1023px) {
    .expert-card-avatar-wrap {
        width: 160px !important;
        height: 160px !important;
    }
    .expert-card-avatar {
        width: 140px !important;
        height: 140px !important;
    }
}

/* Mobile Professionals */
@media (max-width: 640px) {
    .expert-card-avatar-wrap {
        width: 140px !important;
        height: 140px !important;
        margin: 2rem auto 1rem !important;
    }
    .expert-card-avatar {
        width: 120px !important;
        height: 120px !important;
    }
    
    /* Ensure hero on mobile still looks good */
    .hero--split {
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Desktop Hero Spacing Cleanup */
@media (min-width: 1280px) {
    .home-hero-text {
        max-width: 600px !important;
    }
    .home-hero-h1 {
        font-size: 4.5rem !important;
    }
}



/* =====================================================
   PREMIUM FOOTER REDESIGN
   ===================================================== */

.site-footer {
    background: var(--neo-bg) !important;
    padding: 5rem 0 2rem !important;
    border-top: 1px solid rgba(255,255,255,0.3) !important;
}

.footer-main-grid {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
    gap: 4rem !important;
    margin-bottom: 4rem !important;
}

.footer-logo-premium {
    max-width: 240px !important;
    height: auto !important;
    margin-bottom: 1.5rem !important;
}

.footer-powered-text {
    font-size: 0.9rem !important;
    color: var(--neo-muted) !important;
    line-height: 1.5 !important;
    margin-bottom: 2rem !important;
    max-width: 320px !important;
}

.footer-social-wrap {
    display: flex !important;
    gap: 1rem !important;
}

.social-neo-icon {
    width: 44px !important;
    height: 44px !important;
    background: var(--neo-bg) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 6px 6px 12px var(--neo-shadow-dark), -6px -6px 12px var(--neo-shadow-light) !important;
    color: var(--neo-teal) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.social-neo-icon:hover {
    box-shadow: inset 4px 4px 8px var(--neo-shadow-dark), inset -4px -4px 8px var(--neo-shadow-light) !important;
    color: var(--neo-teal-dark) !important;
    transform: translateY(2px) !important;
}

.social-neo-icon i, .social-neo-icon svg {
    width: 20px !important;
    height: 20px !important;
}

.footer-col-title {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: var(--neo-text) !important;
    margin-bottom: 1.8rem !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
}

.footer-nav-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-nav-list li {
    margin-bottom: 0.8rem !important;
}

.footer-nav-list a {
    color: var(--neo-muted) !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: color 0.2s ease !important;
}

.footer-nav-list a:hover {
    color: var(--neo-teal) !important;
}

.footer-contact-details p {
    font-size: 0.95rem !important;
    color: var(--neo-muted) !important;
    line-height: 1.6 !important;
    margin-bottom: 1.2rem !important;
}

.footer-contact-details strong {
    color: var(--neo-text) !important;
}

.footer-contact-details a {
    color: var(--neo-teal) !important;
    text-decoration: none !important;
}

.footer-premium-divider {
    height: 2px !important;
    background: var(--neo-bg) !important;
    box-shadow: inset 2px 2px 5px var(--neo-shadow-dark), inset -2px -2px 5px var(--neo-shadow-light) !important;
    margin-bottom: 2rem !important;
    border-radius: 2px !important;
}

.footer-copyright-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    color: var(--neo-muted) !important;
    font-size: 0.85rem !important;
}

.footer-copyright-row a {
    color: var(--neo-teal) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

/* Hide legacy elements */
#install-bar, #ios-install-sheet, .site-footer-topnav, .site-footer-brand-row, .site-footer-divider, .site-footer-contact, .site-footer-bottombar {
    display: none !important;
}

/* =====================================================
   FOOTER MEDIA QUERIES
   ===================================================== */

@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 0 6rem !important; /* Extra bottom padding for bottom-nav */
    }
    .footer-main-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center !important;
    }
    .footer-brand-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .footer-social-wrap {
        justify-content: center !important;
    }
    .footer-powered-text {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .footer-copyright-row {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }
}



/* Robust Footer Text Colors */
.footer-col-title {
    color: #2e3a4a !important; /* var(--neo-text) fallback */
}
.footer-nav-list a, .footer-powered-text, .footer-contact-details p {
    color: #7a8695 !important; /* var(--neo-muted) fallback */
}
.footer-copyright-row {
    color: #7a8695 !important;
}
.footer-contact-details a, .footer-copyright-row a {
    color: #408391 !important; /* var(--neo-teal) fallback */
}


/* no-splash-no-spinner */
.marketing-startup-splash,
.mkt-splash,
.startup-splash,
.animate-spin,
[class*="spinner"] {
  display: none !important;
  animation: none !important;
}

/* Custom overrides */
.text-\[\#2f8aa0\] { color: #2f8aa0 !important; }
.group:hover .group-hover\:bg-\[\#2f8aa0\] { background-color: #2f8aa0 !important; }
.group:hover .group-hover\:text-white { color: #ffffff !important; }
.group:hover .group-hover\:text-\[\#2f8aa0\]\/70 { color: rgba(47, 138, 160, 0.7) !important; }
.group:hover .group-hover\:text-\[\#2f8aa0\] { color: #2f8aa0 !important; }
