/* ══════════════════════════════════════════════════
   RAYS & RZILSS — style.css
   Theme: Modern Clean (Light default / Dark toggle)
   Fonts: Playfair Display + DM Sans + DM Mono
══════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────── */
:root {
  --brand-blue: #1a2f7a;
  --brand-blue-2: #2642b5;
  --accent-red: #e53935;
  --accent-red-2: #c8201c;
  --accent-yellow: #f9c400;

  /* Light */
  --bg: #f5f6fa;
  --bg-2: #ffffff;
  --bg-3: #eef0f8;
  --surf: #ffffff;
  --surf-2: #f0f2fc;
  --border: #e2e5f0;
  --text: #0d1332;
  --text-2: #4a5278;
  --muted: #8a90b0;
  --nav-bg: rgba(255, 255, 255, 0.88);
  --shadow: 0 4px 24px rgba(26, 47, 122, .10);
  --shadow-lg: 0 12px 48px rgba(26, 47, 122, .16);

  --font-d: 'Playfair Display', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --font-m: 'DM Mono', monospace;
  --sp: 100px 0;
  --r: 16px;
  --r-lg: 24px;
  --tr: .35s cubic-bezier(.4, 0, .2, 1);
}

[data-theme="dark"] {
  --bg: #0b0f1e;
  --bg-2: #111827;
  --bg-3: #151c30;
  --surf: #1a2240;
  --surf-2: #1e2845;
  --border: #2a3560;
  --text: #e8ecff;
  --text-2: #9ba3cc;
  --muted: #5c6490;
  --nav-bg: rgba(11, 15, 30, 0.92);
  --shadow: 0 4px 24px rgba(0, 0, 0, .40);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .55);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--tr), color var(--tr);
  word-break: break-word;
  overflow-wrap: break-word
}

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

ul {
  list-style: none
}

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

textarea,
input,
select {
  font-family: var(--font-b);
  max-width: 100%
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: max(0px, env(safe-area-inset-left));
  padding-right: max(0px, env(safe-area-inset-right))
}

.section {
  padding: var(--sp)
}

.mt-btn {
  margin-top: 2rem
}

/* ── REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.delay-1 {
  transition-delay: .12s
}

.delay-2 {
  transition-delay: .24s
}

.delay-3 {
  transition-delay: .36s
}

.delay-4 {
  transition-delay: .48s
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--tr);
  white-space: nowrap;
}

.btn-lg {
  padding: .9rem 2.2rem;
  font-size: 1rem
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue-2), var(--brand-blue));
  color: #fff;
  box-shadow: 0 4px 20px rgba(38, 66, 181, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(38, 66, 181, .50)
}

.btn-outline {
  border-color: var(--brand-blue-2);
  color: var(--brand-blue-2);
  background: transparent;
}

[data-theme="dark"] .btn-outline {
  border-color: #6a88f5;
  color: #6a88f5
}

.btn-outline:hover {
  background: var(--brand-blue-2);
  color: #fff;
  transform: translateY(-2px)
}

.btn-outline-dark {
  border: 2px solid var(--text);
  color: var(--text);
  background: transparent;
  border-radius: 50px;
  padding: .75rem 1.75rem;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--tr);
  display: inline-flex;
  align-items: center;
}

.btn-outline-dark:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px)
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.6rem;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--tr);
  border: none;
  cursor: pointer;
}

.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4)
}

/* ── GRAD TEXT ───────────────────────────────────── */
.grad-text {
  background: linear-gradient(135deg, var(--brand-blue-2), var(--accent-red), var(--accent-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION LABELS ──────────────────────────────── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-m);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-blue-2);
  background: var(--surf-2);
  border: 1px solid var(--border);
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

[data-theme="dark"] .sec-label {
  color: #6a88f5
}

.sec-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}

.sec-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 560px
}

.sec-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center
}

.body-p {
  color: var(--text-2);
  margin-bottom: 1rem;
  line-height: 1.85
}

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--tr);
}

.navbar.scrolled {
  padding: .65rem 0;
  border-bottom-color: var(--border);
  box-shadow: var(--shadow)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center
}

.logo-img {
  height: 75px;
  width: auto;
  border-radius: 8px;
  object-fit: contain
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  align-items: center
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--tr);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-blue-2);
  border-radius: 2px;
  transition: width var(--tr);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-blue-2)
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  color: #6a88f5
}

[data-theme="dark"] .nav-link::after {
  background: #6a88f5
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-shrink: 0
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surf);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--tr);
}

.theme-toggle:hover {
  transform: rotate(20deg);
  border-color: var(--brand-blue-2)
}

[data-theme="light"] .t-moon {
  display: none
}

[data-theme="dark"] .t-sun {
  display: none
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--tr)
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 90px;
  background: var(--bg);
}

.nav-close {
  display: none
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.hs {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .12
}

[data-theme="dark"] .hs {
  opacity: .2
}

.hs-1 {
  width: 600px;
  height: 600px;
  background: var(--brand-blue-2);
  top: -200px;
  right: -100px;
  animation: fA 9s ease-in-out infinite
}

.hs-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-red);
  bottom: -80px;
  left: -60px;
  animation: fB 11s ease-in-out infinite
}

.hs-3 {
  width: 280px;
  height: 280px;
  background: var(--accent-yellow);
  top: 45%;
  left: 42%;
  animation: fA 13s ease-in-out infinite reverse
}

@keyframes fA {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-28px, 18px)
  }
}

@keyframes fB {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(18px, -22px)
  }
}

/* Two-column inner */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-blue-2);
  background: var(--surf);
  border: 1px solid var(--border);
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
  box-shadow: var(--shadow);
}

[data-theme="dark"] .hero-badge {
  color: #6a88f5
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .3);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .3)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, .1)
  }
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  color: var(--text);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 2.2rem;
  line-height: 1.85;
}

.hero-sub strong {
  color: var(--text)
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

/* Right: stat cards 2×2 grid */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 420px;
}

.hcard {
  border-radius: var(--r);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transition: transform var(--tr), box-shadow var(--tr);
}

.hcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.hcard--blue {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
  color: #fff
}

.hcard--red {
  background: linear-gradient(135deg, var(--accent-red-2), var(--accent-red));
  color: #fff
}

.hcard--dark {
  background: var(--text);
  color: var(--bg)
}

[data-theme="dark"] .hcard--dark {
  background: var(--surf);
  color: var(--text);
  border: 1px solid var(--border)
}

.hcard--gold {
  background: linear-gradient(135deg, #b8780a, var(--accent-yellow));
  color: #1a1200
}

.hcard-n {
  font-family: var(--font-d);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.hcard-s {
  font-size: 1.6rem;
  font-weight: 900;
  display: inline
}

.hcard-l {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: .15rem;
  line-height: 1.4
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: sB 2s ease-in-out infinite;
}

@keyframes sB {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* ── TICKER ──────────────────────────────────────── */
.ticker-wrap {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
  padding: .85rem 0;
  overflow: hidden;
}

.ticker {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  animation: tick 32s linear infinite;
}

.ticker span {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
  letter-spacing: .07em;
  text-transform: uppercase
}

.td {
  color: var(--accent-yellow) !important;
  font-size: .75rem
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.ticker-wrap:hover .ticker {
  animation-play-state: paused
}

/* ══════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════ */
.about {
  background: var(--bg-2)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.about-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center
}

.av-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  width: 270px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.av-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand-blue-2), var(--brand-blue));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.av-card h3 {
  font-family: var(--font-d);
  font-size: 1.1rem;
  margin-bottom: .5rem
}

.av-card p {
  font-size: .83rem;
  color: var(--text-2)
}

.av-float {
  position: absolute;
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .85rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow);
}

.av-f1 {
  top: 28px;
  left: 8px;
  animation: floatBadge 4s ease-in-out infinite
}

.av-f2 {
  bottom: 28px;
  right: 0;
  animation: floatBadge 4s ease-in-out infinite 1.5s
}

@keyframes floatBadge {

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

  50% {
    transform: translateY(-10px)
  }
}

.af-n {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--brand-blue-2);
  line-height: 1
}

[data-theme="dark"] .af-n {
  color: #6a88f5
}

.af-l {
  font-size: .68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .2rem
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 1.5rem
}

.ab-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .88rem;
  color: var(--text-2)
}

.ab-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px
}

/* ══════════════════════════════════════════════════
   WHO CAN JOIN
══════════════════════════════════════════════════ */
.who {
  background: var(--bg-3)
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem
}

.who-card {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform var(--tr), box-shadow var(--tr);
  position: relative;
  overflow: hidden;
}

.who-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.who-card--blue::before {
  background: linear-gradient(90deg, var(--brand-blue-2), var(--brand-blue))
}

.who-card--red::before {
  background: linear-gradient(90deg, var(--accent-red), var(--accent-red-2))
}

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

.wc-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-m);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  background: var(--surf-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--brand-blue-2);
  font-weight: 500;
}

[data-theme="dark"] .wc-badge {
  color: #6a88f5
}

.wc-badge--red {
  color: var(--accent-red) !important
}

.wc-icon {
  font-size: 2.5rem
}

.wc-title {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.2
}

.wc-desc {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.75
}

.wc-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue-2), var(--brand-blue));
  border-radius: 2px
}

.wc-divider--red {
  background: linear-gradient(90deg, var(--accent-red), var(--accent-red-2))
}

.wc-includes .wc-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .7rem
}

.wc-includes ul {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.wc-includes li {
  font-size: .88rem;
  color: var(--text-2)
}

.wc-eligibility {
  background: var(--surf-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .85rem 1rem;
  font-size: .85rem;
}

.we-label {
  display: block;
  font-family: var(--font-m);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3rem;
}

.wc-btn {
  margin-top: auto;
  display: flex;
  justify-content: center
}

.who-note {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.7;
}

.wn-icon {
  font-size: 1.4rem;
  flex-shrink: 0
}

.who-note strong {
  color: var(--text)
}

.who-note em {
  font-style: normal;
  font-weight: 600;
  color: var(--brand-blue-2)
}

[data-theme="dark"] .who-note em {
  color: #6a88f5
}

/* ══════════════════════════════════════════════════
   TRAINING
══════════════════════════════════════════════════ */
.training {
  background: var(--bg-2)
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 3rem
}

.mod {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--tr);
}

.mod::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue-2), var(--accent-red));
  opacity: 0;
  transition: opacity var(--tr);
}

.mod:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg)
}

.mod:hover::after {
  opacity: 1
}

.mod-num {
  font-family: var(--font-m);
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .12em;
  margin-bottom: .7rem
}

.mod-icon {
  font-size: 2rem;
  margin-bottom: .8rem
}

.mod h3 {
  font-family: var(--font-d);
  font-size: 1.1rem;
  margin-bottom: .5rem
}

.mod p {
  font-size: .87rem;
  color: var(--text-2);
  line-height: 1.7
}

/* Timeline */
.timeline-wrap {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
}

.tl-title {
  font-family: var(--font-d);
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 2.5rem
}

.timeline {
  display: flex;
  align-items: flex-start;
  position: relative
}

.tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1
}

.tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2.5px solid var(--border);
  margin-bottom: .8rem;
  transition: all var(--tr);
}

.tl-dot--final {
  background: var(--accent-red);
  border-color: var(--accent-red);
  box-shadow: 0 0 0 5px rgba(229, 57, 53, .2)
}

.tl-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-bottom: 1.2rem;
  align-self: center;
  min-width: 20px
}

.tl-content {
  text-align: center
}

.tl-m {
  display: block;
  font-weight: 600;
  font-size: .87rem;
  margin-bottom: .15rem
}

.tl-d {
  display: block;
  font-size: .77rem;
  color: var(--muted)
}

/* ══════════════════════════════════════════════════
   PLACEMENT / GUARANTEE
══════════════════════════════════════════════════ */
.placement {
  background: var(--bg-3)
}

.placement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.guarantee-quote {
  border-left: 4px solid var(--brand-blue-2);
  padding: .9rem 1.3rem;
  margin: 1.5rem 0;
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  background: var(--surf-2);
  border-radius: 0 var(--r) var(--r) 0;
}

.gi-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem
}

.gi {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.2rem;
  transition: all var(--tr);
}

.gi:hover {
  border-color: var(--brand-blue-2);
  transform: translateX(4px)
}

.gi-tick {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue-2), var(--brand-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
}

.gi strong {
  display: block;
  margin-bottom: .2rem
}

.gi p {
  font-size: .83rem;
  color: var(--text-2);
  margin: 0
}

.pl-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem
}

.guarantee-card {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(38, 66, 181, .4);
  animation: spin 10s linear infinite;
}

.gc-ring--2 {
  inset: -14px;
  border-color: rgba(229, 57, 53, .25);
  animation-duration: 14s;
  animation-direction: reverse
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.gc-core {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 48px rgba(38, 66, 181, .40), 0 0 0 1px rgba(58, 92, 232, .3);
}

.gc-pct {
  font-family: var(--font-d);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--accent-yellow);
  line-height: 1
}

.gc-lbl {
  font-family: var(--font-m);
  font-size: .62rem;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .65);
  margin-top: .2rem
}

.gc-note {
  font-size: .82rem;
  color: var(--muted);
  font-style: italic
}

.pl-stats {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.4rem 1.8rem;
  width: 100%;
}

.pls {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1
}

.pls strong {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-blue-2)
}

[data-theme="dark"] .pls strong {
  color: #6a88f5
}

.pls span {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .15rem;
  text-align: center
}

.pls-div {
  width: 1px;
  height: 36px;
  background: var(--border)
}

/* ══════════════════════════════════════════════════
   FEES
══════════════════════════════════════════════════ */
.fees {
  background: var(--bg-2)
}

.fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem
}

.fee-card {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr), box-shadow var(--tr);
}

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

.fee-card--blue .fc-header {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
  color: #fff
}

.fee-card--dark .fc-header {
  background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
  color: #fff
}

[data-theme="dark"] .fee-card--dark .fc-header {
  background: linear-gradient(135deg, var(--surf), var(--surf-2));
  color: var(--text)
}

.fc-header {
  padding: 2rem 2rem 1.6rem
}

.fc-track {
  display: inline-block;
  font-family: var(--font-m);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 50px;
  margin-bottom: .9rem;
  background: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .85);
}

.fc-title {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: .3rem
}

.fc-sub {
  font-size: .85rem;
  opacity: .75
}

.fc-body {
  padding: 2rem;
  flex: 1
}

.fc-structure {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem
}

.fc-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surf-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem;
}

.fc-step-num {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-blue-2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}

[data-theme="dark"] .fc-step-num {
  color: #6a88f5
}

.fc-step-num--accent {
  color: var(--accent-red) !important
}

.fc-step-info strong {
  display: block;
  margin-bottom: .2rem
}

.fc-step-info p {
  font-size: .83rem;
  color: var(--text-2);
  margin: 0
}

.fc-arrow {
  text-align: center;
  font-size: 1.2rem;
  color: var(--muted);
  margin: -.25rem 0
}

.fc-highlight {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(38, 66, 181, .08), rgba(38, 66, 181, .04));
  border: 1px solid rgba(38, 66, 181, .18);
  border-radius: var(--r);
  padding: 1rem;
  font-size: .85rem;
  color: var(--text-2);
}

[data-theme="dark"] .fc-highlight {
  background: rgba(106, 136, 245, .08);
  border-color: rgba(106, 136, 245, .2)
}

.fc-btn {
  margin: 0 2rem 2rem;
  display: flex;
  justify-content: center
}

.fc-manager-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem
}

.fmi-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--surf-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.fmi-icon {
  font-size: 1.5rem;
  flex-shrink: 0
}

.fmi-item strong {
  display: block;
  margin-bottom: .2rem
}

.fmi-item p {
  font-size: .83rem;
  color: var(--text-2);
  margin: 0
}

.fees-note {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.7;
}

.fn-icon {
  font-size: 1.3rem;
  flex-shrink: 0
}

.fees-note a {
  color: var(--brand-blue-2);
  font-weight: 600
}

[data-theme="dark"] .fees-note a {
  color: #6a88f5
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testimonials {
  background: var(--bg-3)
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.testi {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--tr);
}

.testi:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.testi-q {
  font-family: var(--font-d);
  font-size: 4rem;
  line-height: .7;
  color: var(--brand-blue-2);
  opacity: .2
}

[data-theme="dark"] .testi-q {
  color: #6a88f5
}

.testi p {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.8;
  flex: 1
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .9rem
}

.ta-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  color: #fff;
}

.testi-author strong {
  display: block;
  font-size: .9rem
}

.testi-author span {
  font-size: .77rem;
  color: var(--muted)
}

/* ══════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════ */
.whyus {
  background: var(--bg-2)
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.why-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surf);
  transition: all var(--tr);
}

.why-item:hover {
  border-color: var(--brand-blue-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.wi-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 1rem
}

.why-item h4 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  margin-bottom: .5rem
}

.why-item p {
  font-size: .84rem;
  color: var(--text-2)
}

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.faq {
  background: var(--bg-3)
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start
}

.faq-cta {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: sticky;
  top: 100px;
}

.fa-icon {
  font-size: 2.2rem;
  margin-bottom: .5rem
}

.faq-cta h3 {
  font-family: var(--font-d);
  font-size: 1.2rem;
  margin-bottom: .2rem
}

.faq-cta p {
  font-size: .87rem;
  color: var(--text-2)
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surf);
  transition: border-color var(--tr);
}

.faq-item:hover,
.faq-item.open {
  border-color: var(--brand-blue-2)
}

[data-theme="dark"] .faq-item:hover,
[data-theme="dark"] .faq-item.open {
  border-color: #6a88f5
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 600;
  transition: background var(--tr);
}

.faq-q:hover {
  background: var(--surf-2)
}

.fq-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--brand-blue-2);
  transition: transform var(--tr);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

[data-theme="dark"] .fq-icon {
  color: #6a88f5
}

.faq-item.open .fq-icon {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1)
}

.faq-item.open .faq-a {
  max-height: 400px
}

.faq-ai {
  padding: 1rem 1.4rem 1.4rem;
  font-size: .87rem;
  color: var(--text-2);
  line-height: 1.85;
  border-top: 1px solid var(--border);
}

.faq-btn {
  width: 100%;
  justify-content: center;
  padding: .8rem 1.2rem !important;
  font-size: .9rem !important;
  border-radius: 10px !important;
}

.btn-wa-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #25D366;
  color: #fff;
  border: 2px solid transparent;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--tr);
}

.btn-wa-outline:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4)
}

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.contact {
  background: var(--bg-2)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start
}

.ct-items {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 1.5rem
}

.ct-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  transition: all var(--tr);
}

a.ct-item:hover {
  border-color: var(--brand-blue-2);
  transform: translateX(4px)
}

.cti-icon {
  font-size: 1.4rem;
  flex-shrink: 0
}

.ct-item strong {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .15rem
}

.ct-item span {
  font-size: .88rem;
  color: var(--text)
}

.cf {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem
}

.cf-head {
  margin-bottom: 1.8rem
}

.cf-head h3 {
  font-family: var(--font-d);
  font-size: 1.5rem;
  margin-bottom: .2rem
}

.cf-head p {
  font-size: .85rem;
  color: var(--muted)
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.cf-g {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem
}

.cf-g label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text-2);
  text-transform: uppercase
}

.req {
  color: var(--accent-red)
}

.cf-g input,
.cf-g select,
.cf-g textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-size: .9rem;
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
  -webkit-appearance: none;
}

.cf-g input:focus,
.cf-g select:focus,
.cf-g textarea:focus {
  border-color: var(--brand-blue-2);
  box-shadow: 0 0 0 3px rgba(38, 66, 181, .12);
}

.cf-g textarea {
  resize: vertical;
  min-height: 100px
}

.cf-submit {
  width: 100%;
  padding: .9rem;
  background: linear-gradient(135deg, var(--brand-blue-2), var(--brand-blue));
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-b);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: all var(--tr);
  box-shadow: 0 4px 20px rgba(38, 66, 181, .4);
}

.cf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(38, 66, 181, .55)
}

.cf-note {
  text-align: center;
  font-size: .77rem;
  color: var(--muted);
  margin-top: .8rem
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border)
}

.footer-brand p {
  color: var(--text-2);
  font-size: .85rem;
  margin-top: .9rem;
  max-width: 320px;
  line-height: 1.8
}

.footer-logo {
  height: 48px;
  width: auto;
  border-radius: 8px
}

.footer-col h4 {
  font-family: var(--font-d);
  font-size: 1rem;
  margin-bottom: 1.2rem
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .55rem
}

.footer-col li {
  font-size: .85rem;
  color: var(--text-2)
}

.footer-col a {
  transition: color var(--tr)
}

.footer-col a:hover {
  color: var(--brand-blue-2)
}

[data-theme="dark"] .footer-col a:hover {
  color: #6a88f5
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: var(--muted)
}

/* ── TOAST ───────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 4rem));
  background: var(--brand-blue);
  color: #fff;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(26, 47, 122, .5);
  transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 9999;
  white-space: nowrap;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Full 5-breakpoint system
   1. ≥1400px   Wide desktops
   2. 1200–1399 Standard desktops / large laptops
   3. 1024–1199 Small laptops / landscape tablets
   4.  768–1023 Portrait tablets / phablets
   5.  480–767  Large phones
   6.  320–479  Small phones
══════════════════════════════════════════════════ */

/* ── 1. WIDE DESKTOPS (1400px+) ────────────────── */
@media (min-width:1400px) {
  .container {
    max-width: 1320px
  }

  .hero-title {
    font-size: 5.8rem
  }

  .sec-title {
    font-size: 3.2rem
  }

  .modules-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .testi-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

/* ── 2. STANDARD DESKTOPS (1200–1399px) ─────────── */
@media (max-width:1399px) and (min-width:1200px) {
  .container {
    max-width: 1140px
  }

  .nav-links {
    gap: 1.4rem
  }

  .nav-link {
    font-size: .85rem
  }
}

/* ── 3. SMALL LAPTOPS / LANDSCAPE TABLETS (1024–1199px) */
@media (max-width:1199px) and (min-width:1025px) {
  .container {
    width: 92%
  }

  .nav-links {
    gap: 1.1rem
  }

  .nav-link {
    font-size: .82rem
  }

  .btn-nav-cta,
  .nav-cta {
    padding: .55rem 1.1rem;
    font-size: .82rem
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2.8rem, 4.5vw, 4.2rem)
  }

  .hero-stats {
    gap: 1.2rem
  }

  /* About */
  .about-grid {
    gap: 3rem
  }

  .about-visual {
    height: 360px
  }

  /* Grids */
  .modules-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem
  }

  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem
  }

  .who-grid {
    gap: 1.4rem
  }

  .fees-grid {
    gap: 1.4rem
  }

  /* Placement */
  .placement-grid {
    gap: 3rem
  }

  /* Contact */
  .contact-grid {
    gap: 3rem
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1.3fr;
    gap: 2rem
  }

  /* FAQ */
  .faq-layout {
    gap: 2.5rem
  }
}

/* ── 4. PORTRAIT TABLETS / PHABLETS (768–1024px) ─ */
@media (max-width:1024px) {
  :root {
    --sp: 80px 0
  }

  .container {
    width: 92%
  }

  /* ── Navbar ── */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1100;
    font-size: 1.1rem;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
    animation: menuFadeIn 0.22s ease forwards;
  }

  @keyframes menuFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-link {
    font-size: 1.1rem;
    padding: .4rem 0
  }

  .hamburger {
    display: flex;
    z-index: 1200
  }

  .nav-close {
    display: flex;
    position: fixed;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 1201;
    transition: background var(--tr), border-color var(--tr);
  }

  .nav-close:hover {
    background: var(--surf-2);
    border-color: var(--brand-blue-2);
  }

  .nav-cta {
    display: none
  }

  /* ── Hero ── */
  .hero {
    padding: 110px 0 70px
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .hero-left {
    align-items: center;
    text-align: center
  }

  .hero-badge {
    align-self: center
  }

  .hero-sub {
    max-width: 100%;
    text-align: center
  }

  .hero-actions {
    justify-content: center
  }

  .hero-right {
    width: 100%
  }

  .hero-cards {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr)
  }

  .hcard-n {
    font-size: 2rem
  }

  .hero-scroll-cue {
    display: none
  }

  /* ── About ── */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .about-visual {
    height: auto;
    min-height: auto;
    position: static;
    display: block;
    padding: 1rem 0
  }

  .av-card {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
    width: 100%;
    max-width: 420px
  }

  .av-float {
    display: none
  }

  /* ── Who ── */
  .who-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem
  }

  /* ── Training ── */
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem
  }

  /* Timeline stays horizontal but compressed */
  .timeline-wrap {
    padding: 2rem 1.5rem
  }

  .tl-m {
    font-size: .82rem
  }

  .tl-d {
    font-size: .72rem
  }

  /* ── Placement ── */
  .placement-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .pl-visual {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap
  }

  .pl-stats {
    width: auto;
    flex: 1;
    min-width: 220px
  }

  /* ── Fees ── */
  .fees-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem
  }

  /* ── Testimonials ── */
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem
  }

  /* ── Why Us ── */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem
  }

  /* ── FAQ ── */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .faq-cta {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap
  }

  .faq-cta h3 {
    margin-bottom: .3rem
  }

  /* ── Contact ── */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .footer-brand {
    grid-column: 1 / -1
  }

  .footer-bottom {
    flex-direction: row
  }

  /* ── Timeline (vertical on tablet) ── */
  .timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0
  }

  .tl-line {
    width: 2px;
    height: 28px;
    margin: 0 0 0 8px;
    align-self: auto;
    flex: none;
    min-width: auto
  }

  .tl-step {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    width: 100%
  }

  .tl-dot {
    margin-bottom: 0;
    flex-shrink: 0
  }

  .tl-content {
    text-align: left
  }
}

/* ── 5. LARGE PHONES (480–767px) ──────────────── */
@media (max-width:767px) {
  :root {
    --sp: 60px 0
  }

  .container {
    width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem
  }

  /* ── Navbar ── */
  .navbar {
    padding: .75rem 0
  }

  .navbar.scrolled {
    padding: .55rem 0
  }

  .logo-img {
    height: 40px
  }

  .nav-logo-text .logo-name {
    font-size: .95rem
  }

  .nav-logo-text .logo-tagline {
    display: none
  }

  /* ── Hero ── */
  .hero {
    padding: 90px 0 60px;
    min-height: auto
  }

  .hero-inner {
    gap: 2rem
  }

  .hero-title {
    font-size: clamp(2rem, 7.5vw, 2.8rem)
  }

  .hero-sub {
    font-size: .93rem;
    margin-bottom: 1.8rem
  }

  .hero-badge {
    font-size: .7rem;
    padding: .35rem .8rem;
    text-align: center
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
    width: 100%
  }

  .hero-actions .btn {
    justify-content: center;
    width: 100%
  }

  .hero-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem
  }

  .hcard {
    padding: 1.2rem 1rem
  }

  .hcard-n {
    font-size: 1.8rem
  }

  .hcard-s {
    font-size: 1.2rem
  }

  .hcard-l {
    font-size: .66rem
  }

  .hero-scroll-cue {
    display: none
  }

  /* ── Ticker ── */
  .ticker span {
    font-size: .74rem
  }

  /* ── Section labels/headings ── */
  .sec-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem)
  }

  .sec-sub {
    font-size: .93rem
  }

  .sec-header {
    margin-bottom: 2.5rem
  }

  /* ── About ── */
  .about-grid {
    gap: 2rem
  }

  .about-visual {
    height: auto;
    min-height: auto;
    position: static;
    display: block;
    padding: .5rem 0
  }

  .av-card {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    padding: 1.8rem
  }

  .av-icon-wrap {
    width: 52px;
    height: 52px;
    font-size: 1.5rem
  }

  .av-float {
    display: none
  }

  .about-badges {
    gap: .65rem
  }

  .ab-item {
    font-size: .84rem
  }

  /* ── Who Can Join ── */
  .who-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem
  }

  .who-card {
    padding: 2rem 1.5rem
  }

  .wc-title {
    font-size: 1.25rem
  }

  /* ── Training ── */
  .modules-grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  .mod {
    padding: 1.6rem
  }

  .timeline-wrap {
    padding: 1.8rem 1.4rem
  }

  .tl-title {
    font-size: 1.1rem;
    margin-bottom: 1.8rem
  }

  /* ── Placement ── */
  .placement-grid {
    gap: 2rem
  }

  .pl-visual {
    flex-direction: column;
    gap: 1.5rem
  }

  .guarantee-card {
    width: 180px;
    height: 180px
  }

  .gc-core {
    width: 152px;
    height: 152px
  }

  .gc-pct {
    font-size: 2.6rem
  }

  .gc-lbl {
    font-size: .58rem
  }

  .pl-stats {
    flex-direction: column;
    gap: .8rem;
    align-items: stretch;
    padding: 1.2rem
  }

  .pls {
    flex-direction: row;
    justify-content: space-between;
    align-items: center
  }

  .pls strong {
    font-size: 1.5rem
  }

  .pls-div {
    width: 100%;
    height: 1px
  }

  /* ── Fees ── */
  .fees-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem
  }

  .fc-header {
    padding: 1.6rem 1.5rem 1.3rem
  }

  .fc-body {
    padding: 1.5rem
  }

  .fc-title {
    font-size: 1.2rem
  }

  .fc-step {
    padding: .9rem
  }

  .fc-step-num {
    font-size: 1.7rem;
    min-width: 44px
  }

  .fc-btn {
    margin: 0 1.5rem 1.5rem
  }

  /* ── Testimonials ── */
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  .testi {
    padding: 1.6rem
  }

  /* ── Why Us ── */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem
  }

  .why-item {
    padding: 1.8rem 1.2rem
  }

  .wi-icon {
    font-size: 2rem
  }

  .why-item h4 {
    font-size: .95rem
  }

  .why-item p {
    font-size: .8rem
  }

  /* ── FAQ ── */
  .faq-layout {
    gap: 1.5rem
  }

  .faq-cta {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem
  }

  .faq-cta h3 {
    font-size: 1.1rem
  }

  .faq-q {
    font-size: .87rem;
    padding: 1rem 1.2rem
  }

  .faq-ai {
    padding: .9rem 1.2rem 1.2rem;
    font-size: .84rem
  }

  /* ── Contact ── */
  .ct-items {
    gap: .75rem
  }

  .ct-item {
    padding: .9rem 1rem
  }

  .cf {
    padding: 1.8rem 1.4rem
  }

  .cf-row {
    grid-template-columns: 1fr
  }

  .cf-head h3 {
    font-size: 1.3rem
  }

  .cf-submit {
    font-size: .9rem;
    padding: .85rem
  }

  /* ── Footer ── */
  .footer {
    padding: 3rem 0 1.5rem
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem
  }

  .footer-brand {
    grid-column: auto
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: .4rem
  }

  .footer-brand p {
    max-width: 100%
  }

  /* ── Toast ── */
  .toast {
    font-size: .82rem;
    padding: .8rem 1.4rem;
    white-space: normal;
    text-align: center;
    max-width: 88vw
  }

  /* ── Guarantee quote ── */
  .guarantee-quote {
    font-size: .95rem;
    padding: .8rem 1rem
  }

  /* ── Who note ── */
  .who-note {
    flex-direction: column;
    gap: .6rem;
    font-size: .84rem
  }

  .fees-note {
    flex-direction: column;
    gap: .6rem;
    font-size: .84rem
  }
}

/* ── 6. SMALL PHONES (320–479px) ──────────────── */
@media (max-width:479px) {
  :root {
    --sp: 50px 0
  }

  .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem
  }

  /* ── Navbar ── */
  .logo-img {
    height: 36px
  }

  /* ── Hero ── */
  .hero {
    padding: 78px 0 45px
  }

  .hero-title {
    font-size: clamp(1.8rem, 8.5vw, 2.4rem)
  }

  .hero-badge {
    font-size: .65rem;
    padding: .3rem .7rem;
    gap: .4rem
  }

  .badge-dot {
    width: 6px;
    height: 6px
  }

  .hero-sub {
    font-size: .88rem
  }

  .btn-lg {
    padding: .8rem 1.4rem;
    font-size: .9rem
  }

  .hcard {
    padding: 1rem .9rem
  }

  .hcard-n {
    font-size: 1.6rem
  }

  .hcard-l {
    font-size: .62rem
  }

  /* ── Headings ── */
  .sec-title {
    font-size: clamp(1.5rem, 7vw, 2rem)
  }

  .sec-label {
    font-size: .7rem;
    padding: .3rem .75rem
  }

  /* ── About ── */
  .av-card h3 {
    font-size: 1rem
  }

  .av-card p {
    font-size: .8rem
  }

  /* ── Who ── */
  .wc-title {
    font-size: 1.1rem
  }

  .wc-includes li {
    font-size: .83rem
  }

  /* ── Training ── */
  .mod h3 {
    font-size: 1rem
  }

  .mod p {
    font-size: .83rem
  }

  /* ── Placement ── */
  .guarantee-card {
    width: 160px;
    height: 160px
  }

  .gc-core {
    width: 134px;
    height: 134px
  }

  .gc-pct {
    font-size: 2.2rem
  }

  /* ── Fees ── */
  .fc-step-num {
    font-size: 1.5rem;
    min-width: 38px
  }

  .fc-step-info strong {
    font-size: .88rem
  }

  .fc-step-info p {
    font-size: .8rem
  }

  .fmi-item strong {
    font-size: .88rem
  }

  .fmi-item p {
    font-size: .8rem
  }

  /* ── Why Us ── */
  .why-grid {
    grid-template-columns: 1fr
  }

  .why-item {
    padding: 1.5rem 1.2rem
  }

  /* ── Testimonials ── */
  .testi p {
    font-size: .84rem
  }

  /* ── FAQ ── */
  .faq-q {
    font-size: .84rem;
    padding: .9rem 1rem
  }

  .fq-icon {
    font-size: 1.2rem
  }

  /* ── Contact form ── */
  .cf {
    padding: 1.4rem 1.1rem
  }

  .cf-g input,
  .cf-g select,
  .cf-g textarea {
    font-size: .88rem;
    padding: .7rem .85rem
  }

  .cf-g label {
    font-size: .73rem
  }

  /* ── Footer ── */
  .footer-col h4 {
    font-size: .95rem
  }

  .footer-col li {
    font-size: .82rem
  }

  .footer-bottom {
    font-size: .73rem
  }

  /* ── Buttons ── */
  .btn {
    padding: .7rem 1.4rem;
    font-size: .88rem
  }

  .btn-wa {
    padding: .65rem 1.2rem;
    font-size: .82rem
  }

  .btn-outline-dark {
    padding: .7rem 1.4rem;
    font-size: .88rem
  }
}

/* ── TOUCH / HOVER ADJUSTMENTS ─────────────────── */
@media (hover:none) {

  /* Remove hover transforms on touch screens — they stick */
  .mod:hover,
  .testi:hover,
  .why-item:hover,
  .who-card:hover,
  .fee-card:hover,
  .gi:hover,
  .pillar:hover,
  .ct-item:hover {
    transform: none;
    box-shadow: var(--shadow);
    border-color: var(--border);
  }

  .mod:hover::after {
    opacity: 0
  }

  .btn-primary:hover,
  .cf-submit:hover {
    transform: none
  }

  .btn-wa:hover {
    transform: none
  }
}

/* ── LANDSCAPE PHONE FIX ────────────────────────── */
@media (max-width:767px) and (orientation:landscape) {
  .hero {
    min-height: auto;
    padding: 75px 0 35px
  }

  .hero-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem)
  }

  .hero-cards {
    grid-template-columns: repeat(4, 1fr)
  }

  .hcard {
    padding: .9rem .8rem
  }

  .hcard-n {
    font-size: 1.4rem
  }

  .hcard-l {
    font-size: .58rem
  }
}