/* ============================================================
   Ledger — free finance / mobile-banking template · uiCookies
   Palette : deep pine evergreen + ledger gold + crisp mint
   Fonts   : Bricolage Grotesque (display) / Hanken Grotesk (body)
             DM Mono (ledger figures)
   ============================================================ */

:root {
  /* brand */
  --ink:       #071c17;   /* near-black pine, dark sections */
  --pine:      #0c3b2e;   /* deep evergreen */
  --pine-2:    #0f4a39;   /* lifted evergreen */
  --green:     #12775b;   /* mid brand green */
  --mint:      #37d6a6;   /* crisp data accent */
  --mint-soft: #c9f2e4;
  --gold:      #f2b84b;   /* ledger gold accent */
  --gold-deep: #d99a24;

  /* neutrals with a faint green bias */
  --paper:     #f5f7f4;   /* off-white background */
  --paper-2:   #eef2ec;   /* alt band */
  --card:      #ffffff;
  --line:      #dde5df;   /* hairlines */
  --ink-text:  #10241d;   /* body text on light */
  --muted:     #566b62;   /* secondary text */
  --muted-2:   #7d8f87;

  /* on-dark text */
  --on-dark:      #eaf3ee;
  --on-dark-mut:  #9fc0b2;

  --radius:   18px;
  --radius-sm:12px;
  --radius-lg:26px;
  --shadow-sm: 0 2px 8px rgba(7,28,23,.06);
  --shadow:    0 18px 40px -20px rgba(7,28,23,.30);
  --shadow-lg: 0 40px 80px -30px rgba(7,28,23,.45);

  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-display: "Bricolage Grotesque", Georgia, serif;
  --ff-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --ff-mono: "DM Mono", ui-monospace, "SFMono-Regular", monospace;
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink-text);
}

p { margin: 0; }
img { max-width: 100%; display: block; height: auto; }
a { color: var(--green); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--pine); }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--pine); color: #fff; padding: 10px 18px;
  border-radius: 0 0 12px 12px; font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--mint); }

.section { padding: clamp(64px, 9vw, 60px) 0; }

.section-head { max-width: 660px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-lead { color: var(--muted); font-size: 1.1rem; margin-top: 18px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600; font-size: 1rem;
  padding: 13px 26px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  white-space: nowrap; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--gold); color: #241a05; box-shadow: 0 12px 24px -12px rgba(217,154,36,.65); }
.btn-gold:hover { background: #ffca63; color: #241a05; }

.btn-outline { background: transparent; border-color: var(--line); color: var(--ink-text); }
.btn-outline:hover { border-color: var(--pine); color: var(--pine); background: rgba(18,119,91,.06); }

.btn-block { display: flex; width: 100%; }

.link-quiet { color: var(--on-dark); font-weight: 500; }
.link-quiet:hover { color: #fff; }

/* store buttons (app store / play) */
.store-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: var(--on-dark);
  padding: 10px 20px 10px 18px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .18s var(--ease), border-color .18s var(--ease);
}
.store-btn:hover { transform: translateY(-2px); color: #fff; border-color: rgba(55,214,166,.5); }
.store-btn span { display: flex; flex-direction: column; line-height: 1.1; font-weight: 700; font-size: 1.05rem; }
.store-btn small { font-weight: 500; font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; opacity: .75; }
.store-btn svg { flex: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,30,24,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.site-header.is-scrolled { background: rgba(7,25,20,.94); box-shadow: 0 10px 30px -18px rgba(0,0,0,.7); }

.nav-bar { display: flex; align-items: center; gap: 24px; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--mint); }
.brand__word { font-family: var(--ff-display); font-weight: 800; font-size: 1.4rem; color: var(--on-dark); letter-spacing: -.03em; }
.brand__mark { display: inline-flex; }

.nav-menu { display: contents; }
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: 12px; }
.nav-links a {
  color: var(--on-dark-mut); font-weight: 500; font-size: .96rem;
  padding: 8px 14px; border-radius: 10px;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }

.nav-cta { display: flex; align-items: center; gap: 18px; margin-left: auto; }

.nav-toggle {
  display: none; margin-left: auto;
  flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 0 auto; background: var(--on-dark); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;

    background:
        /* Mint glow behind dashboard */
        radial-gradient(
            circle at 82% 35%,
            rgba(55, 214, 166, 0.25) 0%,
            rgba(55, 214, 166, 0.08) 25%,
            transparent 52%
        ),

        /* Soft blue glow */
        radial-gradient(
            circle at 12% 85%,
            rgba(94, 180, 230, 0.20) 0%,
            transparent 45%
        ),

        /* Top white glow */
        radial-gradient(
            circle at 50% -20%,
            rgba(255,255,255,0.95) 0%,
            transparent 45%
        ),

        /* Main background */
        linear-gradient(
            135deg,
            #DFF4FA 0%,
            #EAF8FB 38%,
            #F4FBFC 72%,
            #E5F6F2 100%
        );

    color: #102F25;

    padding:
        clamp(48px, 7vw, 96px)
        0
        clamp(72px, 9vw, 128px);
}
.hero::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    top: -180px;
    right: -120px;

    border-radius: 50%;

    background: rgba(55, 214, 166, 0.12);

    filter: blur(20px);

    pointer-events: none;
}


.hero::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -150px;
    bottom: -150px;

    border-radius: 50%;

    background: rgba(92, 180, 230, 0.12);

    filter: blur(15px);

    pointer-events: none;
}
.hero__actions .store-btn {
    background: #102F25;
    color: #fff;

    border: 1px solid rgba(16,47,37,.15);

    box-shadow:
        0 10px 25px rgba(16,47,37,.15);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.hero__actions .store-btn:hover {
    background: #12775B;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(18,119,91,.22);
}

.hero__actions .store-btn small {
    color: #9FD8C7;
}
/* Background Grid
------------------------------------------------------------ */

.hero__grid-bg {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(18,119,91,.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(18,119,91,.055) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image:
        radial-gradient(
            120% 100% at 50% 0%,
            #000 40%,
            transparent 85%
        );

    -webkit-mask-image:
        radial-gradient(
            120% 100% at 50% 0%,
            #000 40%,
            transparent 85%
        );
}


/* Hero Layout
------------------------------------------------------------ */

.hero__inner {
  position: relative;

  display: grid;

  grid-template-columns:
    1.05fr
    .95fr;

  gap: clamp(32px, 5vw, 72px);

  align-items: center;
}


/* Hero Content
------------------------------------------------------------ */

.hero__copy h1 {
  color: #102f25;

  font-size:
    clamp(2.6rem, 5.6vw, 4.4rem);

  font-weight: 800;

  margin-bottom: 20px;
}

.hero__lead {
  color: #102f25;

  font-size:
    clamp(1.05rem, 1.4vw, 1.2rem);

  max-width: 34ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin:
    32px
    0
    26px;
}

.hero__ticks {
  display: flex;
  flex-wrap: wrap;

  gap: 10px 22px;
}

.hero__ticks li {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  font-size: .92rem;

  color: var(--on-dark-mut);

  font-weight: 500;
}

.hero__ticks svg {
  color: var(--mint);

  flex: none;
}


/* ============================================================
   TUITION DASHBOARD
   ============================================================ */

.hero__stage {
  position: relative;

  display: flex;

  justify-content: center;
  align-items: center;

  min-height: 540px;
}


/* Main Dashboard
------------------------------------------------------------ */

.tuition-dashboard {
  position: relative;

  width: min(390px, 82vw);

  animation:
    floatDashboard
    7s
    var(--ease)
    infinite;

  filter:
    drop-shadow(
      0 40px 55px rgba(0,0,0,.45)
    );
}


@keyframes floatDashboard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

}


/* Dashboard Frame
------------------------------------------------------------ */

.tuition-dashboard__frame {

  position: relative;

  overflow: hidden;

  padding: 22px;

  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f4f8f6 100%
    );

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

  box-shadow:
    inset 0 0 0 1px
    rgba(255,255,255,.4);
}


/* ============================================================
   DASHBOARD TOP
   ============================================================ */

.tuition-dashboard__top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 22px;
}


.tuition-dashboard__logo {

  display: flex;

  align-items: center;

  gap: 8px;

  color: #102f25;

  font-size: .82rem;

  font-weight: 800;
}


.tuition-dashboard__logo-icon {

  width: 28px;
  height: 28px;

  display: grid;

  place-items: center;

  border-radius: 8px;

  background:
    linear-gradient(
      135deg,
      #12775b,
      #37d6a6
    );

  color: #fff;

  font-size: .85rem;

  font-weight: 800;
}


.tuition-dashboard__profile {

  width: 32px;
  height: 32px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: #e5f1ec;
}


.tuition-dashboard__avatar {

  width: 25px;
  height: 25px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: #12775b;

  color: #fff;

  font-size: .65rem;

  font-weight: 700;
}


/* ============================================================
   GREETING
   ============================================================ */

.tuition-dashboard__head {
  margin-bottom: 18px;
}


.tuition-dashboard__welcome {

  margin: 0 0 4px;

  color: #12775b;

  font-size: .68rem;

  font-weight: 700;
}


.tuition-dashboard__head h3 {

  margin: 0;

  color: #102f25;

  font-size: 1.45rem;

  line-height: 1.2;

  font-weight: 800;
}


.tuition-dashboard__sub {

  margin: 5px 0 0;

  color: #718078;

  font-size: .7rem;
}


/* ============================================================
   LEARNING PROGRESS
   ============================================================ */

.tuition-progress {

  padding: 15px;

  margin-bottom: 13px;

  border-radius: 16px;

  background: #edf7f3;

  border: 1px solid #dceee7;
}


.tuition-progress__top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 9px;

  color: #385148;

  font-size: .65rem;

  font-weight: 600;
}


.tuition-progress__top strong {

  color: #12775b;

  font-size: .75rem;
}
/* =========================================================
   HERO DASHBOARD
========================================================= */

.hero__stage {
    position: relative;
    width: 100%;
    max-width: 600px;
    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 20px;
}


/* =========================================================
   MAIN DASHBOARD
========================================================= */

.tuition-dashboard {
    position: relative;
    width: min(100%, 390px);
    z-index: 2;
}

.tuition-dashboard__frame {
    position: relative;
    overflow: hidden;

    width: 100%;
    padding: 24px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f3f8f6 100%
        );

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

    box-shadow:
        0 25px 60px rgba(0,0,0,.18),
        inset 0 0 0 1px rgba(255,255,255,.5);
}


/* =========================================================
   DASHBOARD TOP
========================================================= */

.tuition-dashboard__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}


.tuition-dashboard__logo {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #102f25;

    font-size: .82rem;
    font-weight: 800;
}


.tuition-dashboard__logo-icon {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #12775b,
            #37d6a6
        );

    color: #fff;

    font-size: .85rem;
    font-weight: 800;
}


.tuition-dashboard__profile {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #e5f1ec;
}


.tuition-dashboard__avatar {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #12775b;

    color: #fff;

    font-size: .65rem;
    font-weight: 700;
}


/* =========================================================
   GREETING
========================================================= */

.tuition-dashboard__head {
    margin-bottom: 18px;
}


.tuition-dashboard__welcome {
    margin: 0 0 5px;

    color: #12775b;

    font-size: .68rem;
    font-weight: 700;
}


.tuition-dashboard__head h3 {
    margin: 0;

    color: #102f25;

    font-size: 1.45rem;
    line-height: 1.2;
    font-weight: 800;
}


.tuition-dashboard__sub {
    margin: 6px 0 0;

    color: #718078;

    font-size: .7rem;
}


/* =========================================================
   LEARNING PROGRESS
========================================================= */

.tuition-progress {
    padding: 15px;

    margin-bottom: 14px;

    border-radius: 16px;

    background: #edf7f3;

    border: 1px solid #dceee7;
}


.tuition-progress__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 10px;

    color: #385148;

    font-size: .65rem;
    font-weight: 600;
}


.tuition-progress__top strong {
    color: #12775b;

    font-size: .75rem;
}


.tuition-progress__bar {
    width: 100%;
    height: 7px;

    overflow: hidden;

    border-radius: 20px;

    background: #d6e6e0;
}


.tuition-progress__bar span {
    display: block;

    width: 72%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #12775b,
            #37d6a6
        );
}


.tuition-progress small {
    display: block;

    margin-top: 9px;

    color: #718078;

    font-size: .58rem;
}

:root {
  --sky: #E8F4FB;
  --sky-deep: #B8DCEE;
}
.some-section {
  background: var(--sky);
}
/* =========================================================
   COURSE CARD
========================================================= */

.tuition-course {
    overflow: hidden;

    margin-bottom: 14px;

    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 7px 20px rgba(16,47,37,.08);
}


/* Course Image */

.tuition-course__image {
    position: relative;

    height: 105px;

    overflow: hidden;

    display: flex;
    align-items: flex-end;

    padding: 14px;

    background:
        linear-gradient(
            135deg,
            #0e5542,
            #147c61
        );
}


.tuition-course__image::after {
    content: "∑";

    position: absolute;

    right: 10px;
    bottom: -28px;

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

    font-size: 145px;
    line-height: 1;
    font-weight: 800;
}


.tuition-course__image span {
    position: relative;
    z-index: 2;

    padding: 6px 9px;

    border-radius: 6px;

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

    color: #fff;

    font-size: .48rem;
    font-weight: 800;
    letter-spacing: .02em;
}


.math-symbol {
    display: none;
}


/* Course Content */

.tuition-course__content {
    padding: 15px;
}


.tuition-course__content > small {
    color: #12775b;

    font-size: .5rem;
    font-weight: 800;
}


.tuition-course__content h4 {
    margin: 7px 0 3px;

    color: #102f25;

    font-size: .86rem;
    font-weight: 800;
}


.tuition-course__content p {
    margin: 0 0 12px;

    color: #8a9791;

    font-size: .55rem;
}


/* Course Progress */

.tuition-course__progress {
    width: 100%;
    height: 5px;

    overflow: hidden;

    border-radius: 10px;

    background: #e5eeea;
}


.tuition-course__progress span {
    display: block;

    width: 68%;
    height: 100%;

    border-radius: inherit;

    background: #12775b;
}


.tuition-course__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 9px;
}


.tuition-course__footer span {
    color: #9aa59f;

    font-size: .5rem;
}


.tuition-course__footer b {
    color: #12775b;

    font-size: .55rem;
}


/* =========================================================
   UPCOMING CLASS
========================================================= */

.tuition-class {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 13px;

    border-radius: 15px;

    background: #0d352b;
}


.tuition-class__icon {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: #155541;

    font-size: .85rem;
}


.tuition-class__details {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


.tuition-class__details small {
    margin-bottom: 3px;

    color: #43cfa4;

    font-size: .45rem;
    font-weight: 800;
}


.tuition-class__details strong {
    color: #fff;

    font-size: .58rem;
}


.tuition-class__details span {
    margin-top: 3px;

    color: #82978f;

    font-size: .48rem;
}


.tuition-class__arrow {
    width: 25px;
    height: 25px;

    margin-left: auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #28564a;

    color: #b9d4ca;

    font-size: 1rem;
}


/* =========================================================
   FLOATING TUTOR CARD
========================================================= */

.tuition-tutor-card {
    position: absolute;

    top: 105px;
    right: -45px;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 190px;

    padding: 12px;

    border-radius: 15px;

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

    box-shadow:
        0 15px 35px rgba(0,0,0,.13);

    transform: rotate(2deg);
}


.tuition-tutor-card__avatar {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: #e3f2ec;

    font-size: 1.25rem;
}


.tuition-tutor-card__info {
    display: flex;
    flex-direction: column;

    gap: 2px;
}


.tuition-tutor-card__info strong {
    color: #20352e;

    font-size: .64rem;
}


.tuition-tutor-card__info span {
    color: #7d8b85;

    font-size: .52rem;
}


.tuition-tutor-card__info small {
    color: #219b79;

    font-size: .52rem;
    font-weight: 700;
}


/* =========================================================
   LIVE CLASS BADGE
========================================================= */

.tuition-live {
    position: absolute;

    left: -25px;
    bottom: 80px;

    z-index: 6;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 15px;

    border-radius: 30px;

    background: #fff;

    box-shadow:
        0 12px 30px rgba(0,0,0,.14);
}


.tuition-live__dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #35d5aa;

    box-shadow:
        0 0 0 4px rgba(53,213,170,.15);
}


.tuition-live strong {
    color: #36534a;

    font-size: .6rem;
}


/* =========================================================
   DESKTOP HERO ALIGNMENT
========================================================= */

.hero__stage {
    animation: dashboardFloat 5s ease-in-out infinite;
}


@keyframes dashboardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero__stage {
        max-width: 530px;
        min-height: 570px;
    }

    .tuition-dashboard {
        width: min(100%, 360px);
    }

    .tuition-tutor-card {
        right: -25px;
    }

    .tuition-live {
        left: 0;
    }

}


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

@media (max-width: 768px) {

    .hero__stage {
        width: 100%;
        max-width: 450px;

        min-height: auto;

        padding: 35px 35px 70px;

        margin: 0 auto;
    }


    .tuition-dashboard {
        width: 100%;
        max-width: 360px;
    }


    .tuition-dashboard__frame {
        padding: 20px;

        border-radius: 25px;
    }


    .tuition-tutor-card {
        top: 75px;
        right: 0;

        min-width: 170px;

        padding: 9px;
    }


    .tuition-tutor-card__avatar {
        width: 38px;
        height: 38px;
        flex-basis: 38px;

        font-size: 1rem;
    }


    .tuition-live {
        left: 10px;
        bottom: 35px;

        padding: 9px 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero__stage {
        padding: 25px 25px 65px;
    }


    .tuition-dashboard {
        max-width: 320px;
    }


    .tuition-dashboard__frame {
        padding: 17px;

        border-radius: 22px;
    }


    .tuition-dashboard__logo {
        font-size: .72rem;
    }


    .tuition-dashboard__head h3 {
        font-size: 1.25rem;
    }


    .tuition-course__image {
        height: 90px;
    }


    .tuition-tutor-card {
        right: -5px;
        top: 60px;

        min-width: 155px;
    }


    .tuition-tutor-card__info strong {
        font-size: .56rem;
    }


    .tuition-tutor-card__info span,
    .tuition-tutor-card__info small {
        font-size: .47rem;
    }


    .tuition-live {
        left: 0;
        bottom: 25px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .hero__stage {
        padding-inline: 15px;
    }


    .tuition-dashboard {
        max-width: 290px;
    }


    .tuition-tutor-card {
        transform: scale(.9) rotate(2deg);

        right: -10px;
    }


    .tuition-live {
        transform: scale(.9);
        transform-origin: left center;
    }

}

.tuition-progress__bar {

  width: 100%;
  height: 7px;

  overflow: hidden;

  border-radius: 99px;

  background: #d7e8e1;
}


.tuition-progress__bar span {

  display: block;

  width: 72%;
  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      #12775b,
      #37d6a6
    );
}


.tuition-progress small {

  display: block;

  margin-top: 7px;

  color: #72847d;

  font-size: .58rem;
}


/* ============================================================
   COURSE CARD
   ============================================================ */

.tuition-course {

  overflow: hidden;

  margin-bottom: 13px;

  border-radius: 17px;

  background: #fff;

  border: 1px solid #e8eeeb;

  box-shadow:
    0 8px 22px rgba(15,45,35,.07);
}


/* Course Image */

.tuition-course__image {

  position: relative;

  height: 105px;

  display: flex;

  align-items: flex-end;

  padding: 14px;

  background:
    linear-gradient(
      135deg,
      #123e31,
      #1a8063
    );

  overflow: hidden;
}


/* Decorative Shapes */

.tuition-course__image::before {

  content: "";

  position: absolute;

  width: 130px;
  height: 130px;

  right: -35px;
  top: -50px;

  border-radius: 50%;

  border:
    20px solid
    rgba(255,255,255,.08);
}


.tuition-course__image::after {

  content: "∑";

  position: absolute;

  right: 35px;
  top: 15px;

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

  font-size: 4rem;

  font-weight: 800;
}


.tuition-course__image span {

  position: relative;

  z-index: 2;

  padding: 5px 8px;

  border-radius: 6px;

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

  color: #fff;

  font-size: .48rem;

  font-weight: 800;

  letter-spacing: .08em;
}


/* Course Content */

.tuition-course__content {

  padding: 13px 14px 14px;
}


.tuition-course__content small {

  color: #12775b;

  font-size: .48rem;

  font-weight: 800;

  letter-spacing: .06em;
}


.tuition-course__content h4 {

  margin: 4px 0 3px;

  color: #172d26;

  font-size: .9rem;

  font-weight: 800;
}


.tuition-course__content p {

  margin: 0 0 10px;

  color: #87938e;

  font-size: .58rem;
}


/* Course Progress */

.tuition-course__progress {

  width: 100%;
  height: 5px;

  overflow: hidden;

  border-radius: 99px;

  background: #e8eeeb;
}


.tuition-course__progress span {

  display: block;

  width: 68%;
  height: 100%;

  background: #12775b;

  border-radius: inherit;
}


.tuition-course__footer {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: 8px;

  color: #8a9691;

  font-size: .53rem;
}


.tuition-course__footer b {

  color: #12775b;

  font-size: .58rem;
}


/* ============================================================
   UPCOMING CLASS
   ============================================================ */

.tuition-class {

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 12px;

  border-radius: 15px;

  background: #102f25;

  color: #fff;
}


.tuition-class__icon {

  width: 36px;
  height: 36px;

  display: grid;

  place-items: center;

  border-radius: 10px;

  background:
    rgba(55,214,166,.14);

  font-size: .9rem;
}


.tuition-class__details {

  display: flex;

  flex-direction: column;

  flex: 1;

  min-width: 0;
}


.tuition-class__details small {

  color: #55cba5;

  font-size: .45rem;

  font-weight: 800;

  letter-spacing: .06em;
}


.tuition-class__details strong {

  margin-top: 2px;

  font-size: .65rem;

  font-weight: 700;
}


.tuition-class__details span {

  margin-top: 2px;

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

  font-size: .52rem;
}


.tuition-class__arrow {

  width: 25px;
  height: 25px;

  display: grid;

  place-items: center;

  border-radius: 50%;

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

  font-size: .9rem;
}


/* ============================================================
   FLOATING INSTRUCTOR CARD
   ============================================================ */

.floaty {

  position: absolute;

  z-index: 5;
}


.floaty--teacher {

  right: -28px;
  top: 65px;

  display: flex;

  align-items: center;

  gap: 10px;

  width: 190px;

  padding: 11px;

  border-radius: 15px;

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

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

  box-shadow:
    0 18px 35px rgba(0,0,0,.18);

  animation:
    floatTeacher
    6s
    var(--ease)
    infinite;

}


@keyframes floatTeacher {

  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-9px) rotate(2deg);
  }

}


/* Teacher Image */

.floaty__teacher-image {

  width: 43px;
  height: 43px;

  display: grid;

  place-items: center;

  flex: none;

  border-radius: 12px;

  background: #e5f3ed;

  font-size: 1.35rem;
}


.floaty__teacher-info {

  display: flex;

  flex-direction: column;

  min-width: 0;
}


.floaty__teacher-info strong {

  color: #17362b;

  font-size: .67rem;
}


.floaty__teacher-info span {

  margin-top: 2px;

  color: #87938e;

  font-size: .51rem;
}


.floaty__rating {

  margin-top: 4px;

  color: #12775b;

  font-size: .54rem;

  font-weight: 800;
}


/* ============================================================
   LIVE CLASS PILL
   ============================================================ */

.floaty--pill {

  left: -30px;
  bottom: 72px;

  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 11px 16px;

  border-radius: 999px;

  background: #fff;

  color: #18352b;

  font-size: .75rem;

  font-weight: 700;

  box-shadow:
    0 15px 30px rgba(0,0,0,.16);

  animation:
    floatPill
    5.5s
    var(--ease)
    infinite;
}


@keyframes floatPill {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }

}


.floaty__dot {

  width: 9px;
  height: 9px;

  flex: none;

  border-radius: 50%;

  background: var(--mint);

  box-shadow:
    0 0 0 4px
    rgba(55,214,166,.25);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {

  .hero__inner {

    grid-template-columns: 1fr;

    text-align: center;
  }

  .hero__copy {

    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .hero__lead {
    max-width: 600px;
  }

  .hero__ticks {
    justify-content: center;
  }

  .hero__stage {
    min-height: 500px;

    margin-top: 10px;
  }

}


@media (max-width: 600px) {

  .hero {
    padding:
      55px
      0
      75px;
  }

  .hero__stage {
    min-height: 455px;
  }

  .tuition-dashboard {
    width: min(350px, 86vw);
  }

  .tuition-dashboard__frame {
    padding: 17px;

    border-radius: 25px;
  }

  .floaty--teacher {

    right: -8px;
    top: 45px;

    width: 165px;

    padding: 9px;
  }

  .floaty--pill {

    left: -5px;
    bottom: 50px;

    padding: 9px 13px;

    font-size: .68rem;
  }

}


@media (max-width: 420px) {

  .tuition-dashboard {
    width: 90vw;
  }

  .floaty--teacher {

    right: 0;

    transform: scale(.9);
  }

  .floaty--pill {

    left: 0;

    transform: scale(.9);
  }

}
/* ============================================================
   TRUST STATS
   ============================================================ */

.stats {
  position: relative;

  background: var(--ink);

  color: var(--on-dark);

  padding:
    clamp(30px, 4vw, 48px)
    0;
}


/* Stats Grid
------------------------------------------------------------ */

.stats__row {
  display: grid;

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

  gap: 20px;
}


/* Individual Stat
------------------------------------------------------------ */

.stat {
  position: relative;

  text-align: center;

  padding: 8px 15px;
}


/* Divider */

.stat + .stat::before {
  content: "";

  position: absolute;

  left: -10px;
  top: 12%;

  width: 1px;
  height: 76%;

  background:
    rgba(255,255,255,.10);
}


/* Number */

.stat__num {
  display: block;

  font-family: var(--ff-mono);

  font-weight: 600;

  font-size:
    clamp(1.7rem, 3.4vw, 2.5rem);

  line-height: 1.1;

  color: #fff;

  letter-spacing: -.02em;
}


/* Highlight suffix */

.stat__num .u {
  color: var(--gold);
}


/* Label */

.stat__label {
  display: block;

  margin-top: 7px;

  font-size: .82rem;

  color: var(--on-dark-mut);

  letter-spacing: .01em;

  line-height: 1.4;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {

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

    row-gap: 28px;
  }

  .stat:nth-child(3)::before {
    display: none;
  }

}


@media (max-width: 480px) {

  .stats {
    padding:
      30px
      0;
  }

  .stats__row {
    grid-template-columns: 1fr 1fr;

    gap: 20px 10px;
  }

  .stat {
    padding: 5px 8px;
  }

  .stat + .stat::before {
    left: -5px;
  }

  .stat__num {
    font-size: 1.6rem;
  }

  .stat__label {
    font-size: .7rem;
  }

}
/* ============================================================
   FEATURES
   ============================================================ */

.features {
  background: var(--paper);
}


/* Section Header
------------------------------------------------------------ */

.features .section-head {
  max-width: 760px;

  margin-left: auto;
  margin-right: auto;

  text-align: center;

  margin-bottom: 50px;
}


/* Feature Grid
------------------------------------------------------------ */

.feature-grid {

  display: grid;

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

  gap: 22px;
}


/* Feature Card
------------------------------------------------------------ */

.fcard {

  position: relative;

  background: var(--card);

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

  border-radius:
    var(--radius);

  padding:
    30px
    28px;

  overflow: hidden;

  transition:
    transform .25s var(--ease),
    box-shadow .25s var(--ease),
    border-color .25s var(--ease);
}


/* Top Accent */

.fcard::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 3px;

  background:
    linear-gradient(
      90deg,
      var(--green),
      var(--mint)
    );

  transition:
    width .3s ease;
}


.fcard:hover::before {
  width: 100%;
}


/* Hover */

.fcard:hover {

  transform:
    translateY(-7px);

  box-shadow:
    var(--shadow);

  border-color:
    transparent;
}


/* Feature Icon
------------------------------------------------------------ */

.fcard__ic {

  display: inline-grid;

  place-items: center;

  width: 52px;
  height: 52px;

  border-radius: 15px;

  margin-bottom: 20px;

  transition:
    transform .25s ease;
}


.fcard:hover .fcard__ic {

  transform:
    translateY(-2px)
    scale(1.05);
}


/* Gold Icon */

.fcard__ic--gold {

  background:
    rgba(242,184,75,.16);

  color:
    var(--gold-deep);
}


/* Mint Icon */

.fcard__ic--mint {

  background:
    rgba(18,119,91,.12);

  color:
    var(--green);
}


/* Heading
------------------------------------------------------------ */

.fcard h3 {

  color:
    var(--ink-text);

  font-size:
    1.28rem;

  line-height:
    1.25;

  margin-bottom:
    10px;

  font-weight:
    750;
}


/* Description
------------------------------------------------------------ */

.fcard p {

  color:
    var(--muted);

  font-size:
    .95rem;

  line-height:
    1.7;

  margin:
    0;

  max-width:
    42ch;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {

  .feature-grid {

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

  }

}


@media (max-width: 640px) {

  .features .section-head {

    margin-bottom:
      35px;

  }

  .feature-grid {

    grid-template-columns:
      1fr;

    gap:
      16px;

  }

  .fcard {

    padding:
      25px 23px;

  }

  .fcard h3 {

    font-size:
      1.15rem;

  }

  .fcard p {

    font-size:
      .9rem;

  }

}
/* ============================================================
   SECURITY
   ============================================================ */
.security { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; }
.security__grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(90% 90% at 20% 30%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(90% 90% at 20% 30%, #000, transparent 80%);
}
.security__inner { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.security__media { position: relative; }
.security__media img { border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; border: 1px solid rgba(255,255,255,.12); }
.security__badge {
  position: absolute; left: -14px; bottom: -18px;
  display: flex; align-items: center; gap: 12px;
  background: #fff; color: var(--ink-text);
  padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow-lg);
}
.security__badge svg { color: var(--green); }
.security__badge b { display: block; font-family: var(--ff-display); font-size: .98rem; }
.security__badge small { color: var(--muted); font-size: .78rem; }

.security__copy h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.security__lead { color: var(--on-dark-mut); margin: 18px 0 28px; font-size: 1.08rem; }

.sec-list { display: grid; gap: 4px; }
.sec-list li { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.09); }
.sec-list li:first-child { border-top: 0; }
.sec-list__ic { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(55,214,166,.14); color: var(--mint); }
.sec-list b { color: #fff; font-family: var(--ff-display); font-size: 1.08rem; }
.sec-list p { color: var(--on-dark-mut); font-size: .94rem; margin-top: 3px; }
.security__fine { margin-top: 26px; font-size: .82rem; color: var(--muted-2); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--paper-2); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; position: relative; }
.step {
  position: relative; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px 30px; text-align: left;
}
.step__no {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--ff-mono); font-size: 1.05rem; color: var(--gold-deep);
  opacity: .9;
}
.step__ic {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 20px;
  background: var(--pine); color: var(--mint);
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .98rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 50px; right: -16px; z-index: 2;
  width: 32px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--green) 0 5px, transparent 5px 10px);
}

/* ============================================================
   CLASSES
   ============================================================ */

.pricing {
  background:#eef2ec;
}


/* Section heading */

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-head .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.section-head h2 {
  margin-bottom: 14px;
}

.section-lead {
  max-width: 680px;
  margin: 0 auto;
}


/* ============================================================
   CLASS GRID
   ============================================================ */

.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}


/* ============================================================
   CLASS CARD
   ============================================================ */

.class-card {
  position: relative;
  overflow: hidden;

  background: var(--card);
  border: 1px solid var(--line);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow);

  transition:
    transform .28s var(--ease),
    box-shadow .28s var(--ease),
    border-color .28s var(--ease);
}

.class-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(18, 119, 91, .25);
}


/* ============================================================
   FEATURED CLASS
   ============================================================ */

.class-card--featured {
  transform: translateY(-10px);

  border-color: transparent;

  background:
    linear-gradient(
      170deg,
      var(--pine) 0%,
      var(--ink) 100%
    );

  box-shadow: var(--shadow-lg);
}

.class-card--featured:hover {
  transform: translateY(-15px);
}


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

.class-card__image {
  position: relative;

  width: 100%;
  height: 230px;

  overflow: hidden;

  background: var(--mint-soft);
}

.class-card__image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, .38),
      transparent 55%
    );

  pointer-events: none;
}

.class-card__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .5s var(--ease);
}

.class-card:hover .class-card__image img {
  transform: scale(1.07);
}


/* ============================================================
   CLASS BADGE
   ============================================================ */

.class-card__badge {
  position: absolute;

  left: 18px;
  bottom: 16px;

  z-index: 2;

  display: inline-flex;
  align-items: center;

  padding: 7px 13px;

  border-radius: 999px;

  background: var(--gold);

  color: #241a05;

  font-family: var(--ff-mono);
  font-size: .72rem;
  font-weight: 700;

  letter-spacing: .04em;
  text-transform: uppercase;
}


/* ============================================================
   CARD CONTENT
   ============================================================ */

.class-card__content {
  padding: 28px 28px 30px;
}

.class-card__level {
  display: block;

  margin-bottom: 8px;

  color: var(--green);

  font-family: var(--ff-mono);
  font-size: .68rem;
  font-weight: 700;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.class-card__content h3 {
  margin: 0 0 10px;

  color: var(--ink-text);

  font-size: 1.55rem;
  line-height: 1.2;
}

.class-card__content p {
  margin: 0;

  min-height: 72px;

  color: var(--muted);

  font-size: .93rem;
  line-height: 1.55;
}


/* Featured card text */

.class-card--featured .class-card__level {
  color: var(--mint);
}

.class-card--featured .class-card__content h3 {
  color: #fff;
}

.class-card--featured .class-card__content p {
  color: var(--on-dark-mut);
}


/* ============================================================
   SUBJECT TAGS
   ============================================================ */

.class-card__subjects {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 22px;
}

.class-card__subjects span {
  padding: 6px 10px;

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

  border-radius: 999px;

  color: var(--muted);

  font-size: .72rem;
  font-weight: 600;

  background: rgba(18, 119, 91, .04);
}

.class-card--featured .class-card__subjects span {
  border-color: rgba(255, 255, 255, .14);

  color: var(--on-dark-mut);

  background: rgba(255, 255, 255, .06);
}


/* ============================================================
   LINK
   ============================================================ */

.class-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 25px;
  padding-top: 18px;

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

  color: var(--green);

  font-size: .9rem;
  font-weight: 700;

  text-decoration: none;

  transition:
    color .2s var(--ease),
    gap .2s var(--ease);
}

.class-card__link span {
  font-size: 1.2rem;

  transition:
    transform .2s var(--ease);
}

.class-card__link:hover span {
  transform: translateX(5px);
}

.class-card--featured .class-card__link {
  border-color: rgba(255, 255, 255, .14);

  color: var(--mint);
}


/* ============================================================
   NOTE
   ============================================================ */

.classes__note {
  margin-top: 32px;

  text-align: center;

  color: var(--muted-2);

  font-size: .82rem;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

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

  .class-card--featured {
    transform: none;
  }

  .class-card--featured:hover {
    transform: translateY(-8px);
  }

  .class-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    width: 100%;
    justify-self: center;
  }

}


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

@media (max-width: 680px) {

  .class-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .class-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .class-card__image {
    height: 210px;
  }

  .class-card__content {
    padding: 24px 22px 26px;
  }

  .class-card__content p {
    min-height: auto;
  }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 420px) {

  .class-card__image {
    height: 190px;
  }

  .class-card__content h3 {
    font-size: 1.4rem;
  }

  .class-card__subjects {
    gap: 6px;
  }

  .class-card__subjects span {
    font-size: .68rem;
  }

}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.stories { background: var(--paper-2); }
.stories__viewport { overflow: hidden; }
.stories__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }


.tcard {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 28px; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.tcard__stars { display: flex; gap: 3px; color: var(--gold); }
.tcard blockquote { margin: 0; font-family: var(--ff-display); font-weight: 500; font-size: 1.14rem; line-height: 1.45; color: var(--ink-text); letter-spacing: -.01em; }
.tcard__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard__by img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; }
.tcard__by b { display: block; font-size: .98rem; }
.tcard__by small { color: var(--muted); font-size: .84rem; }

.stories__dots { display: none; justify-content: center; gap: 9px; margin-top: 28px; }
.dot { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: none; background: var(--line); cursor: pointer; transition: background .18s var(--ease), transform .18s var(--ease); }
.dot.is-active { background: var(--green); transform: scale(1.3); }

/* ============================================================
   TESTIMONIALS — scroller
   ============================================================ */
.stories { background: var(--paper-2); }

.stories__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.stories__viewport::-webkit-scrollbar { display: none; }

.stories__track {
  display: flex;
  gap: 22px;
  padding-bottom: 4px;
}

.tcard {
  flex: 0 0 calc((100% - 2 * 22px) / 3);
  scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 28px; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.tcard__stars { display: flex; gap: 3px; color: var(--gold); }
.tcard blockquote { margin: 0; font-family: var(--ff-display); font-weight: 500; font-size: 1.14rem; line-height: 1.45; color: var(--ink-text); letter-spacing: -.01em; }
.tcard__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard__avatar {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 600; font-size: .95rem;
}
.tcard__by b { display: block; font-size: .98rem; }
.tcard__by small { color: var(--muted); font-size: .84rem; }

.stories__dots { display: flex; justify-content: center; gap: 9px; margin-top: 28px; }
.dot { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: none; background: var(--line); cursor: pointer; transition: background .18s var(--ease), transform .18s var(--ease); }
.dot.is-active { background: var(--green); transform: scale(1.3); }

@media (max-width: 980px) {
  .tcard { flex-basis: calc((100% - 22px) / 2); }
}
@media (max-width: 640px) {
  .tcard { flex-basis: 88%; }
}
/* ============================================================
   STORIES
   ============================================================ */

.stories {
  position: relative;
  overflow: hidden;
}


/* Heading */
.stories .section-head {
  margin-bottom: 35px;
}


/* ============================================================
   VIEWPORT
   ============================================================ */

.stories__viewport {
  width: 100%;
  overflow: hidden;
}


/* ============================================================
   TRACK
   ============================================================ */

.stories__track {
  display: flex;

  gap: 24px;

  width: 100%;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;

  scroll-snap-type: x mandatory;

  scrollbar-width: none;

  -ms-overflow-style: none;

  padding: 10px 5px 25px;
}

.stories__track::-webkit-scrollbar {
  display: none;
}


/* ============================================================
   CARD
   ============================================================ */

.tcard {
  flex: 0 0 calc((100% - 48px) / 3);

  min-width: 0;

  margin: 0;

  padding: 30px;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  scroll-snap-align: start;

  display: flex;
  flex-direction: column;

  min-height: 300px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.tcard:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.10);
}


/* ============================================================
   STARS
   ============================================================ */

.tcard__stars {
  color: #f5b301;

  font-size: 20px;

  letter-spacing: 3px;

  margin-bottom: 20px;
}


/* ============================================================
   QUOTE
   ============================================================ */

.tcard blockquote {
  margin: 0;

  color: #4b5563;

  font-size: 0.98rem;

  line-height: 1.7;

  flex: 1;
}


/* ============================================================
   USER
   ============================================================ */

.tcard__by {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 25px;
}


/* Avatar */
.tcard__avatar {
  width: 46px;
  height: 46px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  flex-shrink: 0;

  background: #d6efe6;

  color: #0b3d2e;

  font-weight: 700;

  font-size: 0.9rem;
}


/* Name */
.tcard__by b {
  display: block;

  color: #172033;

  font-size: 0.95rem;
}


/* Role */
.tcard__by small {
  display: block;

  margin-top: 3px;

  color: #6b7280;

  font-size: 0.78rem;
}


/* ============================================================
   DOTS
   ============================================================ */

.stories__dots {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  margin-top: 15px;
}


.dot {
  width: 9px;
  height: 9px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background: #cbd5e1;

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}


.dot.is-active {
  width: 28px;

  border-radius: 20px;

  background: #0b1f1a;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

  .tcard {
    flex: 0 0 calc((100% - 24px) / 2);
  }

}


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

@media (max-width: 650px) {

  .stories__track {
    gap: 15px;

    padding-left: 2px;
    padding-right: 2px;
  }


  .tcard {
    flex: 0 0 100%;

    padding: 24px;

    min-height: 280px;

    border-radius: 17px;
  }


  .tcard__stars {
    font-size: 18px;

    margin-bottom: 16px;
  }


  .tcard blockquote {
    font-size: 0.92rem;

    line-height: 1.65;
  }


  .stories__dots {
    margin-top: 10px;
  }

}
/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  position: relative;
  overflow: hidden;

  padding: clamp(70px, 9vw, 115px) 0;

  color: var(--on-dark);
}


/* Background Image */

.cta-band__bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 0;
}


/* Dark Overlay */

.cta-band::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      120deg,
      rgba(7, 25, 20, .95) 0%,
      rgba(12, 59, 46, .88) 55%,
      rgba(18, 119, 91, .76) 100%
    );
}


/* Content */

.cta-band__inner {
  position: relative;

  z-index: 2;

  max-width: 720px;
}


/* Eyebrow */

.cta-band__inner .eyebrow {
  margin-bottom: 14px;
}


/* Heading */

.cta-band__inner h2 {
  max-width: 700px;

  margin: 0;

  color: #fff;

  font-size: clamp(2.2rem, 5vw, 3.6rem);

  line-height: 1.08;

  letter-spacing: -.03em;
}


/* Description */

.cta-band__inner > p {
  max-width: 650px;

  margin: 18px 0 30px;

  color: var(--on-dark-mut);

  font-size: 1.08rem;

  line-height: 1.65;
}


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

.cta-actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 34px;
}


.cta-actions .btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  min-width: 150px;
}


.cta-actions .btn span {
  font-size: 1.1rem;

  transition: transform .2s var(--ease);
}


.cta-actions .btn:hover span {
  transform: translateX(4px);
}


/* Outline Button */

.btn-light-outline {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 12px 22px;

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

  border-radius: 999px;

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

  color: #fff;

  font-size: .9rem;

  font-weight: 700;

  text-decoration: none;

  backdrop-filter: blur(6px);

  transition:
    background .2s var(--ease),
    border-color .2s var(--ease),
    transform .2s var(--ease);
}


.btn-light-outline:hover {
  background: rgba(255,255,255,.13);

  border-color: rgba(255,255,255,.6);

  transform: translateY(-2px);
}


/* ============================================================
   CTA HIGHLIGHTS
   ============================================================ */

.cta-highlights {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;
}


.cta-highlight {
  display: flex;

  align-items: center;

  gap: 8px;

  color: var(--on-dark-mut);

  font-size: .86rem;

  font-weight: 600;
}


.cta-highlight__icon {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 21px;
  height: 21px;

  border-radius: 50%;

  background: rgba(55,214,166,.18);

  color: var(--mint);

  font-size: .72rem;

  font-weight: 800;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 768px) {

  .cta-band {
    padding: 70px 0;
  }

  .cta-band__inner {
    max-width: 100%;
  }

  .cta-band__inner h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .cta-band__inner > p {
    font-size: 1rem;
  }

}


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

@media (max-width: 560px) {

  .cta-band {
    padding: 60px 0;
  }

  .cta-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .cta-highlights {
    display: grid;

    grid-template-columns: 1fr;

    gap: 12px;
  }

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

.site-footer {
  background: var(--ink);

  color: var(--on-dark-mut);

  padding: clamp(56px, 7vw, 84px) 0 30px;
}


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

.footer__top {
  display: grid;

  grid-template-columns: 1.3fr 2fr;

  gap: clamp(40px, 6vw, 80px);
}


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

.footer__brand {
  max-width: 400px;
}


.brand--foot {
  display: inline-flex;

  align-items: center;

  text-decoration: none;
}


.brand--foot .brand__word {
  color: #fff;

  font-weight: 700;
}


.footer__blurb {
  max-width: 38ch;

  margin: 18px 0 24px;

  color: var(--on-dark-mut);

  font-size: .94rem;

  line-height: 1.65;
}


/* ============================================================
   SOCIAL
   ============================================================ */

.footer__social {
  display: flex;

  gap: 10px;
}


.footer__social a {
  width: 40px;
  height: 40px;

  display: grid;

  place-items: center;

  border-radius: 11px;

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

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

  color: var(--on-dark);

  text-decoration: none;

  transition:
    background .18s var(--ease),
    color .18s var(--ease),
    transform .18s var(--ease);
}


.footer__social a:hover {
  background: var(--green);

  color: #fff;

  transform: translateY(-3px);
}


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

.footer__cols {
  display: grid;

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

  gap: 28px;
}


.footer__col h4 {
  margin: 0 0 17px;

  color: #fff;

  font-family: var(--ff-display);

  font-size: .88rem;

  letter-spacing: .06em;

  text-transform: uppercase;
}


.footer__col ul {
  display: grid;

  gap: 11px;
}


.footer__col a {
  color: var(--on-dark-mut);

  font-size: .91rem;

  text-decoration: none;

  transition:
    color .18s var(--ease),
    transform .18s var(--ease);
}


.footer__col a:hover {
  color: var(--mint);
}


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

.footer__fine {
  margin: 46px 0 24px;

  padding-top: 26px;

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

  max-width: 82ch;

  color: var(--muted-2);

  font-size: .8rem;

  line-height: 1.6;
}


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

.footer__bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 15px;

  padding-top: 20px;

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

  color: var(--muted-2);

  font-size: .84rem;
}


.footer__bottom p {
  margin: 0;
}


/* ============================================================
   LEGAL LINKS
   ============================================================ */

.footer__legal {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;
}


.footer__legal a {
  color: var(--muted-2);

  text-decoration: none;

  transition: color .18s var(--ease);
}


.footer__legal a:hover {
  color: var(--mint);
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

  .footer__top {
    grid-template-columns: 1fr;

    gap: 48px;
  }

  .footer__brand {
    max-width: 600px;
  }

  .footer__blurb {
    max-width: 55ch;
  }

}


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

@media (max-width: 650px) {

  .site-footer {
    padding: 52px 0 26px;
  }

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

    gap: 34px 20px;
  }

  .footer__bottom {
    flex-direction: column;

    align-items: flex-start;
  }

  .footer__legal {
    gap: 12px;
  }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 420px) {

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

  .footer__brand {
    width: 100%;
  }

  .footer__legal {
    flex-direction: column;

    gap: 8px;
  }

}
/* ============================================================
   DESIGNED BY
   ============================================================ */

.footer__designed {
  color: var(--muted-2);
}

.footer__designed a {
  color: var(--mint);
  font-weight: 600;
  text-decoration: none;

  transition: color .18s var(--ease);
}

.footer__designed a:hover {
  color: #fff;
}
/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: radial-gradient(circle at 10% 20%, rgba(88, 190, 225, 0.18), transparent 35%), radial-gradient(circle at 90% 80%, rgba(55, 214, 166, 0.14), transparent 38%), linear-gradient(135deg, #e4f6fb 0%, #eefafd 45%, #f7fcfd 100%);
  color: var(--on-dark-mut);
  padding: clamp(55px, 7vw, 85px) 0 30px;
}


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

.footer__top {
  display: grid;

  grid-template-columns: 1.35fr 0.8fr 0.8fr 1.15fr;

  gap: clamp(30px, 5vw, 70px);

  align-items: start;
}


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

.footer__brand {
  max-width: 390px;
}

.brand--foot {
  display: inline-flex;
  align-items: center;

  color: #fff;

  text-decoration: none;
}

.brand--foot .brand__word {
  color: #102f25;

  font-weight: 700;
  font-size: 1.05rem;
}

.footer__blurb {
  max-width: 38ch;

  margin: 18px 0 24px;

  color:#102f25;

  font-size: 0.94rem;

  line-height: 1.65;
}


/* ============================================================
   SOCIAL MEDIA
   ============================================================ */

.footer__social {
  display: flex;
  align-items: center;

  gap: 10px;
}

.footer__social a {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 11px;

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

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: var(--on-dark);

  text-decoration: none;

  transition:
    background 0.18s var(--ease),
    color 0.18s var(--ease),
    transform 0.18s var(--ease);
}

.footer__social a:hover {
  background: var(--green);

  color: #fff;

  transform: translateY(-3px);
}


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

.footer__col {
  min-width: 0;
}

.footer__col h4 {
  margin: 0 0 17px;

  color: #fff;

  font-family: var(--ff-display);

  font-size: 0.88rem;
  font-weight: 700;

  letter-spacing: 0.06em;

  text-transform: uppercase;
}

.footer__col ul {
  display: grid;

  gap: 11px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer__col li {
  margin: 0;
  padding: 0;
}

.footer__col a {
  color: var(--on-dark-mut);

  font-size: 0.91rem;

  text-decoration: none;

  transition:
    color 0.18s var(--ease),
    transform 0.18s var(--ease);
}

.footer__col a:hover {
  color: var(--mint);
}


/* ============================================================
   CONTACT DETAILS
   ============================================================ */

.footer__contact ul {
  gap: 14px;
}

.footer__contact-item {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  color: var(--on-dark-mut);

  font-size: 0.91rem;

  line-height: 1.55;
}

.footer__contact-icon {
  flex: 0 0 20px;

  width: 20px;
  height: 20px;

  display: grid;
  place-items: center;

  color: var(--mint);

  margin-top: 1px;
}

.footer__contact-icon svg {
  display: block;
}

.footer__contact-item a {
  color: var(--on-dark-mut);
}

.footer__contact-item a:hover {
  color: var(--mint);
}


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

.footer__fine {
  margin: 46px 0 24px;

  padding-top: 26px;

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

  max-width: 82ch;

  color: var(--muted-2);

  font-size: 0.8rem;

  line-height: 1.6;
}

.footer__fine p {
  margin: 0;
}


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

.footer__bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 15px;

  padding-top: 20px;

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

  color: var(--muted-2);

  font-size: 0.84rem;
}

.footer__bottom p {
  margin: 0;
}


/* ============================================================
   LEGAL LINKS
   ============================================================ */

.footer__legal {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 18px;
}

.footer__legal a {
  color: var(--muted-2);

  text-decoration: none;

  transition: color 0.18s var(--ease);
}

.footer__legal a:hover {
  color: var(--mint);
}


/* ============================================================
   DESIGNED BY
   ============================================================ */

.footer__designed {
  color: var(--muted-2);
}

.footer__designed a {
  color: var(--mint);

  font-weight: 600;

  text-decoration: none;

  transition: color 0.18s var(--ease);
}

.footer__designed a:hover {
  color: #fff;
}


/* ============================================================
   LARGE TABLET
   ============================================================ */

@media (max-width: 1100px) {

  .footer__top {
    grid-template-columns: 1.2fr 1fr 1fr;

    gap: 40px;
  }

  .footer__brand {
    max-width: 100%;
  }

  .footer__contact {
    grid-column: 1 / -1;
  }

}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 800px) {

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

    gap: 40px 30px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__contact {
    grid-column: auto;
  }

}


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

@media (max-width: 600px) {

  .site-footer {
    padding: 48px 0 25px;
  }

  .footer__top {
    grid-template-columns: 1fr;

    gap: 32px;
  }

  .footer__brand,
  .footer__contact {
    grid-column: auto;
  }

  .footer__brand {
    width: 100%;
  }

  .footer__blurb {
    max-width: 100%;

    margin: 16px 0 22px;
  }

  .footer__col h4 {
    margin-bottom: 14px;
  }

  .footer__col ul {
    gap: 9px;
  }

  .footer__contact ul {
    gap: 13px;
  }

  .footer__fine {
    margin-top: 38px;

    padding-top: 22px;
  }

  .footer__bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 15px;
  }

  .footer__legal {
    align-items: flex-start;

    gap: 10px 16px;
  }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 420px) {

  .site-footer {
    padding: 42px 0 22px;
  }

  .brand--foot .brand__word {
    font-size: 1rem;
  }

  .footer__social a {
    width: 38px;
    height: 38px;
  }

  .footer__contact-item {
    font-size: 0.88rem;
  }

  .footer__legal {
    flex-direction: column;

    gap: 8px;
  }

}
/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
/* stagger children within grids */
.feature-grid [data-reveal].is-in,
.price-grid [data-reveal].is-in,
.steps [data-reveal].is-in,
.stats__row [data-reveal].is-in { transition-delay: var(--rd, 0s); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .phone, .floaty--card, .floaty--pill { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__copy { max-width: 620px; }
  .hero__lead { max-width: none; }
  .security__inner { grid-template-columns: 1fr; gap: 56px; }
  .security__media { max-width: 460px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav-menu {
    display: flex; flex-direction: column; align-items: stretch; gap: 18px;
    position: absolute; top: 72px; left: 0; right: 0;
    margin: 0; padding: 16px 22px 24px;
    background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .site-header.nav-open .nav-links { flex-direction: column; align-items: stretch; gap: 2px; margin: 0; }
  .site-header.nav-open .nav-links a { padding: 13px 12px; border-radius: 10px; font-size: 1.05rem; }
  .site-header.nav-open .nav-cta {
    display: flex; flex-direction: column; align-items: stretch; gap: 12px; margin: 0;
    padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08);
  }
  .site-header.nav-open .nav-cta .link-quiet { text-align: center; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; }
  .site-header.nav-open .nav-cta .btn { width: 100%; }
}

@media (max-width: 720px) {
  .stats__row { grid-template-columns: repeat(2, 1fr); gap: 26px 10px; }
  .stat:nth-child(3)::before, .stat + .stat::before { display: none; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .ptier--featured, .ptier--featured:hover { transform: none; }
  .ptier--featured { order: -1; }

  /* testimonials → swipe slider */
  .stories__viewport { overflow: hidden; }
  .stories__track {
    grid-template-columns: none;
    grid-auto-flow: column; grid-auto-columns: 88%;
    overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 16px; padding-bottom: 6px;
    scrollbar-width: none;
  }
  .stories__track::-webkit-scrollbar { display: none; }
  .tcard { scroll-snap-align: center; }
  .stories__dots { display: flex; }
}

@media (max-width: 540px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .store-btn { justify-content: center; }
  .cta-form__field { flex-direction: column; border-radius: 20px; padding: 12px; }
  .cta-form__field .btn { width: 100%; }
  .floaty--card { right: -2px; width: 150px; }
  .floaty--pill { left: -6px; font-size: .72rem; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; }
}
/* About us */
/* ============================================================
   ABOUT US PAGE
   ============================================================ */


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

/* =========================
   ABOUT HERO BANNER
========================= */

.about-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        url("img/about-banner.jpg")
        center center / cover
        no-repeat;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            rgba(7, 25, 20, 0.90),
            rgba(12, 59, 46, 0.78)
        );
}

.about-hero__content {
    position: relative;
    z-index: 2;

    text-align: center;
    color: #fff;
}

.about-hero__content .eyebrow {
    display: inline-block;
    margin-bottom: 8px;

    color: var(--mint);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-hero__content h1 {
    margin: 0 0 10px;

    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
}

.about-hero__content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.about-hero__content p span {
    margin: 0 8px;
    color: var(--mint);
}


/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

    .about-hero {
        height: 250px;
    }

    .about-hero__content h1 {
        font-size: 2.3rem;
    }
}


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

@media (max-width: 480px) {

    .about-hero {
        height: 210px;
    }

    .about-hero__content h1 {
        font-size: 2rem;
    }

    .about-hero__content p {
        font-size: 0.85rem;
    }
}


.about-hero__bg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 0;

  transform: scale(1.02);
}


.about-hero__overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(7,25,20,.96) 0%,
      rgba(7,25,20,.88) 42%,
      rgba(12,59,46,.62) 72%,
      rgba(18,119,91,.30) 100%
    );
}


.about-hero .container {
  position: relative;

  z-index: 2;
}


.about-hero__content {
  max-width: 720px;

  padding: 100px 0 110px;
}


/* .about-hero__content h1 {
  max-width: 700px;

  margin: 14px 0 20px;

  color: #fff;

  font-size: clamp(2.7rem, 6vw, 5rem);

  line-height: 1.02;

  letter-spacing: -.045em;
} */


/* .about-hero__content p {
  max-width: 620px;

  margin: 0;

  color: var(--on-dark-mut);

  font-size: 1.12rem;

  line-height: 1.7;
} */


.about-hero__actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 32px;
}


.about-hero__actions .btn {
  display: inline-flex;

  align-items: center;

  gap: 9px;
}


.about-hero__actions .btn span {
  transition: transform .2s var(--ease);
}


.about-hero__actions .btn:hover span {
  transform: translateX(4px);
}


.about-hero__link {
  color: #fff;

  font-size: .92rem;

  font-weight: 700;

  text-decoration: none;
}


.about-hero__link span {
  margin-left: 5px;

  transition: transform .2s var(--ease);
}


.about-hero__link:hover {
  color: var(--mint);
}


.about-hero__link:hover span {
  display: inline-block;

  transform: translateX(4px);
}


.about-hero__shape {
  position: absolute;

  z-index: 2;

  right: -120px;
  bottom: -180px;

  width: 500px;
  height: 500px;

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

  border-radius: 50%;
}


.about-hero__shape::before {
  content: "";

  position: absolute;

  inset: 45px;

  border: 1px solid rgba(55,214,166,.18);

  border-radius: 50%;
}


/* ============================================================
   ABOUT INTRO
   ============================================================ */

.about-intro {
  background: var(--paper);
}


.about-intro__grid {
  display: grid;

  grid-template-columns: .95fr 1.05fr;

  align-items: center;

  gap: clamp(50px, 7vw, 100px);
}


.about-intro__media {
  position: relative;

  padding-right: 28px;
}


.about-intro__image-wrap {
  position: relative;

  overflow: hidden;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-lg);
}


.about-intro__image-wrap img {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 4.4;

  object-fit: cover;

  transition: transform .5s var(--ease);
}


.about-intro__image-wrap:hover img {
  transform: scale(1.04);
}


.about-intro__experience {
  position: absolute;

  right: 0;
  bottom: 35px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 18px 20px;

  background: var(--pine);

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

  border-radius: 16px;

  color: #fff;

  box-shadow: var(--shadow-lg);
}


.about-intro__experience strong {
  color: var(--mint);

  font-family: var(--ff-mono);

  font-size: 1.7rem;
}


.about-intro__experience span {
  color: var(--on-dark-mut);

  font-size: .76rem;

  line-height: 1.35;
}


.about-intro__content h2 {
  max-width: 620px;

  margin: 10px 0 20px;

  font-size: clamp(2rem, 4vw, 3.3rem);

  line-height: 1.1;

  letter-spacing: -.035em;
}


.about-intro__lead {
  color: var(--ink-text);

  font-size: 1.08rem;

  font-weight: 600;

  line-height: 1.65;
}


.about-intro__content > p {
  color: var(--muted);

  line-height: 1.7;
}


.about-intro__points {
  display: grid;

  gap: 15px;

  margin-top: 28px;
}


.about-point {
  display: flex;

  align-items: flex-start;

  gap: 12px;
}


.about-point__icon {
  flex: 0 0 auto;

  width: 25px;
  height: 25px;

  display: grid;

  place-items: center;

  margin-top: 2px;

  border-radius: 50%;

  background: rgba(18,119,91,.12);

  color: var(--green);

  font-size: .72rem;

  font-weight: 800;
}


.about-point strong {
  display: block;

  margin-bottom: 2px;

  color: var(--ink-text);

  font-size: .93rem;
}


.about-point span:not(.about-point__icon) {
  display: block;

  color: var(--muted);

  font-size: .83rem;
}


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

.about-stats {
  background: var(--pine);

  color: var(--on-dark);

  padding: 55px 0;
}


.about-stats__grid {
  display: grid;

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


.about-stat {
  padding: 8px 30px;

  text-align: center;

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


.about-stat:last-child {
  border-right: none;
}


.about-stat strong {
  display: block;

  margin-bottom: 7px;

  color: var(--mint);

  font-family: var(--ff-mono);

  font-size: clamp(1.8rem, 3vw, 2.5rem);

  font-weight: 500;
}


.about-stat span {
  color: var(--on-dark-mut);

  font-size: .82rem;
}


/* ============================================================
   PURPOSE
   ============================================================ */

.about-purpose {
  background: var(--paper);
}


.purpose-grid {
  display: grid;

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

  gap: 22px;
}


.purpose-card {
  position: relative;

  min-height: 300px;

  padding: 32px;

  background: var(--card);

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

  border-radius: var(--radius-lg);

  transition:
    transform .25s var(--ease),
    box-shadow .25s var(--ease);
}


.purpose-card:hover {
  transform: translateY(-7px);

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


.purpose-card--dark {
  background:
    linear-gradient(
      160deg,
      var(--pine),
      var(--ink)
    );

  border-color: transparent;
}


.purpose-card__number {
  position: absolute;

  top: 25px;
  right: 27px;

  color: var(--muted-2);

  font-family: var(--ff-mono);

  font-size: .72rem;
}


.purpose-card--dark .purpose-card__number {
  color: rgba(255,255,255,.35);
}


.purpose-card__icon {
  display: grid;

  place-items: center;

  width: 48px;
  height: 48px;

  margin-bottom: 28px;

  border-radius: 14px;

  background: rgba(18,119,91,.10);

  font-size: 1.25rem;
}


.purpose-card--dark .purpose-card__icon {
  background: rgba(55,214,166,.12);
}


.purpose-card h3 {
  margin-bottom: 12px;

  font-size: 1.4rem;
}


.purpose-card--dark h3 {
  color: #fff;
}


.purpose-card p {
  margin: 0;

  color: var(--muted);

  line-height: 1.65;
}


.purpose-card--dark p {
  color: var(--on-dark-mut);
}


/* ============================================================
   VALUES
   ============================================================ */

.about-values {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      140deg,
      var(--ink) 0%,
      var(--pine) 100%
    );

  color: var(--on-dark);
}


.about-values::before {
  content: "";

  position: absolute;

  top: -250px;
  right: -180px;

  width: 600px;
  height: 600px;

  border: 1px solid rgba(55,214,166,.10);

  border-radius: 50%;
}


.about-values__grid {
  position: relative;

  z-index: 1;

  display: grid;

  grid-template-columns: .85fr 1.15fr;

  gap: clamp(50px, 8vw, 110px);

  align-items: center;
}


.about-values__copy h2 {
  max-width: 550px;

  margin: 12px 0 18px;

  color: #fff;

  font-size: clamp(2rem, 4vw, 3.2rem);

  line-height: 1.1;
}


.about-values__copy > p {
  max-width: 520px;

  color: var(--on-dark-mut);

  line-height: 1.7;

  margin-bottom: 28px;
}


.about-values__copy .btn {
  display: inline-flex;

  align-items: center;

  gap: 9px;
}


.values-list {
  display: grid;

  gap: 0;
}


.value-item {
  display: grid;

  grid-template-columns: 55px 1fr;

  gap: 18px;

  padding: 25px 0;

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


.value-item:first-child {
  padding-top: 0;
}


.value-item:last-child {
  border-bottom: none;
}


.value-item__icon {
  width: 46px;
  height: 46px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(55,214,166,.22);

  border-radius: 13px;

  color: var(--mint);

  font-family: var(--ff-mono);

  font-size: .7rem;
}


.value-item h3 {
  margin: 0 0 6px;

  color: #fff;

  font-size: 1.08rem;
}


.value-item p {
  margin: 0;

  color: var(--on-dark-mut);

  font-size: .88rem;

  line-height: 1.6;
}


/* ============================================================
   CLASSES
   ============================================================ */

.about-classes {
  background: var(--paper);
}


.about-class-grid {
  display: grid;

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

  gap: 23px;
}


.about-class-card {
  overflow: hidden;

  background: var(--card);

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

  border-radius: var(--radius-lg);

  transition:
    transform .25s var(--ease),
    box-shadow .25s var(--ease);
}


.about-class-card:hover {
  transform: translateY(-7px);

  box-shadow: var(--shadow-lg);
}


.about-class-card__image {
  position: relative;

  height: 230px;

  overflow: hidden;
}


.about-class-card__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform .5s var(--ease);
}


.about-class-card:hover .about-class-card__image img {
  transform: scale(1.07);
}


.about-class-card__image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.45),
      transparent 60%
    );
}


.about-class-card__image span {
  position: absolute;

  z-index: 2;

  left: 17px;
  bottom: 16px;

  padding: 7px 12px;

  border-radius: 999px;

  background: var(--gold);

  color: #241a05;

  font-family: var(--ff-mono);

  font-size: .68rem;

  font-weight: 700;
}


.about-class-card__content {
  padding: 25px 25px 27px;
}


.about-class-card__content small {
  color: var(--green);

  font-family: var(--ff-mono);

  font-size: .66rem;

  font-weight: 700;

  letter-spacing: .07em;
}


.about-class-card__content h3 {
  margin: 7px 0 9px;

  font-size: 1.4rem;
}


.about-class-card__content p {
  min-height: 48px;

  margin: 0;

  color: var(--muted);

  font-size: .87rem;

  line-height: 1.55;
}


.about-class-card__content a {
  display: inline-block;

  margin-top: 20px;

  color: var(--green);

  font-size: .86rem;

  font-weight: 700;

  text-decoration: none;
}


.about-class-card__content a:hover {
  color: var(--gold-deep);
}


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

.cta-band {
  position: relative;

  overflow: hidden;

  padding: clamp(70px, 9vw, 110px) 0;

  color: var(--on-dark);
}


.cta-band__bg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 0;
}


.cta-band__overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      120deg,
      rgba(7,25,20,.95),
      rgba(12,59,46,.88) 55%,
      rgba(18,119,91,.70)
    );
}


.cta-band .container {
  position: relative;

  z-index: 2;
}


.cta-band__inner {
  max-width: 720px;
}


.cta-band__inner h2 {
  margin: 12px 0 16px;

  color: #fff;

  font-size: clamp(2.2rem, 5vw, 3.6rem);

  line-height: 1.08;

  letter-spacing: -.035em;
}


.cta-band__inner > p {
  max-width: 650px;

  margin: 0 0 30px;

  color: var(--on-dark-mut);

  font-size: 1.05rem;

  line-height: 1.65;
}


.cta-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 30px;
}


.cta-actions .btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;
}


.cta-actions .btn span {
  transition: transform .2s var(--ease);
}


.cta-actions .btn:hover span {
  transform: translateX(4px);
}


.btn-light-outline {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 12px 22px;

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

  border-radius: 999px;

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

  color: #fff;

  font-size: .9rem;

  font-weight: 700;

  text-decoration: none;

  transition:
    background .2s var(--ease),
    border-color .2s var(--ease),
    transform .2s var(--ease);
}


.btn-light-outline:hover {
  background: rgba(255,255,255,.13);

  border-color: rgba(255,255,255,.6);

  color: #fff;

  transform: translateY(-2px);
}


.cta-highlights {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;
}


.cta-highlight {
  display: flex;

  align-items: center;

  gap: 8px;

  color: var(--on-dark-mut);

  font-size: .84rem;

  font-weight: 600;
}


.cta-highlight__icon {
  display: grid;

  place-items: center;

  width: 21px;
  height: 21px;

  border-radius: 50%;

  background: rgba(55,214,166,.18);

  color: var(--mint);

  font-size: .68rem;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {

  .about-intro__grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .about-intro__media {
    max-width: 600px;

    margin: auto;
  }


  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);

    row-gap: 30px;
  }


  .about-stat:nth-child(2) {
    border-right: none;
  }


  .about-stat:nth-child(-n+2) {
    padding-bottom: 25px;

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


  .about-values__grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .about-values__copy {
    max-width: 700px;
  }


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


  .purpose-card:last-child {
    grid-column: 1 / -1;

    max-width: 50%;

    margin: auto;
  }


  .about-class-grid {
    grid-template-columns: 1fr 1fr;
  }


  .about-class-card:last-child {
    grid-column: 1 / -1;

    max-width: 500px;

    width: 100%;

    margin: auto;
  }

}


@media (max-width: 680px) {

  .about-hero {
    min-height: 570px;
  }


  .about-hero__content {
    padding: 80px 0 90px;
  }


  .about-hero__content h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }


  .about-hero__content p {
    font-size: 1rem;
  }


  .about-hero__actions {
    align-items: flex-start;

    flex-direction: column;
  }


  .about-intro__media {
    padding-right: 15px;
  }


  .about-intro__experience {
    right: -5px;

    bottom: 20px;

    padding: 14px 16px;
  }


  .about-stats__grid {
    grid-template-columns: 1fr 1fr;
  }


  .about-stat {
    padding: 5px 15px;
  }


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


  .purpose-card:last-child {
    grid-column: auto;

    max-width: none;
  }


  .about-class-grid {
    grid-template-columns: 1fr;
  }


  .about-class-card:last-child {
    grid-column: auto;

    max-width: none;
  }


  .cta-actions {
    flex-direction: column;

    align-items: stretch;
  }


  .cta-actions .btn {
    width: 100%;
  }


  .cta-highlights {
    display: grid;

    grid-template-columns: 1fr;

    gap: 12px;
  }

}


@media (max-width: 450px) {

  .about-hero {
    min-height: 530px;
  }


  .about-hero__content {
    padding: 65px 0 75px;
  }


  .about-intro__experience {
    position: relative;

    right: auto;
    bottom: auto;

    width: max-content;

    margin: -35px 0 0 auto;
  }


  .about-stats__grid {
    grid-template-columns: 1fr;
  }


  .about-stat {
    padding: 20px;

    border-right: none !important;

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


  .about-stat:last-child {
    border-bottom: none;
  }


  .value-item {
    grid-template-columns: 45px 1fr;

    gap: 12px;
  }


  .value-item__icon {
    width: 40px;
    height: 40px;
  }

}
/* =========================================
   COURSES SECTION
========================================= */

.courses-section {
    background: var(--paper);
    padding: clamp(70px, 8vw, 110px) 0;
}

.courses-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.courses-heading h2 {
    margin-bottom: 16px;
}


/* =========================================
   COURSE GRID
========================================= */

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* =========================================
   COURSE CARD
========================================= */

.course-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;

    box-shadow: var(--shadow);

    transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s var(--ease),
        border-color 0.35s var(--ease);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint);
}


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

.course-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--mint-soft);
}

.course-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s var(--ease);
}

.course-card:hover .course-card__image img {
    transform: scale(1.06);
}


/* =========================================
   BADGE
========================================= */

.course-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;

    padding: 7px 13px;

    background: var(--pine);
    color: #fff;

    border-radius: 999px;

    font-family: var(--ff-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.4px;
}


/* =========================================
   CARD BODY
========================================= */

.course-card__body {
    padding: 26px;
}

.course-card__category {
    display: block;

    margin-bottom: 8px;

    color: var(--green);

    font-family: var(--ff-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-card__body h3 {
    margin: 0 0 10px;

    color: var(--ink);

    font-family: var(--ff-display);
    font-size: 1.45rem;
    line-height: 1.2;
}

.course-card__body p {
    margin: 0 0 20px;

    color: var(--muted);

    font-size: 0.95rem;
    line-height: 1.65;
}


/* =========================================
   COURSE META
========================================= */

.course-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 22px;
}

.course-card__meta span {
    padding: 7px 10px;

    background: var(--mint-soft);
    color: var(--pine);

    border-radius: 7px;

    font-size: 0.75rem;
    font-weight: 600;
}


/* =========================================
   LINK
========================================= */

.course-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 18px;

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

    color: var(--pine);

    font-weight: 700;
    font-size: 0.9rem;

    text-decoration: none;

    transition: color 0.25s ease;
}

.course-card__link span {
    font-size: 1.2rem;

    transition: transform 0.25s ease;
}

.course-card__link:hover {
    color: var(--green);
}

.course-card__link:hover span {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

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

}


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

@media (max-width: 600px) {

    .courses-section {
        padding: 60px 0;
    }

    .courses-heading {
        margin-bottom: 35px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .course-card__image {
        height: 210px;
    }

    .course-card__body {
        padding: 22px;
    }

}
/* =========================================
   COURSES VIDEO SECTION
========================================= */

.courses-section {
    background: var(--paper);
    padding: clamp(70px, 8vw, 110px) 0;
}

.courses-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.courses-heading h2 {
    margin-bottom: 15px;
}


/* =========================================
   VIDEO GRID
========================================= */

.courses-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* =========================================
   VIDEO COURSE
========================================= */

.video-course {
    overflow: hidden;

    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

    transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s var(--ease);
}

.video-course:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}


/* =========================================
   THUMBNAIL
========================================= */

.video-course__thumbnail {
    position: relative;

    width: 100%;
    height: 220px;

    overflow: hidden;

    background: var(--pine);
}

.video-course__thumbnail img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s var(--ease);
}

.video-course:hover .video-course__thumbnail img {
    transform: scale(1.06);
}


/* =========================================
   DARK IMAGE OVERLAY
========================================= */

.video-course__thumbnail::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(7, 25, 20, 0.65),
        rgba(7, 25, 20, 0.05)
    );

    pointer-events: none;
}


/* =========================================
   PLAY BUTTON
========================================= */

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;

    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    padding: 0;

    transform: translate(-50%, -50%);

    border: 0;
    border-radius: 50%;

    background: #ffffff;
    color: var(--pine);

    cursor: pointer;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.video-play span {
    margin-left: 3px;
    font-size: 20px;
}

.video-course:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
}


/* =========================================
   VIDEO DURATION
========================================= */

.video-duration {
    position: absolute;
    right: 14px;
    bottom: 14px;

    z-index: 3;

    padding: 5px 9px;

    background: rgba(0, 0, 0, 0.75);
    color: #fff;

    border-radius: 5px;

    font-family: var(--ff-mono);
    font-size: 0.7rem;
}


/* =========================================
   CONTENT
========================================= */

.video-course__content {
    padding: 24px;
}

.video-course__category {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--green);

    font-family: var(--ff-mono);
    font-size: 0.7rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-course__content h3 {
    margin: 0 0 10px;

    color: var(--ink);

    font-family: var(--ff-display);
    font-size: 1.45rem;
}

.video-course__content p {
    margin: 0 0 20px;

    color: var(--muted);

    font-size: 0.94rem;
    line-height: 1.6;
}


/* =========================================
   BOTTOM
========================================= */

.video-course__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 16px;

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

    font-size: 0.78rem;
}

.video-course__bottom > span {
    color: var(--muted);
}

.video-course__bottom a {
    color: var(--pine);

    font-weight: 700;

    text-decoration: none;

    transition: color 0.25s ease;
}

.video-course__bottom a:hover {
    color: var(--green);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .courses-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


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

@media (max-width: 600px) {

    .courses-section {
        padding: 60px 0;
    }

    .courses-heading {
        margin-bottom: 35px;
    }

    .courses-video-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .video-course__thumbnail {
        height: 215px;
    }

    .video-course__content {
        padding: 22px;
    }

}
/* =========================================
   VIDEO POPUP
========================================= */

.video-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 25px;
}

.video-modal.active {
    display: flex;
}


/* Dark background */

.video-modal__overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.82);

    backdrop-filter: blur(5px);
}


/* Popup box */

.video-modal__box {
    position: relative;
    z-index: 2;

    width: min(900px, 95vw);

    background: #000;

    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);

    animation: videoPopup 0.3s ease;
}


/* Video */

.video-modal__box video {
    display: block;

    width: 100%;

    max-height: 80vh;

    background: #000;
}


/* Close button */

.video-modal__close {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 5;

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.75);
    color: #fff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition: 0.25s ease;
}

.video-modal__close:hover {
    background: var(--green);
    transform: rotate(90deg);
}


/* Animation */

@keyframes videoPopup {

    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


/* Mobile */

@media (max-width: 600px) {

    .video-modal {
        padding: 15px;
    }

    .video-modal__box {
        width: 100%;
        border-radius: 10px;
    }

    .video-modal__box video {
        max-height: 70vh;
    }

}
/* teachers */
/* ================================
   INSTRUCTORS
================================ */

.instructors-section {
    background: var(--paper);
}

.instructors-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.instructors-heading .section-lead {
    max-width: 650px;
    margin: 15px auto 0;
}


/* 3 CARDS PER ROW */

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* CARD */

.instructor-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;

    transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s var(--ease);
}

.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}


/* IMAGE */

.instructor-card__image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--mint-soft);
}

.instructor-card__image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.instructor-card:hover .instructor-card__image img {
    transform: scale(1.05);
}


/* SUBJECT */

.instructor-subject {
    position: absolute;
    left: 18px;
    bottom: 18px;

    padding: 7px 14px;

    background: var(--mint);
    color: var(--pine);

    border-radius: 30px;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* CONTENT */

.instructor-card__content {
    padding: 24px;
}

.instructor-card__content h3 {
    margin: 0 0 5px;

    font-size: 22px;
    line-height: 1.2;

    color: var(--ink);
}

.instructor-role {
    display: block;

    margin-bottom: 14px;

    color: var(--green);

    font-size: 13px;
    font-weight: 600;
}

.instructor-card__content p {
    margin: 0 0 18px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.7;
}


/* EXPERIENCE */

.instructor-meta {
    padding-top: 15px;

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

    color: var(--muted-2);

    font-family: var(--ff-mono);
    font-size: 18px;
    color: #123e31;
}


/* PROFILE LINK */

.instructor-link {
    display: inline-block;

    margin-top: 18px;

    color: var(--ink);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.25s ease;
}

.instructor-link:hover {
    color: var(--green);
}


/* TABLET */

@media (max-width: 1000px) {

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

}


/* MOBILE */

@media (max-width: 600px) {

    .instructors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .instructor-card__image {
        height: 280px;
    }

}
/* contact-us */
/* ============================================================
   CONTACT PAGE
============================================================ */

.contact-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-heading .section-lead {
    max-width: 650px;
    margin: 15px auto 0;
}


/* ============================================================
   CONTACT GRID
============================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
    align-items: start;
}


/* ============================================================
   CONTACT INFORMATION
============================================================ */

.contact-info {
    padding: 10px 10px 10px 0;
}

.contact-info__head {
    margin-bottom: 35px;
}

.contact-info__head h3 {
    margin: 12px 0 10px;

    font-size: 30px;
    line-height: 1.2;

    color: var(--ink);
}

.contact-info__head p {
    margin: 0;

    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}


/* ============================================================
   CONTACT ITEM
============================================================ */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 18px 0;

    border-bottom: 1px solid var(--line);
}

.contact-item__icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--mint-soft);
    color: var(--green);

    border-radius: 12px;

    font-size: 19px;
}

.contact-item__label {
    display: block;

    margin-bottom: 5px;

    color: var(--ink);

    font-size: 13px;
    font-weight: 700;
}

.contact-item p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.6;
}

.contact-item a {
    color: var(--muted);
    text-decoration: none;

    transition: color 0.25s ease;
}

.contact-item a:hover {
    color: var(--green);
}


/* ============================================================
   SOCIAL
============================================================ */

.contact-social {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 28px;
}

.contact-social > span {
    color: var(--ink);

    font-size: 13px;
    font-weight: 700;
}

.contact-social__links {
    display: flex;
    gap: 8px;
}

.contact-social__links a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--line);
    border-radius: 50%;

    color: var(--ink);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.contact-social__links a:hover {
    background: var(--mint);
    border-color: var(--mint);
    transform: translateY(-3px);
}


/* ============================================================
   CONTACT FORM CARD
============================================================ */

.contact-form-card {
    padding: 38px;

    background: var(--card);

    border: 1px solid var(--line);
    border-radius: var(--radius-lg);

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

.contact-form-head {
    margin-bottom: 28px;
}

.contact-form-head h3 {
    margin: 10px 0 8px;

    color: var(--ink);

    font-size: 28px;
    line-height: 1.2;
}

.contact-form-head p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.6;
}


/* ============================================================
   FORM
============================================================ */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--ink);

    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 15px;

    background: var(--paper);

    border: 1px solid var(--line);
    border-radius: 10px;

    outline: none;

    color: var(--ink);

    font-family: var(--ff-display);
    font-size: 14px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group input,
.form-group select {
    height: 48px;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);

    box-shadow: 0 0 0 3px rgba(0, 150, 100, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-2);
}


/* ============================================================
   SUBMIT BUTTON
============================================================ */

.contact-submit {
    width: 100%;

    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 0;
    border-radius: 10px;

    background: var(--pine);
    color: var(--on-dark);

    font-family: var(--ff-display);
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-submit span {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-submit:hover span {
    transform: translateX(4px);
}


/* ============================================================
   SUPPORT CARDS
============================================================ */

.contact-support-section {
    background: var(--card);
}

.contact-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.contact-support-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 25px;

    background: var(--paper);

    border: 1px solid var(--line);
    border-radius: var(--radius);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-support-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--mint);
    color: var(--pine);

    border-radius: 10px;

    font-weight: 800;
}

.contact-support-card h3 {
    margin: 0 0 7px;

    color: var(--ink);

    font-size: 17px;
}

.contact-support-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-support-grid {
        grid-template-columns: 1fr;
    }

}


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

@media (max-width: 600px) {

    .contact-heading {
        margin-bottom: 35px;
    }

    .contact-form-card {
        padding: 24px 20px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info__head h3 {
        font-size: 25px;
    }

    .contact-form-head h3 {
        font-size: 24px;
    }

    .contact-social {
        flex-wrap: wrap;
    }

    .contact-support-card {
        padding: 20px;
    }

}
/* ===== Fallback design tokens — remove/rename these if your global stylesheet already defines them ===== */
:root {
  --ink: #0b1f1a;
  --on-dark: #e9efec;
  --on-dark-mut: #b7c2bd;
  --ink-text: #0b1f1a;
  --muted: #6b7a75;
  --muted-2: #8a978f;
  --green: #1f8a5f;
  --mint: #37d6a6;
  --radius-lg: 20px;
  --shadow-lg: 0 20px 40px rgba(0,0,0,.25);
  --ff-display: 'Poppins', system-ui, sans-serif;
}

/* Make sure your .container has a max-width, or the section will
   spread edge-to-edge like it did in your screenshot */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.security { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; padding: 80px 0; }
.security__grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(90% 90% at 20% 30%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(90% 90% at 20% 30%, #000, transparent 80%);
}
.security__inner {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.security__media { position: relative; min-height: 320px; }
.security__media img {
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06); /* visible placeholder if the image 404s */
  display: block;
}
.security__badge {
  position: absolute; left: -14px; bottom: -18px;
  display: flex; align-items: center; gap: 12px;
  background: #fff; color: var(--ink-text);
  padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow-lg);
  z-index: 2;
}
.security__badge svg { color: var(--green); }
.security__badge b { display: block; font-family: var(--ff-display); font-size: .98rem; }
.security__badge small { color: var(--muted); font-size: .78rem; }

.eyebrow--light { color: #ff7a3d; font-weight: 700; letter-spacing: .08em; font-size: .85rem; text-transform: uppercase; }
.security__copy h2 { color: #fff; font-family: var(--ff-display); font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin: 14px 0 0; line-height: 1.15; }
.security__lead { color: var(--on-dark-mut); margin: 18px 0 28px; font-size: 1.08rem; line-height: 1.6; }

.sec-list { display: grid; gap: 4px; list-style: none; margin: 0; padding: 0; }
.sec-list li { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.09); }
.sec-list li:first-child { border-top: 0; }
.sec-list__ic { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(55,214,166,.14); color: var(--mint); }
.sec-list b { color: #fff; font-family: var(--ff-display); font-size: 1.08rem; }
.sec-list p { color: var(--on-dark-mut); font-size: .94rem; margin: 3px 0 0; }
.security__fine { margin-top: 26px; font-size: .82rem; color: var(--muted-2); }

@media (max-width: 860px) {
  .security__inner { grid-template-columns: 1fr; }
  .security__badge { position: static; margin-top: -40px; margin-left: 16px; width: fit-content; }
}
.security__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 26px;
  background: var(--mint);
  color: var(--ink-text);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .98rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.security__cta svg { transition: transform .2s ease; }
.security__cta:hover {
  background: #fff;
  transform: translateY(-2px);
}
.security__cta:hover svg { transform: translateX(3px); }

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

.security {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(88, 190, 225, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(55, 214, 166, 0.14),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #e4f6fb 0%,
            #eefafd 45%,
            #f7fcfd 100%
        );

    color: #102f25;
}

.security__grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(18, 119, 91, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(18, 119, 91, 0.035) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image: radial-gradient(
        100% 80% at 50% 50%,
        #000 20%,
        transparent 90%
    );

    -webkit-mask-image: radial-gradient(
        100% 80% at 50% 50%,
        #000 20%,
        transparent 90%
    );
}

/* About Content */

.security__inner {
    position: relative;
    z-index: 2;
}

/* Text */

.security__copy h2 {
    color: #102f25;
}

.security__lead {
    color: #526d68;
}

.security__fine {
    color: #526d68;
}

/* Eyebrow */

.eyebrow--light {
    color: #12775b;
}

/* List */

.sec-list__label,
.sec-list b {
    color: #102f25;
}

.sec-list p {
    color: #607872;
}

/* Icons */

.sec-list__ic {
    background: rgba(255, 255, 255, 0.75);
    color: #12775b;

    border: 1px solid rgba(18, 119, 91, 0.10);

    box-shadow:
        0 8px 22px rgba(18, 119, 91, 0.08);
}

/* Image */

.security__media {
    position: relative;
}

.security__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;

    border-radius: 24px;

    box-shadow:
        0 25px 60px rgba(16, 47, 37, 0.16);
}

/* Badge */

.security__badge {
    background: rgba(255, 255, 255, 0.94);
    color: #102f25;

    border: 1px solid rgba(18, 119, 91, 0.10);

    box-shadow:
        0 15px 35px rgba(16, 47, 37, 0.14);

    backdrop-filter: blur(10px);
}

.security__badge svg {
    color: #12775b;
}

.security__badge small {
    color: #647873;
}

/* CTA */

.security__cta {
    background: #102f25;
    color: #fff;

    box-shadow:
        0 12px 28px rgba(16, 47, 37, 0.15);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.security__cta:hover {
    background: #12775b;
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 16px 32px rgba(18, 119, 91, 0.20);
}
/* =========================================================
   ABOUT HERO BANNER
========================================================= */

.about-hero {
    position: relative;

    height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 40%,
            rgba(55, 214, 166, 0.22),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 30%,
            rgba(84, 184, 225, 0.25),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #dceff7 0%,
            #e8f7fb 45%,
            #f2fbfc 100%
        );
}

/* Decorative glow */

.about-hero::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    top: -220px;
    right: -80px;

    border-radius: 50%;

    background: rgba(55, 214, 166, 0.15);

    filter: blur(20px);
}

.about-hero::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -150px;
    bottom: -190px;

    border-radius: 50%;

    background: rgba(83, 184, 225, 0.15);

    filter: blur(20px);
}


/* Remove dark overlay */

.about-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.18),
            rgba(226,247,250,0.10)
        );
}


/* Content */

.about-hero__content {
    position: relative;
    z-index: 2;

    text-align: center;

    color: #102f25;

    padding: 20px;
}


/* Eyebrow */

.about-hero__content .eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: #12775b;

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* Heading */

.about-hero__content h1 {
    margin: 0 0 12px;

    color: #102f25;

    font-size: clamp(2rem, 4vw, 3.2rem);

    line-height: 1.1;

    font-weight: 800;
}


/* Description */

.about-hero__content p {
    margin: 0;

    color: #58726d;

    font-size: 0.95rem;
}


/* Breadcrumb separator */

.about-hero__content p span {
    margin: 0 8px;

    color: #12775b;
    font-weight: 700;
}
/* =========================================================
   FOOTER TEXT COLOR
========================================================= */

.site-footer {
    background: #ffffff;
    color: #102f25;
}

.site-footer .footer__blurb,
.site-footer .footer__fine p {
    color: #102f25;
}

.site-footer .footer__col h4 {
    color: #102f25;
}

.site-footer .footer__col ul li a {
    color: #102f25;
    transition: color 0.3s ease;
}

.site-footer .footer__col ul li a:hover {
    color: var(--green);
}

.site-footer .footer__contact-item {
    color: #102f25;
}

.site-footer .footer__contact-item a {
    color: #102f25;
}

.site-footer .footer__contact-item a:hover {
    color: var(--green);
}

.site-footer .footer__contact-icon {
    color: #102f25;
}

.site-footer .footer__bottom {
    color: #102f25;
}

.site-footer .footer__bottom p {
    color: #102f25;
}

.site-footer .footer__legal a {
    color: #102f25;
}

.site-footer .footer__legal a:hover {
    color: var(--green);
}

.site-footer .footer__designed {
    color: #102f25;
}

.site-footer .footer__designed a {
    color: #102f25;
}

.site-footer .footer__designed a:hover {
    color: var(--green);
}

.site-footer .footer__social a {
    color: #102f25;
}

.site-footer .footer__social a:hover {
    color: var(--green);
}
/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,30,24,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.site-header.is-scrolled { background: rgba(7,25,20,.94); box-shadow: 0 10px 30px -18px rgba(0,0,0,.7); }

.nav-bar { display: flex; align-items: center; gap: 24px; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--mint); }
.brand__word { font-family: var(--ff-display); font-weight: 800; font-size: 1.4rem; color: var(--on-dark); letter-spacing: -.03em; }
.brand__mark { display: inline-flex; }

.nav-menu { display: contents; }
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: 12px; }
.nav-links > li { position: relative; }
.nav-links a {
  color: var(--on-dark-mut); font-weight: 500; font-size: .96rem;
  padding: 8px 14px; border-radius: 10px;
  display: inline-block;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }

.nav-cta { display: flex; align-items: center; gap: 18px; margin-left: auto; }

.nav-toggle {
  display: none; margin-left: auto;
  flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 0 auto; background: var(--on-dark); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   DROPDOWNS
   ============================================================ */
.nav-drop-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  color: var(--on-dark-mut); font-weight: 500; font-size: .96rem;
  font-family: inherit;
  padding: 8px 14px; border-radius: 10px;
}
.nav-drop-toggle:hover,
.nav-drop-toggle[aria-expanded="true"] { color: #fff; background: rgba(255,255,255,.06); }

.nav-drop-caret { transition: transform .2s var(--ease); flex: none; }
.has-dropdown > .nav-drop-toggle[aria-expanded="true"] > .nav-drop-caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 200px;
  background: rgba(11,31,26,.98);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 50;
}
.has-dropdown:hover > .dropdown,
.has-dropdown > .dropdown.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.dropdown li { list-style: none; position: relative; }
.dropdown a,
.dropdown .nav-drop-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 9px 12px; border-radius: 8px;
  color: var(--on-dark-mut); font-size: .92rem; font-weight: 500;
}
.dropdown a:hover,
.dropdown .nav-drop-toggle:hover,
.dropdown .nav-drop-toggle[aria-expanded="true"] {
  color: #fff; background: rgba(255,255,255,.07);
}

/* Nested submenu (Study Materials > Class > Subjects) */
.has-submenu { position: relative; }
.nav-drop-caret--side { transform: rotate(0deg); }

.submenu {
  position: absolute; top: -8px; left: calc(100% + 8px);
  min-width: 190px;
  background: rgba(11,31,26,.98);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; transform: translateX(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 60;
}
.has-submenu:hover > .submenu,
.has-submenu > .submenu.is-open {
  opacity: 1; visibility: visible; transform: translateX(0);
}
.submenu li { list-style: none; }
.submenu a {
  padding: 9px 12px; border-radius: 8px;
  color: var(--on-dark-mut); font-size: .9rem; font-weight: 500;
}
.submenu a:hover { color: #fff; background: rgba(255,255,255,.07); }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    display: block;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(7,20,16,.98);
    padding: 20px;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0; visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .nav-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  .nav-links { flex-direction: column; align-items: stretch; gap: 2px; margin-left: 0; }
  .nav-links > li { width: 100%; }
  .nav-links a,
  .nav-drop-toggle { width: 100%; padding: 12px 14px; }

  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: none; box-shadow: none; border: none;
    background: rgba(255,255,255,.03); margin: 4px 0 4px 10px;
  }
  .has-dropdown > .dropdown.is-open { display: block; }
  .has-dropdown:hover > .dropdown { display: none; } /* disable hover-open on touch */
  .has-dropdown > .dropdown.is-open { display: block; }

  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: none; box-shadow: none; border: none;
    background: rgba(255,255,255,.03); margin: 4px 0 4px 10px;
  }
  .has-submenu:hover > .submenu { display: none; }
  .has-submenu > .submenu.is-open { display: block; }

  .nav-cta { margin: 16px 0 0; }
}
.nav-links {
  gap: 2px; /* was 6px */
}

.nav-links a,
.nav-drop-toggle {
  padding: 8px 10px; /* was 8px 14px — slightly tighter */
  font-size: .92rem; /* was .96rem */
}

.nav-bar {
  gap: 16px; /* was 24px */
}
/* Question papers */
/* ============================================================
   QUESTION PAPERS
   ============================================================ */
.qp-section { padding: 90px 0; background: #f5f7f5; }

.qp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.qp-card {
  background: #ffffff;
  border: 1px solid #e2e9e5;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qp-card--dark { background: #0b1f1a; border-color: #0b1f1a; }
.qp-card--dark h3,
.qp-card--dark .qp-card__badge { color: #fff; }
.qp-card--dark p { color: #b7c2bd; }
.qp-card--dark .qp-card__badge { background: rgba(55,214,166,.18); }
.qp-card--dark .qp-file { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.qp-card--dark .qp-file__name { color: #e9efec; }
.qp-card--dark .qp-file__action { color: #9fb0a8; }
.qp-card--dark .qp-file__action:hover { color: #fff; background: rgba(255,255,255,.1); }

/* Card head */
.qp-card__head { display: flex; align-items: center; gap: 14px; }
.qp-card__badge {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(31,138,95,.12);
  color: #1f8a5f;
  font-family: var(--ff-display, 'Poppins', sans-serif);
  font-weight: 800;
  font-size: 1.2rem;
}
.qp-card__head h3 {
  margin: 0;
  font-family: var(--ff-display, 'Poppins', sans-serif);
  font-size: 1.15rem;
  color: #0b1f1a;
}
.qp-card__head p {
  margin: 2px 0 0;
  font-size: .84rem;
  color: #6b7a75;
}

/* File list */
.qp-card__files { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }

.qp-file {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 10px 10px 12px;
  border-radius: 10px;
  background: #f5f7f5;
  border: 1px solid #e2e9e5;
}
.qp-file__icon { flex: none; color: #1f8a5f; }
.qp-file__name {
  flex: 1;
  font-size: .88rem;
  color: #0b1f1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.qp-file__action {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 8px;
  color: #6b7a75;
  transition: color .15s ease, background .15s ease;
}
.qp-file__action:hover { color: #1f8a5f; background: rgba(31,138,95,.1); }

@media (max-width: 980px) {
  .qp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .qp-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   QUESTION PAPERS — ANIMATION
   ============================================================ */

/* Card entrance state (before it scrolls into view) */
.qp-card[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.16,.84,.44,1),
              transform .6s cubic-bezier(.16,.84,.44,1),
              box-shadow .25s ease,
              border-color .25s ease;
}
.qp-card[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger each card slightly */
.qp-grid .qp-card:nth-child(1) { transition-delay: 0s; }
.qp-grid .qp-card:nth-child(2) { transition-delay: .12s; }
.qp-grid .qp-card:nth-child(3) { transition-delay: .24s; }

/* Hover lift on the whole card */
.qp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(11,31,26,.12);
  border-color: #cfe4d9;
}
.qp-card--dark:hover {
  border-color: rgba(55,214,166,.35);
  box-shadow: 0 18px 34px rgba(0,0,0,.35);
}

/* Badge gets a little pulse on card hover */
.qp-card__badge {
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .25s ease;
}
.qp-card:hover .qp-card__badge {
  transform: scale(1.08) rotate(-4deg);
}

/* File rows animate in with their own micro-stagger, and slide slightly on hover */
.qp-file {
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.qp-file:hover {
  transform: translateX(4px);
  background: #eef5f1;
  border-color: #cfe4d9;
}
.qp-card--dark .qp-file:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

/* Action icons animate on their own hover */
.qp-file__action {
  transition: color .15s ease, background .15s ease, transform .15s ease;
}
.qp-file__action:hover {
  transform: scale(1.1);
}
.qp-file__action:active {
  transform: scale(.94);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .qp-card[data-reveal],
  .qp-card__badge,
  .qp-file,
  .qp-file__action {
    transition: none !important;
  }
  .qp-card[data-reveal] {
    opacity: 1;
    transform: none;
  }
}