/* ============================================================
   GET STARTED PAGE — get-started.css  (full redesign)
   Depends on ../styles.css for base variables.
   ============================================================ */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
    --teal:        #31b898;
    --teal-light:  #5EC9AE;
    --teal-dim:    #28967C;
    --teal-pale:   #EDF6F3;
    --teal-mist:   #F5FAF8;
    --rose-gold:   #B8897A;
    --rose-light:  #E8D4CC;
    --rose-pale:   #F5EDE8;
    --forest:      #1C3832;
    --forest-mid:  #2A4F47;
    --sand:        #FAF6EF;
    --sand-mid:    #F2EAE0;
    --sand-deep:   #E8DDD4;
    --off-white:   #FDFAF7;
    --text-dark:   #1A2420;
    --text-medium: #4A5E58;
    --muted:       #7A9490;
    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Jost', system-ui, sans-serif;
    --radius-md:   20px;
    --radius-lg:   28px;
    --shadow-sm:   0 2px 12px rgba(26,36,32,0.06);
    --shadow-lg:   0 20px 56px rgba(26,36,32,0.13);
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in {
    opacity: 1;
    transform: none;
}
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ── Section Tag ───────────────────────────────────────────── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}
.section-tag-line {
    width: 26px;
    height: 1.5px;
    background: var(--teal);
    opacity: 0.6;
}
.section-h2 {
    font-family: var(--font-serif);
    font-size: var(--type-h1);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.section-h2 em {
    font-style: italic;
    color: var(--teal);
    font-weight: 400;
}
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.section-header .section-tag { justify-content: center; }
.section-header p {
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 400;
    line-height: var(--lh-body);
    color: var(--text-medium);
    max-width: 520px;
    margin: 0 auto;
}

/* container utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ────────────────────────────────────────────────────────────
   1. TICKER BAR
──────────────────────────────────────────────────────────── */
.gs-ticker {
    background: var(--forest);
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    height: 40px;
    display: flex;
    align-items: center;
}

.gs-ticker-track {
    display: inline-flex;
    align-items: center;
    animation: gs-ticker-scroll 32s linear infinite;
    gap: 0;
}

.gs-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding: 0 18px;
    white-space: nowrap;
}

.gs-ticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    opacity: 0.7;
}

@keyframes gs-ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ────────────────────────────────────────────────────────────
   2. HERO — full-height split
──────────────────────────────────────────────────────────── */

/* Full-width wrapper: bleeds the split bg to viewport edges */
.gs-hero-outer {
    background: linear-gradient(to right, var(--forest) 50%, var(--sand) 50%);
    min-height: auto;
}

/* Inner grid: content locked at 1200px */
.gs-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    min-height: auto;
    position: relative;
}

/* LEFT PANEL */
.gs-left {
    background: var(--forest);
    position: relative;
    overflow: hidden;
    padding: 40px 56px 40px 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* decorative rings */
.gs-left::before {
    content: '';
    position: absolute;
    bottom: -140px;
    right: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1.5px solid rgba(49,184,152,0.12);
    pointer-events: none;
    z-index: 0;
}
.gs-left::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(49,184,152,0.08);
    pointer-events: none;
    z-index: 0;
}
.gs-left-ring {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(49,184,152,0.07);
    pointer-events: none;
    z-index: 0;
}
.gs-left > *:not(.gs-left-ring) { position: relative; z-index: 1; }

/* breadcrumb */
.gs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 500;
    color: rgba(255,255,255,0.70);
}
.gs-breadcrumb a {
    color: rgba(255,255,255,0.70);
    text-decoration: none;
    transition: color 0.2s;
}
.gs-breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.gs-breadcrumb-sep { color: rgba(255,255,255,0.55); }
.gs-breadcrumb-current { color: rgba(255,255,255,0.75); }

/* left heading */
.gs-left .section-tag {
    color: var(--teal-light);
    margin-bottom: 16px;
}
.gs-left .section-tag .section-tag-line {
    background: var(--teal-light);
}

.gs-left h1 {
    font-family: var(--font-serif);
    font-size: var(--type-display);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 14px;
}
.gs-left h1 em {
    font-style: italic;
    color: var(--teal-light);
}

.gs-left-subtitle {
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 400;
    line-height: var(--lh-body);
    color: white;
    max-width: 480px;
    margin-bottom: 24px;
}

/* hero image */
.gs-hero-img {
    border-radius: var(--radius-md);
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    flex-shrink: 0;
}
.gs-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

/* 4-step process list */
.gs-steps-list {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.gs-step-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: background 0.35s cubic-bezier(0.22,1,0.36,1),
                border-color 0.35s ease,
                transform 0.35s cubic-bezier(0.22,1,0.36,1);
    cursor: default;
}
.gs-step-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(49,184,152,0.15);
    transform: translateX(6px);
}
.gs-step-num {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(49,184,152,0.12);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: var(--type-small);
    font-weight: 600;
    color: var(--teal-light);
    flex-shrink: 0;
    margin-top: 2px;
    transition: background 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.gs-step-item:hover .gs-step-num {
    background: var(--teal);
    color: white;
    transform: scale(1.08);
}
.gs-step-body {}
.gs-step-title {
    font-family: var(--font-serif);
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.25;
    transition: color 0.3s ease;
}
.gs-step-item:hover .gs-step-title {
    color: var(--teal-light);
}
.gs-step-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: white;
    line-height: 1.68;
    transition: color 0.3s ease;
}
.gs-step-item:hover .gs-step-desc {
    color: rgba(255,255,255,0.9);
}

/* trust pills */
.gs-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.gs-trust-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
    padding: 7px 16px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
}

/* testimonial quote card */
.gs-quote-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    backdrop-filter: blur(6px);
    flex-shrink: 0;
}
.gs-quote-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}
.gs-quote-text {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    font-style: italic;
    font-weight: 400;
    color: white;
    line-height: 1.65;
    margin-bottom: 14px;
}
.gs-quote-attr {
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.70);
}

/* RIGHT PANEL */
.gs-right {
    background: var(--sand);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 40px;
}

.gs-form-inner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.gs-form-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 6px;
    line-height: 1.15;
}
.gs-form-heading em {
    font-style: italic;
    color: var(--teal);
}
.gs-form-subhead {
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.65;
    margin-bottom: 28px;
}

/* form success message (hidden until submission) */
#form-success {
    display: none;
    background: var(--teal-pale);
    border: 1.5px solid rgba(49,184,152,0.35);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    font-family: var(--font-sans);
    font-size: var(--type-body);
    color: var(--teal-dim);
    margin-bottom: 16px;
}

/* ── Program Pills ──────────────────────────────────────────── */
.prog-pills-label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.prog-pills-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.prog-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card-bg);
    border: 1.5px solid var(--sand-deep);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    -webkit-user-select: none;
    user-select: none;
}
.prog-pill:hover {
    border-color: rgba(49,184,152,0.4);
    box-shadow: 0 4px 16px rgba(49,184,152,0.08);
}
.prog-pill.selected {
    border-color: var(--teal);
    background: var(--teal-mist);
    box-shadow: 0 4px 18px rgba(49,184,152,0.12);
}
.prog-pill.rose.selected {
    border-color: var(--rose-gold);
    background: var(--rose-pale);
    box-shadow: 0 4px 18px rgba(196,145,124,0.12);
}
.prog-pill.forest-sel.selected {
    border-color: var(--forest-mid);
    background: rgba(28,56,50,0.05);
    box-shadow: 0 4px 18px rgba(28,56,50,0.08);
}

.pp-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.prog-pill .pp-icon { background: var(--teal-pale); color: var(--teal); }
.prog-pill.rose .pp-icon { background: var(--rose-pale); color: var(--rose-gold); }
.prog-pill.forest-sel .pp-icon { background: rgba(28,56,50,0.07); color: var(--forest); }

.prog-pill.selected .pp-icon { background: var(--teal); color: var(--white); }
.prog-pill.rose.selected .pp-icon { background: var(--rose-gold); color: var(--white); }
.prog-pill.forest-sel.selected .pp-icon { background: var(--forest-mid); color: var(--white); }

.pp-text { flex: 1; }
.pp-name {
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.3;
}
.pp-sub {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.5;
}

.pp-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--sand-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}
.prog-pill.selected .pp-check {
    background: var(--teal);
    border-color: var(--teal);
}
.prog-pill.rose.selected .pp-check {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
}
.prog-pill.forest-sel.selected .pp-check {
    background: var(--forest-mid);
    border-color: var(--forest-mid);
}

/* ── Form Divider ───────────────────────────────────────────── */
.f-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0 18px;
}
.f-divider::before,
.f-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--sand-deep);
}
.f-divider span {
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

/* ── Form Fields ────────────────────────────────────────────── */
.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.f-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
}
.f-group label {
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-medium);
}
.f-group input,
.f-group select {
    background: var(--card-bg);
    border: 1.5px solid var(--sand-deep);
    border-radius: 12px;
    padding: 13px 16px;
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 400;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}
.f-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A9490' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.f-group input:focus,
.f-group select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(49,184,152,0.12);
}
.f-group input.error,
.f-group select.error {
    border-color: #d9534f;
    box-shadow: 0 0 0 3px rgba(217,83,79,0.10);
}
.f-group input::placeholder { color: rgba(122,148,144,0.55); }

/* ── Consent Row ────────────────────────────────────────────── */
.f-consent {
    background: var(--teal-mist);
    border: 1.5px solid rgba(49,184,152,0.2);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.f-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}
.f-consent-text {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.6;
}
.f-consent-text a {
    color: var(--teal-dim);
    text-decoration: underline;
    text-underline-offset: 2px;
}
#consent-error {
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 500;
    color: #c0392b;
    margin-bottom: 10px;
    padding-left: 4px;
}
#form-error {
    background: #fdf0ef;
    border: 1.5px solid #f5c6c3;
    border-radius: 10px;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: var(--type-small);
    font-weight: 400;
    color: #c0392b;
    margin-bottom: 14px;
    line-height: 1.55;
}

/* ── Submit Button ──────────────────────────────────────────── */
#submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--teal);
    color: var(--white);
    padding: 17px 32px;
    border-radius: 100px;
    border: none;
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    margin-bottom: 14px;
}
#submit-btn:hover:not(:disabled) {
    background: var(--teal-dim);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(49,184,152,0.28);
}
#submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
}
.btn-text {}
.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.35);
    border-top-color: var(--white);
    border-radius: 50%;
    display: none;
    flex-shrink: 0;
}
#submit-btn.loading .btn-spinner {
    display: block;
    animation: gs-spin 0.75s linear infinite;
}
@keyframes gs-spin {
    to { transform: rotate(360deg); }
}

.f-note {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    margin-bottom: 14px;
}
.f-note a {
    color: var(--teal-dim);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.phone-alt {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-medium);
    padding-top: 14px;
    border-top: 1px solid var(--sand-deep);
}
.phone-alt a {
    color: var(--forest);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.phone-alt a:hover { color: var(--teal); }

/* ────────────────────────────────────────────────────────────
   3. WHAT TO EXPECT — Dark Immersive
──────────────────────────────────────────────────────────── */
.gs-steps {
    background: linear-gradient(150deg, var(--forest) 0%, var(--forest-mid) 50%, #1a3830 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.gs-steps::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(49,184,152,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.gs-steps .container { position: relative; z-index: 1; }

.gs-steps .section-h2 { color: #fff; }
.gs-steps .section-header p { color: white; }
.gs-steps .section-tag { color: var(--teal-light); }
.gs-steps .section-tag .section-tag-line { background: var(--teal-light); }

.dark-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}
.dark-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: start;
    transition: background 0.4s;
    position: relative;
}
.dark-step:last-child { border-bottom: none; }
.dark-step:hover {
    background: rgba(255,255,255,0.02);
}
/* left accent on hover */
.dark-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -24px;
    bottom: 0;
    width: 3px;
    background: var(--teal);
    border-radius: 2px;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.dark-step:hover::before {
    transform: scaleY(1);
}

.dark-step-num {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 400;
    color: rgba(49,184,152,0.2);
    line-height: 1;
    transition: color 0.4s;
    padding-top: 4px;
    user-select: none;
}
.dark-step:hover .dark-step-num {
    color: rgba(49,184,152,0.45);
}
.dark-step-content h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}
.dark-step-content p {
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 400;
    color: white;
    line-height: 1.78;
    max-width: 560px;
}
.dark-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    background: rgba(49,184,152,0.15);
    color: var(--teal-light);
    border-radius: 999px;
    padding: 5px 14px;
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ────────────────────────────────────────────────────────────
   4. HOW TO MEET US
──────────────────────────────────────────────────────────── */
.gs-modes {
    background: var(--white);
    padding: 96px 0;
}
.mode-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.mode-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--sand-deep);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.mode-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.mode-card.primary {
    background: var(--forest);
    border-color: transparent;
}
.mode-card-light {
    background: var(--sand);
    border-color: var(--sand-deep);
}

.mode-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.mode-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.mode-card:hover .mode-img img {
    transform: scale(1.05);
}

.mode-card-body {
    padding: 32px 36px 36px;
}
.mode-card.primary .mode-card-body { color: var(--white); }

.mode-card h3 {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.2;
}
.mode-card.primary h3 { color: var(--white); }
.mode-card-light h3 { color: var(--text-dark); }

.mode-card-tag {
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.mode-card.primary .mode-card-tag { color: var(--teal-light); }
.mode-card-light .mode-card-tag { color: var(--teal); }

.mode-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.mode-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 400;
    line-height: var(--lh-body);
}
.mode-card.primary .mode-checklist li { color: white; }
.mode-card-light .mode-checklist li { color: var(--text-medium); }

.mode-check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}
.mode-card.primary .mode-check-icon { color: var(--teal-light); }
.mode-card-light .mode-check-icon { color: var(--teal); }

.mode-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.45);
    padding: 13px 26px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.mode-btn-outline:hover {
    border-color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.08);
}
.mode-btn-teal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--teal);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}
.mode-btn-teal:hover {
    background: var(--teal-dim);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(49,184,152,0.25);
}

/* ────────────────────────────────────────────────────────────
   5. FAQ
──────────────────────────────────────────────────────────── */
.gs-faq {
    background: var(--off-white);
    padding: 96px 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}
.gs-faq-item {
    background: var(--card-bg);
    border: 1.5px solid var(--sand-deep);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.gs-faq-item.open {
    border-color: rgba(49,184,152,0.35);
    box-shadow: 0 4px 18px rgba(49,184,152,0.08);
}
.gs-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 24px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.35;
    transition: color 0.2s;
}
.gs-faq-question:hover { color: var(--teal); }
.gs-faq-item.open .gs-faq-question { color: var(--forest); }

.gs-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--teal-pale);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s, transform 0.3s;
}
.gs-faq-icon svg {
    transition: transform 0.3s cubic-bezier(.22,.61,.36,1);
}
.gs-faq-item.open .gs-faq-icon {
    background: var(--teal);
    color: var(--white);
}
.gs-faq-item.open .gs-faq-icon svg {
    transform: rotate(45deg);
}

.gs-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(.22,.61,.36,1);
}
.gs-faq-item.open .gs-faq-answer {
    max-height: 300px;
}
.gs-faq-answer-inner {
    padding: 0 24px 22px;
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 400;
    color: var(--text-medium);
    line-height: var(--lh-body);
    border-top: 1px solid var(--sand-deep);
    padding-top: 16px;
}

/* ────────────────────────────────────────────────────────────
   6. WHY LIVEA
──────────────────────────────────────────────────────────── */
.gs-why {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 55%, #1a3830 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.gs-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(49,184,152,0.1) 0%, transparent 55%);
    pointer-events: none;
}
.gs-why .container { position: relative; z-index: 1; }

.gs-why .section-tag {
    color: var(--teal-light);
}
.gs-why .section-tag .section-tag-line { background: var(--teal-light); }
.gs-why .section-h2 { color: var(--white); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 52px;
}
.why-card {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.13);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    backdrop-filter: blur(6px);
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.why-card:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-4px);
    border-color: rgba(49,184,152,0.4);
}
.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(49,184,152,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    margin-bottom: 18px;
}
.why-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.25;
}
.why-card p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: white;
    line-height: 1.72;
}
.why-card-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.why-badge-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

/* stats bar */
.gs-stats-bar {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.gs-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.gs-stat-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}
.gs-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}
.gs-stat-text {
    font-family: var(--font-sans);
    font-size: var(--type-small);
    font-weight: 500;
    color: white;
    letter-spacing: 0.03em;
}

/* ────────────────────────────────────────────────────────────
   7. TESTIMONIALS
──────────────────────────────────────────────────────────── */
.gs-testimonials {
    background: var(--white);
    padding: 96px 0;
}
.gs-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 56px;
    box-shadow: var(--shadow-lg);
}
.gs-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.tc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tc {
    background: var(--off-white);
    border: 1px solid var(--sand-deep);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.tc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.tc-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.tc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.tc:hover .tc-img img {
    transform: scale(1.05);
}
.tc-img-label-unused {
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
.tc-teal { background: linear-gradient(135deg, var(--teal) 0%, var(--forest-mid) 100%); }
.tc-rose { background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose-gold) 100%); }
.tc-dark { background: linear-gradient(135deg, var(--forest) 0%, #101f1c 100%); }

.tc-body {
    padding: 22px 24px 26px;
}
.tc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}
.tc-quote {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 12px;
}
.tc-name {
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--muted);
    text-transform: uppercase;
}

/* ────────────────────────────────────────────────────────────
   8. APP SECTION
──────────────────────────────────────────────────────────── */
.gs-app {
    background: var(--forest);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.gs-app::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 60%, rgba(49,184,152,0.09) 0%, transparent 55%);
    pointer-events: none;
}
.gs-app .container { position: relative; z-index: 1; }
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.app-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.app-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: var(--radius-lg);
}

.app-content {}
.app-content .section-tag { color: var(--teal-light); }
.app-content .section-tag .section-tag-line { background: var(--teal-light); }
.app-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 28px;
}
.app-content h2 em {
    font-style: italic;
    color: var(--teal-light);
}

.app-feature-group {
    margin-bottom: 24px;
}
.app-feature-group-label {
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.app-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.app-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 400;
    color: white;
    line-height: var(--lh-body);
}
.app-feat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(49,184,152,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    flex-shrink: 0;
}

.app-download-ctas {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}
.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--forest);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.3s ease,
                background 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: var(--teal-light);
    color: var(--white);
}
.app-availability-note {
    margin-top: 12px;
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 400;
    color: white;
    line-height: 1.5;
}

/* ────────────────────────────────────────────────────────────
   9. CTA BAND
──────────────────────────────────────────────────────────── */
.gs-cta-section {
    padding: 48px 48px 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.gs-cta-band {
    background: linear-gradient(120deg, var(--forest) 0%, var(--forest-mid) 65%, #3A6A60 100%);
    border-radius: var(--radius-lg);
    padding: 72px 72px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.gs-cta-band::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(49,184,152,0.14) 0%, transparent 65%);
    pointer-events: none;
}
.cta-band-left { position: relative; z-index: 1; }
.cta-band-left .section-tag {
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}
.cta-band-left .section-tag .section-tag-line { background: rgba(255,255,255,0.4); }
.cta-band-left h2 {
    font-family: var(--font-serif);
    font-size: var(--type-h1);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}
.cta-band-left h2 em { font-style: italic; color: var(--teal-light); }
.cta-band-left p {
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 400;
    color: white;
    line-height: var(--lh-body);
    max-width: 480px;
}
.cta-band-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    min-width: 320px;
}
.cta-btn-white {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--forest);
    padding: 16px 34px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cta-btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(28,56,50,0.22);
}
.cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.82);
    padding: 16px 34px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.42);
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.cta-btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.07);
    transform: translateY(-2px);
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .gs-left { padding: 52px 40px 52px 40px; }
    .gs-right { padding: 52px 28px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .gs-cta-band { padding: 56px 52px; gap: 40px; }
    .app-grid { gap: 52px; }
}

@media (max-width: 960px) {
    /* hero stacks: form on top, left content below */
    .gs-hero-outer { min-height: auto; background: none; }
    .gs-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .gs-right {
        order: -1;
        padding: 48px 24px;
    }
    .gs-left {
        padding: 56px 32px;
    }
    .gs-left::before,
    .gs-left::after { display: none; }

    /* steps */
    .dark-step { grid-template-columns: 60px 1fr; gap: 20px; padding: 28px 0; }
    .dark-step-num { font-size: 48px; }
    .dark-step::before { left: -12px; }

    /* modes */
    .mode-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

    /* app */
    .app-grid { grid-template-columns: 1fr; gap: 40px; }
    .app-img { aspect-ratio: 16/9; }
    .app-img img { height: auto; }

    /* cta */
    .gs-cta-section { padding: 0 24px 64px; }
    .gs-cta-band {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 52px 40px;
    }
    .cta-band-right { flex-direction: row; flex-wrap: wrap; }

    /* why */
    .gs-stats-bar { gap: 28px; padding: 22px 28px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .gs-left { padding: 48px 20px; }
    .gs-right { padding: 40px 16px; }

    .gs-steps { padding: 64px 0; }
    .gs-modes { padding: 64px 0; }
    .gs-faq   { padding: 64px 0; }
    .gs-why   { padding: 64px 0; }
    .gs-testimonials { padding: 64px 0; }
    .gs-app   { padding: 64px 0; }

    /* faq goes 1-col */
    .faq-grid { grid-template-columns: 1fr; }

    /* why grid 2-col */
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    /* testimonials 1-col */
    .tc-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    /* cta */
    .gs-cta-band { padding: 44px 28px; border-radius: var(--radius-md); }
    .cta-band-right { flex-direction: column; align-items: stretch; }
    .cta-btn-white,
    .cta-btn-ghost { justify-content: center; text-align: center; }

    .gs-stats-bar { flex-direction: column; gap: 16px; padding: 22px 24px; }
    .gs-stat-divider { width: 60px; height: 1px; }
}

@media (max-width: 480px) {
    .gs-cta-section { padding: 0 16px 56px; }
    .why-grid { grid-template-columns: 1fr; }
    .f-row { grid-template-columns: 1fr; }
    .prog-pill { padding: 12px 14px; }
    .gs-hero { min-height: auto; }
}
