:root {
  --navy: #0b2f5b;
  --navy-deep: #061f3d;
  --navy-soft: #133e70;
  --blue: #2678d8;
  --sky: #50bde9;
  --sky-pale: #eef9ff;
  --yellow: #ffd34e;
  --yellow-deep: #eab400;
  --coral: #ff756d;
  --mint: #55cfaa;
  --purple: #7869e8;
  --ink: #18314e;
  --muted: #60748b;
  --line: #dce7f1;
  --surface: #ffffff;
  --surface-soft: #f6faff;
  --cream: #fffaf0;
  --shadow-sm: 0 10px 28px rgba(11, 47, 91, .08);
  --shadow-md: 0 18px 48px rgba(11, 47, 91, .13);
  --shadow-lg: 0 30px 80px rgba(7, 36, 70, .18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.modal-open,
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: rgba(80, 189, 233, .28); color: var(--navy-deep); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy-deep);
  color: #fff;
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.container { width: min(var(--container), calc(100% - 44px)); margin-inline: auto; }
.section-pad { padding: 100px 0; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy);
  font-family: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.08;
  letter-spacing: -.025em;
}
p { margin-top: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(220, 231, 241, .86);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px rgba(11, 47, 91, .08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  min-width: 315px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.metro-logo { width: 158px; height: auto; }
.brand-divider { width: 1px; height: 38px; background: var(--line); }
.techtots-logo { display: inline-flex; flex-direction: column; line-height: .9; }
.techtots-word {
  color: var(--navy);
  font-family: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.robot-o {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-inline: 1px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy-deep);
  font-size: 17px;
}
.class-pass {
  margin-top: 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.mobile-brand-label { display: none; font-weight: 900; color: var(--navy); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 750;
}
.site-nav > a:not(.button) {
  position: relative;
  padding: 8px 0;
  color: #405873;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transition: right .25s ease;
}
.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after { right: 0; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(11, 47, 91, .06);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--navy);
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button svg { width: 21px; height: 21px; }
.button-sm { min-height: 42px; padding: 10px 15px; border-radius: 12px; font-size: 13px; }
.button-yellow {
  color: var(--navy-deep);
  background: linear-gradient(135deg, #ffe272, var(--yellow));
  box-shadow: 0 12px 26px rgba(234, 180, 0, .24);
}
.button-yellow:hover { box-shadow: 0 16px 34px rgba(234, 180, 0, .32); }
.button-blue {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  box-shadow: 0 14px 30px rgba(11, 47, 91, .22);
}
.button-ghost { border-color: #cbd9e7; background: rgba(255,255,255,.9); color: var(--navy); }
.button-ghost:hover { border-color: #a8c6de; box-shadow: var(--shadow-sm); }
.button:focus-visible,
.menu-toggle:focus-visible,
.activity-card:focus-visible,
.modal-close:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(38, 120, 216, .26);
  outline-offset: 3px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  padding-bottom: 104px;
  background:
    radial-gradient(circle at 86% 8%, rgba(80, 189, 233, .22), transparent 28%),
    radial-gradient(circle at 3% 86%, rgba(255, 211, 78, .25), transparent 20%),
    linear-gradient(180deg, #f3faff 0%, #fff 92%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: radial-gradient(circle, rgba(11,47,91,.25) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}
.hero-orb { position: absolute; border-radius: 999px; filter: blur(2px); opacity: .55; }
.orb-1 { width: 420px; height: 420px; right: -220px; top: -160px; background: #c8efff; }
.orb-2 { width: 220px; height: 220px; left: -125px; bottom: -10px; background: #fff0ac; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 76px;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid #c8e8f7;
  border-radius: 999px;
  background: rgba(231, 247, 255, .88);
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(38, 120, 216, .07);
}
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255,117,109,.14);
}
h1 {
  max-width: 720px;
  margin-top: 22px;
  font-size: clamp(47px, 5vw, 70px);
  letter-spacing: -.045em;
}
h1 span { color: var(--blue); }
.hero-lead {
  max-width: 620px;
  margin: 24px 0 22px;
  color: #526984;
  font-size: 18px;
  line-height: 1.72;
}
.hero-highlights { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid #d8e7f4;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #3b5673;
  font-size: 12px;
  font-weight: 750;
  box-shadow: 0 8px 20px rgba(12,49,95,.055);
}
.hero-highlights svg { width: 16px; height: 16px; color: var(--blue); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-visual { position: relative; }
.hero-image-shell {
  position: relative;
  isolation: isolate;
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(145deg, #ffe16b, #ffc936);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.hero-image-shell::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 2px solid rgba(38,120,216,.18);
  border-radius: 38px;
  background: rgba(255,255,255,.55);
}
.hero-image-shell::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 2px dashed rgba(255,255,255,.72);
  border-radius: 31px;
  pointer-events: none;
}
.hero-image-shell img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 27px;
  transform: rotate(-1.2deg);
}
.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(219,229,239,.95);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-md);
}
.floating-card strong,
.floating-card small { display: block; }
.floating-card strong { color: var(--navy); font-size: 13px; }
.floating-card small { color: var(--muted); font-size: 11px; }
.floating-card-top { top: 7%; right: -7%; }
.floating-card-bottom { left: -8%; bottom: 7%; }
.mini-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef8ff;
  font-size: 20px;
}
.doodle {
  position: absolute;
  z-index: 5;
  color: var(--navy);
  font-family: ui-rounded, "Arial Rounded MT Bold", sans-serif;
  font-weight: 900;
}
.doodle-star { top: -8%; right: 2%; color: var(--yellow-deep); font-size: 42px; }
.doodle-spark { top: 6%; left: -3%; color: var(--coral); font-size: 34px; }
.doodle-code {
  right: 8%;
  bottom: -7%;
  padding: 6px 11px;
  border-radius: 12px;
  background: #fff;
  font-size: 23px;
  transform: rotate(-7deg);
  box-shadow: var(--shadow-sm);
}

/* Key facts */
.future-banner { position: relative; z-index: 3; margin-top: -22px; padding: 0 0 30px; background: transparent; }
.future-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 25px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.future-title { display: flex; align-items: center; gap: 14px; }
.future-title p { margin: 0; color: #dcecff; font-size: 15px; line-height: 1.4; }
.future-title strong { color: #fff; font-size: 17px; }
.future-bot {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,.11);
  font-size: 26px;
}
.quick-facts { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.quick-facts article {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(255,255,255,.07);
}
.quick-facts small,
.quick-facts strong { display: block; }
.quick-facts small { color: #9fc3e2; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.quick-facts strong { margin-top: 3px; color: #fff; font-size: 12px; line-height: 1.3; }
.fact-icon { flex: 0 0 auto; font-size: 20px; }

/* Shared headings */
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.compact { margin-bottom: 30px; }
.section-heading h2 { font-size: clamp(37px, 4.4vw, 54px); }
.section-heading p { margin: 14px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker-light { color: #8cd9ff; }
.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: #bfd4e9; }

/* Activities */
.activities { background: #fff; }
.activity-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.activity-card {
  position: relative;
  min-height: 228px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(11,47,91,.08);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.activity-card::before {
  content: "";
  position: absolute;
  top: -48px;
  right: -42px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
}
.activity-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(38,120,216,.85), rgba(80,189,233,.45));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.activity-card:hover { transform: translateY(-7px); border-color: rgba(38,120,216,.22); box-shadow: var(--shadow-md); }
.activity-card:hover::after { transform: scaleX(1); }
.activity-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #fff;
  font-size: 27px;
  box-shadow: 0 9px 22px rgba(11,47,91,.12);
}
.activity-card h3 { margin-top: 17px; font-size: 21px; }
.activity-description {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  margin-top: 9px;
  overflow: hidden;
  color: #48617b;
  font-size: 12px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.activity-card .activity-link { display: inline-block; margin-top: 14px; color: var(--navy); font-size: 11px; font-weight: 900; }
.activity-card .card-number {
  position: absolute;
  right: 13px;
  bottom: 5px;
  color: rgba(11,47,91,.10);
  font-family: ui-rounded, "Arial Rounded MT Bold", sans-serif;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}
.activity-note {
  max-width: 640px;
  margin: 38px auto 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 22px;
  border: 1px dashed #9ed7f2;
  border-radius: 18px;
  background: #effaff;
  color: var(--navy);
  text-align: center;
}
.levels-block {
  padding: 38px;
  border: 1px solid #dbe9f4;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f7fbff, #f2f8fd);
}
.table-wrap { overflow-x: auto; border: 1px solid #d9e6f0; border-radius: 18px; background: #fff; box-shadow: 0 10px 24px rgba(11,47,91,.05); }
table { width: 100%; min-width: 850px; border-collapse: separate; border-spacing: 0; }
th, td { padding: 15px 18px; text-align: left; border-bottom: 1px solid #e8eff5; }
th { position: sticky; top: 0; background: var(--navy); color: #fff; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
th:first-child { border-top-left-radius: 16px; }
th:last-child { border-top-right-radius: 16px; }
td { color: #506780; font-size: 13px; }
td:nth-child(1) { width: 62px; color: var(--blue); font-weight: 900; }
td:nth-child(2) { color: var(--navy); font-weight: 850; }
tbody tr:nth-child(even) td { background: #fbfdff; }
tbody tr:hover td { background: #f2f9ff; }
tbody tr:last-child td { border-bottom: 0; }
.level-dot { width: 8px; height: 8px; display: inline-block; margin-right: 7px; border-radius: 50%; }
.level-dot.rookie { background: var(--yellow); }
.level-dot.master { background: var(--sky); }
.mobile-levels { display: none; }

/* Parent benefits */
.parents-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(80,189,233,.13), transparent 24%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
}
.parents-section::before,
.parents-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
}
.parents-section::before { top: -210px; right: -170px; width: 470px; height: 470px; }
.parents-section::after { bottom: -150px; left: -120px; width: 300px; height: 300px; }
.parent-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.feature-card {
  min-height: 200px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 21px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.11); }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--yellow); font-size: 25px; box-shadow: 0 10px 22px rgba(0,0,0,.12); }
.feature-card h3 { margin: 16px 0 8px; color: #fff; font-size: 21px; }
.feature-card p { margin: 0; color: #c4d8eb; font-size: 14px; }
.parents-summary { position: relative; z-index: 1; max-width: 760px; margin: 36px auto 0; color: #d7e8f7; font-size: 17px; text-align: center; }

/* Learning benefits */
.benefits { background: #fffdf8; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.benefit-card {
  position: relative;
  min-height: 304px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(11,47,91,.06);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.benefit-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -95px;
  width: 155px;
  height: 155px;
  border: 24px solid rgba(255,255,255,.32);
  border-radius: 50%;
}
.benefit-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: #fff; font-size: 28px; box-shadow: 0 8px 20px rgba(11,47,91,.12); }
.benefit-number { position: absolute; top: 12px; right: 17px; color: rgba(11,47,91,.12); font-family: ui-rounded, "Arial Rounded MT Bold", sans-serif; font-size: 52px; font-weight: 900; }
.benefit-card h3 { margin: 22px 0 11px; font-size: 23px; }
.benefit-card p { margin: 0; color: #3f5a74; font-size: 14px; }
.benefit-blue { background: #dff3ff; }
.benefit-yellow { background: #fff0ae; }
.benefit-green { background: #dff8ef; }
.benefit-coral { background: #ffe2df; }

/* About */
.about-section { background: #f6faff; }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 72px; }
.about-copy h2,
.facility-copy h2 { font-size: clamp(38px, 4vw, 52px); }
.about-copy > p,
.facility-copy > p { margin: 20px 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.about-points { display: grid; gap: 12px; margin-top: 28px; }
.about-points div { display: flex; align-items: center; gap: 11px; color: #3e5874; font-weight: 750; }
.about-points span { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #dbf6ed; color: #17926c; }
.gallery-mosaic { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 188px 188px 176px; gap: 12px; }
.gallery-mosaic figure { position: relative; margin: 0; overflow: hidden; border: 4px solid #fff; border-radius: 20px; box-shadow: var(--shadow-sm); }
.gallery-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-mosaic figure:hover img { transform: scale(1.045); }
.gallery-main { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* Facility */
.facility { background: #fff; }
.facility-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.facility-image { position: relative; isolation: isolate; }
.facility-image::before { content: ""; position: absolute; inset: -18px 34px 18px -18px; z-index: -1; border-radius: 30px; background: #dff4ff; }
.facility-image img { width: 100%; min-height: 430px; object-fit: cover; border: 5px solid #fff; border-radius: 27px; box-shadow: var(--shadow-lg); }
.facility-badge { position: absolute; right: -15px; bottom: 24px; padding: 15px 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-md); }
.facility-badge strong,
.facility-badge span { display: block; }
.facility-badge strong { color: var(--navy); }
.facility-badge span { color: var(--muted); font-size: 12px; }
.check-list { display: grid; gap: 12px; margin: 26px 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; color: #455f7b; font-weight: 650; }
.check-list span { flex: 0 0 auto; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; background: #ddf8ef; color: #178f69; }
address { padding-left: 16px; border-left: 3px solid var(--yellow); color: #62748b; font-style: normal; }
.facility-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 28px; }
.text-link { color: var(--blue); font-weight: 850; border-bottom: 1px solid #93c9eb; }

/* Pricing */
.pricing { position: relative; overflow: hidden; background: linear-gradient(180deg, #eff9ff 0%, #fbfdff 100%); }
.pricing-shape { position: absolute; border-radius: 50%; opacity: .5; }
.pricing-shape-a { top: -220px; right: -100px; width: 380px; height: 380px; background: #bfefff; }
.pricing-shape-b { bottom: 80px; left: -125px; width: 220px; height: 220px; background: #fff0a8; }
.byod { display: inline-flex; margin-top: 18px; padding: 7px 13px; border: 1px solid #dce9f4; border-radius: 999px; background: #fff; color: #45617e; font-size: 12px; font-weight: 850; box-shadow: 0 8px 18px rgba(11,47,91,.05); }
.pricing-group { position: relative; z-index: 1; padding: 32px; border: 1px solid #dce9f3; border-radius: var(--radius-xl); background: rgba(255,255,255,.94); box-shadow: var(--shadow-md); }
.super-group { margin-top: 28px; }
.pricing-group-title { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.pricing-group-title > div { display: flex; align-items: center; gap: 12px; }
.pricing-group-title h3 { font-size: 30px; }
.pricing-group-title p { max-width: 440px; margin: 0; color: var(--muted); font-size: 14px; text-align: right; }
.pricing-group-icon { flex: 0 0 auto; width: 49px; height: 49px; display: grid; place-items: center; border-radius: 15px; background: #e7f7ff; font-size: 24px; }
.price-grid { display: grid; gap: 16px; }
.price-grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.price-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.price-card {
  position: relative;
  min-height: 328px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid #dde7f0;
  border-radius: 20px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.price-card:hover { transform: translateY(-5px); border-color: #b9d8ea; box-shadow: var(--shadow-md); }
.price-card h4 { margin: 12px 0 18px; font-size: 24px; }
.price-tag { display: inline-block; padding: 6px 10px; border-radius: 999px; background: #e6f8f1; color: #137956; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px; padding-bottom: 19px; border-bottom: 1px solid #e5edf4; }
.price .currency { color: var(--navy); font-weight: 850; }
.price strong { color: var(--blue); font-family: ui-rounded, "Arial Rounded MT Bold", sans-serif; font-size: 46px; line-height: 1; }
.price .unit { width: 100%; color: var(--muted); font-size: 12px; }
.price-card ul { display: grid; gap: 11px; margin: 20px 0 0; padding: 0; list-style: none; }
.price-card li { position: relative; padding-left: 24px; color: #536b83; font-size: 13px; line-height: 1.5; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: #1ba172; font-weight: 900; }
.starter { border-color: #bcebd8; background: linear-gradient(180deg, #f2fff9, #fbfffd); }
.best-value { border-color: #f1d86d; background: linear-gradient(180deg, #fffaf0, #fffdf8); }
.corner-ribbon { position: absolute; top: 18px; right: -34px; width: 126px; padding: 5px; background: var(--yellow); color: var(--navy); font-size: 10px; font-weight: 900; text-align: center; transform: rotate(38deg); }
.super-card { min-height: 278px; }
.popular { border: 2px solid var(--blue); background: linear-gradient(180deg, #f4faff, #fff); box-shadow: 0 12px 34px rgba(38,120,216,.12); }
.popular-tag { background: var(--blue); color: #fff; }
.pricing-cta { margin-top: 34px; text-align: center; }

/* Final CTA */
.final-cta { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: #fff; text-align: center; }
.final-cta::before { content: ""; position: absolute; top: -280px; left: -240px; width: 520px; height: 520px; border-radius: 50%; background: rgba(80,189,233,.12); }
.final-cta::after { content: ""; position: absolute; right: -220px; bottom: -280px; width: 440px; height: 440px; border-radius: 50%; background: rgba(255,211,78,.1); }
.cta-inner { position: relative; z-index: 2; max-width: 780px; }
.cta-robot { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.1); font-size: 38px; }
.final-cta h2 { color: #fff; font-size: clamp(40px, 5vw, 60px); }
.final-cta p { margin: 16px 0 26px; color: #c7dcee; font-size: 18px; }
.cta-meta { display: flex; justify-content: center; gap: 13px; margin-top: 24px; color: #aec9e0; font-size: 13px; }
.cta-doodle { position: absolute; color: rgba(255,255,255,.16); font-family: ui-rounded, "Arial Rounded MT Bold", sans-serif; font-size: 70px; }
.cta-doodle-a { left: 10%; bottom: 14%; transform: rotate(-18deg); }
.cta-doodle-b { top: 15%; right: 9%; transform: rotate(12deg); }

/* Footer */
.site-footer { padding: 60px 0 22px; background: #051a31; color: #adc3d7; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .85fr .8fr; gap: 56px; }
.footer-brand img { width: 190px; border-radius: 6px; }
.footer-techtots { margin-top: 18px; }
.footer-techtots .techtots-word { color: #fff; }
.footer-brand p { max-width: 480px; margin-top: 18px; font-size: 13px; }
.site-footer h3 { margin-bottom: 16px; color: #fff; font-size: 18px; }
.footer-contact { min-width: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.footer-contact a { overflow-wrap: anywhere; }
.footer-company p { font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.footer-bottom a { color: #fff; font-weight: 750; }

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px 10px 11px;
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 38px rgba(10,62,36,.3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(10,62,36,.36); }
.whatsapp-float svg { width: 29px; height: 29px; }
.whatsapp-float strong,
.whatsapp-float small { display: block; line-height: 1.2; }
.whatsapp-float strong { font-size: 12px; }
.whatsapp-float small { opacity: .86; font-size: 10px; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3,20,38,.7); backdrop-filter: blur(8px); }
.modal-panel { position: relative; width: min(690px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: 38px; border: 1px solid rgba(255,255,255,.55); border-radius: 28px; background: #fff; box-shadow: 0 38px 90px rgba(3,20,38,.38); animation: modalIn .24s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border: 0; border-radius: 12px; background: #eff5fa; color: var(--navy); font-size: 28px; cursor: pointer; }
.modal-icon { width: 70px; height: 70px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 20px; background: #eaf8ff; font-size: 35px; }
.modal-panel h2 { padding-right: 42px; font-size: 42px; }
.modal-panel > p { color: var(--muted); }
.modal-levels { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0; }
.modal-levels article { padding: 20px; border: 1px solid #dce9f4; border-radius: 18px; background: #f6faff; }
.modal-levels article:nth-child(2) { border-color: #f0dfaa; background: #fffaf0; }
.modal-levels h3 { margin-top: 8px; font-size: 20px; }
.level-label { font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.rookie-label { color: var(--blue); }
.master-label { color: #9a6e00; }

/* Motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }

/* Responsive */
@media (max-width: 1120px) {
  .brand { min-width: 275px; }
  .metro-logo { width: 142px; }
  .site-nav { gap: 16px; }
  .hero-grid { gap: 44px; }
  .future-grid { grid-template-columns: 1fr; }
  .quick-facts { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .activity-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .price-grid.four { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 920px) {
  html { scroll-padding-top: 80px; }
  .nav-wrap { min-height: 72px; }
  .brand { min-width: auto; }
  .metro-logo { width: 135px; }
  .brand-divider { height: 34px; }
  .techtots-word { font-size: 20px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(.98);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav > a { padding: 13px 14px; border-radius: 12px; }
  .site-nav > a:not(.button):hover { background: #f2f8fd; }
  .site-nav > a:not(.button)::after { display: none; }
  .nav-cta { margin-top: 6px; }
  .hero { padding-top: 68px; padding-bottom: 88px; }
  .hero-grid,
  .about-grid,
  .facility-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-highlights,
  .hero-actions { justify-content: center; }
  .hero-visual { width: min(650px, 100%); margin: 10px auto 0; }
  .future-banner { margin-top: -10px; }
  .quick-facts { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .parent-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-mosaic { width: min(720px, 100%); margin-inline: auto; }
  .facility-copy { order: 1; }
  .facility-image { order: 2; width: min(700px,100%); margin-inline: auto; }
  .pricing-group-title { align-items: flex-start; flex-direction: column; }
  .pricing-group-title p { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}


@media (max-width: 820px) {
  .desktop-levels { display: none; }
  .mobile-levels { display: grid; gap: 12px; }
  .mobile-level-card { padding: 17px; border: 1px solid #dce8f2; border-radius: 17px; background: #fff; box-shadow: 0 8px 18px rgba(11,47,91,.05); }
  .mobile-level-card-header { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; }
  .mobile-level-number { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--navy); color: #fff; font-size: 12px; font-weight: 900; }
  .mobile-level-card h3 { font-size: 19px; }
  .mobile-universe { display: grid; gap: 5px; padding: 12px; border-radius: 13px; background: #f4faff; }
  .mobile-universe + .mobile-universe { margin-top: 9px; background: #fff9e9; }
  .mobile-universe span { font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
  .mobile-universe strong { color: #405a74; font-size: 13px; line-height: 1.4; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, var(--container)); }
  .section-pad { padding: 76px 0; }
  .section-heading { margin-bottom: 36px; }
  .brand-divider,
  .techtots-logo:not(.footer-techtots) { display: none; }
  .mobile-brand-label { display: inline-block; margin-left: -4px; padding-left: 12px; border-left: 1px solid var(--line); font-size: 17px; }
  .metro-logo { width: 128px; }
  h1 { font-size: clamp(40px, 11vw, 52px); }
  .hero { padding-top: 54px; padding-bottom: 72px; }
  .hero-lead { font-size: 17px; }
  .hero-highlights { align-items: stretch; }
  .hero-highlights span { justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-image-shell { margin: 0 10px; border-radius: 30px; }
  .hero-image-shell::before { inset: 13px -10px -10px 13px; border-radius: 30px; }
  .hero-image-shell img { border-radius: 21px; }
  .floating-card { padding: 9px 11px; transform: scale(.9); }
  .floating-card-top { top: 2%; right: -1%; transform-origin: top right; }
  .floating-card-bottom { left: -1%; bottom: 2%; transform-origin: bottom left; }
  .doodle-star { right: 4%; top: -10%; }
  .doodle-spark { left: 1%; top: 3%; }
  .doodle-code { right: 10%; bottom: -8%; }
  .future-grid { padding: 20px; }
  .quick-facts { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .activity-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
  .activity-card { min-height: 218px; padding: 18px; }
  .activity-card h3 { font-size: 19px; }
  .activity-description { font-size: 11.5px; }
  .activity-note { border-radius: 18px; }
  .levels-block { padding: 24px 16px; }
  .desktop-levels { display: none; }
  .mobile-levels { display: grid; gap: 12px; }
  .mobile-level-card { padding: 17px; border: 1px solid #dce8f2; border-radius: 17px; background: #fff; box-shadow: 0 8px 18px rgba(11,47,91,.05); }
  .mobile-level-card-header { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; }
  .mobile-level-number { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--navy); color: #fff; font-size: 12px; font-weight: 900; }
  .mobile-level-card h3 { font-size: 19px; }
  .mobile-universe { display: grid; gap: 5px; padding: 12px; border-radius: 13px; background: #f4faff; }
  .mobile-universe + .mobile-universe { margin-top: 9px; background: #fff9e9; }
  .mobile-universe span { font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
  .mobile-universe strong { color: #405a74; font-size: 13px; line-height: 1.4; }
  .parent-grid,
  .benefit-grid,
  .price-grid.four,
  .price-grid.two { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .benefit-card { min-height: 250px; }
  .about-grid,
  .facility-grid { gap: 48px; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 165px 165px 150px; gap: 8px; }
  .facility-image img { min-height: 330px; }
  .facility-badge { right: 10px; bottom: 12px; }
  .facility-actions { align-items: stretch; flex-direction: column; }
  .facility-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .pricing-group { padding: 22px 15px; }
  .pricing-group-title { gap: 12px; }
  .price-card { min-height: auto; }
  .price strong { font-size: 44px; }
  .cta-meta { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .modal-panel { padding: 30px 21px; }
  .modal-panel h2 { font-size: 34px; }
  .modal-levels { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .container { width: min(100% - 24px, var(--container)); }
  .metro-logo { width: 112px; }
  .mobile-brand-label { font-size: 15px; }
  .hero { padding-top: 42px; }
  .eyebrow-pill { font-size: 11px; }
  .hero-highlights { flex-direction: column; }
  .future-title { align-items: flex-start; }
  .quick-facts { grid-template-columns: 1fr; }
  .quick-facts article { min-height: 70px; }
  .activity-grid { grid-template-columns: 1fr; }
  .activity-card { min-height: 205px; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 145px 145px 135px; }
  .whatsapp-float { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); padding: 12px; }
  .whatsapp-float span { display: none; }
  .final-cta .button { width: 100%; }
  .cta-meta > span:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   TechTots Brand Refresh — logo-led purple/navy system
   ========================================================= */
:root {
  --navy: #241d57;
  --navy-deep: #17113c;
  --navy-soft: #33266f;
  --blue: #5a3cbb;
  --sky: #8b75ef;
  --sky-pale: #f1edff;
  --yellow: #ffd65a;
  --yellow-deep: #d9a900;
  --coral: #ff7c83;
  --mint: #55cfaa;
  --purple: #7448df;
  --ink: #2b2750;
  --muted: #6c6885;
  --line: #e4def4;
  --surface: #ffffff;
  --surface-soft: #f8f6ff;
  --cream: #fffaf0;
  --shadow-sm: 0 10px 28px rgba(45, 31, 102, .08);
  --shadow-md: 0 20px 48px rgba(45, 31, 102, .14);
  --shadow-lg: 0 32px 82px rgba(32, 22, 79, .2);
}

body {
  background: #fcfbff;
  color: var(--ink);
}

h1, h2, h3, h4 {
  color: var(--navy);
}

/* Header and exact brand lockup */
.site-header {
  background: rgba(255, 255, 255, .9);
  border-bottom-color: rgba(90, 60, 187, .1);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 14px 34px rgba(39, 27, 92, .09);
}
.nav-wrap { min-height: 86px; }
.brand {
  min-width: 390px;
  gap: 18px;
}
.techtots-brand-logo {
  width: 242px;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}
.powered-by {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  color: #87819c;
  line-height: 1;
}
.powered-by small {
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.powered-by img {
  width: 112px;
  height: 29px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}
.site-nav { gap: 24px; }
.site-nav > a:not(.button) { color: #514b6d; }
.site-nav > a:not(.button)::after {
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}
.menu-toggle {
  border-color: #ded7ef;
  box-shadow: 0 9px 22px rgba(45,31,102,.08);
}
.menu-toggle span { background: var(--navy); }

/* Buttons */
.button { border-radius: 15px; }
.button-yellow {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 14px 30px rgba(90, 60, 187, .28);
}
.button-yellow:hover {
  box-shadow: 0 18px 38px rgba(90, 60, 187, .36);
}
.button-blue {
  background: linear-gradient(135deg, var(--navy-soft), var(--blue));
  box-shadow: 0 14px 30px rgba(52, 38, 112, .25);
}
.button-ghost {
  border-color: #d8d0eb;
  background: rgba(255,255,255,.88);
  color: var(--navy);
}
.button-ghost:hover { border-color: #bbaee0; }
.button:focus-visible,
.menu-toggle:focus-visible,
.activity-card:focus-visible,
.modal-close:focus-visible,
a:focus-visible {
  outline-color: rgba(116,72,223,.3);
}

/* Hero */
.hero {
  padding-top: 88px;
  padding-bottom: 112px;
  background:
    radial-gradient(circle at 88% 8%, rgba(116,72,223,.18), transparent 31%),
    radial-gradient(circle at 7% 86%, rgba(255,214,90,.22), transparent 23%),
    linear-gradient(180deg, #f6f2ff 0%, #ffffff 92%);
}
.hero::before {
  opacity: .28;
  background-image:
    linear-gradient(rgba(90,60,187,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,60,187,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.7) 48%, transparent 90%);
}
.orb-1 { background: #dcd2ff; }
.orb-2 { background: #fff0b1; }
.hero-grid { gap: 72px; }
.eyebrow-pill {
  gap: 10px;
  padding: 8px 14px 8px 9px;
  border-color: #d9cef4;
  background: rgba(255,255,255,.84);
  color: #51446e;
  box-shadow: 0 10px 24px rgba(90,60,187,.08);
}
.eyebrow-pill img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.eyebrow-pill strong { color: var(--blue); }
h1 { max-width: 760px; }
h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead { color: #625e79; }
.hero-highlights span {
  border-color: #e0d9f0;
  background: rgba(255,255,255,.86);
  color: #554f70;
  box-shadow: 0 8px 20px rgba(45,31,102,.055);
}
.hero-highlights svg { color: var(--blue); }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 20px;
  margin-top: 20px;
  color: #6f6984;
  font-size: 12px;
  font-weight: 800;
}
.hero-proof span::first-letter { color: var(--blue); }
.hero-image-shell {
  padding: 13px;
  border-radius: 40px;
  background: linear-gradient(145deg, #5a3cbb, #8b6cf1 62%, #ffd65a 120%);
  box-shadow: 0 34px 86px rgba(52,37,117,.23);
}
.hero-image-shell::before {
  border-color: rgba(90,60,187,.2);
  background: rgba(250,248,255,.72);
}
.hero-image-shell::after { border-color: rgba(255,255,255,.74); }
.floating-card {
  border-color: rgba(221,214,240,.95);
  box-shadow: 0 18px 45px rgba(45,31,102,.16);
}
.mini-icon {
  background: linear-gradient(145deg, #f0ebff, #fff);
}
.floating-card-center {
  right: 4%;
  bottom: -8%;
  display: grid;
  min-width: 132px;
  gap: 0;
  padding: 12px 16px;
  text-align: center;
  transform: rotate(-2deg);
}
.floating-card-center strong {
  color: var(--purple);
  font-size: 26px;
  line-height: 1;
}
.floating-card-center small { margin-top: 3px; }
.doodle-star { color: var(--yellow-deep); }
.doodle-spark { color: var(--coral); }
.doodle-code { color: var(--blue); }

/* Key facts */
.future-banner { margin-top: -28px; }
.future-grid {
  grid-template-columns: 300px 1fr;
  padding: 25px;
  border-color: rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 0 100%, rgba(139,117,239,.26), transparent 34%),
    linear-gradient(135deg, #17113c, #32246e 58%, #5a3cbb);
  box-shadow: 0 26px 65px rgba(31,21,78,.25);
}
.future-title p { color: #d9d3f3; }
.future-bot {
  overflow: hidden;
  width: 56px;
  height: 56px;
  padding: 8px;
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.95);
}
.future-bot img { width: 100%; height: 100%; object-fit: contain; }
.quick-facts article {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.075);
}
.quick-facts small { color: #bdb3e6; }

/* Shared section design */
.section-heading h2 { color: var(--navy); }
.kicker { color: var(--blue); }
.kicker::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 3px;
  margin-right: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  vertical-align: middle;
}
.kicker-light { color: #c4b8ff; }
.kicker-light::before { background: #ffd65a; }
.section-heading.light p { color: #d0cae7; }

/* Activities */
.activities {
  position: relative;
  background:
    radial-gradient(circle at 10% 16%, rgba(116,72,223,.07), transparent 22%),
    #fff;
}
.activities::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: radial-gradient(circle, rgba(90,60,187,.18) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 24%, transparent 84%);
}
.activities .container { position: relative; }
.activity-card {
  min-height: 236px;
  border-color: rgba(90,60,187,.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,.14)),
    var(--card-bg);
  box-shadow: 0 12px 30px rgba(43,31,98,.08);
}
.activity-card::before { background: rgba(255,255,255,.5); }
.activity-card::after {
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--purple), #a591ff);
}
.activity-card:hover {
  border-color: rgba(90,60,187,.28);
  box-shadow: 0 22px 46px rgba(45,31,102,.15);
}
.activity-icon {
  border: 1px solid rgba(90,60,187,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(43,31,98,.12);
}
.activity-description { color: #5e5977; }
.activity-card .activity-link { color: var(--blue); }
.activity-card .card-number { color: rgba(43,31,98,.1); }
.activity-note {
  border-color: #bfb0e9;
  background: linear-gradient(90deg, #f5f1ff, #fff);
}
.levels-block {
  border-color: #e0d9ef;
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(246,242,255,.94)),
    #f6f2ff;
  box-shadow: 0 22px 54px rgba(45,31,102,.09);
}
.table-wrap { border-color: #e3dcef; }
th { background: linear-gradient(90deg, var(--navy), var(--blue)); }
td:nth-child(1) { color: var(--blue); }
tbody tr:nth-child(even) td { background: #fcfbff; }
tbody tr:hover td { background: #f5f1ff; }
.level-dot.rookie { background: #ffd65a; }
.level-dot.master { background: #a58dff; }

/* Parent confidence section */
.parents-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(139,117,239,.22), transparent 26%),
    radial-gradient(circle at 12% 92%, rgba(255,214,90,.09), transparent 24%),
    linear-gradient(145deg, #17113c, #2b205f 60%, #493296);
}
.parents-section::before,
.parents-section::after { border-color: rgba(255,255,255,.11); }
.feature-card {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px rgba(255,255,255,.05);
}
.feature-card:hover {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.13);
}
.feature-icon {
  background: linear-gradient(145deg, #fff6cd, #ffd65a);
  box-shadow: 0 12px 26px rgba(16,10,45,.22);
}
.feature-card p { color: #d0cae7; }
.parents-summary { color: #e0dbf2; }

/* Benefits, about and facility */
.benefits { background: #fbf9ff; }
.benefit-card { border-color: rgba(90,60,187,.09); }
.benefit-blue { background: #eeeaff; }
.benefit-yellow { background: #fff4c8; }
.benefit-green { background: #e8f8f2; }
.benefit-coral { background: #ffe8eb; }
.benefit-number { color: rgba(90,60,187,.12); }
.benefit-card p { color: #5f5977; }
.about-section { background: #fff; }
.about-points div { color: #5c5674; }
.about-points span { background: #eee9ff; color: var(--blue); }
.gallery-mosaic figure {
  border-color: #fff;
  box-shadow: 0 14px 34px rgba(45,31,102,.12);
}
.facility { background: #fbfaff; }
.facility-image::before { background: linear-gradient(145deg, #e7e0ff, #f7f4ff); }
.facility-badge { border-color: #ded6ee; }
.check-list li { color: #5b5672; }
.check-list span { background: #eee9ff; color: var(--blue); }
address { border-left-color: var(--purple); }
.text-link { color: var(--blue); border-bottom-color: #b7a8e2; }

/* Pricing */
.pricing {
  background:
    radial-gradient(circle at 90% 5%, rgba(116,72,223,.12), transparent 26%),
    linear-gradient(180deg, #f3efff 0%, #fbfaff 100%);
}
.pricing-shape-a { background: #d8ceff; }
.pricing-shape-b { background: #ffedaa; }
.byod { border-color: #e1daef; color: #615a78; }
.pricing-group {
  border-color: #e0d8ef;
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 58px rgba(45,31,102,.12);
}
.pricing-group-icon { background: #eee9ff; }
.price-card {
  border-color: #e4deef;
  box-shadow: 0 10px 24px rgba(45,31,102,.045);
}
.price-card:hover { border-color: #bdaee2; }
.price strong { color: var(--blue); }
.price-card li { color: #625d78; }
.price-card li::before { color: var(--blue); }
.starter {
  border-color: #cfc2ef;
  background: linear-gradient(180deg, #f7f4ff, #fff);
}
.best-value {
  border-color: #bda5ff;
  background: linear-gradient(180deg, #f2ecff, #fff);
  box-shadow: 0 16px 38px rgba(90,60,187,.12);
}
.corner-ribbon {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  color: #fff;
}
.popular {
  border-color: var(--blue);
  background: linear-gradient(180deg, #f4efff, #fff);
  box-shadow: 0 16px 38px rgba(90,60,187,.14);
}
.popular-tag { background: linear-gradient(90deg, var(--blue), var(--purple)); }

/* Final call-to-action */
.final-cta {
  background:
    radial-gradient(circle at 20% 20%, rgba(139,117,239,.2), transparent 26%),
    linear-gradient(135deg, #17113c, #33246f 56%, #5a3cbb);
}
.final-cta::before { background: rgba(139,117,239,.12); }
.final-cta::after { background: rgba(255,214,90,.08); }
.cta-robot {
  width: 84px;
  height: 84px;
  padding: 11px;
  overflow: hidden;
  border-color: rgba(255,255,255,.2);
  background: #fff;
  box-shadow: 0 16px 36px rgba(10,6,31,.22);
}
.cta-robot img { width: 100%; height: 100%; object-fit: contain; }
.final-cta p { color: #d6d0ed; }
.cta-meta { color: #c8c0e7; }

/* Footer */
.site-footer {
  background:
    radial-gradient(circle at 85% 0%, rgba(116,72,223,.15), transparent 30%),
    #120d31;
  color: #c6bfdc;
}
.footer-logo-panel {
  width: 210px;
  padding: 15px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.footer-brand .footer-logo-panel > img {
  width: 100%;
  height: auto;
  border-radius: 0;
}
.footer-powered {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
  color: #9f97bc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-brand .footer-powered img {
  width: 125px;
  height: 31px;
  padding: 4px 7px;
  border-radius: 7px;
  background: #fff;
  object-fit: contain;
}
.footer-brand p { color: #bfb8d6; }
.site-footer h3 { color: #fff; }
.footer-contact a:hover,
.footer-bottom a:hover { color: #d8ccff; }

/* Modal */
.modal-backdrop { background: rgba(18,13,49,.76); }
.modal-panel { border-color: rgba(255,255,255,.6); }
.modal-close { background: #f0ecf8; }
.modal-icon { background: #eee9ff; }
.modal-levels article { border-color: #ded6ef; background: #f8f6ff; }
.modal-levels article:nth-child(2) { border-color: #e6d8ff; background: #f3efff; }
.rookie-label { color: var(--blue); }
.master-label { color: var(--purple); }

/* Responsive refinements for the real logo */
@media (max-width: 1120px) {
  .brand { min-width: 320px; }
  .techtots-brand-logo { width: 218px; }
  .powered-by img { width: 94px; }
  .site-nav { gap: 17px; }
}

@media (max-width: 920px) {
  .nav-wrap { min-height: 78px; }
  .brand { min-width: auto; }
  .techtots-brand-logo { width: 220px; }
  .powered-by { display: none; }
  .site-nav {
    top: 88px;
    border-color: #ded7ef;
    background: rgba(255,255,255,.99);
  }
  .site-nav > a:not(.button):hover { background: #f5f1ff; }
  .future-grid { grid-template-columns: 1fr; }
  .floating-card-center { right: 8%; }
}

@media (max-width: 760px) {
  .techtots-brand-logo { width: 190px; }
  .hero { padding-top: 50px; }
  .eyebrow-pill { max-width: 100%; font-size: 11px; }
  .eyebrow-pill img { width: 24px; height: 24px; }
  .hero-proof { justify-content: center; }
  .hero-image-shell { margin-inline: 6px; }
  .floating-card-center { right: 2%; bottom: -10%; transform: scale(.88) rotate(-2deg); transform-origin: bottom right; }
  .levels-block { box-shadow: none; }
  .mobile-level-number { background: linear-gradient(135deg, var(--navy), var(--blue)); }
  .mobile-level-card { border-color: #e1daef; }
  .mobile-universe { background: #f5f1ff; }
  .mobile-universe + .mobile-universe { background: #fbf8ff; }
  .footer-logo-panel { width: 190px; }
}

@media (max-width: 500px) {
  .techtots-brand-logo { width: 166px; }
  .nav-wrap { min-height: 72px; }
  .site-nav { top: 80px; }
  .hero { padding-top: 38px; }
  .eyebrow-pill span { line-height: 1.35; }
  .floating-card-top { right: -3%; }
  .floating-card-bottom { left: -3%; }
  .floating-card-center { display: none; }
  .future-grid { padding: 19px; }
  .future-bot { width: 50px; height: 50px; }
  .activity-card { min-height: 214px; }
  .footer-powered { flex-wrap: wrap; }
}

/* Final overlap corrections */
@media (min-width: 921px) {
  .floating-card-center {
    right: 28%;
    bottom: -8%;
  }
  .doodle-code {
    right: 0;
    bottom: -7%;
  }
}
.whatsapp-float.over-footer { bottom: max(96px, env(safe-area-inset-bottom)); }
@media (max-width: 500px) {
  .whatsapp-float.over-footer { bottom: max(84px, env(safe-area-inset-bottom)); }
}

/* Embedded class schedule modal */
.calendar-modal-panel {
  width: min(1120px, 100%);
  padding: 30px;
  overflow: hidden;
}
.calendar-modal-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 50px;
  margin-bottom: 22px;
}
.calendar-modal-heading h2 {
  margin-top: 5px;
  padding-right: 0;
  font-size: clamp(28px, 4vw, 42px);
}
.calendar-modal-heading p {
  margin: 7px 0 0;
  color: var(--muted);
}
.calendar-modal-icon {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(145deg, #f3efff, #e7dfff);
  box-shadow: 0 12px 28px rgba(45,31,102,.12);
}
.calendar-modal-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.calendar-frame-wrap {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid #ddd5ef;
  border-radius: 20px;
  background:
    linear-gradient(110deg, transparent 35%, rgba(255,255,255,.78) 50%, transparent 65%) 0 0 / 240% 100%,
    #f5f1ff;
  box-shadow: inset 0 1px rgba(255,255,255,.8);
}
.calendar-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
  background: #fff;
}
.calendar-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  color: #6b6481;
  font-size: 13px;
}

@media (max-width: 760px) {
  .calendar-modal {
    padding: 10px;
  }
  .calendar-modal-panel {
    max-height: calc(100dvh - 20px);
    padding: 22px 14px 16px;
    border-radius: 22px;
  }
  .calendar-modal-heading {
    align-items: flex-start;
    gap: 12px;
    padding-right: 38px;
    margin-bottom: 16px;
  }
  .calendar-modal-icon {
    width: 52px;
    height: 52px;
    padding: 8px;
    border-radius: 15px;
  }
  .calendar-modal-heading h2 {
    font-size: 26px;
    line-height: 1.05;
  }
  .calendar-modal-heading p {
    font-size: 13px;
  }
  .calendar-frame-wrap {
    min-height: 68dvh;
    border-radius: 15px;
  }
  .calendar-frame-wrap iframe {
    height: 68dvh;
  }
  .calendar-modal-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-top: 11px;
  }
}

@media (max-width: 420px) {
  .calendar-modal-heading .kicker,
  .calendar-modal-heading p {
    display: none;
  }
  .calendar-modal-heading h2 {
    margin-top: 7px;
    font-size: 23px;
  }
  .calendar-frame-wrap,
  .calendar-frame-wrap iframe {
    min-height: 72dvh;
    height: 72dvh;
  }
}
