:root {
  --navy: #1e3a5f;
  --navy-deep: #162d4a;
  --navy-dark: #0f2138;
  --navy-mid: #2d5a8e;
  --green: #1d9e75;
  --green-dark: #0f7a5a;
  --green-soft: #e8f8f2;
  --mint: #f0fdfa;
  --gold: #f5c518;
  --ink: #1e2d3d;
  --muted: #5b6b7c;
  --line: #e5eaf0;
  --bg: #f7fafb;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(30, 58, 95, 0.1);
  --radius: 16px;
  --header-h: 148px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Poppins, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 24px;
  transition: .25s ease;
  font-size: 14px;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(29, 158, 117, .28); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }
.btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-light { background: #fff; color: var(--navy); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
h1, h2, h3 { font-family: Sora, Poppins, sans-serif; line-height: 1.2; color: var(--navy-dark); }
.section { padding: 72px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 12px; }
.section-head p { color: var(--muted); }

/* Top bar */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}
.marquee { white-space: nowrap; animation: slide 22s linear infinite; }
@keyframes slide {
  from { transform: translateX(8%); }
  to { transform: translateX(-80%); }
}

/* Header */
.header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 20px;
}
.logo img,
.logo .custom-logo { height: 62px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 22px; }
.call-us { display: flex; align-items: center; gap: 10px; }
.call-us .icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; font-size: 18px;
}
.call-us small { display: block; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #111; }
.call-us a { font-weight: 600; color: #111; }
.login-link { font-weight: 600; font-size: 14px; color: var(--navy); }
.login-link:hover { color: var(--green); }

.nav {
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(15, 33, 56, .04);
}
.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.nav-list > li > a:hover,
.nav-list > li.active > a { color: var(--green); }
.nav-list > li.nav-cat-first {
  margin-left: 6px;
  padding-left: 6px;
  border-left: 1px solid var(--line);
}
.nav-list .badge {
  background: #ff8a1d; color: #fff; font-size: 9px; padding: 2px 6px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: .04em;
}
.nav-list .badge.blue { background: #2d7dff; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow);
  padding: 10px; display: none; z-index: 20;
}
.nav-list li:hover > .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 13.5px; color: var(--ink); }
.dropdown a:hover { background: var(--mint); color: var(--green-dark); }
.dropdown .sub { padding-left: 10px; }
.hamburger {
  display: none; background: var(--mint); border: 0; color: var(--navy);
  cursor: pointer; height: 42px; padding: 0 14px; border-radius: 10px;
  font-size: 14px; font-weight: 700; line-height: 1;
}

/* Hero */
.hero { position: relative; background: var(--navy-dark); overflow: hidden; }
.slides { position: relative; min-height: 520px; }
.slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center;
  gap: 40px; padding: 54px 0 70px; transition: opacity .5s ease;
}
.slide.active { opacity: 1; pointer-events: auto; position: relative; }
.slide-copy { color: #fff; padding: 0 8px; }
.slide-copy h1 { color: #fff; font-size: clamp(30px, 4.6vw, 52px); margin: 8px 0 16px; }
.slide-copy p { color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 24px; }
.slide-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats div { min-width: 110px; }
.hero-stats strong { display: block; font-size: 26px; color: var(--gold); font-family: Sora, sans-serif; }
.hero-stats span { font-size: 12px; color: rgba(255,255,255,.75); }
.slide-visual {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.slide-visual img {
  width: 100%; border-radius: 18px; object-fit: cover; max-height: 400px;
  background: #0f2138;
}
.hero-dots {
  position: absolute; left: 0; right: 0; bottom: 18px;
  display: flex; justify-content: center; gap: 8px;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.35); cursor: pointer;
}
.hero-dots button.active { background: var(--green); width: 26px; border-radius: 999px; }

/* Courses */
.course-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.course-tabs button {
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  padding: 10px 22px; border-radius: 999px; font-weight: 600; cursor: pointer;
}
.course-tabs button.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.course-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 22px; text-align: center; transition: .25s;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.course-card .level {
  width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 18px;
  display: grid; place-items: center; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.course-card h3 { font-size: 20px; margin-bottom: 8px; }
.course-card p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Videos */
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.video-card { border-radius: 16px; overflow: hidden; position: relative; background: #111; }
.video-card img { width: 100%; height: 170px; object-fit: cover; }
.play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.45));
}
.play span {
  width: 48px; height: 48px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; color: var(--navy); font-size: 16px;
}

/* Split */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.split.reverse { grid-template-columns: 1.1fr .9fr; }
.split img { border-radius: 24px; width: 100%; object-fit: cover; }
.split h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.split p { color: var(--muted); margin-bottom: 16px; }

.founder-card {
  background: linear-gradient(180deg, #fff, var(--mint));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  text-align: center;
}
.founder-card img { width: 100%; border-radius: 18px; margin-bottom: 14px; object-fit: cover; }
.founder-card h3 { font-size: 18px; }
.founder-card span { color: var(--green); font-size: 13px; font-weight: 600; }

/* Banner */
.enroll-bar {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy-mid));
  color: #fff; padding: 28px 0;
}
.enroll-bar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.enroll-bar strong { font-size: 20px; }

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 22px; min-height: 160px;
}
.why-card .icon-box {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 12px;
  background: var(--green-soft); color: var(--green); display: grid; place-items: center; font-size: 20px;
}
.why-card h4 { font-size: 15px; margin-bottom: 6px; }

/* Unique strip */
.unique { background: var(--bg); }
.unique-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.unique-item {
  background: #fff; border-radius: 16px; padding: 22px 16px; text-align: center;
  border: 1px solid var(--line);
}
.unique-item .num { font-size: 28px; font-weight: 800; color: var(--green); font-family: Sora, sans-serif; }
.unique-item p { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* Testimonials */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px;
}
.t-card .stars { color: #f5b400; margin-bottom: 10px; }
.t-card p { font-size: 14px; color: #3d4c5c; margin-bottom: 16px; min-height: 92px; }
.t-user { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700;
}
.t-user strong { display: block; font-size: 14px; }
.t-user span { font-size: 12px; color: var(--green); }

/* CTA band */
.cta-band {
  background: url("../assets/yt1.jpg") center/cover;
  position: relative; color: #fff;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,33,56,.92), rgba(15,33,56,.72));
}
.cta-band .wrap { position: relative; z-index: 1; padding: 80px 0; max-width: 680px; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 22px; }

/* Footer */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.82); padding: 56px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 28px; }
.footer-grid.footer-no-nav { grid-template-columns: 1.4fr 1fr 1.1fr; }
.footer h4 { color: #fff; margin-bottom: 14px; font-size: 15px; }
.footer a, .footer p { font-size: 13.5px; display: block; margin-bottom: 8px; }
.footer a:hover { color: var(--green); }
.footer .logo img { height: 52px; background: #fff; padding: 6px 10px; border-radius: 8px; margin-bottom: 12px; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); margin-top: 28px; padding-top: 16px; font-size: 12px; text-align: center; }

.whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  font-size: 28px; box-shadow: 0 10px 24px rgba(37,211,102,.35);
}

/* Inner pages */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: #fff; padding: 56px 0;
}
.page-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,.78); }
.bread { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 10px; }

.form {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px;
  box-shadow: var(--shadow);
}
.form h3 { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; margin-bottom: 12px; font-size: 14px;
}
.form textarea { min-height: 110px; resize: vertical; }
.form button { width: 100%; justify-content: center; }
.note { display: none; color: var(--green-dark); font-weight: 600; margin-top: 10px; }

.kit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price { font-size: 24px; font-weight: 800; color: var(--navy); }
.price s { font-size: 14px; color: #9aa6b2; font-weight: 500; margin-left: 6px; }
.tag { display: inline-block; background: var(--green-soft); color: var(--green-dark); font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 6px; margin-bottom: 8px; }

.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--navy); }
.faq p { margin-top: 8px; color: var(--muted); font-size: 14px; }

@media (max-width: 980px) {
  .hamburger { display: block; }
  .nav { display: none; }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; padding: 10px 0 16px; }
  .dropdown { position: static; box-shadow: none; display: none; }
  .nav-list li.open > .dropdown { display: block; }
  .slide, .split, .split.reverse, .course-grid, .why-grid, .t-grid, .footer-grid, .unique-row, .kit-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .slide { position: relative; padding: 36px 0 60px; }
  .slide-visual { order: -1; }
  .header-actions .login-link { display: none; }
}

@media (max-width: 640px) {
  .video-grid, .form-row { grid-template-columns: 1fr; }
  .header-actions .btn,
  .header-actions .login-link,
  .call-us { display: none; }
  .logo img { height: 46px; }
  .hero-stats { gap: 14px; }
  .slide-copy h1 { font-size: 28px; }
}

/* ArivuPro-style homepage */
.ap-hero {
  position: relative;
  min-height: 640px;
  background: #07140f url("../images/thumbnail.jpeg") center/cover no-repeat;
  color: #fff;
}
.ap-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,20,15,.92) 0%, rgba(7,20,15,.78) 50%, rgba(7,20,15,.58) 100%);
}
.ap-hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 40px; align-items: start; padding: 64px 0 72px;
}
.ap-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  margin-bottom: 18px;
}
.ap-badge i { color: var(--green); }
.ap-hero h1 {
  color: #fff; font-size: clamp(36px, 5.4vw, 64px);
  letter-spacing: -.03em; margin-bottom: 16px;
}
.ap-hero p { color: rgba(255,255,255,.84); max-width: 560px; margin-bottom: 22px; }
.ap-modes { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.ap-modes span {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 12px; border-radius: 999px; font-size: 13px;
}
.ap-form {
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 32px 28px 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  width: 100%;
  max-width: 460px;
  justify-self: end;
  align-self: start;
}
.ap-form h3 {
  font-size: 26px;
  margin-bottom: 6px;
  letter-spacing: -.03em;
  color: var(--navy-dark);
  line-height: 1.2;
}
.ap-form-lead { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.45; }
.ap-form .field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.ap-form .field span {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.ap-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
  align-items: start;
}
.ap-form .form-row .field { margin-bottom: 0; min-width: 0; }
.ap-form input[type="text"],
.ap-form input[type="tel"],
.ap-form input[type="email"],
.ap-form select {
  width: 100%;
  height: 48px;
  border: 1.5px solid #e6ebf0;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 14px;
  background: #f4f7f8;
  color: var(--ink);
  line-height: 48px;
  appearance: none;
  -webkit-appearance: none;
}
.ap-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235b6b7c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 42px;
}
.ap-form input[type="text"]:focus,
.ap-form input[type="tel"]:focus,
.ap-form input[type="email"]:focus,
.ap-form select:focus {
  outline: 0;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(29, 158, 117, .14);
}
.ap-form input::placeholder { color: #8a96a3; }
.ap-form .safe { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }
.ap-form .note { text-align: center; }
.ap-form .btn-whatsapp {
  width: 100%;
  height: 50px;
  justify-content: center;
  border-radius: 999px;
  margin-top: 2px;
}
.btn-whatsapp {
  width: 100%;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 211, 102, .28);
  font-size: 15px;
}
.btn-whatsapp:hover { background: #1dae55; transform: translateY(-1px); }
.mode-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 16px;
}
.mode-picks label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 6px;
  border: 1.5px solid #e6ebf0;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  background: #fff;
  color: var(--ink);
}
.mode-picks label:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 600;
}
.mode-picks input {
  width: 14px;
  height: 14px;
  margin: 0;
  flex: 0 0 14px;
  accent-color: var(--green);
}

.press { background: #fff; border-bottom: 1px solid var(--line); }
.press .wrap {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  flex-wrap: wrap; padding: 16px 0; color: #7a8693; font-size: 13px; font-weight: 700;
}

.ap-stats {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
  padding: 36px 0; text-align: center;
}
.ap-stats strong { display: block; font-size: 28px; font-family: Sora, sans-serif; color: var(--navy-dark); }
.ap-stats span { font-size: 12px; color: var(--muted); }

.qual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.qual-card {
  border: 1px solid var(--line); border-radius: 20px; padding: 24px; background: #fff;
  transition: .25s;
}
.qual-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.qual-card .tag { background: var(--green-soft); color: var(--green-dark); }
.qual-card h3 { font-size: 26px; margin: 10px 0 4px; }
.qual-card .sub { color: var(--muted); margin-bottom: 14px; }
.qual-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.qual-modes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.qual-modes span { background: var(--bg); border-radius: 8px; padding: 6px 10px; font-size: 12px; }

.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.format-card { border: 1px solid var(--line); border-radius: 18px; padding: 24px; background: #fff; }
.format-card h3 { margin: 8px 0 10px; }
.format-card ul { margin-left: 18px; color: var(--muted); font-size: 14px; }
.hybrid {
  margin-top: 20px; border-radius: 18px; padding: 22px 26px;
  background: linear-gradient(90deg, var(--navy-dark), var(--navy-mid)); color: #fff;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hybrid h3 { color: #fff; }

.guru-band {
  background: #0b1220; color: #fff; padding: 56px 0;
}
.guru-band .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.guru-band h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 12px; }
.guru-band p { color: rgba(255,255,255,.75); margin-bottom: 16px; }
.guru-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.guru-pills span { background: rgba(255,255,255,.08); padding: 8px 12px; border-radius: 999px; font-size: 13px; }

.story-grid { display: none; }

.vid-modal {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.78); z-index: 80;
  place-items: center; padding: 20px;
}
.vid-modal.open { display: grid; }
.vid-modal video { width: auto; max-width: min(420px, 100%); max-height: 82vh; background: #000; border-radius: 16px; }
.vid-modal button {
  position: absolute; top: 18px; right: 22px; background: #fff; border: 0; border-radius: 8px;
  padding: 8px 12px; font-weight: 700; cursor: pointer;
}

.footer-links {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 28px; padding-top: 16px;
  font-size: 12.5px; line-height: 1.9; color: rgba(255,255,255,.7);
}
.footer-links a { display: inline; color: rgba(255,255,255,.78); margin: 0 4px; }
.footer-links a:hover { color: var(--green); }
.footer .socials { display: flex; gap: 10px; margin-top: 12px; }
.footer .socials a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: grid; place-items: center; margin: 0;
}

.nav-list .guru { color: var(--green) !important; }

@media (max-width: 980px) {
  .ap-hero .container, .guru-band .wrap, .qual-grid, .format-grid, .ap-stats, .story-grid { grid-template-columns: 1fr 1fr; }
  .ap-hero .container, .guru-band .wrap { grid-template-columns: 1fr; }
  .ap-stats { grid-template-columns: 1fr 1fr 1fr; }
  .ap-form { max-width: none; justify-self: stretch; }
}
@media (max-width: 640px) {
  .qual-grid, .format-grid, .story-grid, .ap-stats { grid-template-columns: 1fr; }
  .ap-form { padding: 24px 18px 20px; }
  .ap-form h3 { font-size: 22px; }
  .ap-form .form-row { grid-template-columns: 1fr; }
  .mode-picks { grid-template-columns: 1fr; }
}

/* ============================================================
   ArivuPro-style contact
   Scoped to contact.html. Do not reuse these rules to restyle
   the homepage hero, course cards, or blog.
   ============================================================ */
.ct-hero {
  position: relative;
  background: linear-gradient(135deg, #0f2138 0%, #1e3a5f 52%, #163d32 100%);
  color: #fff;
  padding: 56px 0 72px;
}
.ct-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(29, 158, 117, .22), transparent 42%),
    radial-gradient(circle at 12% 90%, rgba(245, 197, 24, .08), transparent 36%);
  pointer-events: none;
}
.ct-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.ct-hero-copy h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -.04em;
  margin-bottom: 16px;
}
.ct-hero-copy p {
  color: rgba(255, 255, 255, .82);
  max-width: 520px;
  margin-bottom: 22px;
}
.ct-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ct-hero-chips a,
.ct-hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.ct-hero-chips i { color: #7dcea0; }

.ct-form {
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  padding: 28px 26px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  min-width: 0;
  width: 100%;
}
.ct-form h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.ct-form-lead {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 16px;
}
.ct-form input,
.ct-form select,
.ct-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: 14px;
  background: #fff;
  color: var(--ink);
}
.ct-form textarea { min-height: 88px; resize: vertical; }
.ct-form button[type="submit"] { width: 100%; justify-content: center; }
.ct-form .mode-picks { margin-bottom: 12px; }
.ct-form .mode-picks label { font-size: 12px; padding: 7px 10px; }
.ct-safe {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

.ct-about { background: var(--bg); padding-top: 64px; }
.ct-about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: start;
}
.ct-about-grid h2 { margin-bottom: 14px; }
.ct-about-grid p { color: var(--muted); margin-bottom: 14px; }
.ct-about-grid a { color: var(--green); font-weight: 600; }
.ct-touch {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.ct-touch h3 { margin-bottom: 8px; }
.ct-touch > p { margin-bottom: 18px; }
.ct-touch-list { display: grid; gap: 12px; }
.ct-touch-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
}
.ct-touch-item small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.ct-touch-item strong { font-size: 15px; color: var(--navy-dark); }
.ct-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ct-visit { padding-top: 20px; }
.ct-visit-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: -8px 0 28px;
}
.ct-visit-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
}
.ct-visit-tabs button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.ct-visit-panel { display: none; }
.ct-visit-panel.active { display: block; }
.ct-place {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.ct-place h3 { margin: 8px 0 10px; }
.ct-place p { color: var(--muted); margin-bottom: 14px; }
.ct-place ul { margin: 0 0 18px 18px; color: var(--muted); font-size: 14px; }
.ct-place-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.ct-map {
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ct-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.ct-online-card {
  background: var(--mint);
  border-radius: 16px;
  padding: 24px;
}
.ct-online-card strong { display: block; color: var(--navy-dark); margin-bottom: 12px; }
.ct-online-card ol { margin-left: 18px; color: var(--muted); }
.ct-online-card li { margin-bottom: 8px; }

.ct-offices { background: var(--bg); padding-top: 28px; padding-bottom: 40px; }
.ct-office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ct-office {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}
.ct-office h2 { font-size: 26px; margin-bottom: 12px; }
.ct-office p { color: var(--muted); margin-bottom: 8px; }
.ct-office a { color: var(--green); font-weight: 600; }
.ct-hours {
  margin-top: 12px !important;
  color: var(--navy) !important;
  font-weight: 600;
}

.ct-batches { padding-top: 48px; }
.ct-batch-bar { margin-bottom: 24px; }
.ct-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ct-pills button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.ct-pills button.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.ct-pills-soft button.active {
  background: var(--navy);
  border-color: var(--navy);
}
.ct-batch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ct-batch {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.ct-batch-date {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}
.ct-batch-date strong {
  font-family: Sora, Poppins, sans-serif;
  font-size: 20px;
  color: var(--navy-dark);
}
.ct-batch-date span { font-size: 12px; color: var(--muted); font-weight: 600; }
.ct-batch h3 { margin: 6px 0 4px; }
.ct-batch-loc { color: var(--muted); font-size: 13.5px; margin-bottom: 12px; }
.ct-batch ul { margin: 0 0 12px 18px; color: var(--muted); font-size: 14px; }
.ct-batch-note { font-size: 13px; color: var(--green-dark); font-weight: 600; margin-bottom: 16px; }
.ct-batch-cta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.ct-empty { text-align: center; color: var(--muted); margin-top: 12px; }

.ct-faq { background: var(--bg); }
.ct-still {
  margin-top: 28px;
  border-radius: 18px;
  padding: 24px 26px;
  background: linear-gradient(90deg, var(--navy-dark), var(--navy-mid));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ct-still h3 { color: #fff; margin-bottom: 6px; }
.ct-still p { color: rgba(255, 255, 255, .78); }
.ct-still-actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 980px) {
  .ct-hero .container,
  .ct-about-grid,
  .ct-place,
  .ct-office-grid,
  .ct-batch-grid { grid-template-columns: 1fr; }
  .ct-hero { padding: 40px 0 48px; }
}
@media (max-width: 640px) {
  .ct-batch-grid { grid-template-columns: 1fr; }
  .ct-form { padding: 22px 18px 18px; }
  .ct-form .mode-picks { display: grid; grid-template-columns: 1fr 1fr; }
  .ct-place, .ct-office, .ct-touch { padding: 20px; }
  .ct-still-actions { width: 100%; }
  .ct-still-actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   FOCAS-style Inspiring Student Stories (portrait reel)
   ============================================================ */
.stories-band {
  background:
    radial-gradient(circle at 12% 20%, rgba(29, 158, 117, .16), transparent 36%),
    radial-gradient(circle at 88% 80%, rgba(245, 197, 24, .08), transparent 32%),
    #0b1220;
  padding: 80px 0 72px;
  overflow: hidden;
}
.stories-head {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 28px;
}
.stories-head h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.stories-rail {
  position: relative;
}
.stories-rail::before,
.stories-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.stories-rail::before { left: 0; background: linear-gradient(90deg, #0b1220, transparent); }
.stories-rail::after { right: 0; background: linear-gradient(270deg, #0b1220, transparent); }
.stories-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 18px 8vw 28px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.stories-track::-webkit-scrollbar { display: none; }
.story-card {
  position: relative;
  flex: 0 0 320px;
  width: 320px;
  height: 560px;
  margin: 0 12px;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .35);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform .35s ease, box-shadow .35s ease;
}
.story-card:hover,
.story-card:focus-visible {
  transform: scale(1.04);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .45);
  outline: none;
}
.story-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
}
.story-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.story-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.story-play i,
.story-play {
  pointer-events: none;
}
.story-play i {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #1e2d3d;
  display: grid;
  place-items: center;
  font-size: 20px;
  padding-left: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
  transition: transform .3s ease, background .3s ease;
}
.story-card:hover .story-play i {
  transform: scale(1.1);
  background: #fff;
  color: var(--green);
}
.story-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 56px 20px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, .72), transparent);
  text-align: center;
  color: #fff;
}
.story-cap h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 4px;
}
.story-cap p {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}
.stories-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.stories-nav button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #0b1220;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
  transition: .2s ease;
}
.stories-nav button:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .stories-band { padding: 56px 0 48px; }
  .story-card {
    flex-basis: 78vw;
    width: 78vw;
    height: calc(78vw * 1.7);
    margin: 0 8px;
  }
  .stories-track { padding: 12px 6vw 20px; }
  .story-play i { width: 56px; height: 56px; font-size: 16px; }
  .stories-rail::before,
  .stories-rail::after { width: 20px; }
}

.loc-crumb {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.loc-crumb a { color: rgba(255,255,255,.85); }
.loc-crumb a:hover { color: #fff; }
.loc-local { padding-top: 48px; }
.loc-answer {
  background: var(--green-soft);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 22px;
}
.loc-answer strong { display: block; margin-bottom: 6px; color: var(--navy-dark); }
.loc-local p { color: var(--muted); margin-bottom: 14px; }
.loc-nearby { margin-top: 28px; }
.loc-nearby h3 { font-size: 20px; margin-bottom: 12px; }
.loc-nearby-list { display: flex; flex-wrap: wrap; gap: 8px; }
.loc-nearby-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.loc-nearby-list a:hover { border-color: var(--navy); background: var(--mint); }

/* ===== About Our Tutor ===== */
.tutor-about { background: var(--mint); }
.tutor-about .section-head p { max-width: 820px; margin: 0 auto; }
.tutor-about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 48px;
}
.tutor-founder {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  align-self: start;
}
.tutor-founder img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: 12% 18%;
}
.tutor-founder-cap {
  padding: 18px 22px 22px;
}
.tutor-founder-cap h3 { font-size: 20px; margin-bottom: 4px; }
.tutor-founder-cap span { color: var(--green); font-size: 13px; font-weight: 600; }
.tutor-about-copy > p {
  color: var(--muted);
  margin-bottom: 22px;
}
.tutor-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.tutor-stats div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
}
.tutor-stats strong {
  display: block;
  font-family: Sora, sans-serif;
  font-size: 26px;
  color: var(--navy-dark);
  line-height: 1.2;
}
.tutor-stats span { font-size: 12px; color: var(--muted); font-weight: 600; }
.tutor-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tutor-points li {
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
}
.tutor-subhead { text-align: center; margin-bottom: 22px; }
.tutor-subhead h3 { font-size: 26px; margin-bottom: 8px; }
.tutor-subhead p { color: var(--muted); }
.tutor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tutor-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 20px 24px;
  text-align: center;
  transition: .25s ease;
}
.tutor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tutor-founder img { object-position: 12% 18%; }
.tutor-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: 22px;
}
.tutor-badge {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.tutor-card h4 { font-size: 18px; margin-bottom: 4px; color: var(--navy-dark); }
.tutor-card p { color: var(--muted); font-size: 13px; }
@media (max-width: 980px) {
  .tutor-about-grid,
  .tutor-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .tutor-about-grid,
  .tutor-grid,
  .tutor-stats { grid-template-columns: 1fr; }
  .tutor-founder img { aspect-ratio: 16 / 11; }
}

/* ============================================================
   Site motion
   Premium, short fades and lifts. No layout shift.
   ============================================================ */
.header {
  transition: box-shadow .35s ease, background-color .35s ease, border-color .35s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 28px rgba(15, 33, 56, .08);
  border-bottom-color: rgba(229, 234, 240, .9);
}

html.js-motion .reveal {
  transition:
    opacity .55s cubic-bezier(.22, 1, .36, 1),
    transform .55s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js-motion .reveal.is-pending {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}
html.js-motion .reveal.is-in {
  opacity: 1;
  transform: none;
}

.btn-navy,
.btn-outline,
.btn-ghost,
.btn-light {
  transition: .25s ease;
}
.btn-navy:hover,
.btn-outline:hover,
.btn-ghost:hover,
.btn-light:hover { transform: translateY(-1px); }

.format-card,
.why-card,
.unique-item,
.t-card,
.ct-batch,
.ct-office,
.ct-touch,
.founder-card,
.tutor-founder {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.format-card:hover,
.why-card:hover,
.unique-item:hover,
.t-card:hover,
.ct-batch:hover,
.ct-office:hover,
.ct-touch:hover,
.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.format-card:hover,
.ct-batch:hover { border-color: transparent; }

.course-card,
.qual-card,
.tutor-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ap-form.reveal { --reveal-delay: 90ms; }
.ct-form.reveal { --reveal-delay: 80ms; }

.form input:focus,
.form select:focus,
.form textarea:focus,
.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus {
  outline: 2px solid rgba(29, 158, 117, .22);
  border-color: var(--green);
}

.faq details {
  transition: box-shadow .28s ease, border-color .28s ease;
}
.faq details[open] {
  border-color: #d7e4ee;
  box-shadow: 0 8px 22px rgba(30, 58, 95, .06);
}

.whatsapp {
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, .4);
}

.stories-nav button {
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee { animation: none; }
  .header,
  .btn,
  .btn-navy,
  .btn-outline,
  .btn-ghost,
  .btn-light,
  .course-card,
  .qual-card,
  .format-card,
  .tutor-card,
  .why-card,
  .unique-item,
  .t-card,
  .ct-batch,
  .ct-office,
  .ct-touch,
  .founder-card,
  .tutor-founder,
  .story-card,
  .story-play i,
  .stories-nav button,
  .faq details,
  .whatsapp,
  .slide {
    transition: none !important;
  }
  html.js-motion .reveal,
  html.js-motion .reveal.is-pending,
  html.js-motion .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn-primary:hover,
  .btn-navy:hover,
  .btn-outline:hover,
  .btn-ghost:hover,
  .btn-light:hover,
  .btn-whatsapp:hover,
  .course-card:hover,
  .qual-card:hover,
  .format-card:hover,
  .tutor-card:hover,
  .why-card:hover,
  .unique-item:hover,
  .t-card:hover,
  .ct-batch:hover,
  .ct-office:hover,
  .ct-touch:hover,
  .founder-card:hover,
  .story-card:hover,
  .story-card:focus-visible,
  .story-card:hover .story-play i,
  .stories-nav button:hover,
  .whatsapp:hover {
    transform: none;
  }
}

/* Inline SVG icons (no Font Awesome) */
.focas-ico {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  fill: currentColor;
}
.icon .focas-ico,
.icon-box .focas-ico,
.ct-ico .focas-ico,
.story-play .focas-ico,
.whatsapp .focas-ico,
.btn .focas-ico {
  width: 18px;
  height: 18px;
}
.whatsapp .focas-ico { width: 28px; height: 28px; }
.story-play .focas-ico { width: 18px; height: 18px; }

.nav-list > li.current-menu-item > a,
.nav-list > li.current_page_item > a { color: var(--green); }

/* Tablet + phone extras */
@media (max-width: 1100px) {
  .container,
  .wrap { width: min(1180px, calc(100% - 32px)); }
  .nav-list > li > a { padding: 12px 12px; font-size: 13.5px; }
}

@media (max-width: 980px) {
  :root { --header-h: auto; }
  .header-main { padding: 8px 0; }
  .nav-list > li.nav-cat-first {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    margin-top: 6px;
    padding-top: 6px;
  }
  .footer-grid.footer-no-nav { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 36px 0 32px; }
  .page-hero h1 { font-size: clamp(28px, 6vw, 40px); }
  .enroll-bar .wrap {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .hybrid { flex-direction: column; align-items: flex-start; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .course-grid { grid-template-columns: 1fr 1fr; }
  .unique-row { grid-template-columns: 1fr 1fr; }
  .t-grid { grid-template-columns: 1fr 1fr; }
  .ap-hero { min-height: 0; }
  .ap-hero .container { padding: 40px 0 48px; }
  .ap-hero h1 { font-size: clamp(30px, 8vw, 48px); }
  .loc-nearby-list { display: flex; flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 768px) {
  .course-grid,
  .t-grid,
  .tutor-grid,
  .kit-grid { grid-template-columns: 1fr; }
  .footer-grid,
  .footer-grid.footer-no-nav { grid-template-columns: 1fr; gap: 22px; }
  .ap-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .slide-cta { flex-direction: column; align-items: stretch; }
  .slide-cta .btn { justify-content: center; }
  .whatsapp { right: 14px; bottom: 14px; width: 52px; height: 52px; }
  .fx-grid4 { grid-template-columns: 1fr; }
  .art-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container, .wrap { width: min(1180px, calc(100% - 24px)); }
  .section { padding: 48px 0; }
  .unique-row { grid-template-columns: 1fr; }
  .ap-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hamburger { display: block; }
  .header-actions .btn { display: none; }
  .ct-hero-copy h1 { font-size: 36px; }
  .mode-picks { display: grid; grid-template-columns: 1fr; }
  .city-find__pills { gap: 8px; }
  .city-pill { min-height: 36px; font-size: 13px; }
}

img[loading="lazy"] { content-visibility: auto; }
