/* /assets/css/contact.css — auto-extracted from source (no renaming) */


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

        :root {
            --cyan: #209C9A;
            --cyan-dark: #1a8280;
            --cyan-light: rgba(32, 156, 154, 0.1);
            --noir: #1A1A1A;
            --ivoire: #F0EDE5;
            --blanc: #FFFFFF;
            --gray-50: #FAFAF9;
            --gray-100: #F5F4F2;
            --gray-200: #EEECEA;
            --gray-300: #D8D5D0;
            --gray-400: #9A9590;
            --gray-500: #6B6660;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 100px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--ivoire);
            color: var(--noir);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -webkit-tap-highlight-color: transparent;
        }

        /* ========== PRESENTER CARD - COMPACT MOBILE ========== */
        .presenter-card {
            background: var(--blanc);
            margin: 16px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }

        .presenter-header {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: linear-gradient(135deg, var(--noir) 0%, var(--cyan) 100%);
            position: relative;
        }

        .presenter-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--cyan);
        }

        .presenter-avatar {
            width: 80px;
            height: 100px;
            flex-shrink: 0;
            position: relative;
        }

        .presenter-avatar img {
            width: 100%;
            height: 100%;
            border-radius: var(--radius-md);
            object-fit: cover;
            object-position: top center;
            border: 3px solid var(--blanc);
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }

        .presenter-status {
            position: absolute;
            bottom: 4px;
            right: -4px;
            width: 18px;
            height: 18px;
            background: #28A745;
            border-radius: 50%;
            border: 3px solid var(--blanc);
            box-shadow: 0 0 8px rgba(40,167,69,0.5);
        }

        .presenter-info {
            flex: 1;
            color: var(--blanc);
        }

        .founder-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.2);
            padding: 4px 10px;
            border-radius: var(--radius-full);
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .founder-badge svg {
            width: 12px;
            height: 12px;
        }

        .presenter-name {
            font-family: 'League Spartan', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 2px;
            letter-spacing: -0.02em;
        }

        .presenter-title {
            font-size: 0.8rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* Toggle pour afficher plus d'infos */
        .presenter-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 20px;
            background: var(--gray-50);
            border: none;
            width: 100%;
            font-family: inherit;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--cyan);
            cursor: pointer;
            transition: background 0.2s;
        }

        .presenter-toggle:active {
            background: var(--gray-100);
        }

        .presenter-toggle svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s;
        }

        .presenter-toggle.active svg {
            transform: rotate(180deg);
        }

        /* Contenu dépliable */
        .presenter-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .presenter-details.open {
            max-height: 600px;
        }

        .presenter-description {
            padding: 20px;
            border-bottom: 1px solid var(--gray-200);
        }

        .presenter-description p {
            color: var(--gray-500);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .presenter-description strong {
            color: var(--noir);
        }

        .presenter-benefits {
            padding: 20px;
        }

        .benefits-title {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .benefits-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .benefits-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--noir);
        }

        .benefit-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--noir) 0%, var(--cyan) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-icon svg {
            width: 12px;
            height: 12px;
            stroke: var(--blanc);
            stroke-width: 3;
        }

        /* Boutons de contact */
        .presenter-contact {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 20px;
            background: var(--gray-50);
        }

        .contact-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 16px;
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }

        .contact-btn svg {
            width: 18px;
            height: 18px;
        }

        .contact-btn-primary {
            background: linear-gradient(135deg, #ff8a6b 0%, #ff6f5e 45%, #f2553f 100%);
            color: #1A1A1A;
        }

        .contact-btn-primary:active {
            transform: scale(0.98);
            opacity: 0.9;
        }

        .contact-btn-secondary {
            background: var(--blanc);
            color: var(--noir);
            border: 2px solid var(--gray-200);
        }

        .contact-btn-secondary:active {
            border-color: var(--cyan);
            background: var(--cyan-light);
        }

        /* ========== CALENDLY SECTION ========== */
        .calendly-section {
            background: var(--blanc);
            margin: 0 16px 16px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }

        .calendly-header {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid var(--gray-200);
        }

        .calendly-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--noir) 0%, var(--cyan) 100%);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            box-shadow: 0 8px 24px rgba(32,156,154,0.3);
        }

        .calendly-icon svg {
            width: 26px;
            height: 26px;
            color: var(--blanc);
        }

        .calendly-header h2 {
            font-family: 'League Spartan', sans-serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--noir);
            margin-bottom: 6px;
            letter-spacing: -0.02em;
        }

        .calendly-header p {
            color: var(--gray-500);
            font-size: 0.9rem;
        }

        /* Steps - Horizontal scroll sur mobile */
        .calendly-steps {
            display: flex;
            justify-content: space-between;
            padding: 16px 20px;
            background: var(--gray-50);
            border-bottom: 1px solid var(--gray-200);
            gap: 8px;
        }

        .step {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            text-align: center;
        }

        .step-number {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--gray-500);
            transition: all 0.3s;
        }

        .step.active .step-number {
            background: linear-gradient(135deg, #ff8a6b 0%, #ff6f5e 45%, #f2553f 100%);
            color: #1A1A1A;
            box-shadow: 0 4px 12px rgba(242,85,63,0.35);
        }

        .step-text {
            font-size: 0.7rem;
            color: var(--gray-400);
            font-weight: 500;
            line-height: 1.3;
        }

        .step.active .step-text {
            color: var(--noir);
            font-weight: 600;
        }

        /* Calendly Widget */
        .calendly-wrapper {
            padding: 12px;
            background: var(--blanc);
        }

        .calendly-frame {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 2px solid var(--gray-200);
            background: var(--gray-50);
            position: relative;
        }

        .calendly-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--noir) 0%, var(--cyan) 100%);
            z-index: 10;
        }

        .calendly-inline-widget {
            min-width: 320px;
            height: 700px !important;
            width: 100%;
        }
        
        .calendly-inline-widget iframe {
            height: 100% !important;
        }

        /* Trust badges */
        .calendly-trust {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 20px;
            background: var(--gray-50);
            border-top: 1px solid var(--gray-200);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.85rem;
            color: var(--gray-500);
            font-weight: 500;
        }

        .trust-icon {
            width: 36px;
            height: 36px;
            background: var(--blanc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: var(--shadow-sm);
        }

        .trust-icon svg {
            width: 18px;
            height: 18px;
            color: var(--cyan);
        }

        /* ========== FOOTER ========== */
        .page-footer {
            text-align: center;
            padding: 24px 20px 32px;
            color: var(--gray-500);
            font-size: 0.8rem;
            line-height: 1.6;
        }

        .page-footer a {
            color: var(--cyan);
            text-decoration: none;
            font-weight: 600;
        }

        /* ========== TABLET & DESKTOP ========== */
        @media (min-width: 768px) {
            .presenter-card {
                margin: 24px auto;
                max-width: 600px;
            }

            .presenter-header {
                padding: 28px;
                gap: 24px;
            }

            .presenter-avatar {
                width: 100px;
                height: 130px;
            }

            .presenter-name {
                font-size: 1.6rem;
            }

            .calendly-section {
                margin: 0 auto 24px;
                max-width: 800px;
            }

            .calendly-steps {
                justify-content: center;
                gap: 40px;
                padding: 20px 32px;
            }

            .step {
                flex: initial;
                flex-direction: row;
                gap: 10px;
            }

            .step-text {
                font-size: 0.85rem;
            }

            .calendly-trust {
                flex-direction: row;
                justify-content: center;
                gap: 40px;
            }
        }

        @media (min-width: 1024px) {
            .main-content {
                display: grid;
                grid-template-columns: 380px 1fr;
                gap: 32px;
                max-width: 1400px;
                margin: 0 auto;
                padding: 32px;
                align-items: start;
            }

            .presenter-card {
                margin: 0;
                max-width: none;
                position: sticky;
                top: 32px;
            }

            .presenter-toggle {
                display: none;
            }

            .presenter-details {
                max-height: none !important;
            }

            .calendly-section {
                margin: 0;
                max-width: none;
            }

            .calendly-inline-widget {
                height: 750px !important;
            }
        }

        @media (min-width: 1400px) {
            .main-content {
                grid-template-columns: 420px 1fr;
                gap: 40px;
                padding: 40px 48px;
            }

            .presenter-avatar {
                width: 120px;
                height: 160px;
            }

            .presenter-name {
                font-size: 1.75rem;
            }
        }
    
/* ────────────────────────────────────────────────
   V2 — Orb presenter (remplace l'avatar photo)
   ──────────────────────────────────────────────── */
.presenter-orb {
  position: relative;
  width: 80px; height: 80px;
  flex-shrink: 0;
  isolation: isolate;
}
.presenter-orb-halo {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32,156,154,0.55) 0%, transparent 65%);
  animation: presenter-halo 3.2s ease-in-out infinite;
  z-index: -1;
}
.presenter-orb-core {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3DD6D0 0%, #209C9A 60%, #178786 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 28px rgba(32,156,154,0.45),
    inset 0 2px 6px rgba(255,255,255,0.35),
    inset 0 -3px 8px rgba(0,0,0,0.2);
  color: #fff;
}
.presenter-orb-core svg {
  width: 50%; height: 50%;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}
.presenter-status-dot {
  position: absolute;
  bottom: 4px; right: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #10B981;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(16,185,129,0.4);
}
@keyframes presenter-halo {
  0%, 100% { opacity: 0.6; transform: scale(1);    }
  50%      { opacity: 0.22; transform: scale(1.35); }
}
@media (prefers-reduced-motion: reduce) {
  .presenter-orb-halo { animation: none; }
}

/* ════════════════════════════════════════════════════════════════
   CONTACT V3 — design premium total
   ════════════════════════════════════════════════════════════════ */

/* HERO */
.ct-hero {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 24px clamp(50px, 7vw, 90px);
  background: linear-gradient(180deg, #FAF8F3 0%, #fff 100%);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.ct-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(32,156,154,0.12), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(124,58,237,0.06), transparent 55%);
}
.ct-hero-content { max-width: 720px; margin: 0 auto; }
.ct-hero-eyebrow {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #178786;
  background: rgba(32,156,154,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.ct-hero-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #0F172A;
  margin: 0 0 18px;
}
.ct-hero-title span {
  background: linear-gradient(135deg, #209C9A 0%, #178786 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ct-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: #475569;
  line-height: 1.65;
  margin: 0 0 32px;
}
.ct-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding: 16px 28px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 100px;
  box-shadow: 0 4px 18px rgba(15,23,42,0.06);
}
.ct-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ct-hero-stat strong {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #ff6f5e;
  line-height: 1;
}
.ct-hero-stat span {
  font-size: 0.74rem;
  color: #475569;
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ct-hero-stat-divider {
  width: 1px; height: 28px;
  background: rgba(15,23,42,0.1);
  align-self: center;
}

/* CHANNELS */
.ct-channels {
  padding: clamp(70px, 9vw, 130px) 24px;
  background: #fff;
}
.ct-channels-head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); }
.ct-channels-eyebrow,
.ct-team-eyebrow,
.ct-calendly-eyebrow {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #178786;
  background: rgba(32,156,154,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.ct-channels-title,
.ct-team-title,
.ct-faq-title,
.ct-calendly-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #0F172A;
  margin: 0 0 12px;
}
.ct-channels-title span,
.ct-team-title span,
.ct-faq-title span,
.ct-calendly-title span {
  background: linear-gradient(135deg, #209C9A 0%, #178786 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ct-channels-sub,
.ct-team-sub,
.ct-calendly-sub { color: #475569; font-size: 1rem; line-height: 1.6; margin: 0; }

.ct-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: 1100px;
  margin: 0 auto;
}
.ct-channel {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 22px;
  padding: 28px 24px 26px;
  text-decoration: none;
  color: #0F172A;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
  isolation: isolate;
}
.ct-channel:hover {
  transform: translateY(-6px);
  border-color: hsl(var(--c-hue, 178), 60%, 50%);
  box-shadow: 0 24px 50px hsl(var(--c-hue, 178), 60%, 50%, 0.22);
}
.ct-channel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--c-hue, 178), 75%, 55%), hsl(calc(var(--c-hue, 178) + 30), 70%, 45%));
  border-radius: 22px 22px 0 0;
}
.ct-channel-primary {
  background: linear-gradient(180deg, hsl(var(--c-hue, 178), 70%, 96%) 0%, #fff 70%);
  border-color: hsl(var(--c-hue, 178), 50%, 70%);
}
.ct-channel-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, hsl(var(--c-hue, 178), 75%, 55%), hsl(calc(var(--c-hue, 178) + 30), 65%, 38%));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 8px 22px hsl(var(--c-hue, 178), 60%, 45%, 0.32);
}
.ct-channel-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--c-hue, 178), 50%, 30%);
  background: rgba(255,255,255,0.92);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid hsl(var(--c-hue, 178), 50%, 70%);
}
.ct-channel-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #0F172A;
  margin: 0 0 8px;
}
.ct-channel-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 16px;
}
.ct-channel-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: hsl(var(--c-hue, 178), 55%, 38%);
  transition: gap 0.3s;
}
.ct-channel:hover .ct-channel-cta { gap: 12px; }

/* RDV : Presenter + Calendly */
.ct-rdv {
  padding: clamp(70px, 9vw, 130px) 24px;
  background: linear-gradient(180deg, #FAF8F3 0%, #fff 100%);
}
.ct-rdv-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
@media (max-width: 900px) { .ct-rdv-container { grid-template-columns: 1fr; } }

.ct-presenter {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 24px;
  padding: 30px 26px;
  position: sticky;
  top: 96px;
  box-shadow: 0 4px 18px rgba(15,23,42,0.04);
}
@media (max-width: 900px) { .ct-presenter { position: static; } }

.ct-presenter-orb {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 0 18px;
  isolation: isolate;
}
.ct-presenter-halo {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32,156,154,0.55) 0%, transparent 65%);
  animation: ct-orbHalo 3.2s ease-in-out infinite;
  z-index: -1;
}
.ct-presenter-core {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3DD6D0, #209C9A 60%, #178786);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 28px rgba(32,156,154,0.45), inset 0 2px 6px rgba(255,255,255,0.35), inset 0 -3px 8px rgba(0,0,0,0.2);
}
.ct-presenter-core svg { width: 50%; height: 50%; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25)); }
.ct-presenter-status {
  position: absolute;
  bottom: 4px; right: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #10B981;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(16,185,129,0.4);
}
@keyframes ct-orbHalo {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 0.22; transform: scale(1.35); }
}

.ct-presenter-badge {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b45309;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.ct-presenter-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.ct-presenter-quote {
  font-size: 0.92rem;
  font-style: italic;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 22px;
  padding-left: 14px;
  border-left: 3px solid #209C9A;
}
.ct-program-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0F172A;
  margin-bottom: 10px;
}
.ct-program-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ct-program-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #334155;
}
.ct-program-list svg {
  flex-shrink: 0;
  padding: 3px;
  background: rgba(32,156,154,0.12);
  color: #178786;
  border-radius: 50%;
  margin-top: 1px;
}
.ct-presenter-actions {
  display: flex;
  gap: 8px;
}
.ct-presenter-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  background: #fff;
  border: 1.5px solid rgba(15,23,42,0.1);
  border-radius: 10px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  color: #0F172A;
  text-decoration: none;
  transition: all 0.2s;
}
.ct-presenter-action:hover {
  border-color: #209C9A;
  color: #178786;
  transform: translateY(-1px);
}

/* CALENDLY */
.ct-calendly {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 24px;
  padding: 32px 28px 30px;
}
.ct-calendly-head { text-align: center; margin-bottom: 24px; }
.ct-calendly-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.ct-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ct-step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.ct-step.active .ct-step-num {
  background: linear-gradient(135deg, #ff8a6b 0%, #ff6f5e 45%, #f2553f 100%);
  color: #1A1A1A;
  box-shadow: 0 4px 14px rgba(242,85,63,0.4);
}
.ct-step-txt {
  font-size: 0.76rem;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ct-step.active .ct-step-txt { color: #178786; }
.ct-step-line {
  width: 40px; height: 2px;
  background: #E2E8F0;
  border-radius: 100px;
  margin-bottom: 18px;
}

.ct-calendly-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #FAFBFC;
  min-height: 700px;
  margin-bottom: 20px;
}

.ct-calendly-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #FAF8F3, #fff);
  border: 1px dashed rgba(32,156,154,0.2);
  border-radius: 14px;
}
.ct-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
}
.ct-trust-item svg {
  padding: 3px;
  border-radius: 50%;
  background: rgba(32,156,154,0.12);
  color: #178786;
}

/* TEAM */
.ct-team {
  padding: clamp(70px, 9vw, 130px) 24px;
  background: #fff;
}
.ct-team-container { max-width: 1100px; margin: 0 auto; }
.ct-team-head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); }
.ct-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 2vw, 22px);
}
.ct-team-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 22px;
  padding: 28px 22px 26px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.ct-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px hsl(var(--m-hue, 178), 50%, 50%, 0.18);
}
.ct-team-orb {
  position: relative;
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  isolation: isolate;
}
.ct-team-halo {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(var(--m-hue, 178), 70%, 60%, 0.5) 0%, transparent 65%);
  animation: ct-orbHalo 3.5s ease-in-out infinite;
  z-index: -1;
}
.ct-team-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, hsl(var(--m-hue, 178), 80%, 70%), hsl(var(--m-hue, 178), 75%, 48%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px hsl(var(--m-hue, 178), 60%, 45%, 0.32), inset 0 2px 4px rgba(255,255,255,0.3);
}
.ct-team-card h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: #0F172A;
}
.ct-team-role {
  font-size: 0.76rem;
  font-weight: 700;
  color: hsl(var(--m-hue, 178), 55%, 38%);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* FAQ */
.ct-faq {
  padding: clamp(60px, 8vw, 110px) 24px clamp(80px, 10vw, 140px);
  background: linear-gradient(180deg, #FAFBFC 0%, #fff 100%);
}
.ct-faq-container { max-width: 760px; margin: 0 auto; }
.ct-faq-title { text-align: center; margin-bottom: 32px; }
.ct-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct-faq-item {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ct-faq-item[open] {
  border-color: rgba(32,156,154,0.3);
  box-shadow: 0 4px 14px rgba(32,156,154,0.08);
}
.ct-faq-item summary {
  list-style: none;
  padding: 16px 20px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0F172A;
  cursor: pointer;
  position: relative;
}
.ct-faq-item summary::-webkit-details-marker { display: none; }
.ct-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #209C9A;
  font-size: 1.2rem;
  font-weight: 800;
  transition: transform 0.25s;
}
.ct-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.ct-faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .ct-presenter-halo, .ct-team-halo { animation: none; }
}
