.about-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.about-card {
    width: 440px;
    min-width: 0;
    max-width: 440px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(16, 185, 129, 0.07), 0 1.5px 6px rgba(6, 182, 212, 0.04);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s;
}
.about-card-empty {
    background: transparent;
    box-shadow: none;
    pointer-events: none;
}
@media (max-width: 900px) {
    .about-row {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .about-card, .about-card-empty {
        max-width: 95vw;
        min-width: 0;
        width: 100%;
    }
}
.about-columns {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.about-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    flex: 1 1 0;
    min-width: 320px;
    max-width: 540px;
}
/* About page: card grid layout for symmetry, like product page */
.about-section .container {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}
.about-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(16, 185, 129, 0.07), 0 1.5px 6px rgba(6, 182, 212, 0.04);
    padding: 2.5rem 2rem 2rem 2rem;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s;
}
.about-card:hover {
    box-shadow: 0 8px 40px rgba(16, 185, 129, 0.13), 0 2px 8px rgba(6, 182, 212, 0.08);
}
.about-section {
    padding: 56px 0 56px 0;
    background: #f9fafb;
    border-bottom: none;
}
.about-list, .process-list {
    margin: 24px 0 0 0;
    padding: 0 0 0 24px;
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: left;
}
.about-list li, .process-list li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}
.process-list {
    list-style-type: decimal;
}
.about-section .section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.5em;
    text-align: center;
}
.about-section .page-hero-actions {
    margin-top: 1.5em;
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
}
@media (max-width: 900px) {
    .about-columns {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .about-col {
        max-width: 95vw;
        min-width: 0;
        width: 100%;
    }
    .about-card {
        width: 100%;
        max-width: 95vw;
        min-width: 0;
    }
}
/* About page card styles and symmetry */
.about-section {
    padding: 56px 0 56px 0;
    background: #f9fafb;
    border-bottom: none;
}
.about-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(16, 185, 129, 0.07), 0 1.5px 6px rgba(6, 182, 212, 0.04);
    padding: 2.5rem 2rem 2rem 2rem;
    margin: 0 auto 2.5rem auto;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-list, .process-list {
    margin: 24px 0 0 0;
    padding: 0 0 0 24px;
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: left;
}
.about-list li, .process-list li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}
.process-list {
    list-style-type: decimal;
}
.about-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.5em;
    text-align: center;
}
.about-section .page-hero-actions {
    margin-top: 1.5em;
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
}
/* About page section styles */
.about-section {
    padding: 48px 0 32px 0;
    background: #fff;
    border-bottom: 1px solid #f0fdfa;
}
.about-section:last-child {
    border-bottom: none;
}
.about-list, .process-list {
    margin: 24px 0 0 0;
    padding: 0 0 0 24px;
    color: var(--text-light);
    font-size: 1.1rem;
}
.about-list li, .process-list li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}
.process-list {
    list-style-type: decimal;
}
.about-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.5em;
}
.about-section .page-hero-actions {
    margin-top: 1.5em;
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}
/* Hide schedule fields visually and from tab order unless active */
[data-schedule-fields][hidden] {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
}
/* Center and enlarge product images in catalog cards */
.product-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
    width: 260px;
    height: auto;
    max-width: 100%;
}
/* ============================================
   Color Theme - Based on Logo
   Teal, Light Blue, Green
   ============================================ */
:root {
    --primary-teal: #2dd4bf;
    --primary-blue: #06b6d4;
    --primary-green: #10b981;
    --dark-teal: #14b8a6;
    --light-teal: #5eead4;
    --light-blue: #67e8f9;
    --dark-green: #059669;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gradient: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prevent fixed navbar from covering anchor targets */
section {
    scroll-margin-top: 100px;
}

/* ============================================
   Page hero (internal pages)
   ============================================ */
.page-hero {
    padding: 130px 0 70px;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: -40% -25% auto auto;
    width: 780px;
    height: 780px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
    animation: pulse 9s ease-in-out infinite;
}

.page-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.page-lede {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 52ch;
    margin-bottom: 1.6rem;
}

.page-hero-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.page-hero-art {
    position: relative;
    height: 340px;
}

.education-orb {
    position: absolute;
    border-radius: 999px;
    opacity: 0.35;
    filter: blur(0px);
    animation: float 7.5s ease-in-out infinite;
}

.orb-a {
    width: 260px;
    height: 260px;
    background: var(--primary-blue);
    top: 10%;
    right: 8%;
    animation-delay: 0s;
}

.orb-b {
    width: 200px;
    height: 200px;
    background: var(--primary-teal);
    top: 40%;
    right: 28%;
    animation-delay: 2s;
}

.orb-c {
    width: 150px;
    height: 150px;
    background: var(--primary-green);
    bottom: 6%;
    right: 16%;
    animation-delay: 4s;
}

.education-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 16px;
    padding: 1rem 1rem 0.95rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    max-width: 320px;
}

.education-badge-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
}

.education-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--bg-gradient);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.18);
}

.education-badge-bottom {
    margin-top: 0.4rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   Education page sections
   ============================================ */
.edu-section {
    padding: 80px 0;
}

.edu-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.edu-fact {
    background: white;
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 18px;
    padding: 1.15rem 1.1rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.edu-fact:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.18);
    box-shadow: 0 18px 56px rgba(6, 182, 212, 0.10);
}

.edu-fact-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(6, 182, 212, 0.10);
    border: 1px solid rgba(6, 182, 212, 0.14);
    font-size: 1.2rem;
}

.edu-fact-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}

.edu-fact-desc {
    color: var(--text-light);
    font-size: 0.96rem;
    line-height: 1.7;
}

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

.edu-card {
    background: white;
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.edu-card-head {
    padding: 1.35rem 1.35rem 1rem;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.06) 0%, rgba(16, 185, 129, 0.03) 100%);
    border-bottom: 1px solid rgba(31, 41, 55, 0.06);
}

.edu-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-blue);
    background: rgba(6, 182, 212, 0.10);
    border: 1px solid rgba(6, 182, 212, 0.14);
}

.edu-pill-alt {
    color: var(--dark-green);
    background: rgba(16, 185, 129, 0.10);
    border-color: rgba(16, 185, 129, 0.14);
}

.edu-card-title {
    margin-top: 0.75rem;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.edu-card-subtitle {
    color: var(--text-light);
    margin-top: 0.3rem;
    line-height: 1.7;
}

.edu-card-body {
    padding: 1.25rem 1.35rem 0.25rem;
}

.edu-card-body h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.edu-list {
    padding-left: 1.1rem;
    color: var(--text-dark);
}

.edu-list li {
    margin: 0.38rem 0;
    color: var(--text-light);
    line-height: 1.7;
}

.edu-note {
    color: var(--text-light);
    line-height: 1.75;
}

.edu-card-foot {
    padding: 1.1rem 1.35rem 1.35rem;
    margin-top: auto;
}

.edu-disclaimer {
    margin-top: 2.5rem;
    padding: 1.1rem 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(31, 41, 55, 0.10);
    background: rgba(31, 41, 55, 0.03);
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.edu-disclaimer-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(6, 182, 212, 0.10);
    border: 1px solid rgba(6, 182, 212, 0.14);
}

.edu-disclaimer-title {
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.edu-disclaimer-text {
    color: var(--text-light);
    line-height: 1.75;
}

/* ============================================
   Products catalog + intake modal
   ============================================ */
.catalog {
    padding: 80px 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transform: translateY(12px);
    opacity: 0;
    transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 650ms ease;
}

.product-card.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.product-head {
    padding: 1.4rem 1.4rem 1.1rem;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.06) 0%, rgba(16, 185, 129, 0.03) 100%);
    border-bottom: 1px solid rgba(31, 41, 55, 0.06);
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: -0.01em;
}

.badge-primary {
    color: white;
    background: var(--bg-gradient);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.16);
}

.badge-soft {
    color: var(--text-dark);
    background: rgba(31, 41, 55, 0.05);
    border: 1px solid rgba(31, 41, 55, 0.08);
}

.product-title {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.product-subtitle {
    margin-top: 0.35rem;
    color: var(--text-light);
    line-height: 1.7;
}

select {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.6rem 0.8rem;
    border: 1px solid rgba(31, 41, 55, 0.15);
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

select:hover {
    border-color: rgba(31, 41, 55, 0.25);
}

select:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

select:disabled {
    background-color: rgba(31, 41, 55, 0.05);
    color: var(--text-light);
    cursor: not-allowed;
}

.product-body {
    padding: 1.25rem 1.4rem 0.5rem;
}

.variation-label {
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.variation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.variation-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.variation-card {
    border-radius: 18px;
    border: 1px solid rgba(31, 41, 55, 0.10);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.85rem 0.9rem;
    cursor: pointer;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.variation-top {
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    align-items: baseline;
}

.variation-name {
    font-weight: 900;
    letter-spacing: -0.02em;
}

.variation-price {
    font-weight: 900;
    color: var(--dark-green);
}

.variation-meta {
    margin-top: 0.25rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.variation-option input:checked + .variation-card {
    border-color: rgba(6, 182, 212, 0.35);
    box-shadow: 0 18px 56px rgba(6, 182, 212, 0.12);
    transform: translateY(-2px);
}

.product-summary {
    margin-top: 1.1rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(31, 41, 55, 0.08);
    background: rgba(31, 41, 55, 0.03);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.summary-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.summary-value {
    font-weight: 900;
    letter-spacing: -0.02em;
}

.summary-value.price {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.product-foot {
    padding: 1.15rem 1.4rem 1.4rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: auto;
}

.product-cta {
    min-width: 160px;
}

.catalog-note {
    margin-top: 2.5rem;
    padding: 1.1rem 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(31, 41, 55, 0.10);
    background: rgba(31, 41, 55, 0.03);
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.catalog-note-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.14);
}

.catalog-note-title {
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.catalog-note-text {
    color: var(--text-light);
    line-height: 1.75;
}

/* Modal */
.modal[aria-hidden="true"] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(8px);
}

.modal-dialog {
    position: relative;
    width: min(880px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    background: white;
    border-radius: 22px;
    border: 1px solid rgba(31, 41, 55, 0.10);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 220ms ease-out;
}

.modal-head {
    padding: 1.2rem 1.2rem 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.05) 0%, rgba(16, 185, 129, 0.03) 100%);
}

.modal-kicker {
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.92rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(31, 41, 55, 0.12);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.icon-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(6, 182, 212, 0.16);
}

.modal-body {
    padding: 1.15rem 1.2rem 1.25rem;
}

.intake-steps {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.intake-step {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: var(--text-light);
    background: rgba(31, 41, 55, 0.06);
    border: 1px solid rgba(31, 41, 55, 0.10);
}

.intake-step.is-active {
    color: white;
    background: var(--bg-gradient);
    border-color: transparent;
}

.intake-selected {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(31, 41, 55, 0.08);
    background: rgba(31, 41, 55, 0.03);
    margin-bottom: 1rem;
}

.intake-selected-title {
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.intake-selected-values {
    display: grid;
    gap: 0.25rem;
    color: var(--text-dark);
}

.muted {
    color: var(--text-light);
    font-weight: 600;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.field {
    display: grid;
    gap: 0.35rem;
}

.field label {
    font-weight: 800;
    font-size: 0.92rem;
}

.field input,
.field select {
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(31, 41, 55, 0.14);
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease;
    font-family: inherit;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
}

.field input:focus,
.field select:focus {
    border-color: rgba(6, 182, 212, 0.45);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.14);
}

.field select:disabled {
    background-color: rgba(31, 41, 55, 0.05);
    color: var(--text-light);
    cursor: not-allowed;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.panel-title {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 0.3rem;
}

.panel-subtitle {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.choice-card {
    border-radius: 18px;
    border: 1px solid rgba(31, 41, 55, 0.12);
    background: rgba(255, 255, 255, 0.92);
    padding: 0.95rem 1rem;
    cursor: pointer;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    display: flex;
    gap: 0.8rem;
}

.choice-card input {
    margin-top: 0.25rem;
}

.choice-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 56px rgba(6, 182, 212, 0.10);
}

.choice-title {
    font-weight: 900;
    letter-spacing: -0.02em;
}

.choice-desc {
    color: var(--text-light);
    line-height: 1.65;
    margin-top: 0.25rem;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.review-item {
    border-radius: 18px;
    border: 1px solid rgba(31, 41, 55, 0.10);
    background: rgba(31, 41, 55, 0.03);
    padding: 0.95rem 1rem;
}

.review-label {
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.9rem;
}

.review-value {
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-top: 0.25rem;
}

.review-sub {
    color: var(--text-light);
    margin-top: 0.15rem;
}

.tiny-note {
    margin-top: 0.9rem;
    color: rgba(107, 114, 128, 0.95);
    font-size: 0.9rem;
    line-height: 1.6;
}

.intake-success {
    padding: 1.2rem 0.2rem 0.2rem;
    text-align: center;
}

.success-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px; /* keeps header layout height the same */
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transform: scale(1.25);
    transform-origin: left center;
}

.brand-text {
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 1.3rem;
    line-height: 1;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-links a.nav-link-featured {
    color: white;
    background: var(--bg-gradient);
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(6, 182, 212, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.nav-links a.nav-link-featured:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(6, 182, 212, 0.32);
}

.cta-button-nav {
    background: var(--bg-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

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

/* Hero Text - Left Side */
.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.title-line {
    display: block;
    color: var(--text-dark);
}

.title-highlight {
    display: block;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--bg-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-3px);
}

.btn-tertiary {
    background: rgba(6, 182, 212, 0.08);
    color: var(--text-dark);
    border: 2px solid rgba(6, 182, 212, 0.22);
}

.btn-tertiary:hover {
    background: rgba(6, 182, 212, 0.14);
    border-color: rgba(6, 182, 212, 0.32);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
}

/* Hero Animation - Right Side */
.hero-animation {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease-out;
}

.animation-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Animated Circles */
.animated-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-teal);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-blue);
    top: 50%;
    right: 30%;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-green);
    bottom: 10%;
    right: 20%;
    animation-delay: 4s;
}

/* Central Visual Cards */
.central-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.visual-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 120px;
    animation: cardFloat 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.card-1 {
    animation-delay: 0s;
}

.card-2 {
    animation-delay: 1.3s;
}

.card-3 {
    animation-delay: 2.6s;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.card-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: floatAround 8s ease-in-out infinite;
    opacity: 0.7;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

.float-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 5s;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-10px, -40px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   Section Styles
   ============================================ */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.how-it-works,
.treatment-process,
.benefits {
    padding: 80px 0;
}

.section-subtitle {
    max-width: 760px;
    margin: -2rem auto 3rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   How it works roadmap
   ============================================ */
.roadmap {
    position: relative;
    padding: 1.5rem 0 0;
}

.roadmap-track {
    position: absolute;
    top: 34px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(31, 41, 55, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.roadmap-track-fill {
    height: 100%;
    width: 100%;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.roadmap.is-visible .roadmap-track-fill {
    transform: scaleX(1);
}

.roadmap-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.roadmap-step {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 18px;
    padding: 1.25rem 1.15rem 1.1rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    transform: translateY(14px);
    opacity: 0;
    transition:
        transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 650ms ease,
        box-shadow 250ms ease,
        border-color 250ms ease;
    transition-delay: var(--delay, 0ms);
}

.roadmap.is-visible .roadmap-step {
    transform: translateY(0);
    opacity: 1;
}

.roadmap-step:hover {
    border-color: rgba(6, 182, 212, 0.22);
    box-shadow: 0 18px 56px rgba(6, 182, 212, 0.12);
    transform: translateY(-4px);
}

.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.step-badge {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: white;
    background: var(--bg-gradient);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.18);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(6, 182, 212, 0.08);
    color: var(--primary-blue);
    border: 1px solid rgba(6, 182, 212, 0.12);
}

.step-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.step-title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
}

.step-desc {
    color: var(--text-light);
    font-size: 0.96rem;
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

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

.footer .brand-text {
    font-size: 1.4rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    line-height: 1.7;
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(2px);
}

.socials {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 24px rgba(6, 182, 212, 0.18);
}

.footer-social-note {
    margin-top: 0.9rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    font-size: 0.95rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-animation {
        height: 400px;
        order: -1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .roadmap-track {
        display: none;
    }

    .roadmap-steps {
        grid-template-columns: 1fr;
    }

    .page-hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-hero-art {
        height: 280px;
        order: -1;
    }

    .edu-facts {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .central-visual {
        flex-direction: column;
    }

    .animated-circle {
        display: none;
    }
}
