/* File: /assets/css/educators.css */

:root {
    --bg: #f7f8fb;
    --surface: #ffffff;
    --surface-2: #f1f4f9;
    --text: #162033;
    --muted: #5d6b84;
    --line: #d9e1ee;
    --primary: #12284a;
    --primary-2: #1e3a66;
    --accent: #c7a95e;
    --dark: #0e1728;
    --success: #eef7f2;
    --radius: 18px;
    --shadow: 0 18px 50px rgba(15, 31, 61, 0.08);
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    background: var(--dark);
    color: #d8e3f4;
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    align-items: center;
}

.topbar a {
    color: #ffffff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 248, 251, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(217, 225, 238, 0.85);
}

.site-header img {
    max-width: 100%;
    height: auto;
}

.site-header .brand-logo img {
    height: 58px !important;
    max-height: 58px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 240px;
    flex: 0 0 auto;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    max-width: 260px;
}

.site-logo {
    display: block;
    height: 58px !important;
    max-height: 58px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain;
}

@media (max-width: 700px) {
    .site-logo {
        height: 48px !important;
        max-height: 48px !important;
        max-width: 220px !important;
    }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    color: var(--muted);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 2px;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 250px;
    justify-content: flex-end;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border-color: var(--line);
    color: var(--primary);
}

.btn-light {
    background: #fff;
    color: var(--primary);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.page-hero,
.hero {
    padding: 86px 0 40px;
}

.hero-grid,
.two-col {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-2);
    font-weight: 800;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.content-block h2,
.cta-band h2 {
    margin: 0 0 16px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.hero h1 {
    font-size: clamp(40px, 6vw, 66px);
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 52px);
}

.hero p.lead,
.page-hero p.lead,
.content-block p.lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 760px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.hero-card,
.image-card,
.quote-card,
.card,
.stat-card,
.feature-card {
    background: var(--surface);
    border: 1px solid rgba(217, 225, 238, 0.8);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap img,
.image-card img {
    border-radius: var(--radius);
    width: 100%;
    object-fit: cover;
}

.hero-image-wrap img {
    min-height: 520px;
}

.floating-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    background: rgba(14, 23, 40, 0.88);
    color: #fff;
    padding: 16px 18px;
    border-radius: 16px;
    max-width: 290px;
    box-shadow: var(--shadow);
}

.floating-badge strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.section {
    padding: 40px 0;
}

.section-lg {
    padding: 70px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading p {
    color: var(--muted);
    margin: 0;
}

.stats-grid,
.card-grid,
.feature-grid,
.logo-strip {
    display: grid;
    gap: 20px;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stat-card {
    padding: 24px;
}

.stat-card strong {
    display: block;
    font-size: 28px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card span {
    color: var(--muted);
    font-weight: 600;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    padding: 28px;
}

.feature-card h3,
.card h3,
.content-block h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    color: var(--dark);
}

.feature-card p,
.card p,
.content-block p,
.quote-card p,
.list-check li,
.copy-list li {
    color: var(--muted);
}

.card-grid {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    padding: 30px;
}

.card .price {
    margin: 14px 0 18px;
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
}

.card .price small {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}

.copy-list,
.list-check {
    margin: 16px 0 22px;
    padding-left: 18px;
}

.copy-list li,
.list-check li {
    margin-bottom: 8px;
}

.highlight-panel {
    background: linear-gradient(135deg, #eff4fb, #f8fbff);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
}

.quote-card {
    padding: 28px;
}

.quote-card blockquote {
    margin: 0;
    font-size: 22px;
    line-height: 1.5;
    color: var(--dark);
    font-weight: 700;
}

.quote-card cite {
    display: block;
    margin-top: 14px;
    font-style: normal;
    color: var(--muted);
}

.image-card {
    overflow: hidden;
}

.image-card img {
    min-height: 440px;
}

.split-band {
    background: linear-gradient(180deg, rgba(18, 40, 74, 0.03), rgba(18, 40, 74, 0.08));
    border-top: 1px solid rgba(18, 40, 74, 0.08);
    border-bottom: 1px solid rgba(18, 40, 74, 0.08);
}

.muted-box {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
}

.muted-box h3 {
    margin-top: 0;
}

.page-header-simple {
    padding: 68px 0 24px;
}

.page-header-simple p {
    color: var(--muted);
    max-width: 760px;
}

.cta-band {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    margin-top: 40px;
}

.cta-band-inner {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
}

.cta-band h2 {
    color: #fff;
    font-size: clamp(30px, 5vw, 44px);
}

.cta-band p {
    color: rgba(255, 255, 255, 0.86);
    max-width: 700px;
}

.cta-band-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer {
    background: var(--dark);
    color: #d7e0ee;
    padding-top: 58px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 28px;
    padding-bottom: 28px;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    margin-top: 0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d7e0ee;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #afbdd0;
    font-size: 14px;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--primary-2);
}

.note-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--muted);
    font-weight: 600;
    margin-top: 20px;
}

.note-line strong {
    color: var(--primary);
}

/* =========================
   PREMIUM FORM STYLING
   ========================= */

.form-section {
    padding: 30px 0 80px;
}

.form-card {
    background: #ffffff;
    border: 1px solid rgba(217, 225, 238, 0.95);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(15, 31, 61, 0.08);
    padding: 42px;
    max-width: 980px;
    margin: 0 auto;
}

.form-card h3 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.form-card > p {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 17px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.input,
.select,
.textarea {
    width: 100%;
    display: block;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #d7dfeb;
    border-radius: 16px;
    background: #fbfcfe;
    padding: 16px 18px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--text);
    transition: all 0.22s ease;
    box-shadow: inset 0 1px 2px rgba(16, 24, 40, 0.02);
}

.input::placeholder,
.textarea::placeholder {
    color: #8a96ab;
}

.input:hover,
.select:hover,
.textarea:hover {
    border-color: #bcc9dd;
    background: #ffffff;
}

.input:focus,
.select:focus,
.textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--primary-2);
    box-shadow: 0 0 0 5px rgba(30, 58, 102, 0.10);
}

.textarea {
    min-height: 180px;
    resize: vertical;
}

.form-note {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.alert {
    padding: 16px 18px;
    border-radius: 16px;
    margin-bottom: 22px;
    font-weight: 600;
    border: 1px solid transparent;
    font-size: 15px;
}

.alert-success {
    background: #eef8f2;
    color: #16613a;
    border-color: #c8ead4;
}

.alert-error {
    background: #fff2f2;
    color: #8e1f1f;
    border-color: #f0c6c6;
}

.alert div + div {
    margin-top: 6px;
}

.info-list {
    margin: 0;
    padding-left: 20px;
}

.info-list li {
    margin-bottom: 10px;
    color: var(--muted);
}

.contact-block {
    background: linear-gradient(135deg, #eff4fb, #f8fbff);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px;
    height: 100%;
}

.contact-block h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 30px;
    color: var(--dark);
    line-height: 1.2;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 15px;
}

.contact-item a,
.contact-item span {
    color: var(--muted);
    font-size: 16px;
    word-break: break-word;
}

.small-muted {
    color: var(--muted);
    font-size: 14px;
}

.hidden-field {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-card .hero-actions {
    margin-top: 24px;
}

.form-card .hero-actions .btn {
    min-width: 190px;
}

@media (max-width: 1080px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav,
    .header-cta {
        width: 100%;
        justify-content: center;
    }

    .hero-grid,
    .two-col,
    .cta-band-inner,
    .footer-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-wrap img,
    .image-card img {
        min-height: auto;
    }
}

@media (max-width: 900px) {
    .form-card {
        padding: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 700px) {
    .topbar-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero,
    .page-hero {
        padding-top: 56px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .hero-actions,
    .cta-band-actions {
        width: 100%;
    }

    .hero-actions .btn,
    .cta-band-actions .btn {
        width: 100%;
    }

    .site-logo {
        height: 48px;
    }
}

@media (max-width: 640px) {
    .form-card {
        padding: 22px;
        border-radius: 20px;
    }

    .form-card h3 {
        font-size: 24px;
    }

    .input,
    .select,
    .textarea {
        padding: 14px 15px;
        font-size: 15px;
        border-radius: 14px;
    }
}