/* BRAND SYSTEM & CSS VARIABLES */
:root {
    --color-primary: #00664F;
    --color-primary-hover: #004D3B;
    --color-primary-muted: #00E676;
    --bg-primary: #F9FAFB;
    --bg-secondary: #F1F5F9;
    --surface: #FFFFFF;
    --text-primary: #121212;
    --text-secondary: #6B7280;
    --border: #E5E7EB;
    --charcoal: #121212;
    --accent: #00E676;

    /* Legacy aliases */
    --primary: var(--color-primary);
    --primary-light: var(--color-primary-muted);
    --primary-dark: var(--color-primary-hover);
    --secondary: #2563EB;
    --background: var(--bg-primary);
    --text-main: var(--text-primary);
    --text-muted: var(--text-secondary);

    /* Typography */
    --font-head: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* UI Adjustments */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* UNIFIED BUTTON SYSTEM */
.btn-primary,
a.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-primary);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.938rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.btn-primary:hover,
a.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 79, 0.2);
    text-decoration: none;
    color: #FFFFFF;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--color-primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.938rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    border: 1.5px solid var(--color-primary);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    text-decoration: none;
}

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

html {
    overflow-x: hidden;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { line-height: 1.05; letter-spacing: -0.025em; }
h2 { line-height: 1.15; letter-spacing: -0.02em; }

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* UTILITY CLASSES */
.bg-gray {
    background-color: #F3F4F6;
}

.bg-white {
    background-color: var(--surface);
}

.bg-teal-dark {
    background-color: #0d4a46;
}

.text-white {
    color: #ffffff !important;
}

.text-white p,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white .material-symbols-rounded {
    color: #ffffff !important;
}

.text-dark,
.text-dark p,
.text-dark h2,
.text-dark h3,
.text-dark h4,
.text-dark .material-symbols-rounded {
    color: var(--text-main) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

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

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

.text-green {
    color: var(--accent);
}

.w-full {
    width: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

.mt-2 {
    margin-top: 0.5rem;
}

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

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

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

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.flex {
    display: flex;
}

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

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

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

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

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

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.rounded {
    border-radius: var(--radius-md);
}

/* COMPONENTS */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #e0f2fe;
    color: #0369a1;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary,
.btn-text,
.btn-icon {
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
}

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

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

.btn-primary.btn-white:hover {
    background-color: #f8fafc;
}

.btn-secondary {
    background-color: #EFF6FF;
    color: var(--secondary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
}

.btn-secondary:hover {
    background-color: #DBEAFE;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-text {
    background: none;
    color: var(--text-main);
    padding: 0.5rem;
}

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

.text-button-reset {
    color: white;
    padding-left: 0;
}

.btn-icon {
    background: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-main);
}

.btn-icon:hover {
    background-color: #f1f5f9;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}

.bg-gradient-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* STRUCTURE */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    color: var(--primary);
    cursor: pointer;
    line-height: 0;
}

.logo-mark {
    display: block;
    width: auto;
    height: 46px;
    max-width: min(240px, 42vw);
    object-fit: contain;
}

.footer .logo {
    display: inline-flex;
    padding: 0.55rem 0.8rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
    margin-bottom: 1rem;
}

.footer .logo-mark {
    height: 42px;
    max-width: min(250px, 100%);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-md);
}

.mobile-nav.active {
    display: flex;
}

.page-with-nav-offset {
    margin-top: 70px;
}

.view {
    display: none;
}

.view.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.padded-section {
    padding: 5rem 1.5rem;
}

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

/* RO INSPIRED HERO SECTION */
.ro-hero-section {
    background: #f8fbfb;
    padding-top: 2.5rem; /* Reduced from 6rem to remove wasted gap */
    padding-bottom: 4rem;
}

.ro-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Layer 1 & 2: Split Hero Layout */
.ro-hero-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .ro-hero-split {
        flex-direction: column;
    }
}

/* Left Column (40-45%) */
.ro-hero-left {
    flex: 0 0 42%;
    min-width: 320px;
}

.ro-hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.ro-hero-left p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.ro-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.ro-btn {
    border-radius: 9999px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.ro-hero-trust-indicators.vertical {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-item .material-symbols-rounded {
    color: #0F766E;
    font-size: 1.25rem;
}

/* Right Column (55-60%) */
.ro-hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.ro-product-card.compact {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding: 2.5rem;
    min-height: 240px; /* Reduced identical height */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ro-product-card.compact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.ro-product-info {
    flex: 0 0 55%; /* Keep text contained to 55% */
    max-width: 55%;
    z-index: 2;
}

.ro-product-info.on-top {
    z-index: 3;
}

.ro-product-info h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.ro-product-info p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Image blending */
.ro-product-img.blend-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%; /* Takes up right side */
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    mask-image: linear-gradient(to right, transparent 0%, black 30%); /* Smooth fade */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

.ro-product-img.blend-right.overlay-gradient {
    mask-image: none; /* remove mask for this to use a solid overlay gradient */
    -webkit-mask-image: none;
    width: 100%;
}

.ro-product-img.blend-right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right center;
}

.image-gradient-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #0F766E 30%, transparent 100%);
    z-index: 2;
}

/* Specific Cards */
.semaglutide-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.semaglutide-card h2 {
    color: #1e3a8a;
}

.semaglutide-card p {
    color: #334155;
}

.semaglutide-card .ro-product-img.blend-right img {
    object-fit: contain;
    padding-right: 1.5rem;
    transform: scale(1.3);
    mix-blend-mode: multiply; /* Removes white background for a sleek, seamless look */
}

.tirzepatide-card {
    background: #0F766E; /* Fallback base color */
}

.tirzepatide-card h2, .tirzepatide-card p {
    color: #ffffff;
}

@media (max-width: 600px) {
    .ro-hero-left h1 {
        font-size: 2.75rem;
    }
    .ro-product-card.compact {
        flex-direction: column;
        text-align: left;
        padding: 0; /* Remove wrapper padding */
        min-height: auto; /* Remove hard height */
    }
    .ro-product-img.blend-right {
        position: relative; /* Take up space in flow */
        width: 100%;
        height: 220px;
        top: auto;
        bottom: auto;
        right: auto;
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    }
    .ro-product-img.blend-right.overlay-gradient {
        mask-image: none;
        -webkit-mask-image: none;
    }
    .image-gradient-cover {
        background: linear-gradient(to bottom, transparent 0%, #0F766E 70%, #0F766E 100%);
    }
    .ro-product-info {
        flex: auto;
        max-width: 100%;
        margin-top: -60px; /* Pull text up over the faded bounds */
        padding: 0 2rem 2.5rem 2rem; /* Give padding here instead of card */
        z-index: 3;
    }
    .semaglutide-card .ro-product-img.blend-right img {
        object-position: center bottom;
        object-fit: contain;
        padding: 1rem 1rem 0 1rem; /* Restores padding to look natural above text */
        transform: scale(1.1);
        mix-blend-mode: multiply;
    }
}

/* Layer 3: How It Works Row */
.ro-how-it-works-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .ro-how-it-works-row {
        grid-template-columns: 1fr;
    }
}

.ro-step-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    align-items: flex-start;
}

.ro-step-card .icon-wrapper {
    background: #f0fdfa;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ro-step-card .icon-wrapper .material-symbols-rounded {
    color: #0F766E;
    font-size: 1.75rem;
}

.step-card-text {
    flex: 1;
}

.step-card-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.step-card-text p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0;
    line-height: 1.5;
}

.cta-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cta-inline {
    padding: 0;
    font-weight: 600;
}

.ro-product-card .cta-inline {
    font-size: 1.15rem;
}

.text-primary, .cta-inline.text-primary {
    color: #0F766E !important;
}

.cta-inline:hover {
    opacity: 0.8;
    background: transparent;
}

/* TRUST BAR */
.trust-bar {
    background-color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-bar p {
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

.stars {
    color: #F59E0B;
    letter-spacing: 2px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.125rem;
}

/* HOW IT WORKS */
.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.2s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.step-icon span {
    font-size: 2rem;
}

.step-num {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* =========================================================
   WEIGHT LOSS CALCULATOR SECTION
   ========================================================= */
.weight-loss-calc {
    background-color: #F8FAFC;
}

.calc-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.calc-left {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calc-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 3rem;
}

.calc-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, rgba(37, 99, 235, 0.05) 50%, rgba(248, 250, 252, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.calc-floating-pen {
    width: 100%;
    max-width: 440px; /* Made even larger to be the true centerpiece */
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
    transform-origin: center;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.calc-right {
    flex: 0 0 35%;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: #e0f2fe;
    color: #0369a1;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.stat-badge .material-symbols-rounded {
    font-size: 1.1rem;
}

.stat-number-large {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: #111827; /* Dark charcoal */
    letter-spacing: -0.04em;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.stat-number-large span {
    font-size: 5rem;
    color: var(--primary); /* Teal highlight */
    margin-left: 0.25rem;
    line-height: 0.9;
    font-weight: 700;
}

.stat-supporting-text {
    font-size: 1.15rem;
    line-height: 1.5;
    color: #4b5563;
    max-width: 250px;
}

.calc-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(15,118,110,0.05);
}

.calc-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.calc-val-display {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    background: #f0fdfa;
    padding: 4px 12px;
    border-radius: 8px;
}

/* Styled Slider */
.styled-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    outline: none;
    transition: background 0.15s ease-in-out;
}

.styled-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(15, 118, 110, 0.4);
    border: 2px solid white;
    transition: transform 0.1s;
}

.styled-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calc-output {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px dashed #cbd5e1;
}

.calc-output p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.output-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.output-number.pop {
    transform: scale(1.05);
}

.calc-disclaimer {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .calc-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    .calc-left {
        flex: 1;
        align-items: center;
    }
    .stat-badge {
        align-self: center;
    }
    .calc-center {
        flex: 1;
        width: 100%;
        padding: 0;
    }
    .calc-right {
        flex: 1;
        width: 100%;
    }
    .stat-number-large { font-size: 6rem; }
    .stat-number-large span { font-size: 4rem; }
    .stat-supporting-text { margin: 0 auto; }
    .calc-card { padding: 24px; text-align: left; }
}

/* BENEFITS */
.benefits-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.benefit-item span {
    color: var(--primary);
    font-size: 2rem;
}

/* EXPECTED RESULTS */
.results-visual {
    max-width: 800px;
    margin: 0 auto;
}

.graph-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.graph-placeholder {
    height: 200px;
    position: relative;
    margin-top: 2rem;
    border-left: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #93C5FD, var(--primary));
    transform: rotate(15deg);
    transform-origin: left center;
}

.point {
    position: absolute;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    transform: translate(-50%, -50%);
}

.p1 {
    left: 33%;
    top: 60%;
}

.p2 {
    left: 66%;
    top: 75%;
}

.p3 {
    left: 95%;
    top: 85%;
}

/* DOCTORS & REVIEWS */
.doctor-cards-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.doctor-card-modern {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
}

.doctor-card-modern:hover {
    transform: translateY(-5px);
}

.doc-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.doc-info-modern {
    padding: 1.5rem;
    text-align: center;
}

.text-white .doc-info-modern h4 {
    color: var(--text-main) !important;
}

.text-white .doc-cred {
    color: var(--primary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.text-white .doc-exp {
    font-size: 0.875rem;
    color: var(--text-muted) !important;
    margin-bottom: 0;
}

/* REVIEWS CAROUSEL */
.reviews-carousel-wrapper {
    max-width: 800px;
    margin: 2rem auto 0 auto;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius-lg);
}

.carousel-track {
    list-style: none;
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.review-card {
    background: white;
    color: var(--text-main);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.review-card .stars {
    color: #F59E0B;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.text-white .review-card p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-main) !important;
    margin-bottom: 1rem;
}

.text-white .review-card .reviewer {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-muted) !important;
    font-style: normal;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* PRICING */
.pricing-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.price-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-card .price {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.price-card .price span {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-head);
    letter-spacing: -0.05em;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.price-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price-card li span {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.price-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
    background-color: #f0fdfa;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-q {
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
}

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

.faq-a {
    margin-top: 1rem;
    display: none;
    color: var(--text-muted);
}

.faq-item.active .faq-a {
    display: block;
}

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


/* FUNNEL SHARED */
.funnel-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.funnel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.progress-bar-container {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.calc-label-text {
    font-weight: 500;
    color: #4b5563;
}

.calc-cta-btn {
    padding: 1rem;
    font-size: 1.1rem;
    justify-content: center;
}

.graph-placeholder-clean {
    border: none;
    margin-top: 1rem;
}

.success-icon-symbol {
    font-size: 4rem;
    color: var(--accent);
}

.checkout-lock-icon {
    font-size: 1rem;
    vertical-align: middle;
}

/* QUIZ */
.quiz-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.quiz-step.active {
    display: block;
}

.quiz-step h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option {
    display: block;
    width: 100%;
    padding: 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quiz-option:hover {
    border-color: var(--primary);
    background: #f0fdfa;
}

.quiz-input-group {
    margin-bottom: 1.5rem;
}

.quiz-input-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.quiz-input-group input,
.quiz-input-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
}

.quiz-input-group input:focus,
.quiz-input-group select:focus {
    border-color: var(--primary);
    outline: none;
}

/* CALENDAR (MATCH VIEW) */
.date-scroll {
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.date-chip,
.time-chip {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
}

.date-chip:hover,
.time-chip:hover {
    border-color: var(--primary);
}

.date-chip.active,
.time-chip.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* CHECKOUT */
.order-summary,
.payment-details {
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    font-size: 1.25rem;
}

.input-group {
    margin-bottom: 1rem;
    flex: 1;
}

.input-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
}

.input-group-compact {
    margin-bottom: 0.5rem;
}

.phone-input-wrapper {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.country-code {
    padding: 0.85rem 1rem;
    background-color: #f3f4f6;
    border-right: 1px solid #d1d5db;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    color: #4b5563;
    line-height: 1;
}

.phone-input {
    flex: 1;
    border: none !important;
    font-size: 1.05rem;
    padding: 0.85rem 1rem !important;
    outline: none;
    border-radius: 0 !important;
    line-height: 1;
}

.auth-submit-btn {
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
}

.auth-submit-btn:hover {
    background: #f9fafb;
}

.auth-status {
    display: none;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    line-height: 1.4;
}

.auth-status.is-visible {
    display: block;
}

.auth-status.info {
    background: #ecfeff;
    border: 1px solid #99f6e4;
    color: var(--color-primary-hover);
}

.auth-status.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* DASHBOARD */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background: white;
    border-right: 1px solid var(--border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.sidebar .logo {
    margin-bottom: 2rem;
}

.sidebar .logo-mark {
    height: 48px;
    max-width: 100%;
}

.side-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.side-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    font-weight: 500;
    border-radius: var(--radius-md);
}

.side-nav a:hover,
.side-nav a.active {
    background: #f0fdfa;
    color: var(--primary);
    text-decoration: none;
}

.dash-content {
    flex: 1;
    padding: 2rem;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.dashboard-mode-banner {
    display: none;
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: #ecfeff;
    border: 1px solid #99f6e4;
    color: var(--color-primary-hover);
    font-size: 0.92rem;
}

.dashboard-mode-banner.is-visible {
    display: block;
}

.dash-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.weight-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1rem;
}

.weight-stat .val {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.weight-diff {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

.task-list {
    list-style: none;
}

.task-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.task-list li:last-child {
    border-bottom: none;
}

.task-list li.completed {
    color: var(--text-muted);
    text-decoration: line-through;
}

.task-list li.completed span {
    color: var(--accent);
    text-decoration: none;
}

.task-list li.pending span {
    color: var(--text-muted);
}

/* FOOTER */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 4rem 1.5rem 1.5rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    border-bottom: 1px solid #374151;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.foot-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.foot-col a {
    display: block;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.foot-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    font-size: 0.875rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        margin: 0 auto 2rem auto;
    }

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

    /* removed glp1-container override */

    .price-card.popular {
        transform: none;
    }

    .dashboard-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
    }

    .sidebar .logo {
        margin-bottom: 0;
    }

    .sidebar .logo-mark {
        height: 42px;
    }

    .side-nav {
        display: none;
    }

    /* Hide nav on mobile dash for simplicity, or implement a drawer */
    .logout-nav {
        display: none;
    }
}

/* =========================================================
   AUTH GATEWAY DESIGN SYSTEM
   ========================================================= */
.auth-gateway-bg {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    padding: 5rem 1.5rem 2rem 1.5rem; /* Reduce top/bottom padding to fit viewport */
    justify-content: center;
    align-items: flex-start; /* Align to top instead of center */
    min-height: 100vh;
}

.view.active.auth-gateway-bg {
    display: flex;
}

.auth-gateway-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 3.5rem; /* Slightly tighter gap */
    align-items: flex-start; /* Align columns to the top */
    padding-top: 2rem; /* Give a little breathing room under navbar */
}

.auth-gateway-left {
    flex: 0 0 45%;
    padding-top: 1rem; /* Fine-tune optical alignment with right card */
}

.auth-headline {
    font-size: 2.5rem; /* Slightly smaller for density */
    line-height: 1.15;
    color: #111827;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.auth-subheadline {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.auth-trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* tighter spacing */
    margin-bottom: 1.5rem;
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.auth-trust-indicators .trust-item {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-trust-indicators .trust-item .material-symbols-rounded {
    color: #0F766E;
    font-size: 1.15rem;
}

.auth-motivation-card {
    background: linear-gradient(135deg, #ccfbf1 0%, #f0fdfa 100%);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(15,118,110,0.06);
    align-items: flex-start;
    border: 1px solid rgba(15,118,110,0.1);
}

.auth-motivation-card .icon-wrapper {
    background: #0F766E;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-motivation-card .icon-wrapper .material-symbols-rounded {
    color: white;
    font-size: 20px;
}

.motivation-text h3 {
    font-size: 1.1rem;
    color: #0F766E;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.motivation-text p {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.auth-gateway-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.auth-card {
    background: white;
    width: 100%;
    max-width: 440px; /* Slightly tighter */
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.auth-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

/* Toggle Styles */
.auth-toggle-container {
    display: flex;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
    margin: 1.5rem 0;
}

.auth-toggle-btn {
    flex: 1;
    text-align: center;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    border: none;
}

.auth-toggle-btn.active {
    background: white;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.auth-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.auth-tab-content.active {
    display: block;
}

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

/* Social Buttons */
.auth-social-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hover-anim {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hover-anim:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background-color: #f9fafb !important;
}

@media (max-width: 900px) {
    .auth-gateway-container {
        flex-direction: column;
        gap: 2rem;
        padding-top: 0;
    }
    .auth-gateway-bg {
        padding: 5rem 1rem 2rem 1rem;
    }
    .auth-headline {
        font-size: 2rem;
    }
    .auth-card {
        padding: 1.5rem;
    }
}

/* POLICY PAGE */
.policy-page {
    background: linear-gradient(180deg, #f8fbfb 0%, #ffffff 35%);
    min-height: 100vh;
}

.policy-shell {
    max-width: 900px;
    margin: 0 auto;
    padding: 7rem 1.5rem 4rem;
}

.policy-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
}

.policy-header {
    margin-bottom: 2rem;
}

.policy-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: #ccfbf1;
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.policy-meta {
    margin-bottom: 0;
    color: #4b5563;
}

.policy-intro {
    font-size: 1rem;
    color: #374151;
}

.policy-section {
    margin-top: 2rem;
}

.policy-section h2 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.policy-section h3 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.policy-section p,
.policy-section li {
    color: #4b5563;
}

.policy-section ul {
    padding-left: 1.25rem;
    margin: 0.75rem 0 0;
}

.policy-section li + li {
    margin-top: 0.4rem;
}

.policy-contact {
    padding: 1.25rem;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--border);
}

.policy-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .policy-shell {
        padding: 6rem 1rem 3rem;
    }

    .policy-card {
        padding: 1.5rem;
        border-radius: 18px;
    }
}

/* ================================================================
   lnd-* — MODERN PREMIUM LANDING PAGE
   ================================================================ */

.lnd-body,
.lnd-page {
    background: #ffffff;
}

/* ----- NAVBAR ----- */
.lnd-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 68px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
}

.lnd-nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lnd-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lnd-nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
}

.lnd-nav-links a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.lnd-nav-signin {
    color: #374151 !important;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.4rem 0.5rem;
    border-radius: 6px;
    transition: color 0.15s;
}

.lnd-nav-signin:hover {
    color: var(--color-primary) !important;
}

.lnd-nav-cta {
    background: var(--color-primary) !important;
    color: white !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 8px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.15s !important;
}

.lnd-nav-cta:hover {
    background: #0d665f !important;
    transform: translateY(-1px);
    color: white !important;
    text-decoration: none !important;
}

/* ----- SHARED LAYOUT ----- */
.lnd-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lnd-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.lnd-section-gray {
    background: #f7f8fa;
}

.lnd-section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}

.lnd-section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.lnd-section-head h2 {
    font-family: var(--font-head);
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.15;
}

.lnd-section-head p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ----- HERO ----- */
.lnd-hero {
    padding: 96px 0 88px;
    background: #ffffff;
}

.lnd-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: center;
}

.lnd-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(0, 100, 85, 0.07);
    border: 1px solid rgba(0, 100, 85, 0.15);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.lnd-hero-copy h1 {
    font-family: 'Outfit', var(--font-head);
    font-size: clamp(3rem, 5vw, 4.75rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.045em;
    color: #0a0a0a;
    margin-bottom: 20px;
}

.lnd-accent {
    background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lnd-hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #52606d;
    max-width: 440px;
    margin-bottom: 0;
}

.lnd-hero-actions {
    margin-top: 28px;
    margin-bottom: 20px;
}

/* Primary button (legacy) */
.lnd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.938rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(0, 100, 85, 0.22);
}

.lnd-btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 100, 85, 0.28);
    text-decoration: none;
    color: white;
}

.lnd-btn-primary .material-symbols-rounded {
    font-size: 18px;
    transition: transform 0.2s;
}

.lnd-btn-primary:hover .material-symbols-rounded {
    transform: translateX(3px);
}

.lnd-social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #6b7280;
}

.lnd-stars {
    color: #f59e0b;
    letter-spacing: 1px;
}

/* Hero product cards */
.lnd-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lnd-product-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 220px;
}

/* Light card */
.lnd-card-light {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    gap: 1.5rem;
    justify-content: space-between;
}

.lnd-product-text {
    flex: 1;
    z-index: 2;
}

.lnd-product-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.lnd-product-text h3 {
    font-family: 'Outfit', var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.2;
}

.lnd-card-light .lnd-product-text p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.55;
    margin-bottom: 14px;
}

.lnd-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.lnd-link .material-symbols-rounded {
    font-size: 16px;
    transition: transform 0.2s;
}

.lnd-link:hover { text-decoration: none; }
.lnd-link:hover .material-symbols-rounded { transform: translateX(3px); }

.lnd-sema-img {
    flex-shrink: 0;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 55%, #f0f9ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.15), 0 2px 8px rgba(59, 130, 246, 0.08);
}

.lnd-sema-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark card */
.lnd-card-dark {
    background: #0d1117;
    min-height: 240px;
}

.lnd-tirz-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lnd-tirz-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lnd-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 17, 23, 0.97) 30%, rgba(13, 17, 23, 0.65) 65%, rgba(13, 17, 23, 0.1) 100%);
}

.lnd-product-text-dark {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.lnd-tag-light { color: #5eead4; }

.lnd-card-dark .lnd-product-text-dark h3 { color: #ffffff; }

.lnd-card-dark .lnd-product-text-dark p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.55;
    margin-bottom: 14px;
}

.lnd-link-light { color: #5eead4; }

/* ----- STAT STRIP ----- */
.lnd-stat-strip {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 40px 0;
    background: #ffffff;
}

.lnd-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lnd-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 52px;
    text-align: center;
}

.lnd-stat-num {
    font-family: 'Outfit', var(--font-head);
    font-size: 2.1rem;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.03em;
    line-height: 1;
}

.lnd-stat-label {
    font-size: 0.78rem;
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.lnd-stat-divider {
    width: 1px;
    height: 44px;
    background: #e5e7eb;
    flex-shrink: 0;
}

/* ----- HOW IT WORKS ----- */
.lnd-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.lnd-step {
    flex: 1;
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lnd-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.lnd-step-num {
    display: block;
    font-family: 'Outfit', var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.lnd-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f0fdf9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lnd-step-icon .material-symbols-rounded {
    color: var(--color-primary);
    font-size: 22px;
}

.lnd-step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0a0a0a;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.lnd-step p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

.lnd-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    padding-top: 56px;
    color: #d1d5db;
    flex-shrink: 0;
}

.lnd-step-arrow .material-symbols-rounded { font-size: 20px; }

/* ----- TESTIMONIALS ----- */
.lnd-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lnd-testimonial {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lnd-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.lnd-quote-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.lnd-quote {
    font-size: 0.975rem;
    color: #374151;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 20px;
}

.lnd-quote-author {
    font-size: 0.82rem;
    font-weight: 600;
    color: #9ca3af;
}

/* ----- CALCULATOR ----- */
.lnd-calc-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
}

.lnd-big-stat {
    font-family: 'Outfit', var(--font-head);
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: #0a0a0a;
    letter-spacing: -0.05em;
    display: flex;
    align-items: flex-start;
    margin: 16px 0 12px;
}

.lnd-big-stat span {
    font-size: 4rem;
    color: var(--color-primary);
    margin-left: 4px;
}

.lnd-big-stat-caption {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.65;
    max-width: 280px;
    margin: 0;
}

.lnd-calc-card {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.lnd-calc-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

/* ----- PRICING ----- */
.lnd-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.lnd-price-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 249, 0.98));
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 18px 36px rgba(15, 23, 32, 0.05);
}

.lnd-price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 79, 0.18);
    box-shadow: 0 24px 44px rgba(15, 23, 32, 0.08);
}

.lnd-price-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.75), rgba(255,255,255,0));
    pointer-events: none;
}

.lnd-plan-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary-muted);
    margin-bottom: 6px;
}

.lnd-plan-name {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 12px;
}

.lnd-plan-price {
    font-family: 'Outfit', var(--font-head);
    font-size: 2.75rem;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}

.lnd-plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #9ca3af;
    letter-spacing: 0;
}

.lnd-plan-desc {
    font-size: 0.82rem;
    color: #9ca3af;
    margin-bottom: 24px;
}

.lnd-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lnd-plan-features li {
    font-size: 0.875rem;
    color: #374151;
    padding-left: 1.25rem;
    position: relative;
}

.lnd-plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.82rem;
}

/* Featured pricing card — dark */
.lnd-price-featured {
    background: linear-gradient(180deg, #151918 0%, #101615 100%);
    border-color: rgba(0, 230, 118, 0.08);
    box-shadow: 0 24px 48px rgba(8, 13, 12, 0.28);
}

.lnd-price-featured .lnd-plan-badge { color: var(--accent); }
.lnd-price-featured .lnd-plan-name { color: #9CA3AF; }
.lnd-price-featured .lnd-plan-price { color: #ffffff; }
.lnd-price-featured .lnd-plan-desc { color: #9CA3AF; }
.lnd-price-featured .lnd-plan-features li { color: #D1D5DB; }
.lnd-price-featured .lnd-plan-features li::before { color: var(--accent); }

.lnd-btn-outline {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border: 1.5px solid var(--color-primary);
    border-radius: 999px;
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    font-family: var(--font-body);
}

.lnd-btn-outline:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
    transform: translateY(-1px);
    text-decoration: none;
}

.lnd-btn-primary-dark {
    display: block;
    text-align: center;
    padding: 12px 24px;
    background: var(--color-primary);
    border-radius: 999px;
    font-size: 0.938rem;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    font-family: var(--font-body);
    box-shadow: 0 14px 28px rgba(0, 102, 79, 0.2);
}

.lnd-btn-primary-dark:hover {
    background: var(--color-primary-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(0, 102, 79, 0.28);
    text-decoration: none;
}

/* ----- FAQ ----- */
.lnd-faq-shell {
    max-width: 720px;
}

.lnd-faq { max-width: 100%; }

/* ----- FINAL CTA ----- */
.lnd-final-cta {
    background: #080d0c;
    padding: 100px 0;
}

.lnd-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.lnd-final-cta h2 {
    font-family: 'Outfit', var(--font-head);
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.lnd-final-cta p {
    color: #4b5563;
    font-size: 1.05rem;
    margin: 0;
}

.lnd-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--color-primary);
    padding: 0.9rem 1.75rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}

.lnd-btn-white:hover {
    background: #f0fdf9;
    color: #0d665f;
    transform: translateY(-1px);
    text-decoration: none;
}

/* ----- RESPONSIVE ----- */
/* --- 1024px: tablet landscape --- */
@media (max-width: 1024px) {
    .lnd-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lnd-hero-sub { max-width: 100%; }

    .lnd-steps {
        flex-direction: column;
        gap: 16px;
    }

    .lnd-step-arrow { display: none; }

    .lnd-calc-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lnd-pricing {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .lnd-price-featured {
        grid-column: 1 / -1;
    }

    .lnd-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .lnd-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
}

/* --- 768px: tablet portrait / large phone --- */
@media (max-width: 768px) {
    /* Nav */
    .lnd-nav .mobile-menu-btn { display: block; }
    .lnd-nav-links { display: none; }
    .mobile-nav { top: 68px; }

    /* Hero */
    .lnd-hero { padding: 72px 0 56px; }
    .lnd-hero-copy h1 { font-size: 2.6rem; letter-spacing: -0.035em; }
    .lnd-hero-sub { font-size: 1rem; }
    .lnd-hero-actions { margin-top: 20px; }

    /* Hero cards — 2 columns side by side on tablet */
    .lnd-hero-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .lnd-product-card { min-height: 200px; }
    .lnd-card-light { padding: 1.25rem; gap: 0.75rem; }
    .lnd-sema-img { width: 100px; height: 100px; }
    .lnd-product-text h3 { font-size: 1.15rem; }
    .lnd-card-light .lnd-product-text p { font-size: 0.8rem; }

    /* Sections */
    .lnd-section { padding: 72px 0; }
    .lnd-section-gray { padding: 72px 0; }
    .lnd-section-head { margin-bottom: 40px; }
    .lnd-section-head h2 { font-size: 1.75rem; }

    /* Stat strip */
    .lnd-stats-row { flex-wrap: wrap; gap: 0; justify-content: center; }
    .lnd-stat-divider { display: none; }
    .lnd-stat {
        padding: 16px 24px;
        width: 50%;
        border-bottom: 1px solid #ebebeb;
    }
    .lnd-stat:nth-child(odd) { border-right: 1px solid #ebebeb; }
    .lnd-stat:nth-last-child(-n+2) { border-bottom: none; }
    .lnd-stat-num { font-size: 1.6rem; }

    /* Steps */
    .lnd-step { padding: 24px 20px; }

    /* Testimonials */
    .lnd-testimonials { grid-template-columns: 1fr; gap: 16px; }
    .lnd-testimonial { padding: 24px; }

    /* Calculator */
    .lnd-calc-layout { gap: 32px; }
    .lnd-big-stat { font-size: 5rem; }
    .lnd-big-stat span { font-size: 2.75rem; }
    .lnd-big-stat-caption { max-width: 100%; }
    .lnd-calc-card { padding: 24px; }

    /* Pricing */
    .lnd-pricing {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 14px;
    }
    .lnd-price-featured { grid-column: auto; }
    .lnd-price-card { padding: 28px 24px; }

    /* Final CTA */
    .lnd-final-cta { padding: 72px 0; }
    .lnd-final-cta h2 { font-size: 2rem; }
    .lnd-cta-inner { gap: 24px; align-items: flex-start; flex-direction: column; }

    /* Footer */
    .footer { padding: 3rem 1rem 1.5rem; }
    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* --- 640px: phones --- */
@media (max-width: 640px) {
    /* Nav */
    .lnd-nav { height: 60px; }
    .lnd-nav-inner { height: 60px; }
    .page-with-nav-offset { margin-top: 60px; }
    .mobile-nav { top: 60px; }

    /* Hero */
    .lnd-hero { padding: 60px 0 48px; }
    .lnd-hero-copy h1 { font-size: 2.2rem; letter-spacing: -0.03em; }
    .lnd-hero-sub { font-size: 0.95rem; }
    .lnd-eyebrow { font-size: 0.68rem; padding: 5px 12px; }

    /* Hero cards — stack on small phone */
    .lnd-hero-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .lnd-product-card { min-height: 160px; }
    .lnd-card-light { flex-direction: row; padding: 1.25rem; }
    .lnd-sema-img { width: 90px; height: 90px; }
    .lnd-card-dark { min-height: 160px; }
    .lnd-product-text-dark { padding: 1.25rem; }
    .lnd-card-dark .lnd-product-text-dark p { font-size: 0.78rem; margin-bottom: 10px; }

    /* Section */
    .lnd-section { padding: 60px 0; }
    .lnd-section-gray { padding: 60px 0; }
    .lnd-section-head { margin-bottom: 32px; }
    .lnd-section-head h2 { font-size: 1.6rem; }
    .lnd-section-head p { font-size: 0.95rem; }

    /* Stat strip */
    .lnd-stat-strip { padding: 0; }
    .lnd-stat { padding: 20px 16px; }
    .lnd-stat-num { font-size: 1.4rem; }
    .lnd-stat-label { font-size: 0.72rem; }

    /* How it works */
    .lnd-step { padding: 20px 18px; }
    .lnd-step h3 { font-size: 0.975rem; }
    .lnd-step-icon { width: 40px; height: 40px; border-radius: 12px; margin-bottom: 14px; }

    /* Testimonials */
    .lnd-testimonial { padding: 20px; }
    .lnd-quote { font-size: 0.9rem; }

    /* Calculator */
    .lnd-big-stat { font-size: 4rem; }
    .lnd-big-stat span { font-size: 2rem; }
    .lnd-calc-card { padding: 20px; border-radius: 18px; }
    .lnd-calc-card h3 { font-size: 1.05rem; }

    /* Pricing */
    .lnd-price-card { padding: 24px 20px; }
    .lnd-plan-price { font-size: 2.25rem; }

    /* FAQ */
    .lnd-faq-shell { max-width: 100%; }
    .faq-q { font-size: 0.95rem; }

    /* Final CTA */
    .lnd-final-cta { padding: 60px 0; }
    .lnd-final-cta h2 { font-size: 1.75rem; }
    .lnd-final-cta p { font-size: 0.95rem; }
    .lnd-btn-white { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
}

/* --- 480px: small phones (iPhone SE etc.) --- */
@media (max-width: 480px) {
    .lnd-hero-copy h1 { font-size: 1.9rem; }
    .lnd-btn-primary { padding: 0.8rem 1.4rem; font-size: 0.9rem; }
    .lnd-social-proof { font-size: 0.78rem; flex-wrap: wrap; }
    .lnd-section-head h2 { font-size: 1.5rem; }
    .lnd-container { padding: 0 1rem; }
    .lnd-big-stat { font-size: 3.5rem; }
    .lnd-big-stat span { font-size: 1.75rem; }
    .lnd-final-cta h2 { font-size: 1.5rem; }
}

/* ============================================================
   MODERN LOGIN PAGE — lp-* styles
   ============================================================ */

.lp-body {
    margin: 0;
    background: #e8f8f2;
    min-height: 100vh;
    font-family: var(--font-body);
}

/* Navbar */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(232, 248, 242, 0.92);
    backdrop-filter: blur(8px);
    z-index: 100;
    border-bottom: 1px solid rgba(15, 118, 110, 0.08);
}

.lp-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.lp-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.lp-nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.lp-nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
}

.lp-nav-links a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* Main layout */
.lp-main {
    min-height: 100vh;
    padding-top: 64px;
    display: flex;
    align-items: center;
}

.lp-split {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 4rem;
    align-items: center;
}

/* ---- Form card (LEFT) ---- */
.lp-form-col {
    display: flex;
    justify-content: center;
}

.lp-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.25rem 2rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.lp-card-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.lp-card-sub {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.lp-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lp-field {
    margin-bottom: 1rem;
}

.lp-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.lp-phone-row {
    display: flex;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    transition: border-color 0.2s;
}

.lp-phone-row:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.08);
}

.lp-country {
    padding: 0.85rem 0.9rem;
    background: #f9fafb;
    border: none;
    border-right: 1.5px solid #d1d5db;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    outline: none;
    font-family: var(--font-body);
}

.lp-phone {
    flex: 1;
    width: 100%;
    border: 1.5px solid #d1d5db;
    background: #ffffff;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    outline: none;
    border-radius: 10px;
    font-family: var(--font-body);
    color: #111827;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-phone:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.08);
}

/* When inside .lp-phone-row, strip the standalone styles */
.lp-phone-row .lp-phone {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.lp-phone::placeholder {
    color: #9ca3af;
}

.lp-btn-primary {
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}

.lp-btn-primary:hover {
    background: #0d665f;
    transform: translateY(-1px);
}

/* OR divider */
.lp-or {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0;
    color: #9ca3af;
    font-size: 0.8rem;
    font-weight: 500;
}

.lp-or::before,
.lp-or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

/* Google Sign In button */
.lp-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: var(--font-body);
}

.lp-btn-google:hover {
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66,133,244,0.1);
}

/* WhatsApp button */
.lp-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    background: #ffffff;
    color: #111827;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    padding: 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-family: var(--font-body);
}

.lp-btn-whatsapp:hover {
    border-color: #25D366;
    background: #f0fdf4;
}

.intake-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.intake-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
    cursor: pointer;
}

.intake-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

.lp-whatsapp-helper {
    text-align: center;
    font-size: 0.78rem;
    color: #9ca3af;
    margin: 6px 0 0;
}

/* Legal links */
.lp-legal {
    text-align: center;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f3f4f6;
    font-size: 0.78rem;
    color: #9ca3af;
}

.lp-legal a {
    color: #6b7280;
    text-decoration: none;
}

.lp-legal a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* ---- Marketing col (RIGHT) ---- */
.lp-marketing-col {
    padding-left: 1rem;
}

.lp-marketing-heading {
    font-family: 'Outfit', var(--font-head);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.lp-marketing-sub {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 380px;
}

.lp-trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 0;
    margin: 0;
}

.lp-trust-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #111827;
}

.lp-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-check .material-symbols-rounded {
    font-size: 16px;
    color: var(--color-primary);
    font-variation-settings: 'FILL' 1;
}

/* --- Login page responsive --- */
@media (max-width: 900px) {
    .lp-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .lp-marketing-col {
        order: -1;
        padding-left: 0;
        text-align: center;
    }

    .lp-trust-list { align-items: center; }

    .lp-marketing-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    /* Login nav — hide text links, keep logo only */
    .lp-nav-links { display: none; }
    .lp-nav { height: 56px; }
    .lp-nav-inner { height: 56px; }
    .lp-logo-img { height: 34px; }

    /* Main padding accounts for shorter nav */
    .lp-main { padding-top: 56px; }

    .lp-split {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .lp-card {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .lp-card-heading { font-size: 1.35rem; }
    .lp-card-sub { font-size: 0.85rem; margin-bottom: 1.25rem; }

    .lp-label { font-size: 0.8rem; }

    .lp-country { padding: 0.75rem 0.75rem; font-size: 0.85rem; }
    .lp-phone { padding: 0.75rem 0.9rem !important; font-size: 0.95rem !important; }

    .lp-btn-primary { padding: 0.8rem; font-size: 0.9rem; border-radius: 9px; }
    .lp-btn-whatsapp { padding: 0.75rem; font-size: 0.875rem; border-radius: 9px; }

    .lp-marketing-heading { font-size: 1.6rem; }
    .lp-marketing-sub { font-size: 0.9rem; }
    .lp-trust-list li { font-size: 0.875rem; }
    .lp-check { width: 24px; height: 24px; }
    .lp-check .material-symbols-rounded { font-size: 14px; }
}

@media (max-width: 400px) {
    .lp-card { padding: 1.25rem 1rem; }
    .lp-card-heading { font-size: 1.2rem; }
    .lp-marketing-heading { font-size: 1.4rem; }
}


/* ============================================================
   DASHBOARD / COMMAND CENTER  —  dc-* components
   ============================================================ */

/* ── Body & Layout ── */
.dc-body {
    background: #f4f6f8;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text-main);
}

/* ── Top Nav ── */
.dc-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 64px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.dc-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dc-logo { display: flex; align-items: center; text-decoration: none; }
.dc-logo-img { height: 36px; width: auto; }

.dc-nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dc-mode-banner {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--primary);
    background: #d1fae5;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    display: none;
}
.dc-mode-banner:not(:empty) { display: inline-flex; }

.dc-nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
}
.dc-nav-icon-btn:hover { background: #f3f4f6; color: var(--text-main); }
.dc-nav-icon-btn .material-symbols-rounded { font-size: 22px; }

.dc-avatar-wrap { display: flex; align-items: center; gap: 0.25rem; }

.dc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-muted));
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

.dc-signout-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
}
.dc-signout-btn:hover { background: #fee2e2; color: #ef4444; }
.dc-signout-btn .material-symbols-rounded { font-size: 19px; }

/* ── Main & Container ── */
.dc-main { padding-top: 64px; }

.dc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ── ① STATUS MODULE ── */
.dc-status {
    position: relative;
    background: #080d0c;
    border-radius: 20px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.dc-status-glow {
    position: absolute;
    top: -80px;
    left: -60px;
    width: 480px;
    height: 380px;
    background: radial-gradient(ellipse at center, rgba(15,118,110,0.35) 0%, rgba(15,118,110,0.08) 55%, transparent 75%);
    pointer-events: none;
}

.dc-status-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem 2.5rem;
}

.dc-status-left { flex: 1; min-width: 0; }

.dc-on-track-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.85rem;
    margin-bottom: 1rem;
}

.dc-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    display: inline-block;
    animation: dc-pulse-ring 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dc-pulse-ring {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.dc-status-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.dc-treatment-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.dc-treatment-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #a7f3d0;
    background: rgba(167, 243, 208, 0.1);
    border: 1px solid rgba(167, 243, 208, 0.2);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.85rem;
}
.dc-treatment-chip .material-symbols-rounded { font-size: 15px; }

.dc-week-chip {
    font-size: 0.78rem;
    font-weight: 600;
    color: #9ca3af;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.85rem;
}

.dc-status-sub {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.6;
    max-width: 380px;
}

/* Action panel — right side */
.dc-status-action {
    flex-shrink: 0;
    width: 300px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dc-next-label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f59e0b;
    margin-bottom: 0.15rem;
}
.dc-next-label .material-symbols-rounded { font-size: 15px; }

.dc-next-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.dc-next-sub {
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.55;
    margin-bottom: 0.5rem;
}

.dc-primary-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem 1.25rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-muted));
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    margin-top: 0.25rem;
    font-family: var(--font-body);
}
.dc-primary-action:hover { opacity: 0.9; transform: translateY(-1px); }
.dc-primary-action .material-symbols-rounded { font-size: 18px; }

/* ── ② JOURNEY SECTION ── */
.dc-journey-section {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    border: 1px solid #e5e7eb;
}

.dc-journey-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.dc-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.dc-journey-note {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 500;
}

.dc-journey-track-wrap { overflow-x: auto; padding-bottom: 0.25rem; }

.dc-journey-track {
    display: flex;
    align-items: center;
    min-width: 560px;
    gap: 0;
}

/* Milestone nodes */
.dc-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    width: 88px;
}

.dc-milestone-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
    background: #fff;
    transition: all 0.2s;
    flex-shrink: 0;
}

.dc-milestone-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
}

.dc-milestone-week {
    font-size: 0.68rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dc-milestone-name {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Done state */
.dc-milestone.dc-done .dc-milestone-dot {
    background: var(--primary);
    border-color: var(--primary);
}
.dc-milestone.dc-done .dc-milestone-dot .material-symbols-rounded {
    font-size: 18px;
    color: #fff;
}
.dc-milestone.dc-done .dc-milestone-week { color: var(--primary); }
.dc-milestone.dc-done .dc-milestone-name { color: var(--text-main); font-weight: 600; }

/* Active state */
.dc-milestone.dc-active .dc-milestone-dot {
    background: #fff;
    border: 2.5px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(15,118,110,0.12);
}

.dc-active-dot-inner {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    animation: dc-pulse-ring 2s ease-in-out infinite;
}

.dc-milestone.dc-active .dc-milestone-week { color: var(--primary); }
.dc-milestone.dc-active .dc-milestone-name { color: var(--text-main); font-weight: 700; }

/* Connector lines */
.dc-milestone-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin-bottom: 2rem; /* align with dot center */
}
.dc-line-done { background: var(--primary); }
.dc-line-active {
    background: linear-gradient(to right, var(--primary) 50%, #e5e7eb 50%);
}

/* ── ③ CARD GRID ── */
.dc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.dc-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dc-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 0.1rem;
}

/* Progress card */
.dc-weight-delta {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.dc-weight-range {
    font-size: 0.82rem;
    color: #9ca3af;
    margin-top: -0.25rem;
}

.dc-mini-chart {
    width: 100%;
    height: 52px;
    margin: 0.25rem 0;
}
.dc-mini-chart svg {
    width: 100%;
    height: 52px;
    display: block;
}

.dc-progress-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.dc-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    background: #f3f4f6;
    border-radius: var(--radius-full);
    padding: 0.3rem 0.75rem;
}

.dc-chip-green {
    color: #065f46;
    background: #d1fae5;
}
.dc-chip-green .material-symbols-rounded { font-size: 14px; }

/* Care card */
.dc-doctor-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 10px;
}

.dc-doctor-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dc-doctor-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.dc-doctor-spec {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.1rem;
}

.dc-next-appt {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 0.6rem 0.75rem;
    background: #fefce8;
    border-radius: 8px;
    border: 1px solid #fde68a;
}
.dc-next-appt .material-symbols-rounded { font-size: 16px; color: #d97706; }
.dc-next-appt strong { color: var(--text-main); }

.dc-care-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: auto;
}

.dc-care-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 9px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.18s, transform 0.15s;
    border: none;
    font-family: var(--font-body);
}
.dc-care-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.dc-care-btn .material-symbols-rounded { font-size: 17px; }

.dc-care-primary {
    background: var(--primary);
    color: #fff;
}

.dc-care-whatsapp {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Medication card */
.dc-med-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

.dc-med-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #d1fae5, #ecfdf5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dc-med-icon .material-symbols-rounded { font-size: 22px; color: var(--primary); }

.dc-med-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
}

.dc-med-freq {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.1rem;
}

.dc-med-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dc-med-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f3f4f6;
}
.dc-med-row:last-child { border-bottom: none; }

.dc-med-row-label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.dc-med-row-label .material-symbols-rounded { font-size: 16px; color: #9ca3af; }

.dc-med-row-value {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Delivery block */
.dc-delivery-block {
    margin-top: 0.75rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1.5px solid #bae6fd;
    border-radius: 12px;
}

.dc-delivery-block-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #0369a1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}
.dc-delivery-block-header .material-symbols-rounded { font-size: 16px; }

.dc-delivery-status-chip {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.55rem;
    border-radius: 99px;
    text-transform: none;
    letter-spacing: 0;
}
.dc-delivery-status-chip.dc-chip-amber { background: #fef3c7; color: #92400e; }
.dc-delivery-status-chip.dc-chip-blue  { background: #dbeafe; color: #1e40af; }
.dc-delivery-status-chip.dc-chip-green { background: #d1fae5; color: #065f46; }

.dc-delivery-date {
    font-size: 0.84rem;
    color: var(--text-main);
    line-height: 1.45;
    margin: 0;
}

/* Nudge card */
.dc-card-nudge {
    background: linear-gradient(145deg, #f0fdfa, #ecfdf5);
    border-color: #a7f3d0;
}

.dc-nudge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-muted));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dc-nudge-icon .material-symbols-rounded { font-size: 22px; color: #fff; }

.dc-nudge-label { color: var(--primary) !important; }

.dc-nudge-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.dc-nudge-body {
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.65;
}

.dc-nudge-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.15s;
}
.dc-nudge-link:hover { gap: 0.5rem; }
.dc-nudge-link .material-symbols-rounded { font-size: 16px; }

/* ── WEIGHT LOG MODAL ── */
.dc-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.dc-modal-overlay.dc-modal-active {
    opacity: 1;
    pointer-events: auto;
}

.dc-modal {
    background: #fff;
    border-radius: 18px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
    transform: translateY(12px) scale(0.97);
    transition: transform 0.25s ease;
}

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

.dc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem 0;
}

.dc-modal-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.dc-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background 0.15s;
}
.dc-modal-close:hover { background: #f3f4f6; color: var(--text-main); }
.dc-modal-close .material-symbols-rounded { font-size: 20px; }

.dc-modal-body { padding: 1.25rem 1.5rem; }

.dc-modal-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.dc-weight-input-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.2rem 1rem 0.2rem 0.25rem;
    transition: border-color 0.15s;
}
.dc-weight-input-row:focus-within { border-color: var(--primary); }

.dc-weight-input {
    flex: 1;
    border: none;
    background: none;
    padding: 0.75rem 0.5rem 0.75rem 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    outline: none;
    width: 100%;
    -moz-appearance: textfield;
}
.dc-weight-input::-webkit-inner-spin-button,
.dc-weight-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.dc-weight-unit {
    font-size: 1rem;
    font-weight: 600;
    color: #9ca3af;
    flex-shrink: 0;
}

.dc-modal-hint {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 0.6rem;
}

.dc-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.dc-modal-cancel {
    background: none;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.15s;
    font-family: var(--font-body);
}
.dc-modal-cancel:hover { background: #f9fafb; }

.dc-modal-submit {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-muted));
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.18s;
    font-family: var(--font-body);
}
.dc-modal-submit:hover { opacity: 0.88; }

/* ── DASHBOARD RESPONSIVE ── */
@media (max-width: 1024px) {
    .dc-status-action { width: 260px; }
}

@media (max-width: 900px) {
    .dc-status-inner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.75rem;
    }
    .dc-status-action {
        width: 100%;
    }
    .dc-care-actions { flex-direction: row; }
    .dc-care-btn { flex: 1; }
}

@media (max-width: 768px) {
    .dc-grid {
        grid-template-columns: 1fr;
    }
    .dc-journey-section { padding: 1.25rem 1.25rem; }
    .dc-status { border-radius: 16px; }
    .dc-container { padding: 0 1rem 2.5rem; gap: 1.25rem; }
}

@media (max-width: 640px) {
    .dc-nav-inner { padding: 0 1rem; }
    .dc-status-inner { padding: 1.5rem 1.25rem; }
    .dc-status-heading { font-size: 1.5rem; }
    .dc-weight-delta { font-size: 2rem; }
    .dc-modal { border-radius: 14px; }
    .dc-modal-footer { flex-direction: column-reverse; }
    .dc-modal-cancel, .dc-modal-submit { width: 100%; text-align: center; }
    .dc-care-actions { flex-direction: column; }
}

@media (max-width: 480px) {
    .dc-on-track-badge { font-size: 0.68rem; }
    .dc-status-heading { font-size: 1.35rem; }
    .dc-status-sub { font-size: 0.82rem; }
    .dc-next-title { font-size: 1rem; }
    .dc-weight-delta { font-size: 1.85rem; }
    .dc-card { padding: 1.25rem; }
}


/* ============================================================
   ADMIN PANEL  —  adm-* components
   ============================================================ */

.adm-body {
    background: #f4f6f8;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text-main);
}

/* ── Nav ── */
.adm-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 60px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}
.adm-nav-inner {
    max-width: 100%;
    padding: 0 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.adm-nav-left { display: flex; align-items: center; gap: 0.75rem; }
.adm-logo { display: flex; align-items: center; text-decoration: none; }
.adm-logo-img { height: 32px; width: auto; }
.adm-nav-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    background: #d1fae5;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}
.adm-nav-right { display: flex; align-items: center; gap: 0.75rem; }
.adm-user-email { font-size: 0.82rem; color: #6b7280; }
.adm-signout-btn {
    display: flex; align-items: center; gap: 0.35rem;
    background: none; border: 1.5px solid #e5e7eb;
    border-radius: 8px; padding: 0.4rem 0.85rem;
    font-size: 0.82rem; font-weight: 600; color: #6b7280;
    cursor: pointer; transition: all 0.15s; font-family: var(--font-body);
}
.adm-signout-btn:hover { background: #fee2e2; border-color: #fca5a5; color: #dc2626; }
.adm-signout-btn .material-symbols-rounded { font-size: 17px; }

/* ── Layout ── */
.adm-layout {
    display: flex;
    padding-top: 60px;
    min-height: 100vh;
}
.adm-sidebar {
    width: 220px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid #e5e7eb;
    position: fixed;
    top: 60px; bottom: 0;
    overflow-y: auto;
    padding: 1rem 0.75rem;
}
.adm-sidenav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.adm-nav-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    position: relative;
}
.adm-nav-item:hover { background: #f3f4f6; color: var(--text-main); }
.adm-nav-item.adm-active { background: #f0fdf4; color: var(--primary); font-weight: 600; }
.adm-nav-item .material-symbols-rounded { font-size: 19px; flex-shrink: 0; }

.adm-badge-count {
    margin-left: auto;
    background: #ef4444;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.3rem;
}

.adm-content {
    margin-left: 220px;
    flex: 1;
    padding: 2rem;
    min-height: calc(100vh - 60px);
}

/* ── Page header ── */
.adm-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.adm-page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.adm-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: #9ca3af;
    background: #f3f4f6;
    border-radius: 20px;
    padding: 0.15rem 0.6rem;
    font-family: var(--font-body);
}
.adm-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

/* ── Stats grid ── */
.adm-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.adm-stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.adm-stat-icon { font-size: 28px; color: #9ca3af; }
.adm-stat-num { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; line-height: 1; color: var(--text-main); }
.adm-stat-label { font-size: 0.78rem; color: #9ca3af; margin-top: 0.2rem; }
.adm-stat-amber .adm-stat-icon { color: #d97706; }
.adm-stat-amber .adm-stat-num { color: #b45309; }
.adm-stat-green .adm-stat-icon { color: var(--primary); }
.adm-stat-green .adm-stat-num { color: var(--primary-dark); }
.adm-stat-blue .adm-stat-icon { color: #2563eb; }
.adm-stat-blue .adm-stat-num { color: #1d4ed8; }

/* ── Quick actions ── */
.adm-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.adm-quick-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    font-family: var(--font-body);
    text-align: left;
}
.adm-quick-btn .material-symbols-rounded { font-size: 22px; color: var(--primary); }
.adm-quick-btn:hover { border-color: var(--primary); background: #f0fdf4; }
.adm-quick-amber .material-symbols-rounded { color: #d97706; }
.adm-quick-amber:hover { border-color: #d97706; background: #fffbeb; }

/* ── Table ── */
.adm-table-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    overflow-x: auto;
}
.adm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.adm-table thead tr {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}
.adm-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    white-space: nowrap;
}
.adm-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    color: var(--text-main);
    vertical-align: middle;
}
.adm-table tbody tr:last-child td { border-bottom: none; }
.adm-table tbody tr:hover { background: #fafafa; }
.adm-empty { text-align: center; color: #9ca3af; padding: 2.5rem !important; font-size: 0.875rem; }
.adm-muted { color: #9ca3af; font-size: 0.82rem; }
.adm-actions-cell { display: flex; gap: 0.4rem; align-items: center; flex-wrap: wrap; }

/* ── Buttons ── */
.adm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s;
    font-family: var(--font-body);
    text-decoration: none;
}
.adm-btn-primary:hover { opacity: 0.88; }

.adm-action-btn {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--font-body);
    white-space: nowrap;
}
.adm-action-btn:hover { background: #e5e7eb; }
.adm-action-btn.adm-action-primary { background: #ecfdf5; border-color: #6ee7b7; color: #065f46; }
.adm-action-btn.adm-action-primary:hover { background: #d1fae5; }
.adm-action-btn.adm-action-danger { background: #fef2f2; border-color: #fca5a5; color: #dc2626; }
.adm-action-btn.adm-action-danger:hover { background: #fee2e2; }

/* ── Badges ── */
.adm-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    white-space: nowrap;
}
.adm-badge-green  { background: #d1fae5; color: #065f46; }
.adm-badge-amber  { background: #fef3c7; color: #92400e; }
.adm-badge-blue   { background: #dbeafe; color: #1e40af; }
.adm-badge-red    { background: #fee2e2; color: #991b1b; }
.adm-badge-gray   { background: #f3f4f6; color: #6b7280; }

/* ── Loading & access denied ── */
.adm-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
    padding: 4rem;
}
.adm-loading .material-symbols-rounded { font-size: 22px; }
.adm-access-denied {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
    color: #9ca3af;
}
.adm-access-denied .material-symbols-rounded { font-size: 48px; margin-bottom: 1rem; }
.adm-access-denied h2 { color: var(--text-main); font-size: 1.3rem; margin-bottom: 0.5rem; }

/* ── Modal ── */
.adm-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.adm-modal-overlay.adm-modal-active { opacity: 1; pointer-events: auto; }
.adm-modal {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    transform: translateY(10px);
    transition: transform 0.22s ease;
}
.adm-modal-overlay.adm-modal-active .adm-modal { transform: translateY(0); }
.adm-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    flex-shrink: 0;
}
.adm-modal-header h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; }
.adm-modal-close {
    background: none; border: none; cursor: pointer;
    color: #9ca3af; display: flex; align-items: center;
    width: 30px; height: 30px; border-radius: 50%;
    justify-content: center; transition: background 0.15s;
}
.adm-modal-close:hover { background: #f3f4f6; color: var(--text-main); }
.adm-modal-close .material-symbols-rounded { font-size: 20px; }
.adm-modal-body { padding: 1.25rem 1.5rem; overflow-y: auto; flex: 1; }
.adm-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

/* ── Forms ── */
.adm-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.adm-form-full { grid-column: 1 / -1; }
.adm-form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.adm-form-field label { font-size: 0.78rem; font-weight: 600; color: #6b7280; }
.adm-detail-val { margin: 0; font-size: 0.92rem; color: #111827; font-weight: 500; padding: 0.4rem 0; border-bottom: 1px solid #f3f4f6; }
.adm-form-field input,
.adm-form-field select,
.adm-form-field textarea {
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--text-main);
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}
.adm-form-field input:focus,
.adm-form-field select:focus,
.adm-form-field textarea:focus { border-color: var(--primary); }
.adm-form-field textarea { resize: vertical; }

.adm-check-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.adm-check-label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    cursor: pointer;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    transition: all 0.15s;
}
.adm-check-label:has(input:checked) { background: #ecfdf5; border-color: #6ee7b7; color: #065f46; }
.adm-check-label input { accent-color: var(--primary); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .adm-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .adm-quick-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .adm-sidebar { display: none; }
    .adm-content { margin-left: 0; padding: 1rem; }
    .adm-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .adm-quick-grid { grid-template-columns: 1fr 1fr; }
    .adm-form-grid { grid-template-columns: 1fr; }
}

/* ── Admin inline verify ── */
.adm-verify-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
}
.adm-verify-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.adm-verify-icon { font-size: 40px; color: var(--primary); margin-bottom: 0.25rem; }
.adm-verify-card h2 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text-main); }
.adm-verify-card p { font-size: 0.875rem; color: #6b7280; }
.adm-verify-card > div { width: 100%; margin-top: 0.75rem; }
.adm-verify-input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-main);
    outline: none;
    transition: border-color 0.15s;
    text-align: center;
}
.adm-verify-input:focus { border-color: var(--primary); }

/* ── Doctor Dashboard ────────────────────────────────────────────────────────── */

.dr-main {
    padding-top: 60px;
    min-height: 100vh;
    background: #f1f5f9;
}

.dr-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ── Greeting hero ── */
.dr-greeting-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #1d4ed8 100%);
    border-radius: 20px;
    padding: 2.25rem 2.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(29, 78, 216, 0.28);
}

.dr-greeting-hero::before {
    content: '';
    position: absolute;
    top: -70px;
    right: 100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.dr-greeting-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99,179,237,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.dr-greeting-left { position: relative; z-index: 1; }

.dr-greeting-salutation {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.65;
    letter-spacing: 0.02em;
    margin-bottom: 0.2rem;
}

.dr-greeting-name {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.55rem;
}

.dr-greeting-date {
    font-size: 0.82rem;
    opacity: 0.5;
    font-weight: 400;
}

.dr-greeting-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.dr-greeting-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.dr-greeting-badge.dr-badge-urgent {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.45);
    animation: dr-urgentPulse 2.5s ease-in-out infinite;
}

.dr-greeting-badge.dr-badge-amber {
    background: rgba(217, 119, 6, 0.2);
    border-color: rgba(217, 119, 6, 0.4);
}

@keyframes dr-urgentPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.3); }
    50%       { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

/* ── Section cards ── */
.dr-section-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s ease;
}

.dr-section-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.06);
}

.dr-section-card .adm-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1e293b;
    text-transform: none;
    letter-spacing: 0;
}

.dr-section-card .adm-section-title .material-symbols-rounded {
    font-size: 20px;
    color: inherit;
    opacity: 0.75;
}

/* Priority consultation card */
.dr-section-priority {
    border-left: 4px solid #1d4ed8;
}

.dr-section-priority .adm-section-title {
    color: #1d4ed8;
}

.dr-section-priority .adm-section-title .material-symbols-rounded {
    opacity: 1;
}

/* Count badges */
.dr-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1d4ed8;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    margin-left: 0.4rem;
    letter-spacing: 0;
}

.dr-count-badge.dr-count-amber {
    background: #d97706;
}

/* Two-column grid (kept for optional use) */
.dr-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .dr-two-col { grid-template-columns: 1fr; }
    .dr-page { padding: 1rem 1rem 2rem; }
    .dr-greeting-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.5rem;
    }
    .dr-greeting-name { font-size: 1.75rem; }
    .dr-greeting-right { align-items: flex-start; }
}

/* Nav tag — blue tint for doctor */
.dr-nav-tag {
    background: #dbeafe;
    color: #1d4ed8;
}

/* Patient summary card inside modal */
.dr-patient-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.25rem;
}

/* Week progress pill */
.dr-week-badge {
    display: inline-block;
    background: #eff6ff;
    color: #1e40af;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* Row highlighting */
.dr-row-urgent td { background: #fef2f2 !important; }
.dr-row-today td  { background: #fffbeb !important; }


/* ============================================================
   ABOUT US PAGE  (abt-*)
   ============================================================ */

/* Hero */
.abt-hero {
    position: relative;
    background: linear-gradient(135deg, #0c4a6e 0%, var(--color-primary-hover) 50%, var(--color-primary) 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}
.abt-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(20,184,166,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(37,99,235,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.abt-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.abt-hero-content { max-width: 680px; }
.abt-hero-content .lnd-eyebrow {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
}
.abt-hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 20px 0 22px;
    letter-spacing: -0.02em;
}
.abt-hero-sub {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    margin-bottom: 32px;
    max-width: 600px;
}
.abt-hero-cta { display: inline-flex; }
.abt-hero-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.abt-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
}
.abt-hero-pill .material-symbols-rounded {
    font-size: 17px;
    color: #5eead4;
}

/* Problem split layout */
.abt-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.abt-split-copy h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-main);
    margin: 12px 0 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.abt-split-copy p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}
.abt-split-copy p:last-child { margin-bottom: 0; }

.abt-pull-quote {
    background: linear-gradient(135deg, var(--color-primary), #0c4a6e);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    color: #fff;
    position: relative;
}
.abt-pull-icon {
    font-size: 48px;
    color: rgba(255,255,255,0.25);
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}
.abt-pull-quote p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.55;
    color: #fff;
    margin-bottom: 20px;
}
.abt-pull-attr {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    letter-spacing: 0.03em;
}

/* Pillars grid */
.abt-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.abt-pillar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.abt-pillar:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.abt-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #ccfbf1, #d1fae5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.abt-pillar-icon .material-symbols-rounded {
    font-size: 22px;
    color: var(--primary);
}
.abt-pillar h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}
.abt-pillar p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Origin story */
.abt-origin-label-row { margin-bottom: 8px; }
.abt-origin-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
    margin-top: 16px;
}
.abt-origin-copy h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.abt-origin-copy p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.abt-origin-copy p:last-child { margin-bottom: 0; }
.abt-value-list {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.abt-value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}
.abt-value-item .material-symbols-rounded {
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Who it's for */
.abt-for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.abt-for-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.abt-for-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.abt-for-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #ccfbf1, #d1fae5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.abt-for-icon .material-symbols-rounded {
    font-size: 24px;
    color: var(--primary);
}
.abt-for-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}
.abt-for-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
    flex: 1;
}
.abt-for-tag {
    display: inline-block;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    margin-top: 4px;
    width: fit-content;
}
.abt-for-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    font-size: 0.92rem;
    color: #0369a1;
}
.abt-for-note .material-symbols-rounded { font-size: 18px; flex-shrink: 0; }
.abt-for-note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.abt-for-note a:hover { color: var(--primary-dark); }

/* Trust grid */
.abt-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.abt-trust-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
}
.abt-trust-icon {
    font-size: 32px;
    color: var(--primary);
    display: block;
    margin: 0 auto 14px;
}
.abt-trust-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}
.abt-trust-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .abt-pillars { grid-template-columns: repeat(2, 1fr); }
    .abt-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .abt-origin-body { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .abt-hero { padding: 72px 0 60px; }
    .abt-split { grid-template-columns: 1fr; gap: 36px; }
    .abt-pillars { grid-template-columns: 1fr; }
    .abt-for-grid { grid-template-columns: 1fr; }
    .abt-trust-grid { grid-template-columns: 1fr; }
    .abt-hero-content h1 { font-size: 2.2rem; }
}
@media (max-width: 480px) {
    .abt-hero-content h1 { font-size: 1.9rem; }
    .abt-pull-quote { padding: 28px 24px; }
    .abt-pull-quote p { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG — blg-*
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Reading progress bar ── */
.blg-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 1000;
    background: rgba(0,0,0,0.06);
}
.blg-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), #0c4a6e);
    transition: width 0.1s linear;
}

/* ── Blog hero ── */
.blg-hero {
    background: linear-gradient(135deg, #0c4a6e 0%, var(--color-primary-hover) 55%, var(--color-primary) 100%);
    padding: 88px 0 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 40%, rgba(255,255,255,0.05) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 70%, rgba(99,179,237,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.blg-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.blg-hero-inner h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 12px 0 16px;
}
.blg-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 32px;
}

/* Search */
.blg-search-wrap {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}
.blg-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: rgba(255,255,255,0.5);
    pointer-events: none;
}
.blg-search {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    backdrop-filter: blur(6px);
}
.blg-search::placeholder { color: rgba(255,255,255,0.45); }
.blg-search:focus {
    border-color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.18);
}

/* ── Featured article ── */
.blg-featured-section {
    padding: 48px 0 0;
}
.blg-featured {
    display: grid;
    grid-template-columns: 420px 1fr;
    border-radius: var(--radius-xl, 20px);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-md, 0 4px 20px rgba(0,0,0,0.08));
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s, transform 0.25s;
}
.blg-featured:hover {
    box-shadow: 0 12px 40px rgba(15, 118, 110, 0.15);
    transform: translateY(-2px);
}
.blg-featured-img {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0c4a6e 100%);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blg-featured-img-placeholder .material-symbols-rounded {
    font-size: 80px;
    color: rgba(255,255,255,0.25);
}
.blg-featured-body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}
.blg-featured-top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.blg-featured-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #b45309;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--radius-full);
    padding: 3px 10px;
}
.blg-featured-label .material-symbols-rounded { font-size: 14px; }
.blg-featured-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0;
}
.blg-featured-hook {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}
.blg-featured-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.blg-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 4px;
    transition: gap 0.2s;
}
.blg-featured:hover .blg-featured-cta { gap: 10px; }
.blg-featured-cta .material-symbols-rounded { font-size: 18px; }

/* ── Category badges ── */
.blg-category-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    padding: 3px 10px;
    border: 1px solid;
}
.blg-cat-science   { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }
.blg-cat-treatment { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.blg-cat-journeys  { background: #fdf4ff; color: #7e22ce; border-color: #e9d5ff; }
.blg-cat-nutrition { background: #fff7ed; color: #c2410c; border-color: #fed7aa; }
.blg-cat-lifestyle { background: #f8fafc; color: #475569; border-color: #cbd5e1; }

/* ── Filters ── */
.blg-filters-section {
    padding: 24px 0 0;
}
.blg-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
}
.blg-filter-btn {
    background: none;
    border: none;
    border-bottom: 2.5px solid transparent;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    font-family: var(--font-body);
    border-radius: 0;
    margin-bottom: -1px;
}
.blg-filter-btn:hover { color: var(--text-main); }
.blg-filter-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

/* ── Articles grid ── */
.blg-articles-section { padding-top: 40px; }
.blg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blg-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.blg-card:hover {
    box-shadow: 0 8px 28px rgba(15, 118, 110, 0.12);
    transform: translateY(-3px);
}
.blg-card-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blg-card-img .material-symbols-rounded { font-size: 52px; color: rgba(255,255,255,0.3); }
.blg-card-img-teal   { background: linear-gradient(135deg, var(--color-primary), #0c4a6e); }
.blg-card-img-blue   { background: linear-gradient(135deg, #1d4ed8, var(--color-primary)); }
.blg-card-img-green  { background: linear-gradient(135deg, #15803d, var(--color-primary)); }
.blg-card-img-orange { background: linear-gradient(135deg, #c2410c, #b45309); }
.blg-card-img-purple { background: linear-gradient(135deg, #7e22ce, #1d4ed8); }
.blg-card-img-slate  { background: linear-gradient(135deg, #334155, #1e3a5f); }
.blg-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.blg-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin: 0;
}
.blg-card-hook {
    font-size: 0.845rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.blg-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
    border-top: 1px solid #f3f4f6;
}

/* Author chips */
.blg-author-chip {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blg-author-chip-sm { gap: 6px; }
.blg-author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #0c4a6e);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.blg-author-avatar-sm { width: 22px; height: 22px; font-size: 0.58rem; }
.blg-author-chip span, .blg-author-chip-sm span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}
.blg-author-info { display: flex; flex-direction: column; gap: 2px; }
.blg-author-name { font-size: 0.88rem; font-weight: 600; color: var(--text-main); }
.blg-author-credential { font-size: 0.75rem; color: var(--text-muted); }

/* Meta items */
.blg-meta-dot { color: #d1d5db; font-size: 0.75rem; }
.blg-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.blg-meta-item .material-symbols-rounded { font-size: 14px; }

/* Load more */
.blg-load-more {
    text-align: center;
    margin-top: 40px;
}
.blg-load-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    font-family: var(--font-body);
}
.blg-load-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f0fdf4;
}

/* ── Start Here / Curated section ── */
.blg-start-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
}
.blg-start-copy { padding-top: 8px; }
.blg-start-copy h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.blg-start-copy p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}
.blg-start-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}
.blg-curated-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.blg-curated-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
    border-radius: 8px;
    padding-left: 4px;
    padding-right: 4px;
}
.blg-curated-item:first-child { border-top: 1px solid var(--border); }
.blg-curated-item:hover { background: rgba(15,118,110,0.04); }
.blg-curated-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #d1fae5;
    letter-spacing: -0.03em;
    min-width: 36px;
    flex-shrink: 0;
    line-height: 1;
}
.blg-curated-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.blg-curated-cat {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
}
.blg-curated-title {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.35;
}
.blg-curated-arrow {
    font-size: 18px;
    color: #9ca3af;
    flex-shrink: 0;
    transition: color 0.15s, transform 0.15s;
}
.blg-curated-item:hover .blg-curated-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* ════════════════════════════════════════════
   BLOG POST / ARTICLE PAGE
   ════════════════════════════════════════════ */

/* Article header */
.blg-article-header {
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    padding: 44px 0 48px;
}
.blg-article-header-inner {
    max-width: 860px;
}
.blg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.blg-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.blg-breadcrumb a:hover { text-decoration: underline; }
.blg-breadcrumb .material-symbols-rounded { font-size: 16px; color: #d1d5db; }
.blg-article-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 14px 0 16px;
}
.blg-article-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}
.blg-article-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.blg-meta-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Article layout — 2 col: article + sidebar */
.blg-article-wrap {
    padding: 48px 0 64px;
}
.blg-article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    align-items: start;
}

/* Article typography */
.blg-article-body {
    min-width: 0;
}
.blg-article-body h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin: 2.25rem 0 0.85rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f3f4f6;
}
.blg-article-body h2:first-of-type { border-top: none; margin-top: 0.5rem; }
.blg-article-body p {
    font-size: 1rem;
    line-height: 1.78;
    color: #374151;
    margin-bottom: 1.2rem;
}
.blg-lead {
    font-size: 1.1rem !important;
    line-height: 1.75 !important;
    color: #1f2937 !important;
    font-weight: 400;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 2rem !important;
}

/* Lists */
.blg-list {
    padding-left: 1.5rem;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blg-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

/* Callout boxes */
.blg-callout {
    border-radius: var(--radius-md);
    padding: 20px 22px;
    margin: 1.75rem 0;
    display: flex;
    gap: 14px;
}
.blg-callout p { margin: 0 !important; font-size: 0.93rem !important; }
.blg-callout p + p { margin-top: 0.5rem !important; }
.blg-callout strong { display: block; margin-bottom: 4px; font-size: 0.88rem; font-weight: 700; }

.blg-callout-data {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    align-items: flex-start;
}
.blg-callout-data strong { color: #065f46; }
.blg-callout-data p { color: #065f46; }
.blg-callout-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #d1fae5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blg-callout-icon .material-symbols-rounded { font-size: 18px; color: #059669; }
.blg-callout-content { flex: 1; }

.blg-callout-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    align-items: flex-start;
}
.blg-callout-info p { color: #1e40af; }
.blg-callout-info strong { color: #1d4ed8; }
.blg-callout-lead-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.blg-callout-info .blg-callout-lead-icon { color: #3b82f6; }

.blg-callout-warning {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    align-items: flex-start;
}
.blg-callout-warning p { color: #9a3412; }
.blg-callout-warning strong { color: #c2410c; }
.blg-callout-warning .blg-callout-lead-icon { color: #f97316; }

/* Comparison table */
.blg-comparison-table {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 1.5rem 0;
    font-size: 0.88rem;
}
.blg-ct-header,
.blg-ct-row {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.2fr 1.2fr;
    gap: 0;
}
.blg-ct-header {
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}
.blg-ct-header span,
.blg-ct-row span {
    padding: 12px 16px;
    border-right: 1px solid var(--border);
    line-height: 1.4;
}
.blg-ct-header span:last-child,
.blg-ct-row span:last-child { border-right: none; }
.blg-ct-header span { font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; color: #6b7280; }
.blg-ct-row { border-bottom: 1px solid var(--border); }
.blg-ct-row:last-child { border-bottom: none; }
.blg-ct-row-highlight { background: #f0fdf4; }
.blg-ct-row span { color: #374151; }

/* Data strip */
.blg-data-strip {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary), #0c4a6e);
    border-radius: var(--radius-lg, 16px);
    padding: 28px 32px;
    margin: 1.75rem 0;
    gap: 0;
}
.blg-data-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.blg-data-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}
.blg-data-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}
.blg-data-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
}

/* Inline CTA (post-value soft conversion) */
.blg-inline-cta {
    background: #f0fdf4;
    border: 1.5px solid #a7f3d0;
    border-radius: var(--radius-lg, 16px);
    padding: 24px 28px;
    margin: 2.5rem 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.blg-inline-cta-body {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 220px;
}
.blg-inline-cta-icon {
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.blg-inline-cta-body strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.blg-inline-cta-body p { font-size: 0.875rem !important; color: var(--text-muted) !important; margin: 0 !important; line-height: 1.55 !important; }
.blg-inline-cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-full);
    padding: 11px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}
.blg-inline-cta-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* Key takeaways */
.blg-takeaways {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    margin: 2rem 0 1.5rem;
}
.blg-takeaways h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 14px;
}
.blg-takeaways h4 .material-symbols-rounded { font-size: 18px; color: var(--primary); }
.blg-takeaways ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blg-takeaways ul li {
    font-size: 0.905rem;
    color: #374151;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}
.blg-takeaways ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* References */
.blg-references {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.blg-references h5 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 12px;
}
.blg-references ol {
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.blg-references li {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.6;
}
.blg-references em { font-style: italic; }

/* ── Sticky sidebar ── */
.blg-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Table of contents */
.blg-toc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
}
.blg-toc-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 12px;
}
.blg-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.blg-toc-item {
    display: block;
    font-size: 0.84rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
    line-height: 1.4;
}
.blg-toc-item:hover { background: #f3f4f6; color: var(--text-main); }
.blg-toc-item.active {
    color: var(--primary);
    background: #f0fdf4;
    border-left-color: var(--primary);
    font-weight: 600;
}

/* Sidebar CTA */
.blg-sidebar-cta {
    background: linear-gradient(135deg, var(--color-primary), #0c4a6e);
    border-radius: var(--radius-lg, 16px);
    padding: 24px 20px;
    text-align: center;
    color: #fff;
}
.blg-sidebar-cta-icon {
    font-size: 32px;
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 10px;
}
.blg-sidebar-cta h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.blg-sidebar-cta p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}
.blg-sidebar-cta-btn {
    display: block;
    background: #fff;
    color: var(--primary);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.blg-sidebar-cta-btn:hover { background: #f0fdf4; transform: translateY(-1px); }

/* Sidebar disclaimer */
.blg-sidebar-disclaimer {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.blg-sidebar-disclaimer .material-symbols-rounded { font-size: 16px; color: #9ca3af; flex-shrink: 0; margin-top: 2px; }
.blg-sidebar-disclaimer p { font-size: 0.775rem; color: #6b7280; line-height: 1.55; margin: 0; }

/* ── Related articles ── */
.blg-related-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.blg-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blg-related-footer {
    margin-top: 28px;
    text-align: center;
}
.blg-all-articles-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.2s;
}
.blg-all-articles-link:hover { gap: 10px; }
.blg-all-articles-link .material-symbols-rounded { font-size: 18px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .blg-featured { grid-template-columns: 1fr; }
    .blg-featured-img { min-height: 200px; }
    .blg-featured-body { padding: 28px 32px; }
    .blg-grid { grid-template-columns: repeat(2, 1fr); }
    .blg-start-inner { grid-template-columns: 1fr; gap: 36px; }
    .blg-article-layout { grid-template-columns: 1fr; gap: 40px; }
    .blg-sidebar { position: static; }
    .blg-toc { display: none; }
    .blg-related-grid { grid-template-columns: repeat(2, 1fr); }
    .blg-ct-header, .blg-ct-row { grid-template-columns: 1.2fr 2fr 1fr; }
    .blg-ct-header span:last-child, .blg-ct-row span:last-child { display: none; }
}
@media (max-width: 768px) {
    .blg-hero { padding: 64px 0 56px; }
    .blg-grid { grid-template-columns: 1fr; }
    .blg-featured-body { padding: 24px 20px; }
    .blg-featured-title { font-size: 1.3rem; }
    .blg-related-grid { grid-template-columns: 1fr; }
    .blg-article-header { padding: 32px 0 36px; }
    .blg-article-wrap { padding: 32px 0 48px; }
    .blg-data-strip { flex-direction: column; gap: 20px; padding: 24px; }
    .blg-data-divider { width: 80px; height: 1px; }
    .blg-ct-header, .blg-ct-row { grid-template-columns: 1fr 1fr; }
    .blg-ct-header span:nth-child(n+3), .blg-ct-row span:nth-child(n+3) { display: none; }
    .blg-inline-cta { flex-direction: column; align-items: stretch; }
    .blg-article-meta-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
    .blg-meta-updated, .blg-meta-dot-hide { display: none; }
}
@media (max-width: 480px) {
    .blg-hero-inner h1 { font-size: 1.9rem; }
    .blg-featured-body { padding: 20px 16px; }
    .blg-filters { gap: 4px; }
    .blg-filter-btn { padding: 8px 10px; font-size: 0.82rem; }
    .blg-article-title { font-size: 1.6rem; }
    .blg-article-subtitle { font-size: 1rem; }
    .blg-lead { font-size: 1rem !important; }
}

/* ── No-plan full-page view (book-consultation.html?noPlan=1) ── */
.lp-main--noPlan {
    align-items: flex-start;
    padding-bottom: 4rem;
}

.bc-noplan-view {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 2rem;
}

/* Thank you header */
.bc-noplan-header {
    text-align: center;
    padding-bottom: 2.5rem;
}

.bc-noplan-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.bc-noplan-check .material-symbols-rounded {
    font-size: 1.75rem;
    color: var(--primary);
}

.bc-noplan-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.03em;
    margin: 0 0 0.5rem;
}

.bc-noplan-sub {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.bc-noplan-back {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.bc-noplan-back:hover { text-decoration: underline; }

/* Upsell banner */
.bc-noplan-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 1.1rem 1.5rem;
    margin-bottom: 1.75rem;
    gap: 1rem;
}

.bc-noplan-banner-text {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

.bc-noplan-banner-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Plan cards grid */
.bc-noplan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}

.bc-noplan-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.bc-noplan-card--featured {
    border-color: var(--primary);
    border-width: 2px;
    padding-top: 44px;
}

.bc-noplan-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    white-space: nowrap;
}

.bc-noplan-tier {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 6px;
}

.bc-noplan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.bc-noplan-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    line-height: 1;
}

.bc-noplan-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0;
}

.bc-noplan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bc-noplan-features li {
    font-size: 0.875rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.bc-noplan-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: #f0fdf4;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4 9l3.5 3.5L14 5.5' stroke='%2300664F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 18px;
    background-repeat: no-repeat;
}

.bc-noplan-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.15s;
    cursor: pointer;
}

.bc-noplan-cta:hover { opacity: 0.82; }

.bc-noplan-cta--outline {
    background: #f3f4f6;
    color: #374151;
}

.bc-noplan-cta--solid {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 768px) {
    .bc-noplan-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .bc-noplan-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .bc-noplan-title { font-size: 1.6rem; }
    .bc-noplan-view { padding: 2rem 1rem 2rem; }
}
