* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f6f8fb;
    color: #21384a;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

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

img {
    display: block;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(30, 56, 75, 0.08);
    background: #023047;
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}


.brand-logo {
    width: 138px;
    height: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text small {
    color: #ffffff;
    font-size: 12px;
    opacity: 0.88;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 650;
}

.main-nav a {
    transition: color 0.18s ease;
}

.main-nav a:hover {
    color: #85b2dd;
}

.nav-cta {
    padding: 10px 16px;
    border: 1px solid #d7e2ea;
    border-radius: 999px;
    background: #042c40;
}

.mobile-menu {
    position: relative;
    display: none;
}

.mobile-menu summary {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
    list-style: none;
    background: rgba(255, 255, 255, 0.06);
}

.mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-menu summary span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
}

.mobile-menu nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, calc(100vw - 28px));
    overflow: hidden;
    border: 1px solid #d9e4eb;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(10, 41, 61, 0.18);
}

.mobile-menu nav a {
    display: block;
    padding: 14px 18px;
    border-bottom: 1px solid #edf2f5;
    color: #173f5d;
    font-size: 14px;
    font-weight: 750;
}

.mobile-menu nav a:last-child {
    border-bottom: 0;
}

.mobile-menu nav a:active {
    background: #f3f7fa;
}

.preview-bar {
    padding: 9px 20px;
    background: #fff3cf;
    color: #765800;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 78px;
    background:
        linear-gradient(135deg, #eef7ff 0%, #ffffff 52%, #fff7e8 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

.hero-glow-one {
    width: 380px;
    height: 380px;
    top: -190px;
    right: 10%;
    background: rgba(28, 115, 190, 0.10);
}

.hero-glow-two {
    width: 260px;
    height: 260px;
    bottom: -140px;
    left: 8%;
    background: rgba(247, 165, 35, 0.12);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
    gap: 62px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f63aa;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #f2a321;
}

.hero h1 {
    max-width: 820px;
    margin: 18px 0 20px;
    color: #173a58;
    font-size: clamp(42px, 5.3vw, 68px);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.hero h1 span {
    color: #0e67ae;
}

.hero-lead {
    max-width: 720px;
    margin: 0;
    color: #5c7183;
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, #116ab2, #0e578f);
    color: #fff;
    box-shadow: 0 12px 30px rgba(15, 94, 160, 0.22);
}

.button-primary:hover {
    box-shadow: 0 16px 34px rgba(15, 94, 160, 0.28);
}

.button-secondary {
    border: 1px solid #d8e3ec;
    background: rgba(255, 255, 255, 0.78);
    color: #244760;
}

.button-light {
    background: #fff;
    color: #174364;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
}

.hero-proof div {
    min-height: 94px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(31, 84, 123, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.hero-proof strong {
    display: block;
    color: #163f5f;
    font-size: 24px;
    line-height: 1;
}

.hero-proof span {
    display: block;
    margin-top: 8px;
    color: #788a98;
    font-size: 12px;
    line-height: 1.35;
}

.hero-card {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 28px;
    background: linear-gradient(145deg, #153f61, #0e5f9e);
    color: #fff;
    box-shadow: 0 26px 60px rgba(17, 62, 96, 0.22);
}

.hero-card::after {
    content: "";
    position: absolute;
    width: 118px;
    height: 118px;
    right: -34px;
    top: -34px;
    border: 22px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.hero-card-label {
    position: relative;
    z-index: 1;
    color: #bfe3ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-card-year {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 74px;
    line-height: 1;
    letter-spacing: -0.055em;
}

.hero-card p {
    position: relative;
    z-index: 1;
    margin: 20px 0;
    color: #d8ecfb;
    font-size: 15px;
}

.hero-card ul {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-card li {
    position: relative;
    padding: 10px 0 10px 27px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #f7fbfe;
    font-size: 14px;
}

.hero-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffbd4a;
    font-weight: 900;
}

.section {
    padding: 45px 0;
}

.section-heading {
    margin-bottom: 34px;
}

.schools-heading {
    width: 100%;
    margin: 0 0 34px;
    text-align: center;
}

.schools-heading-title {
    width: 100%;
    margin: 0;
    color: #0f63aa;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.schools-heading-subtitle {
    width: 100%;
    margin: 6px 0 0;
    color: #708292;
    font-size: 16px;
    text-align: center;
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.section-heading h2,
.rules-card h2,
.final-cta h2 {
    margin: 9px 0 10px;
    color: #183c59;
    /*font-size: clamp(30px, 3vw, 42px);*/
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.section-heading p,
.rules-card p {
    max-width: 680px;
    margin: 0;
    color: #708292;
}

.centered-heading {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.centered-heading .section-kicker {
    justify-content: center;
}


.schools-section {
    background: #f6f8fb;
}

.school-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
    justify-content: center;
    gap: 24px;
}

.school-card {
    overflow: hidden;
    border: 1px solid #dde6ed;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(31, 62, 87, 0.055);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.school-card:hover {
    transform: translateY(-3px);
    border-color: #c9dae7;
    box-shadow: 0 18px 38px rgba(31, 62, 87, 0.10);
}

.school-cover {
    position: relative;
    height: 250px;
    display: block;
    overflow: hidden;
    background: #e8f1f7;
}

.school-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.school-card:hover .school-cover img {
    transform: scale(1.025);
}

.school-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 36, 56, 0.32), transparent 58%);
    pointer-events: none;
}

.school-cover-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #dcecf7, #f4f9fc);
    color: #2f668d;
    font-size: 54px;
    font-weight: 800;
}

.campaign-badge {
    position: absolute;
    z-index: 2;
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #174565;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(7, 32, 48, 0.12);
}

.school-card-body {
    padding: 22px;
}

.school-identity {
    display: flex;
    align-items: center;
    gap: 13px;
}

.school-logo {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #e4ebf0;
    border-radius: 14px;
    background: #fff;
}

.school-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.school-card h3 {
    margin: 0;
    color: #173c59;
    font-size: 20px;
    line-height: 1.2;
}

.school-card h3 a:hover {
    color: #0e64a8;
}

.school-location {
    margin: 5px 0 0;
    color: #7b8b97;
    font-size: 12px;
}

.school-slogan {
    min-height: 42px;
    margin: 16px 0 0;
    color: #607485;
    font-size: 13px;
    font-weight: 600;
}

.school-stats {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 10px;
    margin-top: 18px;
}

.school-stats div {
    padding: 13px 14px;
    border-radius: 14px;
    background: #f5f8fa;
}

.school-stats strong {
    display: block;
    color: #174565;
    font-size: 19px;
    line-height: 1;
}

.school-stats span {
    display: block;
    margin-top: 6px;
    color: #7d8c97;
    font-size: 11px;
}

.school-button {
    min-height: 46px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 13px;
    background: #143f5f;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.school-button span {
    font-size: 19px;
}

.empty-state {
    padding: 48px 28px;
    border: 1px dashed #cbd8e1;
    border-radius: 20px;
    background: #fff;
    text-align: center;
}

.empty-state strong {
    color: #1c4562;
    font-size: 20px;
}

.empty-state p {
    max-width: 650px;
    margin: 9px auto 0;
    color: #7a8b98;
}

.benefits-section {
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.benefit-card {
    position: relative;
    min-height: 164px;
    overflow: hidden;
    padding: 22px 22px 20px;
    border: 1px solid rgba(21, 73, 108, 0.12);
    border-radius: 22px;
    background: #ffffff;
    box-shadow:
        0 12px 30px rgba(19, 61, 91, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0e67ae 0%, #164c72 100%);
}

.benefit-card:hover {
    transform: translateY(-3px);
    border-color: rgba(14, 103, 174, 0.22);
    box-shadow:
        0 18px 38px rgba(19, 61, 91, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.benefit-card:nth-child(1) {
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.benefit-card:nth-child(2) {
    background: linear-gradient(180deg, #ffffff 0%, #f4faf8 100%);
}

.benefit-card:nth-child(3) {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8fc 100%);
}

.benefit-card:nth-child(4) {
    background: linear-gradient(180deg, #ffffff 0%, #f7f6fb 100%);
}

.benefit-card-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.benefit-number {
    min-width: 36px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(14, 103, 174, 0.14);
    border-radius: 10px;
    background: rgba(14, 103, 174, 0.08);
    color: #0e67ae;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.benefit-card h3 {
    margin: 0;
    color: #163f5f;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.benefit-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #667d8e;
    font-size: 13px;
    line-height: 1.55;
}

.how-section {
    background: linear-gradient(180deg, #f0f7fc 0%, #f7fafc 100%);
}




.how-collapse {
    overflow: hidden;
    border: 1px solid #d9e5ed;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(25, 63, 93, 0.06);
}

.how-collapse summary {
    min-height: 142px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 32px;
    cursor: pointer;
    list-style: none;
}

.how-collapse summary::-webkit-details-marker {
    display: none;
}

.how-summary-copy {
    min-width: 0;
}

.how-summary-copy h2 {
    margin: 8px 0 6px;
    color: #183c59;
    /*font-size: clamp(28px, 3vw, 40px);*/
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.how-summary-copy p {
    margin: 0;
    color: #708292;
}

.how-summary-action {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0f62a7;
    font-size: 13px;
    font-weight: 800;
}

.how-summary-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #edf5fb;
    color: #0e67ae;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.how-collapse[open] .how-summary-icon {
    transform: rotate(45deg);
    background: #e4f0f8;
}

.how-collapse[open] .how-summary-label {
    font-size: 0;
}

.how-collapse[open] .how-summary-label::after {
    content: "Fechar etapas";
    font-size: 13px;
}

.how-collapse-content {
    padding: 0 32px 30px;
    border-top: 1px solid #e4ebf0;
}

.how-collapse-content .steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
}

.how-collapse-content .steps li:nth-child(-n + 2) {
    padding-top: 24px;
}

.how-rules-link {
    margin-top: 22px;
}

.text-link {
    display: inline-flex;
    margin-top: 20px;
    color: #0f62a7;
    font-size: 14px;
    font-weight: 800;
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid #dce6ed;
}

.steps li:first-child {
    padding-top: 0;
}

.steps > li > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #fff;
    color: #0f65aa;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 6px 18px rgba(28, 80, 117, 0.08);
}

.steps strong {
    color: #193f5c;
    font-size: 17px;
}

.steps p {
    margin: 5px 0 0;
    color: #718493;
    font-size: 14px;
}

.testimonials-section {
    overflow: hidden;
    background: #ffffff;
}

.testimonials-heading {
    margin-bottom: 30px;
}

.testimonials-heading .section-heading {
    max-width: 700px;
    margin-bottom: 0;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.testimonial-nav {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0 0 2px;
    border: 0;
    border-radius: 50%;
    background: #ff8500;
    color: #ffffff;
    cursor: pointer;
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 7px 16px rgba(255, 133, 0, 0.22);
    transition:
        transform 0.16s ease,
        filter 0.16s ease;
}

.testimonial-nav:hover {
    transform: translateY(-1px);
    filter: brightness(0.96);
}

.testimonials-viewport {
    width: 100%;
    overflow-x: auto;
    padding: 2px 2px 16px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonials-viewport::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 20px;
}

.testimonial-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    min-height: 305px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #dfe8ee;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    box-shadow: 0 12px 30px rgba(20, 62, 91, 0.055);
    scroll-snap-align: start;
}

.testimonial-top {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
}

.testimonial-photo,
.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.testimonial-photo {
    object-fit: cover;
}

.testimonial-avatar {
    display: grid;
    place-items: center;
    background: #e8f2f9;
    color: #135f94;
    font-size: 12px;
    font-weight: 900;
}

.testimonial-person {
    min-width: 0;
}

.testimonial-person strong {
    display: block;
    overflow: hidden;
    color: #173f5d;
    font-size: 14px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.testimonial-person span {
    display: block;
    overflow: hidden;
    margin-top: 3px;
    color: #7b8d9b;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.testimonial-stars {
    display: flex;
    gap: 1px;
    color: #d9e0e5;
    font-size: 12px;
}

.testimonial-stars .active {
    color: #e6a125;
}

.testimonial-card blockquote {
    flex: 1;
    margin: 21px 0;
    padding: 19px 0 0;
    border-top: 1px solid #e6edf2;
    color: #536b7d;
    font-size: 14px;
    line-height: 1.62;
}

.testimonial-school {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding-top: 17px;
    border-top: 1px solid #e6edf2;
}

.testimonial-school img,
.testimonial-school-logo {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 10px;
}

.testimonial-school img {
    border: 1px solid #edf1f4;
    background: #ffffff;
    object-fit: contain;
}

.testimonial-school-logo {
    display: grid;
    place-items: center;
    background: #edf4f8;
    color: #155f92;
    font-size: 10px;
    font-weight: 900;
}

.testimonial-school div {
    min-width: 0;
}

.testimonial-school strong {
    display: block;
    overflow: hidden;
    color: #1d465f;
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.testimonial-school span {
    display: block;
    margin-top: 2px;
    color: #8a99a4;
    font-size: 10px;
}

.testimonials-footer {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.testimonials-footer .text-link {
    margin-top: 0;
}

.rules-section {
    padding-top: 0;
    background: #fff;
}

.rules-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    padding: 42px;
    border-radius: 26px;
    background: #fafcfd;
    color: #fff;
    box-shadow: 0 20px 46px rgba(18, 67, 101, 0.16);
}

.rules-card .section-kicker {
    color: #183c59;
}

.rules-card h2 {
    color: #fff;
}

.rules-card p {
    color: #d7eaf7;
}

.final-cta {
    padding: 70px 0;
    background: #f7fafc;
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.final-cta h2 {
    margin-bottom: 0;
}

.site-footer {
    padding: 32px 0;
    border-top: 1px solid #dde5eb;
    background: #023047;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-inner > div:first-child {
    display: flex;
    flex-direction: column;
}

.footer-inner strong {
    color: #ffffff;
    font-size: 15px;
}

.footer-inner span {
    margin-top: 3px;
    color: #ffffff;
    font-size: 11px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 650;
}

@media (max-width: 1020px) {
    .main-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 620px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-card {
        flex-basis: calc((100% - 20px) / 2);
    }

}

@media (max-width: 760px) {
    body {
        font-size: 15px;
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-logo {
        width: 122px;
    }

    .brand-text small {
        display: none;
    }

    .hero-card {
        display: none;
    }

    .hero {
        padding: 58px 0 54px;
    }

    .hero-grid {
        gap: 36px;
    }

    .hero h1 {
        margin-top: 14px;
        font-size: clamp(39px, 13vw, 56px);
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-proof div {
        min-height: auto;
    }

    .hero-card {
        padding: 27px;
        border-radius: 22px;
    }

    .hero-card-year {
        font-size: 64px;
    }

    .section {
        padding: 62px 0;
    }

    .how-collapse summary {
        min-height: 0;
        align-items: flex-start;
        gap: 18px;
        padding: 22px 20px;
    }

    .how-summary-copy h2 {
        font-size: 28px;
    }

    .how-summary-copy p {
        font-size: 13px;
    }

    .how-summary-label {
        display: none;
    }

    .how-summary-icon {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .how-collapse-content {
        padding: 0 20px 22px;
    }

    .how-collapse-content .steps {
        grid-template-columns: 1fr;
    }

    .how-collapse-content .steps li:nth-child(2) {
        padding-top: 24px;
    }

    .testimonials-heading {
        margin-bottom: 22px;
    }

    .testimonial-card {
        flex-basis: 86%;
        min-height: 0;
        padding: 21px;
    }

    .testimonial-top {
        grid-template-columns: 43px minmax(0, 1fr);
    }

    .testimonial-photo,
    .testimonial-avatar {
        width: 43px;
        height: 43px;
    }

    .testimonial-stars {
        grid-column: 2;
        margin-top: -4px;
    }

    .section-heading-row,
    .rules-card,
    .final-cta-inner,
    .footer-inner {
        align-items: stretch;
        flex-direction: column;
    }

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

    .school-cover {
        height: 250px;
    }

    .benefit-card {
        min-height: 0;
    }

    .rules-card {
        padding: 28px;
    }

    .final-cta {
        padding: 54px 0;
    }

    .footer-links {
        gap: 15px;
    }
}

@media (max-width: 420px) {
    .school-card-body {
        padding: 19px;
    }

    .school-stats {
        grid-template-columns: 1fr;
    }

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