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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
    color: #0f172a;
    background-color: #f3f4f6;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(209, 213, 219, 0.8);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #111827;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #f9fafb;
}

.logo-text {
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #4b5563;
}

.nav-links a {
    position: relative;
    padding-bottom: 4px;
    font-weight: 500;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, #38bdf8, #6366f1);
    transition: width 0.2s ease-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #0f172a;
    overflow: hidden;
}

.hero,
.section {
    scroll-margin-top: 80px;
}

.hero-bg {
    background-image: radial-gradient(circle at top left, #dbeafe 0, transparent 55%), radial-gradient(circle at bottom right, #bae6fd 0, transparent 55%), linear-gradient(to bottom, #eff6ff, #e0f2fe);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.85));
}

.hero-content {
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 680px;
}

.eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #a5b4fc;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 44px);
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 16px;
    max-width: 520px;
    color: #4b5563;
    margin-bottom: 24px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.15s ease-out, color 0.15s ease-out, transform 0.1s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.btn.primary {
    background: linear-gradient(to right, #38bdf8, #6366f1);
    color: #0b1120;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.35);
}

.btn.ghost {
    border-color: rgba(148, 163, 184, 0.8);
    color: #374151;
    background-color: #ffffff;
}

.btn.ghost:hover {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.btn.full {
    width: 100%;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #4b5563;
}

.hero-meta span {
    padding: 4px 10px;
    border-radius: 999px;
    background: #e5f0ff;
    border: 1px solid rgba(191, 219, 254, 0.9);
}

.section {
    padding: 80px 0;
    background-color: #f9fafb;
    color: #111827;
}

.section:nth-of-type(even) {
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 26px;
    margin-bottom: 8px;
}

.section-header p {
    color: #6b7280;
}

.grid {
    display: grid;
    gap: 20px;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 20px 20px 18px;
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.card ul {
    list-style: none;
    font-size: 14px;
    color: #4b5563;
}

.card ul li + li {
    margin-top: 4px;
}

.parallax-section {
    position: relative;
    color: #111827;
    overflow: hidden;
}

.parallax-bg {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    will-change: transform;
    pointer-events: none;
}

.hero-bg {
    background-attachment: fixed;
}

.mid-bg {
    background-image: linear-gradient(135deg, #dbeafe, #e0f2fe, #ede9fe);
}

.students-bg {
    background-image: radial-gradient(circle at 0% 0%, #fee2e2 0, transparent 55%), radial-gradient(circle at 100% 100%, #ffedd5 0, transparent 55%), linear-gradient(135deg, #fef3c7, #e0f2fe);
    background-attachment: fixed;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.96));
    z-index: -1;
}

.parallax-inner {
    position: relative;
    padding: 80px 16px;
    text-align: center;
}

.students-inner {
    max-width: 760px;
}

.student-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 22px;
}

.student-pill {
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(251, 191, 36, 0.6);
    font-size: 13px;
    color: #92400e;
}

.students-cta {
    margin-top: 4px;
}

.parallax-inner h2 {
    font-size: 26px;
    margin-bottom: 8px;
}

.parallax-inner p {
    color: #4b5563;
}

.process-section {
    background: radial-gradient(circle at top, #eff6ff, #ffffff);
}

.process-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-card {
    position: relative;
}

.process-card .step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.8);
    font-size: 12px;
    margin-bottom: 10px;
    color: #a5b4fc;
}

.about-section {
    background-color: #ffffff;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: flex-start;
}

.about-text h2 {
    font-size: 26px;
    margin-bottom: 8px;
}

.about-text p {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 10px;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 14px;
}

.metric {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.label {
    display: block;
    font-size: 13px;
    color: #6b7280;
}

.about-sidecard h3 {
    margin-bottom: 10px;
}

.about-sidecard ul {
    list-style: none;
    font-size: 14px;
    color: #4b5563;
}

.about-sidecard ul li + li {
    margin-top: 6px;
}

.quote-section {
    background: radial-gradient(circle at top, #eff6ff, #f9fafb);
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
    gap: 28px;
    align-items: flex-start;
}

.quote-intro h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.quote-intro p {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 10px;
}

.quote-list {
    list-style: none;
    font-size: 14px;
    color: #4b5563;
}

.quote-list li + li {
    margin-top: 6px;
}

.quote-form {
    padding: 22px 20px 20px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field {
    margin-bottom: 12px;
}

.field label {
    display: block;
    font-size: 13px;
    color: #374151;
    margin-bottom: 4px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid rgba(209, 213, 219, 0.9);
    background-color: #ffffff;
    color: #111827;
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out, background-color 0.15s ease-out;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
    background-color: #ffffff;
}

.field textarea {
    resize: vertical;
}

.alert {
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
}

.alert.success {
    background-color: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.6);
    color: #bbf7d0;
}

.alert.error {
    background-color: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.8);
    color: #fecaca;
}

.form-footnote {
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
}

.footer {
    border-top: 1px solid rgba(209, 213, 219, 0.9);
    background-color: #ffffff;
    color: #6b7280;
    padding: 18px 0 22px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy {
    color: #6b7280;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .quote-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-inner {
        column-gap: 16px;
    }

    .nav-links {
        gap: 12px;
        font-size: 13px;
    }

    .hero-content {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .field-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .nav-inner {
        justify-content: space-between;
    }

    .nav-links {
        font-size: 12px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .section {
        padding: 64px 0;
    }
}
