/* ═══════════════════════════════════════════
   sections.css — styles for sections added
   after the existing Hero + Form.
   Uses the same tokens defined in Landing Page.html.
   ═══════════════════════════════════════════ */

/* ── PAGE SECTION SCAFFOLD ───────────────── */
.page-sec {
    padding: 96px 24px;
}

.page-sec.alt { background: var(--pale); }
.page-sec.warm { background: #FEFCFA; }

.sec-in {
    max-width: 1120px;
    margin: 0 auto;
}

.eyebrow-lbl {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 16px;
}
.eyebrow-lbl::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
}
.eyebrow-lbl.on-dark { color: rgba(255, 255, 255, 0.78); }
.eyebrow-lbl.on-dark::before { background: rgba(255, 255, 255, 0.55); }

.sec-h2 {
    font-family: var(--fd);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    color: var(--g900);
    line-height: 1.12;
    letter-spacing: -0.5px;
    text-wrap: balance;
}
.sec-h2 em { font-style: normal; }
.sec-h2.on-dark { color: #fff; }

.sec-sub {
    font-size: 17px;
    color: var(--g600);
    margin-top: 16px;
    line-height: 1.65;
    max-width: 560px;
    text-wrap: pretty;
}
.sec-sub.on-dark { color: rgba(255, 255, 255, 0.85); }

.sec-head-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.sec-head-center .eyebrow-lbl { justify-content: center; }
.sec-head-center .sec-sub { margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
    .page-sec { padding: 64px 20px; }
    .sec-head-center { margin-bottom: 40px; }
}


/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats-bar {
    background: var(--pale);
    border-top: 1px solid rgba(239, 78, 35, 0.1);
    border-bottom: 1px solid rgba(239, 78, 35, 0.1);
    padding: 0 24px;
}
.stats-in {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 100px;
}
.stat-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    text-align: center;
    border-right: 1px solid rgba(239, 78, 35, 0.18);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
    font-family: var(--fd);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 400;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}
.stat-num .star { color: #F6912B; margin-left: 2px; }
.stat-lbl {
    font-size: 12.5px;
    color: var(--g600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
@media (max-width: 768px) {
    .stats-in {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-cell {
        border-right: none;
        border-bottom: 1px solid rgba(239, 78, 35, 0.18);
        padding: 22px 12px;
    }
    .stat-cell:nth-child(2) { border-right: none; }
    .stat-cell:nth-child(1),
    .stat-cell:nth-child(2) { border-right: 1px solid rgba(239, 78, 35, 0.18); }
    .stat-cell:nth-last-child(-n+2) { border-bottom: none; }
}


/* ═══════════════════════════════════════════
   WHY CHOOSE OTOO
   ═══════════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
}

.why-photo-wrap {
    position: relative;
}
.why-photo {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--r-xl);
    background: var(--g100);
    object-fit: cover;
    display: block;
    box-shadow: var(--sh-xl);
}
.why-floating-card {
    position: absolute;
    left: -20px;
    bottom: -24px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(14, 16, 32, 0.12), 0 6px 12px rgba(14, 16, 32, 0.06);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 280px;
}
.why-floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.12);
    color: #16A34A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-floating-txt {
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--g800);
    font-weight: 500;
}
.why-floating-txt b { color: var(--g900); font-weight: 700; display: block; }
@media (max-width: 900px) {
    .why-floating-card { left: 16px; bottom: -22px; }
}

.why-feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}
.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.why-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(239, 78, 35, 0.09);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-feature-body h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--g900);
    margin-bottom: 4px;
}
.why-feature-body p {
    font-size: 14px;
    color: var(--g500);
    line-height: 1.55;
}


/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.steps-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 940px;
    margin: 0 auto;
}
.steps-row::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 0;
    border-top: 2px dashed rgba(239, 78, 35, 0.4);
    z-index: 0;
}

.step-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
}
.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-size: 22px;
    color: var(--brand);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(239, 78, 35, 0.12);
}
.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(239, 78, 35, 0.07);
    color: var(--g700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.step-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.step-body {
    margin-left: auto;
    margin-right: auto;
}
.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--g900);
    margin-bottom: 8px;
}
.step-body {
    font-size: 14.5px;
    color: var(--g500);
    line-height: 1.6;
    max-width: 240px;
}

@media (max-width: 768px) {
    .steps-row {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 48px;
    }
    .steps-row::before {
        top: 32px;
        bottom: 32px;
        left: 32px;
        right: auto;
        width: 0;
        border-top: none;
        border-left: 2px dashed rgba(239, 78, 35, 0.4);
        height: auto;
    }
    .step-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        padding: 0;
    }
    .step-card > .step-stack {
        flex: 1;
        padding-top: 4px;
        align-items: flex-start;
    }
    .step-circle { margin-bottom: 0; flex-shrink: 0; }
    .step-icon { display: none; }
    .step-body { max-width: 100%; }
}


/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-section {
    overflow: hidden;
}
.testimonials-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}
.testimonials-head-left { max-width: 560px; }

.testimonials-viewport {
    overflow: hidden;
    margin: 0 -24px;
    padding: 12px 24px 24px;
}
.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 4px 12px;
    will-change: scroll-position;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.t-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-sm);
    padding: 64px 28px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.t-card::before {
    content: '\201C';
    position: absolute;
    top: 18px;
    left: 18px;
    font-family: var(--fd);
    font-size: 80px;
    line-height: 1;
    color: var(--brand);
    opacity: 0.92;
}
.t-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    margin-top: 8px;
}
.t-stars svg { width: 16px; height: 16px; color: #F6912B; }
.t-quote {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-style: normal;
    font-size: 16px;
    line-height: 1.55;
    color: var(--g800);
    margin-bottom: 22px;
    flex: 1;
}
.t-divider {
    height: 1px;
    background: var(--g200);
    margin-bottom: 18px;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--g200);
    object-fit: cover;
    flex-shrink: 0;
}
.t-author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--g900);
    margin-bottom: 2px;
}
.t-author-meta {
    font-size: 12.5px;
    color: var(--g500);
    display: flex;
    align-items: center;
    gap: 6px;
}
.t-author-pill {
    background: rgba(239, 78, 35, 0.1);
    color: var(--brand);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 2px 8px;
    border-radius: 999px;
}

.t-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
}
.t-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--g200);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s, background 0.15s;
}
.t-nav-btn:hover {
    border-color: var(--brand);
    background: var(--pale);
}
.t-nav-btn:active { transform: scale(0.96); }
.t-nav-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.t-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}
.t-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--g300);
    transition: width 0.25s, background 0.25s;
    cursor: pointer;
    border: none;
    padding: 0;
}
.t-dot.active {
    width: 24px;
    background: var(--brand);
}

@media (max-width: 768px) {
    .testimonials-head { flex-direction: column; align-items: flex-start; gap: 20px; }
    .t-card { flex: 0 0 86%; }
    .t-controls .t-nav-btn { display: none; }
}


/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: flex-start;
}
@media (max-width: 900px) {
    .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}

.faq-side {
    position: sticky;
    top: 90px;
}
.faq-call {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--g600);
}
.faq-call a {
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(239, 78, 35, 0.3);
}
.faq-call a:hover { border-color: var(--brand); }

.faq-list { list-style: none; }
.faq-item {
    border-top: 1px solid var(--g200);
}
.faq-item:last-child { border-bottom: 1px solid var(--g200); }

.faq-summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 8px 22px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--g900);
    transition: color 0.15s;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: var(--brand); }
.faq-summary .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--g200);
    color: var(--g600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, border-color 0.15s, background 0.15s, color 0.15s;
}
.faq-summary:hover .faq-icon {
    border-color: var(--brand);
    color: var(--brand);
}
.faq-item[open] .faq-summary {
    color: var(--brand);
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}
.faq-answer {
    padding: 0 8px 24px 4px;
    font-size: 15px;
    color: var(--g600);
    line-height: 1.7;
    max-width: 560px;
}


/* ═══════════════════════════════════════════
   TEACH WITH OTOO — secondary CTA
   ═══════════════════════════════════════════ */
.teach-band {
    background: var(--grad);
    padding: 96px 24px;
    position: relative;
    overflow: hidden;
}
.teach-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}
.teach-band > .deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}
.teach-band > .deco-a {
    width: 380px; height: 380px;
    top: -140px; right: -100px;
}
.teach-band > .deco-b {
    width: 240px; height: 240px;
    bottom: -90px; left: -60px;
}

.teach-in {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    text-align: center;
    justify-items: center;
}
.teach-in .eyebrow-lbl { justify-content: center; }
.teach-in .sec-sub { margin-left: auto; margin-right: auto; }
.teach-in .teach-actions { justify-content: center; }
@media (max-width: 900px) {
    .teach-band { padding: 64px 20px; }
    .teach-in { gap: 40px; }
}

.teach-copy .sec-h2 { color: #fff; }
.teach-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--brand);
    font-family: var(--fb);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 26px;
    border: none;
    border-radius: var(--r-md);
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(14, 16, 32, 0.12);
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(14, 16, 32, 0.18);
}
.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-family: var(--fb);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--r-md);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.teach-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--r-xl);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.teach-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.teach-stat + .teach-stat { padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.22); }
.teach-stat-num {
    font-family: var(--fd);
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.3px;
}
.teach-stat-lbl {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}


/* ═══════════════════════════════════════════
   FOOTER — full
   ═══════════════════════════════════════════ */
.ftr {
    background: #0E1020;
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 24px 28px;
}
.ftr-in {
    max-width: 1120px;
    margin: 0 auto;
}
.ftr-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 40px;
}
@media (max-width: 900px) {
    .ftr-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
    .ftr-top { grid-template-columns: 1fr; gap: 28px; }
}

.ftr-brand .ftr-logo {
    height: 36px;
    width: auto;
    display: block;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}
.ftr-tag {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 320px;
}
.ftr-contact {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.9;
    margin-bottom: 18px;
}
.ftr-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
}
.ftr-contact a:hover { color: var(--brand-2); }
.ftr-socials {
    display: flex;
    gap: 10px;
}
.ftr-socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.ftr-socials a:hover {
    border-color: var(--brand-2);
    color: var(--brand-2);
    background: rgba(246, 145, 43, 0.08);
}

.ftr-col h5 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 18px;
}
.ftr-col ul { list-style: none; }
.ftr-col li {
    margin-bottom: 12px;
}
.ftr-col a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.15s;
}
.ftr-col a:hover { color: var(--brand-2); }

.ftr-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0;
}
.ftr-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.ftr-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}
.ftr-legal {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.ftr-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
}
.ftr-legal a:hover { color: var(--brand-2); }
