/* ============================================================
   telehealth.css — Telehealth page redesign
   Depends on: ../styles.css for base variables, .container,
   .gs-form-*, .section-tag, .section-h2
   All classes namespaced tele-* to avoid conflicts
   ============================================================ */

/* ── Local design tokens (mirror styles.css) ─────────────── */
:root {
    --teal:           #31b898;
    --teal-light:     #5EC9AE;
    --teal-dim:       #28967C;
    --teal-pale:      #EDF6F3;
    --teal-mist:      #F5FAF8;
    --forest:         #1C3832;
    --forest-mid:     #2A4F47;
    --forest-light:   #3A6A60;
    --sand:           #FDFAF7;
    --sand-mid:       #F5EFE8;
    --sand-deep:      #E8DDD4;
    --off-white:      #FDFAF7;
    --text-dark:      #1A2420;
    --text-medium:    #4A5E58;
    --muted:          #7A9490;
    --subtle:         #B0C4BF;
    --font-serif:     'Cormorant Garamond', Georgia, serif;
    --font-sans:      'Jost', system-ui, sans-serif;
    --radius-sm:      12px;
    --radius-md:      20px;
    --radius-lg:      28px;
    --shadow-sm:      0 2px 12px rgba(26,36,32,0.06);
    --shadow-md:      0 8px 32px rgba(26,36,32,0.10);
    --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; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

/* ── Shared 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;
    flex-shrink: 0;
}
.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);
}

/* ── Keyframes ─────────────────────────────────────────────── */
@keyframes tele-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}
@keyframes tele-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes sonar {
    0%   { box-shadow: 0 0 0 0 rgba(49,184,152,0.55); }
    70%  { box-shadow: 0 0 0 12px rgba(49,184,152,0); }
    100% { box-shadow: 0 0 0 0 rgba(49,184,152,0); }
}

/* ════════════════════════════════════════════════════════════
   1. HERO
════════════════════════════════════════════════════════════ */
.tele-hero {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 55%, #236055 100%);
    padding-top: 121px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

body.has-announcement .tele-hero {
    padding-top: 200px;
}

.tele-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 72% 25%, rgba(49,184,152,0.09) 0%, transparent 52%),
        radial-gradient(ellipse at 12% 78%, rgba(49,184,152,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.tele-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.tele-hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(49,184,152,0.07);
}
.tele-hero-ring-1 { width: 560px; height: 560px; top: -8%; right: 2%; }
.tele-hero-ring-2 { width: 380px; height: 380px; top: 5%; right: 12%; }
.tele-hero-glow {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(49,184,152,0.08) 0%, transparent 70%);
}
.tele-hero-glow-1 { width: 680px; height: 680px; top: -28%; right: -10%; }
.tele-hero-glow-2 { width: 380px; height: 380px; bottom: -8%; left: -4%; }

.tele-hero-inner {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    align-items: end;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
}

.tele-hero-left {
    padding-bottom: 80px;
    animation: tele-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}

/* Breadcrumb */
.tele-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--type-caption);
    font-weight: 400;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
}
.tele-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.tele-breadcrumb a:hover { color: rgba(255,255,255,0.60); }
.tele-breadcrumb-sep { opacity: 0.3; }

/* Eyebrow */
.tele-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--type-caption);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 22px;
}
.tele-eyebrow-line {
    width: 28px;
    height: 1.5px;
    background: var(--teal-light);
    opacity: 0.7;
    flex-shrink: 0;
}

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

.tele-hero-subtitle {
    font-size: var(--type-body);
    font-weight: 400;
    line-height: var(--lh-body);
    color: white;
    max-width: 480px;
    margin-bottom: 8px;
}
.tele-hero-sub2 {
    font-size: 12.5px;
    font-weight: 400;
    color: white;
    margin-bottom: 38px;
    letter-spacing: 0.02em;
}

/* CTA Buttons */
.tele-hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}
.tele-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(49,184,152,0.35);
    transition: background 0.2s, transform 0.15s;
}
.tele-btn-primary:hover {
    background: var(--teal-dim);
    transform: translateY(-2px);
}
.tele-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
}
.tele-btn-ghost:hover { color: rgba(255,255,255,0.82); }
.tele-btn-ghost-arr {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: border-color 0.2s;
}
.tele-btn-ghost:hover .tele-btn-ghost-arr {
    border-color: rgba(255,255,255,0.45);
}

/* Proof row */
.tele-hero-proof {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.tele-hp-item {
    flex: 1;
    padding: 22px 0 22px 28px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.tele-hp-item:last-child { border-right: none; }
.tele-hp-val {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}
.tele-hp-label {
    font-size: var(--type-caption);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.65);
}

/* Hero right column */
.tele-hero-right {
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    animation: tele-fade-in 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
.tele-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Floating live badge */
.tele-live-badge {
    position: absolute;
    top: 36px;
    right: 32px;
    background: rgba(26,36,32,0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(49,184,152,0.25);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.tele-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    animation: sonar 2s ease-out infinite;
    flex-shrink: 0;
}
.tele-live-text {
    font-size: var(--type-caption);
    font-weight: 400;
    color: rgba(255,255,255,0.75);
}
.tele-live-text span { color: var(--teal-light); font-weight: 500; }

/* Floating what's included card */
.tele-whats-included-card {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: rgba(26,36,32,0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    z-index: 2;
    min-width: 220px;
}
.tele-wic-label {
    font-size: var(--type-caption);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal-light);
    margin-bottom: 10px;
}
.tele-wic-items {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.tele-wic-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--type-caption);
    font-weight: 400;
    color: white;
}
.tele-wic-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(49,184,152,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--teal-light);
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   2. TICKER / TRUST BAND
════════════════════════════════════════════════════════════ */
.tele-ticker {
    background: var(--forest);
    padding: 11px 0;
    overflow: hidden;
    white-space: nowrap;
}
.tele-ticker-track {
    display: inline-flex;
    animation: ticker 36s linear infinite;
}
.tele-tick {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 28px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}
.tele-tick-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.80;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   3. WHY TELEHEALTH
════════════════════════════════════════════════════════════ */
.tele-why-section {
    padding: 88px 64px;
    background: var(--off-white);
}
.tele-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.tele-why-header {
    margin-bottom: 48px;
}
.tele-why-lead {
    font-size: var(--type-body);
    font-weight: 400;
    line-height: var(--lh-body);
    color: var(--text-medium);
    max-width: 560px;
}
.tele-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.tele-why-card {
    background: var(--off-white);
    border: 1px solid var(--sand-deep);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.tele-why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--forest);
    border-color: var(--forest);
}
.tele-why-card:hover .tele-wc-title,
.tele-why-card:hover .tele-wc-desc { color: #fff; }
.tele-why-card:hover .tele-wc-num { color: rgba(255,255,255,0.05); }
.tele-why-card:hover .tele-wc-icon { background: rgba(255,255,255,0.10); color: var(--teal-light); }
.tele-why-card--dark {
    background: var(--forest);
    border-color: transparent;
}
.tele-why-card--dark:hover {
    box-shadow: 0 20px 56px rgba(28,56,50,0.35);
}
.tele-wc-num {
    font-family: var(--font-serif);
    font-size: 84px;
    font-weight: 400;
    color: var(--sand-deep);
    position: absolute;
    top: -12px;
    right: 18px;
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s;
}
.tele-why-card:hover .tele-wc-num { color: var(--sand-mid); }
.tele-why-card--dark .tele-wc-num { color: rgba(255,255,255,0.55); }
.tele-wc-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.tele-why-card--dark .tele-wc-icon { background: rgba(255,255,255,0.10); }
.tele-wc-title {
    font-family: var(--font-serif);
    font-size: var(--type-h3);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.tele-why-card--dark .tele-wc-title { color: white; }
.tele-wc-desc {
    font-size: var(--type-small);
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.72;
    position: relative;
    z-index: 1;
}
.tele-why-card--dark .tele-wc-desc { color: white; }

/* ════════════════════════════════════════════════════════════
   4. WHAT'S INCLUDED
════════════════════════════════════════════════════════════ */
.tele-included-section {
    padding: 88px 64px;
    background: var(--sand);
}
.tele-included-header {
    margin-bottom: 48px;
}
.tele-included-lead {
    font-size: var(--type-body);
    font-weight: 400;
    line-height: var(--lh-body);
    color: var(--text-medium);
    max-width: 540px;
}
.tele-included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}
.tele-inc-card {
    background: var(--off-white);
    border: 1px solid var(--sand-deep);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.tele-inc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.tele-inc-card-title {
    font-family: var(--font-serif);
    font-size: var(--type-h3);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tele-inc-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tele-inc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.tele-inc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--type-small);
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.55;
}
.tele-il-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--teal-dim);
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── What's Included — Enhanced Card Grid ───────────────── */
.tele-inc-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}
.tele-inc2 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--sand-deep);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.35s,
                border-color 0.35s;
}
/* left accent bar */
.tele-inc2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--teal);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.tele-inc2:hover::before { transform: scaleY(1); }
.tele-inc2:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(26,36,32,0.07);
    border-color: rgba(49,184,152,0.18);
}
.tele-inc2-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(49,184,152,0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}
.tele-inc2:hover .tele-inc2-check {
    transform: scale(1.1);
    box-shadow: 0 5px 16px rgba(49,184,152,0.35);
}
.tele-inc2-title {
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.tele-inc2-sub {
    font-size: var(--type-caption);
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.55;
}

/* Delivery banner */
.tele-delivery-banner {
    background: var(--forest);
    border-radius: var(--radius-lg);
    padding: 34px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.tele-delivery-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(49,184,152,0.09) 0%, transparent 70%);
}
.tele-db-eyebrow {
    font-size: var(--type-caption);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--teal-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tele-db-eyebrow::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--teal-light);
    opacity: 0.6;
}
.tele-db-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    color: white;
    margin-bottom: 12px;
    line-height: 1.15;
}
.tele-db-desc {
    font-size: var(--type-small);
    font-weight: 400;
    color: white;
    line-height: 1.70;
    max-width: 440px;
    margin-bottom: 16px;
}
.tele-db-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tele-db-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 100px;
    padding: 5px 13px;
    font-size: var(--type-caption);
    font-weight: 400;
    color: rgba(255,255,255,0.75);
}
.tele-db-pill-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.75;
}
.tele-db-visual {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(49,184,152,0.10) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.tele-db-visual-icon { font-size: 36px; opacity: 0.28; }
.tele-db-visual-label {
    font-size: var(--type-caption);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: rgba(255,255,255,0.55);
    text-align: center;
}

/* ════════════════════════════════════════════════════════════
   5. HOW IT WORKS
════════════════════════════════════════════════════════════ */
.tele-process-section {
    padding: 88px 64px;
    background: var(--off-white);
}
.tele-process-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.tele-process-left {
    position: sticky;
    top: 100px;
}
.tele-pl-img-wrap { position: relative; }
.tele-pl-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--teal-pale) 0%, #8ADBC6 35%, var(--teal) 70%, var(--forest-mid) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.tele-pl-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,36,32,0.60) 0%, transparent 55%);
}
.tele-pl-img-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    z-index: 0;
}
.tele-pl-img-icon { font-size: 48px; opacity: 0.20; }
.tele-pl-img-label {
    font-size: var(--type-caption);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.tele-pl-img-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}
.tele-pic-stat {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 0 24px rgba(0,0,0,0.3);
}
.tele-pic-label {
    font-size: var(--type-caption);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(255,255,255,0.70);
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.tele-pl-badge {
    position: absolute;
    top: 24px;
    right: -14px;
    background: var(--forest);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(28,56,50,0.35);
    border: 1px solid rgba(49,184,152,0.25);
    z-index: 3;
}
.tele-plb-val {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 3px;
}
.tele-plb-label {
    font-size: var(--type-caption);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal-light);
}

.tele-process-right { display: flex; flex-direction: column; gap: 0; }
.tele-process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--sand-deep);
}
.tele-process-step:last-child { border-bottom: none; }
.tele-ps-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1.5px solid var(--sand-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--muted);
    flex-shrink: 0;
    transition: all 0.25s;
}
.tele-process-step:hover .tele-ps-num {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
    box-shadow: 0 4px 16px rgba(49,184,152,0.30);
}
.tele-ps-title {
    font-family: var(--font-serif);
    font-size: var(--type-h3);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.2;
}
.tele-ps-desc {
    font-size: var(--type-small);
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.70;
}
.tele-ps-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--type-caption);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--teal-dim);
    background: var(--teal-pale);
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: 8px;
}

/* ════════════════════════════════════════════════════════════
   6. PLATFORM / APP (dark forest)
════════════════════════════════════════════════════════════ */
.tele-platform-section {
    background: var(--forest);
    padding: 88px 64px;
}
.tele-platform-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.tele-platform-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(49,184,152,0.10) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
}
.tele-platform-img-icon { font-size: 56px; opacity: 0.22; }
.tele-platform-img-label {
    font-size: var(--type-caption);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 0 24px;
}
.tele-platform-section .section-tag { color: var(--teal-light); }
.tele-platform-section .section-tag .section-tag-line { background: var(--teal-light); }
.tele-platform-section .section-h2 { color: white; }
.tele-platform-section .section-h2 em { color: var(--teal-light); }
.tele-platform-lead {
    font-size: var(--type-body);
    font-weight: 400;
    line-height: var(--lh-body);
    color: white;
    margin-bottom: 36px;
}
.tele-platform-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}
.tele-platform-col-h {
    font-size: var(--type-caption);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--teal-light);
    margin-bottom: 12px;
}
.tele-platform-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tele-platform-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--type-small);
    font-weight: 400;
    color: white;
    line-height: 1.55;
}
.tele-al-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.75;
    flex-shrink: 0;
    margin-top: 6px;
}
.tele-platform-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-md);
}
.tele-platform-cta-icon { font-size: 24px; flex-shrink: 0; }
.tele-platform-cta-text {
    font-size: var(--type-small);
    font-weight: 400;
    color: white;
}
.tele-platform-cta-text strong { color: white; font-weight: 500; }

/* ════════════════════════════════════════════════════════════
   7. TESTIMONIALS
════════════════════════════════════════════════════════════ */
.tele-testimonials-section {
    padding: 88px 64px;
    background: var(--sand);
}
.tele-testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}
.tele-testimonials-header .section-tag { justify-content: center; }
.tele-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.tele-tc {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--sand-deep);
    transition: transform 0.3s, box-shadow 0.3s;
}
.tele-tc:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.tele-tc-top {
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tele-tc-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,36,32,0.52) 0%, transparent 60%);
}
.tele-tc-grad-1 { background: linear-gradient(135deg, #2A4F47 0%, #31b898 60%, #5EC9AE 100%); }
.tele-tc-grad-2 { background: linear-gradient(135deg, #1C3832 0%, #2A4F47 50%, #31b898 100%); }
.tele-tc-grad-3 { background: linear-gradient(135deg, #236055 0%, #1C3832 60%, #2A4F47 100%); }
.tele-tc-img-icon { font-size: 36px; opacity: 0.25; }
.tele-tc-result {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: white;
    z-index: 1;
    line-height: 1;
    text-align: right;
}
.tele-tc-result-sub {
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    display: block;
    letter-spacing: 0.04em;
}
.tele-tc-body { padding: 20px 18px; }
.tele-tc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
    color: #C4917C;
}
.tele-tc-quote {
    font-family: var(--font-serif);
    font-size: 15px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.55;
    margin-bottom: 14px;
}
.tele-tc-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tele-tc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--teal-dim);
    flex-shrink: 0;
}
.tele-tc-name {
    font-size: var(--type-caption);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.tele-tc-prog {
    font-size: var(--type-caption);
    font-weight: 400;
    color: var(--muted);
}

/* ════════════════════════════════════════════════════════════
   8. CONSULTATION FORM
════════════════════════════════════════════════════════════ */
.tele-form-section {
    padding: 88px 64px;
    background: var(--off-white);
}
.tele-form-header {
    text-align: center;
    margin-bottom: 48px;
}
.tele-form-header .section-tag { justify-content: center; }
.tele-form-intro {
    font-size: var(--type-body);
    font-weight: 400;
    color: var(--text-medium);
    max-width: 480px;
    margin: 0 auto;
    line-height: var(--lh-body);
}

/* ════════════════════════════════════════════════════════════
   9. FAQ ACCORDION
════════════════════════════════════════════════════════════ */
.tele-faq-section {
    padding: 88px 64px;
    background: var(--sand);
}
.tele-faq-header {
    text-align: center;
    margin-bottom: 48px;
}
.tele-faq-header .section-tag { justify-content: center; }
.tele-faq-intro {
    font-size: var(--type-body);
    font-weight: 400;
    color: var(--text-medium);
    max-width: 480px;
    margin: 0 auto;
    line-height: var(--lh-body);
}
.tele-faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tele-faq-item {
    background: var(--off-white);
    border: 1px solid var(--sand-deep);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.tele-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 400;
    color: var(--text-dark);
    text-align: left;
    gap: 12px;
    transition: color 0.2s;
}
.tele-faq-question:hover { color: var(--teal); }
.tele-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--sand-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    flex-shrink: 0;
    transition: all 0.2s;
}
.tele-faq-item.open .tele-faq-icon {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
    transform: rotate(45deg);
}
.tele-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}
.tele-faq-item.open .tele-faq-answer { max-height: 320px; }
.tele-faq-answer-inner {
    padding: 0 22px 18px;
    font-size: var(--type-body);
    font-weight: 400;
    color: var(--text-medium);
    line-height: var(--lh-body);
}

/* ════════════════════════════════════════════════════════════
   10. CTA BAND
════════════════════════════════════════════════════════════ */
.tele-cta-outer {
    padding: 0 64px 88px;
    background: var(--off-white);
}
.tele-cta-band {
    background: linear-gradient(120deg, var(--forest) 0%, var(--forest-mid) 65%, var(--forest-light) 100%);
    border-radius: var(--radius-lg);
    padding: 64px 72px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.tele-cta-band::before {
    content: '';
    position: absolute;
    top: -40%;
    right: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(49,184,152,0.10) 0%, transparent 70%);
}
.tele-cta-tag {
    font-size: var(--type-caption);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tele-cta-tag::before {
    content: '';
    width: 18px;
    height: 1px;
    background: rgba(255,255,255,0.30);
}
.tele-cta-band h2 {
    font-family: var(--font-serif);
    font-size: var(--type-h1);
    font-weight: 400;
    line-height: 1.08;
    color: white;
    margin-bottom: 10px;
}
.tele-cta-band h2 em { font-style: italic; color: var(--teal-light); }
.tele-cta-sub {
    font-size: var(--type-body);
    font-weight: 400;
    color: white;
    line-height: var(--lh-body);
}
.tele-cta-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.tele-cta-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--forest);
    padding: 15px 34px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 22px rgba(26,36,32,0.14);
    transition: transform 0.15s, box-shadow 0.15s;
}
.tele-cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26,36,32,0.20);
}
.tele-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.35);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.15s, border-color 0.2s, background 0.2s;
}
.tele-cta-btn-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════════════════════ */

/* 1100px */
@media (max-width: 1100px) {
    .tele-hero-inner { padding: 0 48px; }
    .tele-hero-left  { padding-bottom: 64px; }
    .tele-cta-band   { padding: 52px 56px; }
}

/* 960px */
@media (max-width: 960px) {
    .tele-why-grid           { grid-template-columns: 1fr; gap: 14px; }
    .tele-included-grid      { grid-template-columns: 1fr; }
    .tele-inc-grid2          { grid-template-columns: 1fr; }
    .tele-delivery-banner    { grid-template-columns: 1fr; gap: 24px; }
    .tele-db-visual          { display: none; }
    .tele-process-wrap       { grid-template-columns: 1fr; gap: 48px; }
    .tele-process-left       { position: static; }
    .tele-platform-inner     { grid-template-columns: 1fr; gap: 48px; }
    .tele-testi-grid         { grid-template-columns: 1fr 1fr; gap: 14px; }
    .tele-cta-band           { grid-template-columns: 1fr; gap: 28px; padding: 48px 44px; }
    .tele-cta-right          { align-items: flex-start; }
    .tele-why-section,
    .tele-included-section,
    .tele-process-section,
    .tele-platform-section,
    .tele-testimonials-section,
    .tele-form-section,
    .tele-faq-section        { padding: 72px 44px; }
    .tele-cta-outer          { padding: 0 44px 72px; }
}

/* 768px */
@media (max-width: 768px) {
    .tele-hero-inner {
        grid-template-columns: 1fr;
        padding: 0 28px;
    }
    .tele-hero-right { display: none; }
    .tele-hero-left  { padding-bottom: 0; }
    .tele-hero-proof { flex-direction: column; }
    .tele-hp-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        padding: 16px 0 16px 24px;
    }
    .tele-hp-item:last-child { border-bottom: none; }
    .tele-testi-grid         { grid-template-columns: 1fr; }
    .tele-why-section,
    .tele-included-section,
    .tele-process-section,
    .tele-platform-section,
    .tele-testimonials-section,
    .tele-form-section,
    .tele-faq-section        { padding: 60px 28px; }
    .tele-cta-outer          { padding: 0 28px 60px; }
    .tele-cta-band           { padding: 40px 32px; }
    .tele-platform-cols      { grid-template-columns: 1fr; gap: 20px; }
}

/* 480px */
@media (max-width: 480px) {
    .tele-hero                       { padding-top: 90px; }
    body.has-announcement .tele-hero { padding-top: 120px; }
    .tele-hero-inner                 { padding: 0 20px; }
    .tele-hero-btns                  { flex-direction: column; align-items: flex-start; gap: 12px; }
    .tele-btn-primary                { width: 100%; justify-content: center; }
    .tele-wc-num                     { font-size: 60px; }
    .tele-why-section,
    .tele-included-section,
    .tele-process-section,
    .tele-platform-section,
    .tele-testimonials-section,
    .tele-form-section,
    .tele-faq-section                { padding: 48px 20px; }
    .tele-cta-outer                  { padding: 0 20px 48px; }
    .tele-cta-band                   { padding: 32px 24px; }
    .tele-cta-btn-white              { width: 100%; justify-content: center; }
    .tele-cta-btn-ghost              { width: 100%; justify-content: center; }
    .tele-faq-question               { font-size: 13px; }
}
