/* =====================================================
   CLUB ONE
   MAIN STYLESHEET
===================================================== */


/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {

    --green-950: #062419;
    --green-900: #083522;
    --green-800: #0b452c;
    --green-700: #105c3b;
    --green-600: #177449;

    --orange-600: #ef6c00;
    --orange-500: #f47a08;
    --orange-400: #ff941f;
    --orange-light: #fff1df;

    --cream: #fffaf2;
    --cream-dark: #f7efe3;

    --white: #ffffff;

    --text: #13221b;
    --muted: #69756f;

    --border: rgba(13, 61, 39, 0.12);

    --shadow:
        0 20px 60px rgba(6, 36, 25, 0.10);

    --shadow-large:
        0 35px 90px rgba(6, 36, 25, 0.16);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --container: 1180px;

    --transition:
        0.35s cubic-bezier(.2,.8,.2,1);

}


/* =====================================================
   RESET
===================================================== */

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


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        "DM Sans",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}


img {

    display: block;

    max-width: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input {

    font: inherit;

}


button {

    cursor: pointer;

}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(255,255,255,0.88);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid rgba(6,36,25,0.06);

    transition:
        var(--transition);

}


.site-header.scrolled {

    box-shadow:
        0 8px 35px rgba(6,36,25,0.08);

}


.nav-container {

    height: 84px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =====================================================
   BRAND
===================================================== */

.brand {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

}


.brand-mark {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            var(--orange-500),
            var(--orange-400)
        );

    position: relative;

}


.brand-ring {

    width: 23px;

    height: 23px;

    border: 5px solid var(--white);

    border-left-color:
        rgba(255,255,255,0.25);

    border-radius: 50%;

}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.brand-text strong {

    font-family:
        "Manrope",
        sans-serif;

    font-size: 19px;

    font-weight: 800;

    letter-spacing: -0.5px;

    color: var(--green-900);

}


.brand-text strong span {

    color: var(--orange-500);

}


.brand-text small {

    font-size: 8px;

    margin-top: 5px;

    color: var(--muted);

    letter-spacing: .2px;

}


/* =====================================================
   DESKTOP NAV
===================================================== */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 28px;

}


.desktop-nav a {

    font-size: 14px;

    font-weight: 600;

    color: #33463c;

    position: relative;

    transition: var(--transition);

}


.desktop-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background: var(--orange-500);

    transition: var(--transition);

}


.desktop-nav a:hover {

    color: var(--green-800);

}


.desktop-nav a:hover::after {

    width: 100%;

}


/* =====================================================
   NAV ACTIONS
===================================================== */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 15px;

}


.nav-cta {

    background:
        var(--green-900);

    color: white;

    padding: 12px 18px;

    border-radius: 100px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);

}


.nav-cta:hover {

    background:
        var(--orange-500);

    transform: translateY(-2px);

}


.menu-toggle {

    display: none;

    width: 44px;

    height: 44px;

    border: none;

    background: transparent;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

}


.menu-toggle span {

    width: 24px;

    height: 2px;

    background: var(--green-900);

    transition: var(--transition);

}


/* =====================================================
   MOBILE NAV
===================================================== */

.mobile-nav {

    display: none;

    flex-direction: column;

    gap: 5px;

    padding: 15px 20px 25px;

    background: white;

    border-top:
        1px solid var(--border);

}


.mobile-nav a {

    padding: 14px;

    border-radius: 10px;

    font-weight: 600;

}


.mobile-nav a:hover {

    background: var(--cream-dark);

}


.mobile-nav.active {

    display: flex;

}


.mobile-nav-cta {

    background: var(--orange-500);

    color: white !important;

    text-align: center;

    margin-top: 8px;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 760px;

    padding-top: 84px;

    background:
        linear-gradient(
            120deg,
            #fdfaf4 0%,
            #fff7e9 48%,
            #f4efe4 100%
        );

    position: relative;

    overflow: hidden;

}


.hero-background {

    position: absolute;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    right: -220px;

    top: 80px;

    background:
        radial-gradient(
            circle,
            rgba(244,122,8,0.13),
            transparent 68%
        );

}


.hero-grid {

    min-height: 676px;

    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    align-items: center;

    gap: 60px;

    position: relative;

    z-index: 2;

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 7px 12px;

    background:
        rgba(11,69,44,0.07);

    border-radius: 100px;

    color: var(--green-800);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.1px;

}


.eyebrow-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--orange-500);

}


.hero h1 {

    margin-top: 25px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(52px, 6vw, 82px);

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 800;

    color: var(--green-950);

}


.hero h1 span {

    display: block;

    color: var(--orange-500);

}


.hero-description {

    max-width: 560px;

    margin-top: 26px;

    color: #647169;

    font-size: 17px;

    line-height: 1.8;

}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 35px;

    flex-wrap: wrap;

}


/* =====================================================
   BUTTONS
===================================================== */

.btn {

    min-height: 52px;

    padding:
        0 21px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    border-radius: 100px;

    font-size: 14px;

    font-weight: 800;

    transition: var(--transition);

}


.btn i {

    transition: var(--transition);

}


.btn:hover i {

    transform: translateX(4px);

}


.btn-primary {

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--orange-600),
            var(--orange-400)
        );

    box-shadow:
        0 12px 25px rgba(239,108,0,0.22);

}


.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(239,108,0,0.28);

}


.btn-outline {

    border:
        1px solid rgba(11,69,44,.22);

    color: var(--green-900);

    background: rgba(255,255,255,.65);

}


.btn-outline:hover {

    background: white;

    transform: translateY(-3px);

}


.btn-dark {

    background: var(--green-900);

    color: white;

}


.btn-dark:hover {

    background: var(--orange-500);

    transform: translateY(-3px);

}


.btn-white {

    background: white;

    color: var(--green-900);

}


.btn-white:hover {

    transform: translateY(-3px);

}


.btn.full {

    width: 100%;

}


/* =====================================================
   HERO TRUST
===================================================== */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 42px;

}


.trust-item {

    display: flex;

    flex-direction: column;

}


.trust-item strong {

    font-family:
        "Manrope",
        sans-serif;

    font-size: 20px;

    font-weight: 800;

    color: var(--green-900);

}


.trust-item span {

    font-size: 10px;

    color: #77827d;

    margin-top: 2px;

}


.trust-divider {

    height: 35px;

    width: 1px;

    background:
        rgba(11,69,44,.16);

}


/* =====================================================
   HERO IMAGE
===================================================== */

.hero-image-wrapper {

    position: relative;

    max-width: 610px;

    margin-left: auto;

}


.hero-image {

    width: 100%;

    height: 600px;

    object-fit: cover;

    border-radius:
        45% 45% 25px 25px;

    box-shadow:
        var(--shadow-large);

}


.hero-image-wrapper::after {

    content: "";

    position: absolute;

    inset: 18px -18px -18px 18px;

    border:
        1px solid rgba(239,108,0,.18);

    border-radius:
        45% 45% 25px 25px;

    z-index: -1;

}


/* =====================================================
   FLOATING CARDS
===================================================== */

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    background: rgba(255,255,255,.96);

    padding: 13px 16px;

    border-radius: 16px;

    box-shadow:
        0 18px 45px rgba(6,36,25,.14);

    backdrop-filter:
        blur(10px);

}


.floating-card strong {

    display: block;

    color: var(--green-900);

    font-size: 15px;

}


.floating-card span {

    display: block;

    color: var(--muted);

    font-size: 10px;

}


.floating-icon {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        #e6f4ec;

    color: var(--green-700);

}


.floating-icon.orange {

    background:
        var(--orange-light);

    color: var(--orange-600);

}


.card-one {

    left: -30px;

    top: 22%;

}


.card-two {

    right: -30px;

    bottom: 16%;

}


/* =====================================================
   SECTION
===================================================== */

.section {

    padding:
        120px 0;

}


.section-grid {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 85px;

    align-items: center;

}


.section-image {

    position: relative;

}


.section-image img {

    width: 100%;

    height: 530px;

    object-fit: cover;

    border-radius:
        28px;

    box-shadow: var(--shadow);

}


.image-badge {

    position: absolute;

    left: 25px;

    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px 20px;

    border-radius: 15px;

    background: white;

    box-shadow:
        0 15px 40px rgba(6,36,25,.15);

}


.image-badge i {

    color: var(--orange-500);

    font-size: 21px;

}


.image-badge span {

    font-size: 11px;

    line-height: 1.3;

    color: var(--muted);

}


.image-badge strong {

    color: var(--green-900);

}


.section-label {

    display: inline-block;

    color: var(--orange-600);

    font-size: 11px;

    letter-spacing: 1.6px;

    font-weight: 800;

}


.section-label.light {

    color: #ffb15b;

}


.section-content h2,
.section-heading h2,
.rewards-content h2,
.schools-content h2,
.checker-content h2,
.cta-content h2 {

    margin-top: 13px;

    font-family:
        "Manrope",
        sans-serif;

    color: var(--green-950);

    font-size:
        clamp(36px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2.5px;

}


.section-content h2 span,
.section-heading h2 span,
.rewards-content h2 span,
.schools-content h2 span,
.checker-content h2 span,
.cta-content h2 span {

    color: var(--orange-500);

}


.section-content p {

    margin-top: 20px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.85;

}


.check-list {

    margin-top: 30px;

    display: grid;

    gap: 13px;

}


.check-item {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 14px;

    font-weight: 700;

}


.check-icon {

    width: 25px;

    height: 25px;

    display: grid;

    place-items: center;

    background:
        #e5f4ec;

    color: var(--green-700);

    border-radius: 50%;

    font-size: 11px;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 32px;

    color: var(--green-800);

    font-weight: 800;

    font-size: 14px;

}


.text-link i {

    color: var(--orange-500);

    transition: var(--transition);

}


.text-link:hover i {

    transform: translateX(5px);

}


/* =====================================================
   STATS
===================================================== */

.stats-section {

    padding: 55px 0;

    background:
        var(--green-900);

    color: white;

}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.stat {

    text-align: center;

    padding: 20px;

    border-right:
        1px solid rgba(255,255,255,.12);

}


.stat:last-child {

    border-right: none;

}


.stat strong {

    display: block;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 42px;

    font-weight: 800;

    color: var(--orange-400);

    letter-spacing: -2px;

}


.stat span {

    display: block;

    margin-top: 4px;

    font-size: 12px;

    color:
        rgba(255,255,255,.7);

}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {

    max-width: 720px;

    margin-inline: auto;

}


.section-heading.center {

    text-align: center;

}


.section-heading p {

    margin-top: 17px;

    color: var(--muted);

    font-size: 16px;

}


/* =====================================================
   BENEFITS
===================================================== */

.benefits {

    background:
        var(--cream);

}


.benefits-grid {

    margin-top: 60px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.benefit-card {

    position: relative;

    padding: 31px 26px;

    background: white;

    border:
        1px solid rgba(6,36,25,.07);

    border-radius: 22px;

    min-height: 360px;

    display: flex;

    flex-direction: column;

    transition: var(--transition);

    overflow: hidden;

}


.benefit-card::after {

    content: "";

    position: absolute;

    right: -60px;

    bottom: -70px;

    width: 160px;

    height: 160px;

    border-radius: 50%;

    background:
        rgba(244,122,8,.06);

}


.benefit-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

}


.benefit-number {

    position: absolute;

    right: 22px;

    top: 20px;

    font-family:
        "Manrope",
        sans-serif;

    color:
        rgba(11,69,44,.10);

    font-size: 35px;

    font-weight: 800;

}


.benefit-icon {

    width: 56px;

    height: 56px;

    display: grid;

    place-items: center;

    border-radius: 16px;

    background:
        var(--green-900);

    color: var(--orange-400);

    font-size: 20px;

}


.benefit-card h3 {

    margin-top: 26px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 19px;

    color: var(--green-950);

}


.benefit-card p {

    margin-top: 12px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

}


.benefit-card a {

    margin-top: auto;

    padding-top: 25px;

    color: var(--green-800);

    font-size: 12px;

    font-weight: 800;

}


.benefit-card a i {

    margin-left: 6px;

    color: var(--orange-500);

}


/* =====================================================
   SCHOOL CHECKER
===================================================== */

.school-checker {

    padding:
        115px 0;

    background:
        linear-gradient(
            135deg,
            var(--green-950),
            var(--green-800)
        );

    position: relative;

    overflow: hidden;

    color: white;

}


.checker-pattern {

    position: absolute;

    width: 650px;

    height: 650px;

    border-radius: 50%;

    right: -260px;

    top: -200px;

    border:
        1px solid rgba(255,255,255,.06);

    box-shadow:
        0 0 0 80px rgba(255,255,255,.015),
        0 0 0 160px rgba(255,255,255,.01);

}


.checker-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 450px;

    gap: 90px;

    align-items: center;

}


.checker-content h2 {

    color: white;

}


.checker-content p {

    margin-top: 22px;

    max-width: 570px;

    color:
        rgba(255,255,255,.68);

    font-size: 16px;

    line-height: 1.8;

}


.checker-points {

    margin-top: 30px;

    display: grid;

    gap: 14px;

}


.checker-points div {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,.82);

    font-size: 13px;

}


.checker-points i {

    color: var(--orange-400);

}


.checker-box {

    background: white;

    color: var(--text);

    border-radius: 24px;

    padding: 28px;

    box-shadow:
        var(--shadow-large);

}


.checker-box-header {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 22px;

}


.checker-icon {

    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    background: var(--orange-light);

    color: var(--orange-600);

    border-radius: 13px;

}


.checker-box-header strong {

    display: block;

    font-size: 16px;

}


.checker-box-header small {

    display: block;

    color: var(--muted);

    font-size: 11px;

    margin-top: 2px;

}


.input-wrapper {

    position: relative;

}


.input-wrapper i {

    position: absolute;

    left: 17px;

    top: 50%;

    transform: translateY(-50%);

    color: var(--muted);

}


.input-wrapper input {

    width: 100%;

    height: 54px;

    padding:
        0 17px 0 46px;

    border:
        1px solid #dfe6e2;

    border-radius: 13px;

    outline: none;

    color: var(--text);

    transition: var(--transition);

}


.input-wrapper input:focus {

    border-color:
        var(--orange-500);

    box-shadow:
        0 0 0 4px rgba(244,122,8,.08);

}


.checker-box .btn {

    margin-top: 12px;

}


.checker-result {

    display: none;

    margin-top: 16px;

    padding: 16px;

    border-radius: 13px;

    font-size: 13px;

}


.checker-result.show {

    display: block;

}


.checker-result.success {

    background: #e8f7ed;

    color: var(--green-900);

}


.checker-result.warning {

    background: #fff2e4;

    color: #9b4d00;

}


.checker-note {

    display: block;

    text-align: center;

    margin-top: 17px;

    color: #8a958f;

    font-size: 10px;

}


.checker-note a {

    color: var(--orange-600);

    font-weight: 700;

}


/* =====================================================
   HOW IT WORKS
===================================================== */

.how-it-works {

    background: white;

}


.steps {

    margin-top: 65px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 25px;

}


.step {

    text-align: center;

    position: relative;

}


.step-number {

    color:
        rgba(11,69,44,.12);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 14px;

    font-weight: 800;

}


.step-icon {

    width: 75px;

    height: 75px;

    margin: 12px auto 20px;

    display: grid;

    place-items: center;

    border-radius: 23px;

    background:
        var(--cream);

    color: var(--green-800);

    font-size: 25px;

}


.step h3 {

    font-family:
        "Manrope",
        sans-serif;

    color: var(--green-950);

    font-size: 18px;

}


.step p {

    margin-top: 8px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

}


.step-line {

    height: 1px;

    width: 80px;

    border-top:
        1px dashed rgba(11,69,44,.25);

}


/* =====================================================
   REWARDS
===================================================== */

.rewards {

    background:
        var(--cream);

}


.rewards-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;

}


.rewards-content p {

    max-width: 530px;

    margin-top: 22px;

    color: var(--muted);

    line-height: 1.8;

}


.reward-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;

    margin-bottom: 32px;

}


.reward-tags span {

    padding: 8px 12px;

    background: white;

    border-radius: 100px;

    font-size: 11px;

    font-weight: 700;

    color: var(--green-800);

    border:
        1px solid rgba(11,69,44,.08);

}


.rewards-image-wrap {

    position: relative;

}


.rewards-image-wrap img {

    width: 100%;

    height: 480px;

    object-fit: cover;

    border-radius: 28px;

    box-shadow: var(--shadow);

}


.discount-badge {

    position: absolute;

    right: -22px;

    bottom: 30px;

    width: 125px;

    height: 125px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background:
        var(--orange-500);

    color: white;

    box-shadow:
        0 20px 45px rgba(239,108,0,.25);

    text-align: center;

}


.discount-badge strong {

    font-family:
        "Manrope",
        sans-serif;

    font-size: 25px;

}


.discount-badge span {

    font-size: 9px;

    line-height: 1.3;

}


/* =====================================================
   SCHOOLS
===================================================== */

.schools {

    background: white;

}


.schools-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;

}


.schools-visual {

    position: relative;

}


.schools-visual img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 28px;

    box-shadow: var(--shadow);

}


.school-floating-card {

    position: absolute;

    right: -25px;

    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    border-radius: 15px;

    background: white;

    box-shadow:
        0 18px 45px rgba(6,36,25,.14);

}


.school-floating-card > i {

    color: var(--orange-500);

    font-size: 22px;

}


.school-floating-card strong {

    display: block;

    font-size: 12px;

}


.school-floating-card span {

    display: block;

    font-size: 9px;

    color: var(--muted);

}


.school-benefits {

    display: grid;

    gap: 20px;

    margin-top: 28px;

    margin-bottom: 32px;

}


.school-benefit {

    display: flex;

    align-items: flex-start;

    gap: 14px;

}


.mini-icon {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    background:
        var(--cream);

    color: var(--green-800);

    border-radius: 12px;

}


.school-benefit strong {

    display: block;

    font-size: 13px;

    color: var(--green-950);

}


.school-benefit span {

    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;

}


/* =====================================================
   PARTNERS
===================================================== */

.partners {

    background:
        #f8f9f7;

}


.partner-logos {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 15px;

    margin-top: 50px;

}


.partner-logo {

    height: 90px;

    display: grid;

    place-items: center;

    background: white;

    border-radius: 14px;

    color:
        #8a948f;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    border:
        1px solid rgba(6,36,25,.05);

}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {

    padding:
        100px 0;

    background:
        var(--orange-500);

}


.cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

}


.cta-content h2 {

    color: white;

    max-width: 650px;

}


.cta-content h2 span {

    color: #ffe0b8;

}


.cta-content p {

    max-width: 570px;

    margin-top: 18px;

    color:
        rgba(255,255,255,.8);

}


.cta-actions {

    display: flex;

    flex-direction: column;

    gap: 10px;

    min-width: 220px;

}


.whatsapp-btn {

    min-height: 52px;

    padding: 0 20px;

    border-radius: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color: white;

    background:
        rgba(255,255,255,.15);

    border:
        1px solid rgba(255,255,255,.35);

    font-size: 13px;

    font-weight: 800;

    transition: var(--transition);

}


.whatsapp-btn:hover {

    background: white;

    color: var(--green-900);

}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {

    padding:
        75px 0 25px;

    background:
        var(--green-950);

    color: white;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.6fr 1fr 1fr 1fr;

    gap: 50px;

}


.footer-brand p {

    max-width: 320px;

    margin-top: 20px;

    color:
        rgba(255,255,255,.55);

    font-size: 12px;

    line-height: 1.8;

}


.footer-logo .brand-text strong {

    color: white;

}


.footer-logo .brand-text small {

    color:
        rgba(255,255,255,.55);

}


.social-links {

    display: flex;

    gap: 8px;

    margin-top: 22px;

}


.social-links a {

    width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.75);

    font-size: 13px;

    transition: var(--transition);

}


.social-links a:hover {

    background: var(--orange-500);

    color: white;

    transform: translateY(-3px);

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

}


.footer-column h4 {

    margin-bottom: 5px;

    font-size: 12px;

    color: white;

}


.footer-column a,
.footer-column span {

    font-size: 11px;

    color:
        rgba(255,255,255,.55);

    transition: var(--transition);

}


.footer-column a:hover {

    color: var(--orange-400);

}


.footer-bottom {

    margin-top: 55px;

    padding-top: 22px;

    border-top:
        1px solid rgba(255,255,255,.09);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255,255,255,.4);

    font-size: 10px;

}


/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.floating-whatsapp {

    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 900;

    height: 52px;

    padding: 0 18px;

    border-radius: 100px;

    display: flex;

    align-items: center;

    gap: 9px;

    background:
        #19a85a;

    color: white;

    box-shadow:
        0 12px 30px rgba(25,168,90,.28);

    font-size: 12px;

    font-weight: 800;

    transition: var(--transition);

}


.floating-whatsapp:hover {

    transform: translateY(-4px);

}


.floating-whatsapp i {

    font-size: 20px;

}


/* =====================================================
   REVEAL ANIMATIONS
===================================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.8,.2,1);

}


.reveal.active {

    opacity: 1;

    transform:
        translateY(0);

}


.reveal-delay {

    transition-delay: .15s;

}


/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media (max-width: 1050px) {

    .desktop-nav {

        gap: 17px;

    }


    .desktop-nav a {

        font-size: 12px;

    }


    .nav-cta {

        font-size: 11px;

        padding: 11px 14px;

    }


    .hero-grid {

        gap: 30px;

    }


    .hero h1 {

        font-size: 60px;

    }


    .benefits-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .checker-grid {

        gap: 45px;

    }


    .partner-logos {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


/* =====================================================
   RESPONSIVE — MOBILE
===================================================== */

@media (max-width: 760px) {

    .container {

        width:
            min(
                calc(100% - 30px),
                var(--container)
            );

    }


    .site-header {

        position: fixed;

    }


    .nav-container {

        height: 72px;

    }


    .desktop-nav,
    .nav-cta {

        display: none;

    }


    .menu-toggle {

        display: flex;

    }


    .hero {

        padding-top: 72px;

        min-height: auto;

    }


    .hero-grid {

        grid-template-columns: 1fr;

        padding:
            65px 0 80px;

        gap: 50px;

    }


    .hero h1 {

        font-size:
            clamp(48px, 15vw, 65px);

        letter-spacing: -3px;

    }


    .hero-description {

        font-size: 15px;

    }


    .hero-trust {

        gap: 13px;

        justify-content: space-between;

    }


    .trust-item strong {

        font-size: 17px;

    }


    .trust-item span {

        font-size: 8px;

    }


    .hero-image {

        height: 450px;

    }


    .card-one {

        left: -5px;

    }


    .card-two {

        right: -5px;

    }


    .floating-card {

        padding: 10px 12px;

    }


    .floating-icon {

        width: 32px;

        height: 32px;

    }


    .section {

        padding:
            80px 0;

    }


    .section-grid,
    .rewards-grid,
    .schools-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .section-image img,
    .schools-visual img {

        height: 420px;

    }


    .section-content h2,
    .section-heading h2,
    .rewards-content h2,
    .schools-content h2,
    .checker-content h2,
    .cta-content h2 {

        font-size: 38px;

        letter-spacing: -1.8px;

    }


    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .stat {

        border-right: none;

        border-bottom:
            1px solid rgba(255,255,255,.12);

        padding: 24px 10px;

    }


    .stat:nth-child(odd) {

        border-right:
            1px solid rgba(255,255,255,.12);

    }


    .benefits-grid {

        grid-template-columns: 1fr;

        margin-top: 40px;

    }


    .benefit-card {

        min-height: 300px;

    }


    .school-checker {

        padding: 80px 0;

    }


    .checker-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .checker-box {

        padding: 22px;

    }


    .steps {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .step-line {

        width: 1px;

        height: 40px;

        margin: auto;

    }


    .rewards-image-wrap img {

        height: 390px;

    }


    .discount-badge {

        right: 10px;

        width: 105px;

        height: 105px;

    }


    .school-floating-card {

        right: 10px;

    }


    .partner-logos {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }


    .cta-actions {

        width: 100%;

    }


    .cta-actions .btn,
    .cta-actions .whatsapp-btn {

        width: 100%;

    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 40px 25px;

    }


    .footer-brand {

        grid-column: 1 / -1;

    }


    .footer-bottom {

        flex-direction: column;

    }


    .floating-whatsapp {

        right: 14px;

        bottom: 14px;

        height: 48px;

    }

}


/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media (max-width: 420px) {

    .hero-trust {

        gap: 8px;

    }


    .trust-divider {

        height: 30px;

    }


    .trust-item strong {

        font-size: 15px;

    }


    .trust-item span {

        font-size: 7px;

    }


    .hero-image {

        height: 390px;

    }


    .floating-card span {

        font-size: 8px;

    }


    .floating-card strong {

        font-size: 13px;

    }


    .partner-logos {

        grid-template-columns: 1fr 1fr;

    }

}


/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }


    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;

    }

}