/*
========================================
File      : [site root]/landingpage/assets/css/main.css
Timestamp : December 29, 2025 2:30pm PST
Author    : 💖 Lexi
========================================
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5ff;
  --text: #0c1b3f;
  --heading: #071230;
  --muted: #2f405f;
  --primary: #6ab8ff;
  --accent: #ffa9d0;
  --hover-start: #d7c6ff;
  --hover-end: #f8c8ff;
  --pastel-1: #cfcaf7;
  --pastel-2: #ebe4ff;
  --metal-blue: #6ba8ff;
  --metal-blue-soft: #dbe9ff;
  --metal-gold: #f5d67a;
  --metal-gold-deep: #e9b55f;
  --border: #e2e8f0;
  --shadow: 0 12px 35px rgba(31, 42, 68, 0.15);
  --radius: 16px;
  --fs-hero: clamp(32px, 4.4vw, 44px);
  --fs-h2: clamp(24px, 3.2vw, 32px);
  --fs-h3: clamp(18px, 2.2vw, 22px);
  --fs-body: 16px;
  --fs-small: 14px;
  --leading-tight: 1.1;
  --leading-normal: 1.6;
  --leading-loose: 1.7;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'DM Sans', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-size: var(--fs-body);
  line-height: var(--leading-normal);
  color: var(--text);
  background: radial-gradient(circle at 10% 20%, rgba(140, 201, 255, 0.22), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(249, 184, 198, 0.25), transparent 28%),
    var(--bg);
  padding-top: 90px;
}

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

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'DM Sans', system-ui, sans-serif;
  margin: 0 0 var(--space-2);
  color: var(--heading);
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--fs-hero);
  line-height: var(--leading-tight);
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.2;
}

p.guarantee-callout {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  color: #111827;
  margin-top: var(--space-2);
  line-height: 1.35;
}
.guarantee-callout .student-note {
  display: inline-block;
  font-size: clamp(16px, 1.9vw, 18px);
  font-weight: 700;
  color: #374151;
}

p {
  margin: 0 0 var(--space-2);
  font-size: var(--fs-body);
  line-height: var(--leading-normal);
  color: var(--text);
  text-wrap: pretty;
}

li {
  line-height: var(--leading-normal);
}

.page {
  position: relative;
  overflow-x: hidden;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 110px;
}

.hero {
  position: relative;
  padding: clamp(12px, 4vw, 28px) 0 clamp(64px, 10vw, 96px);
  overflow: visible;
}

.noise {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(140, 201, 255, 0.18), transparent 40%),
    linear-gradient(320deg, rgba(249, 184, 198, 0.22), transparent 32%);
  filter: blur(60px);
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92vw);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(214, 198, 238, 0.6);
  border-radius: 28px;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav.sticky-nav-menu {
  background: rgba(221, 220, 220, 0.175);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px rgba(31, 42, 68, 0.16);
  border-color: rgba(214, 198, 238, 0.7);
}

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

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 18px);
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(244, 236, 255, 0.82), rgba(233, 220, 255, 0.88));
  border: 1px solid rgba(214, 198, 238, 0.8);
  border-radius: 999px;
}

.nav-links a {
  padding: 8px 10px;
  color: var(--muted);
  font-weight: 500;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: linear-gradient(135deg, var(--pastel-1) 0%, var(--pastel-2) 100%);
}

.nav-links .btn {
  padding: 12px 18px;
  min-width: 130px;
  border-radius: 999px;
  white-space: nowrap;
}

.nav .btn {
  padding: 12px 18px;
  min-width: 130px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pastel-1) 0%, var(--pastel-2) 100%);
  color: #141a30;
  border: 2px solid rgba(255, 169, 208, 0.82);
  box-shadow:
    0 0 0 4px rgba(255, 169, 208, 0.2),
    0 12px 26px rgba(255, 169, 208, 0.32);
}

.nav .mega-trigger {
  font-family: inherit;
}

.nav .btn:hover {
  background: linear-gradient(135deg, var(--pastel-2) 0%, var(--pastel-1) 100%);
  border-color: rgba(255, 169, 208, 0.95);
  box-shadow:
    0 0 0 6px rgba(255, 169, 208, 0.26),
    0 12px 30px rgba(255, 169, 208, 0.4);
}

.mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  min-width: 620px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 16px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: auto;
  height: 12px;
}

.mega.open .mega-menu,
.mega-menu:focus-within {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-title {
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 4px;
}

.mega-menu a {
  padding: 6px 8px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 700;
}

.mega-menu a:hover {
  color: var(--text);
  background: linear-gradient(135deg, var(--pastel-1) 0%, var(--pastel-2) 100%);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 169, 208, 0.82);
  background: linear-gradient(135deg, var(--pastel-1) 0%, var(--pastel-2) 100%);
  color: #141a30;
  font-weight: 700;
  font-size: 15px;
  gap: 8px;
  box-shadow:
    0 0 0 4px rgba(255, 169, 208, 0.2),
    0 12px 26px rgba(255, 169, 208, 0.32);
}

@media (min-width: 1101px) {
  .nav-toggle {
    display: none !important;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  margin-top: clamp(24px, 4vw, 40px);
}

.pill, .mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  min-width: 200px;
  background: linear-gradient(135deg, rgba(140, 201, 255, 0.22), rgba(249, 184, 198, 0.18));
  color: var(--heading);
  border-radius: 999px;
  border: 1px solid rgba(140, 201, 255, 0.35);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(13, 31, 77, 0.18);
  box-shadow: 0 10px 22px rgba(107, 168, 255, 0.15);
  backdrop-filter: blur(6px);
  margin-bottom: 30px;
}

.pill {
  font-size: 18px;
}

.mini-pill {
  padding: 14px 20px;
  font-size: 18px;
}

.mini-pill.accent {
  background: linear-gradient(135deg, rgba(249, 184, 198, 0.32), rgba(245, 214, 122, 0.18));
  border-color: rgba(249, 184, 198, 0.5);
  color: var(--accent);
  text-shadow: 0 1px 3px rgba(255, 184, 207, 0.35);
  box-shadow: 0 10px 22px rgba(255, 169, 208, 0.18);
}

.hero h1 {
  margin: 16px 0;
}

.lede {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: var(--leading-loose);
  max-width: 560px;
}

.cta-row {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin: var(--space-3) 0 var(--space-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--pastel-1) 0%, var(--pastel-2) 100%);
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(107, 168, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--pastel-2) 0%, var(--pastel-1) 100%);
  box-shadow: 0 16px 40px rgba(140, 201, 255, 0.32);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(107, 168, 255, 0.55);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-1) 0%, var(--pastel-2) 100%);
  color: #0f172a;
  border: 1px solid rgba(255, 169, 208, 0.6);
  box-shadow: 0 14px 34px rgba(107, 168, 255, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--pastel-2) 0%, var(--pastel-1) 100%);
}

.btn-ghost,
.btn-outline {
  background: linear-gradient(135deg, var(--pastel-1) 0%, var(--pastel-2) 100%);
  color: #0f172a;
  border: 1px solid rgba(255, 169, 208, 0.5);
  box-shadow: 0 12px 30px rgba(150, 180, 255, 0.28);
}

.btn-ghost:hover,
.btn-outline:hover {
  background: linear-gradient(135deg, var(--pastel-2) 0%, var(--pastel-1) 100%);
  border-color: rgba(255, 169, 208, 0.65);
  box-shadow: 0 16px 42px rgba(140, 201, 255, 0.34);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, var(--pastel-1) 0%, var(--pastel-2) 100%);
  color: #0f172a;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 14px 36px rgba(31, 42, 68, 0.22);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1000;
}

.back-to-top:hover {
  box-shadow: 0 16px 40px rgba(107, 168, 255, 0.35);
  transform: translateY(6px);
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-card,
  .section-head {
    animation: fade-up 0.7s ease both;
  }

  .hero-card {
    animation-delay: 0.08s;
  }

  .features-grid .card,
  .pricing-grid .price-card,
  .testimonial {
    animation: fade-up 0.6s ease both;
  }

}

@media (prefers-reduced-motion: reduce) {
  .noise,
  .glass,
  .cta-box {
    animation: none !important;
  }
}

.btn.full {
  width: 100%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.stat-number {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
  font-size: var(--fs-small);
}

.hero-card {
  position: relative;
}

.glass {
  background: linear-gradient(145deg, #ffffff, #f6f8ff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.2s ease;
  will-change: transform;
}

.glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(31, 42, 68, 0.18);
  border-color: rgba(140, 201, 255, 0.45);
  animation: none;
}

.card-header,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dot-group span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.7;
}

.card-body {
  margin: 16px 0;
}

.card-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.value {
  font-size: 30px;
  font-weight: 700;
}

.badge {
  background: rgba(140, 201, 255, 0.2);
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  text-shadow: 0 1px 3px rgba(94, 184, 255, 0.3);
}

.bar {
  width: 100%;
  height: 8px;
  background: rgba(31, 42, 68, 0.08);
  border-radius: 999px;
  margin: 12px 0;
}

.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.timeline p {
  margin: 0;
  font-weight: 600;
}

.timeline span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(40px, 6vw, 72px) 0;
}

.section.surface {
  background: linear-gradient(180deg, rgba(140, 201, 255, 0.08), transparent);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.section-head h2 {
  max-width: 760px;
  margin: 0 auto var(--space-2);
  text-wrap: balance;
}

.section-head p {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: var(--leading-loose);
}

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

.max-600 {
  max-width: 600px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.deep-capabilities .features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deep-capabilities .features-grid .card {
  height: 100%;
}

@media (max-width: 1024px) {
  .deep-capabilities .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .deep-capabilities .features-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(16px, 2.4vw, 22px);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(31, 42, 68, 0.15);
  border-color: rgba(140, 201, 255, 0.4);
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(140, 201, 255, 0.2);
  color: var(--primary);
  font-weight: 700;
  display: grid;
  place-items: center;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 20px;
}

.testimonial p {
  font-size: 17px;
}

.testimonial footer {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

@media (max-width: 640px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.18);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.guarantee-callout {
  margin-bottom: var(--space-3);
}

.price-card {
  display: flex;
  flex-direction: column;
}

.plan-name {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 0 0 6px;
  color: var(--heading);
  text-shadow: 0 1px 3px rgba(7, 18, 48, 0.25);
}

.plan-name.accent {
  color: #5f41c7;
  text-shadow:
    0 3px 10px rgba(214, 63, 131, 0.5),
    0 0 14px rgba(245, 174, 206, 0.35);
  -webkit-text-stroke: 1px #000000;
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: clamp(22px, 2.6vw, 28px);
}

.price-card h3 {
  font-size: clamp(32px, 4.2vw, 44px);
  margin: 8px 0 12px;
  color: #3b136d;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-shadow:
    0 3px 10px rgba(59, 19, 109, 0.25),
    0 0 16px rgba(214, 198, 255, 0.32);
}
.price-card .plan-price-amount {
  display: inline-block;
  font-size: clamp(24px, 4.0vw, 26px);
  color: #3b136d;
  font-weight: 900;
  line-height: 1.05;
}
.price-card h3 span:not(.plan-price-amount) {
  color: #1f2937;
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 700;
}

.surcharge-note {
  display: block;
  font-size: 13px;
  color: #4b5672;
  margin-top: 4px;
}

.price-card span {
  font-size: var(--fs-small);
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  color: var(--muted);
  max-height: 260px;
  overflow: auto;
  flex: 1;
}

.price-card li {
  margin-bottom: 8px;
}

.price-card.highlight {
  border: 1px solid rgba(140, 201, 255, 0.55);
  background: linear-gradient(180deg, rgba(140, 201, 255, 0.14), rgba(249, 184, 198, 0.08));
  box-shadow: 0 16px 40px rgba(140, 201, 255, 0.22);
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.price-card.highlight .btn {
  box-shadow:
    0 0 0 2px rgba(255, 169, 208, 0.45),
    0 10px 26px rgba(255, 169, 208, 0.4),
    0 0 14px 6px rgba(255, 169, 208, 0.28);
}

.plan-matrix {
  margin-top: clamp(36px, 4vw, 48px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.matrix-row {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 8px;
  padding: 12px 14px;
  align-items: center;
}

.matrix-head {
  background: linear-gradient(135deg, rgba(107, 168, 255, 0.18), rgba(245, 214, 122, 0.14));
  font-weight: 700;
}

.feature-col {
  color: var(--heading);
}

.plan-col {
  text-align: center;
  color: var(--text);
  font-weight: 600;
}

.matrix-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 12px;
  font-weight: 600;
}

.matrix-value.yes {
  background: rgba(107, 168, 255, 0.18);
  color: var(--heading);
}

.matrix-value.yes::before {
  content: '✓';
  color: var(--heading);
}

.matrix-value.no {
  background: rgba(226, 232, 240, 0.7);
  color: var(--muted);
}

.matrix-value.no::before {
  content: '×';
  color: var(--muted);
}

@media (max-width: 900px) {
  .matrix-row {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    font-size: 14px;
    padding: 10px 12px;
  }
}

@media (max-width: 640px) {
  .plan-matrix {
    overflow-x: auto;
  }

  .matrix-row {
    min-width: 700px;
  }
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: start;
}

.form-card {
  background: var(--surface-2);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

label {
  font-weight: 600;
  color: var(--text);
}

input,
textarea,
select {
  background: #f5f7fb;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 12px;
  color: var(--text);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(31, 42, 68, 0.4);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(140, 201, 255, 0.7);
  border-color: rgba(140, 201, 255, 0.7);
}

.input-group.error input,
.input-group.error textarea,
.input-group.error select {
  border-color: #f87171;
  outline: 2px solid rgba(248, 113, 113, 0.4);
}

.error-text {
  color: #b91c1c;
  font-size: 12px;
  margin-top: 4px;
  display: block;
  background: #ffeef0;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 6px 8px;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 4px), calc(100% - 13px) calc(50% - 4px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
}

.required {
  color: var(--accent);
  margin-left: 4px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.checklist li::before {
  content: '•';
  color: var(--primary);
  margin-right: 8px;
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  background: #eef2ff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.small {
  font-size: 12px;
}

.highlight-quote {
  font-size: 16px;
  font-style: italic;
}

.micro {
  font-size: 11px;
  margin: 6px 0 0;
}

@media (max-width: 1100px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    z-index: 999;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    right: 0;
    top: 70px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(214, 198, 238, 0.85);
    border-radius: 16px;
    padding: 12px;
    min-width: 220px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links .btn {
    width: 100%;
    justify-content: center;
    min-width: 0;
  }
  .mega {
    width: 100%;
  }
  .mega-trigger {
    display: none;
  }
  .mega-menu {
    position: static;
    min-width: 100%;
    grid-template-columns: 1fr;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    padding: 10px 0 0;
  }
  .mega-trigger {
    width: 100%;
    text-align: left;
  }
  .nav-toggle {
    display: inline-flex !important;
  }
  .hero {
    padding-top: 12px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    z-index: 999;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    right: 0;
    top: 54px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(214, 198, 238, 0.85);
    border-radius: 16px;
    padding: 12px;
    min-width: 180px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links .btn {
    width: 100%;
    justify-content: center;
  }
  .mega {
    width: 100%;
  }
  .mega-menu {
    position: static;
    min-width: 100%;
    grid-template-columns: 1fr;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    padding: 10px 0 0;
  }
  .mega-trigger {
    width: 100%;
    text-align: left;
  }
  .hero {
    padding-top: 12px;
  }
}


.price-card ul::-webkit-scrollbar {
  width: 8px;
}

.price-card ul::-webkit-scrollbar-track {
  background: rgba(107, 168, 255, 0.12);
  border-radius: 12px;
}

.price-card ul::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--metal-blue) 0%, var(--metal-gold) 100%);
  border-radius: 12px;
}

.price-card ul::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--metal-gold-deep) 0%, var(--metal-blue) 100%);
}
/*
========================================
File      : [site root]/landingpage/assets/css/main.css
Timestamp : December 29, 2025 2:30pm PST
========================================
*/
