/* ==========================================================
   Sentinel Plan Management — Main stylesheet
   Child theme override for Kadence
   ========================================================== */

/* ----------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
  --purple-900: #2D1454;
  --purple-700: #5B2B8C;
  --purple-500: #7E47B8;
  --purple-300: #C9A8E8;
  --purple-100: #F1E8FA;
  --purple-50:  #F9F4FE;

  --yellow-500: #FFC83D;
  --yellow-400: #FFD668;
  --yellow-200: #FFEEB8;
  --yellow-100: #FFF7DD;

  --ink-900: #1C0E2E;
  --ink-700: #3F2E58;
  --ink-500: #6B5C7E;
  --ink-300: #B0A4BE;
  --ink-100: #EFEAF3;

  --bg:      #FFFEFB;
  --bg-soft: #FBF7F3;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-sm: 0 2px 8px rgba(45, 20, 84, 0.06);
  --shadow-md: 0 8px 28px rgba(45, 20, 84, 0.10);
  --shadow-lg: 0 24px 60px rgba(45, 20, 84, 0.14);

  --font-head: 'DM Sans', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --max: 1200px;
}

/* ----------------------------------------------------------
   2. MULTILINGUAL FONT SUPPORT (unicode-range descriptors)
   ---------------------------------------------------------- */
@font-face {
  font-family: 'Noto Sans Gurmukhi';
  font-style:  normal;
  font-weight: 400 700;
  font-display: swap;
  src: local('Noto Sans Gurmukhi');
  unicode-range: U+0A00-U+0A7F;
}

@font-face {
  font-family: 'Noto Sans Devanagari';
  font-style:  normal;
  font-weight: 400 700;
  font-display: swap;
  src: local('Noto Sans Devanagari');
  unicode-range: U+0900-U+097F;
}

:lang(pa) {
  --font-head: 'Noto Sans Gurmukhi', 'DM Sans', system-ui, sans-serif;
  --font-body: 'Noto Sans Gurmukhi', 'Nunito', system-ui, sans-serif;
  word-break: keep-all;
  line-height: 1.75;
}

:lang(hi) {
  --font-head: 'Noto Sans Devanagari', 'DM Sans', system-ui, sans-serif;
  --font-body: 'Noto Sans Devanagari', 'Nunito', system-ui, sans-serif;
  word-break: keep-all;
  line-height: 1.8;
}

/* ----------------------------------------------------------
   3. RESET / BASE
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Override Kadence body background */
body.sentinel-page {
  background: var(--bg) !important;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.05; font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }

p { text-wrap: pretty; margin: 0 0 1em; }
a { color: var(--purple-700); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------------------------------------------------------
   4. TOPBAR
   ---------------------------------------------------------- */
.topbar {
  background: var(--purple-900);
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--yellow-400); font-weight: 600; }
.topbar a:hover { color: var(--yellow-200); text-decoration: none; }
.topbar .phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-500);
  color: var(--purple-900);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-weight: 700;
}
.topbar .phone:hover { background: var(--yellow-400); text-decoration: none; }

/* ----------------------------------------------------------
   5. HEADER / NAVIGATION
   ---------------------------------------------------------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--ink-100);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.header-logo {
  display: flex; align-items: center; text-decoration: none;
}
.header-logo img {
  height: 56px; width: auto; display: block;
}

.site-nav { display: flex; gap: 6px; align-items: center; }
.site-nav a {
  color: var(--ink-700);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.site-nav a:hover,
.site-nav a.current-menu-item,
.site-nav a[aria-current="page"] {
  background: var(--purple-50);
  color: var(--purple-700);
  text-decoration: none;
}

/* Header actions (lang switcher + CTA) */
.header-actions {
  display: flex; gap: 10px; align-items: center;
}

/* ----------------------------------------------------------
   6. LANGUAGE SWITCHER
   ---------------------------------------------------------- */
.lang-switcher {
  display: flex; gap: 2px; align-items: center;
  background: var(--ink-100);
  border-radius: var(--radius-xl);
  padding: 3px;
}
.lang-switcher a {
  border: none; cursor: pointer;
  padding: 5px 12px; border-radius: var(--radius-xl);
  font-size: 13px; font-weight: 700;
  font-family: var(--font-body);
  background: transparent;
  color: var(--ink-500);
  transition: all 0.15s;
  line-height: 1.4;
  text-decoration: none;
}
.lang-switcher a:hover {
  background: rgba(91, 43, 140, 0.1);
  text-decoration: none;
}
.lang-switcher a.active,
.lang-switcher a[aria-current="true"] {
  background: var(--purple-700);
  color: white;
  text-decoration: none;
}

/* ----------------------------------------------------------
   7. MOBILE NAV
   ---------------------------------------------------------- */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink-700);
  border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--purple-50); }
.nav-toggle .bar {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
  margin: 5px 0;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(28, 14, 46, 0.5);
  z-index: 48;
}
.nav-overlay.visible { display: block; }

.nav-drawer {
  position: fixed; top: 0; right: 0;
  width: min(300px, 85vw);
  height: 100dvh;
  background: var(--bg);
  z-index: 49;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 24px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 8px;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  display: block; padding: 12px 16px;
  color: var(--ink-700); font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.nav-drawer a:hover { background: var(--purple-50); color: var(--purple-700); }
.nav-drawer a.current-menu-item { background: var(--purple-50); color: var(--purple-700); }
.nav-drawer .drawer-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-100);
}

/* ----------------------------------------------------------
   8. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple-700);
  color: white;
  box-shadow: 0 4px 0 var(--purple-900);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--purple-900);
  color: white; text-decoration: none;
}
.btn-primary:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--purple-900); }

.btn-yellow {
  background: var(--yellow-500);
  color: var(--purple-900);
  box-shadow: 0 4px 0 #C99A1F;
}
.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #C99A1F;
  color: var(--purple-900); text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--purple-700);
  border: 2px solid var(--purple-300);
}
.btn-ghost:hover {
  background: var(--purple-50);
  border-color: var(--purple-500);
  text-decoration: none;
}

.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ----------------------------------------------------------
   9. HERO
   ---------------------------------------------------------- */
.hero {
  background:
    radial-gradient(circle at 90% 10%, var(--yellow-100) 0%, transparent 35%),
    radial-gradient(circle at 5% 90%, var(--purple-50) 0%, transparent 40%),
    var(--bg);
  padding: 56px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-100);
  color: var(--purple-700);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple-700); }

.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, var(--yellow-200) 60%);
  padding: 0 4px;
}

.hero-lead { font-size: 1.15rem; color: var(--ink-500); margin: 16px 0 28px; max-width: 50ch; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-500); font-weight: 600; }
.hero-trust-item .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--yellow-200); color: var(--purple-900);
  display: grid; place-items: center; font-weight: 800; font-size: 13px;
}

/* Hero form card */
.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-tag {
  position: absolute;
  top: -14px; left: 28px;
  background: var(--yellow-500);
  color: var(--purple-900);
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 13px;
}
.hero-card h3 { margin-bottom: 4px; }
.hero-card .sub { color: var(--ink-500); font-size: 14px; margin-bottom: 20px; }

/* ----------------------------------------------------------
   10. TRUST STRIP
   ---------------------------------------------------------- */
.trust-strip {
  background: var(--purple-900);
  color: white;
  padding: 32px 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-stat .num {
  font-family: var(--font-head);
  font-size: 2.4rem; font-weight: 700;
  color: var(--yellow-400);
  line-height: 1;
}
.trust-stat .lbl { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 4px; }
.trust-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* ----------------------------------------------------------
   11. SECTION SCAFFOLDING
   ---------------------------------------------------------- */
.section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }
.section-purple { background: var(--purple-50); }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-eyebrow {
  color: var(--purple-700); font-weight: 800;
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--ink-500); font-size: 1.1rem; }

/* ----------------------------------------------------------
   12. SERVICES
   ---------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.2s;
}
.service-card:hover {
  border-color: var(--purple-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--purple-100);
  color: var(--purple-700);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.service-card.feat .service-icon { background: var(--yellow-200); color: var(--purple-900); }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--ink-500); font-size: 15px; margin: 0; }

/* ----------------------------------------------------------
   13. WHY US
   ---------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.why-num {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--purple-700);
  color: var(--yellow-400);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.4rem;
}
.why-point h3 { margin-bottom: 4px; }
.why-point p { color: var(--ink-500); margin: 0; font-size: 15px; }

.why-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: var(--purple-100);
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-visual .floater {
  position: absolute;
  bottom: 32px; right: 24px;
  background: var(--yellow-500);
  color: var(--purple-900);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 800;
  box-shadow: var(--shadow-md);
  display: flex; gap: 10px; align-items: center;
}
.why-visual .floater .big {
  font-family: var(--font-head);
  font-size: 1.6rem;
}

/* ----------------------------------------------------------
   14. TESTIMONIALS
   ---------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1.5px solid var(--ink-100);
  position: relative;
}
.testimonial .stars {
  color: var(--yellow-500); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px;
}
.testimonial p { font-size: 15px; color: var(--ink-700); margin-bottom: 16px; }
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--purple-100); color: var(--purple-700);
  display: grid; place-items: center; font-weight: 700;
  font-size: 16px;
}
.testimonial .name { font-weight: 700; font-size: 14px; }
.testimonial .role { font-size: 12px; color: var(--ink-500); }

/* ----------------------------------------------------------
   15. FAQ
   ---------------------------------------------------------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  user-select: none;
}
.faq-q .plus {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--purple-100); color: var(--purple-700);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 800;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--yellow-500);
  color: var(--purple-900);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 24px;
  color: var(--ink-500);
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 24px 20px; }

/* ----------------------------------------------------------
   16. FINAL CTA BANNER
   ---------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  color: white;
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--yellow-500); opacity: 0.18;
}
.cta-banner::after {
  content: '';
  position: absolute; left: -40px; bottom: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--yellow-400); opacity: 0.15;
}
.cta-banner h2 { color: white; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 50ch; margin: 0 auto 28px; position: relative; }
.cta-banner .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ----------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--purple-900);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer h4 {
  color: white; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--yellow-400); text-decoration: none; }
.footer-logo-link { display: inline-block; }
.footer-logo-link img { height: 64px; width: auto; display: block; }
.footer-blurb { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 16px; max-width: 32ch; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.75);
  transition: background 0.15s;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: var(--yellow-400); }

.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1; padding: 12px 14px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: white;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: var(--font-body); font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--yellow-400); }
.newsletter-form button {
  padding: 12px 18px;
  background: var(--yellow-500);
  color: var(--purple-900);
  border: none;
  font-weight: 700;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.15s;
}
.newsletter-form button:hover { background: var(--yellow-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ----------------------------------------------------------
   18. PAGE HEADER (sub-pages)
   ---------------------------------------------------------- */
.page-head {
  background:
    radial-gradient(circle at 90% 0%, var(--yellow-100) 0%, transparent 40%),
    var(--purple-50);
  padding: 64px 0 56px;
  text-align: center;
}
.page-head .crumb { font-size: 14px; color: var(--ink-500); margin-bottom: 12px; }
.page-head h1 { margin-bottom: 12px; }
.page-head p { color: var(--ink-500); font-size: 1.15rem; max-width: 60ch; margin: 0 auto; }

/* ----------------------------------------------------------
   19. ABOUT PAGE
   ---------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value {
  background: white;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--ink-100);
}
.value .vmark {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--purple-100); color: var(--purple-700);
  display: grid; place-items: center; margin-bottom: 16px;
  font-weight: 800; font-size: 20px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mission-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1.5px solid var(--ink-100);
}
.mission-card.highlight {
  background: var(--purple-700);
  color: white;
  border-color: var(--purple-700);
}
.mission-card.highlight h3 { color: white; }
.mission-card.highlight p { color: rgba(255,255,255,0.85); }
.mission-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--purple-100); color: var(--purple-700);
  display: grid; place-items: center; margin-bottom: 16px;
}
.mission-card.highlight .mission-icon { background: rgba(255,255,255,0.15); color: var(--yellow-400); }
.mission-card h3 { margin-bottom: 8px; }
.mission-card p { color: var(--ink-500); margin: 0; }

/* ----------------------------------------------------------
   20. CONTACT PAGE
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1.5px solid var(--ink-100);
  margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 20px;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--purple-100); color: var(--purple-700);
  display: grid; place-items: center;
}
.contact-card h4 { color: var(--purple-700); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-card .big { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--ink-900); }
.contact-card p { margin: 4px 0 0; color: var(--ink-500); font-size: 14px; }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--ink-100);
  margin-bottom: 24px;
  aspect-ratio: 16/9;
}
.map-embed iframe { width: 100%; height: 100%; display: block; border: none; }

/* ----------------------------------------------------------
   21. REGISTRATION PAGE
   ---------------------------------------------------------- */
.register-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.register-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1.5px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
}

.aside-card {
  background: var(--purple-50);
  padding: 28px;
  border-radius: var(--radius-md);
  position: sticky; top: 100px;
}
.aside-card h3 { margin-bottom: 12px; color: var(--purple-700); }
.aside-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.aside-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--ink-700);
}
.aside-list .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--yellow-500); color: var(--purple-900);
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
  flex-shrink: 0; margin-top: 2px;
}

/* ----------------------------------------------------------
   22. GETTING STARTED PAGE
   ---------------------------------------------------------- */
.gs-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.gs-highlight {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1.5px solid var(--ink-100);
  text-align: center;
}
.gs-highlight .icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--purple-100); color: var(--purple-700);
  display: grid; place-items: center; margin: 0 auto 16px;
}
.gs-highlight h3 { font-size: 1.1rem; margin-bottom: 6px; }
.gs-highlight p { color: var(--ink-500); font-size: 14px; margin: 0; }

.gs-steps { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.gs-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--ink-100);
}
.gs-step:last-child { border-bottom: none; }
.gs-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--purple-700); color: var(--yellow-400);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
}
.gs-step h3 { margin-bottom: 6px; }
.gs-step p { color: var(--ink-500); margin: 0; }

.zero-cost-card {
  background: var(--purple-700);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.zero-cost-card h3 { color: white; font-size: 1.4rem; margin-bottom: 8px; }
.zero-cost-card p { color: rgba(255,255,255,0.85); margin: 0; }
.zero-cost-badge {
  background: var(--yellow-500);
  color: var(--purple-900);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 800; font-size: 1.1rem;
  text-align: center; white-space: nowrap;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.option-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1.5px solid var(--ink-100);
}
.option-card.highlight {
  border-color: var(--purple-500);
  position: relative;
}
.option-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--purple-700); color: white;
  padding: 4px 14px; border-radius: var(--radius-xl);
  font-size: 12px; font-weight: 800;
  white-space: nowrap;
}
.option-card h3 { margin-bottom: 8px; }
.option-card p { color: var(--ink-500); font-size: 15px; margin: 0; }

.lang-card {
  background: var(--purple-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin: 40px 0;
}
.lang-card h3 { margin-bottom: 8px; }
.lang-card p { color: var(--ink-500); margin: 0; }
.lang-flags { display: flex; gap: 10px; }
.lang-flag {
  background: var(--purple-700); color: white;
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 14px;
}

/* ----------------------------------------------------------
   23. PRIVACY POLICY PAGE
   ---------------------------------------------------------- */
.privacy-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
}
.privacy-toc {
  position: sticky; top: 100px;
  background: var(--purple-50);
  border-radius: var(--radius-md);
  padding: 24px;
}
.privacy-toc h4 {
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--purple-700);
  margin-bottom: 16px;
}
.privacy-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.privacy-toc a {
  display: block; padding: 6px 10px;
  font-size: 13px; color: var(--ink-500);
  border-radius: var(--radius-xs);
  transition: all 0.15s;
  text-decoration: none;
}
.privacy-toc a:hover { color: var(--purple-700); background: var(--purple-100); }
.privacy-toc a.active { color: var(--purple-700); background: var(--purple-100); font-weight: 600; }

.privacy-content section {
  margin-bottom: 48px;
  padding-top: 8px;
}
.privacy-content h2 { font-size: 1.5rem; color: var(--purple-900); margin-bottom: 16px; }
.privacy-content h3 { font-size: 1.1rem; color: var(--ink-900); margin: 20px 0 8px; }
.privacy-content p { color: var(--ink-700); }
.privacy-content ul, .privacy-content ol {
  color: var(--ink-700); padding-left: 24px; margin-bottom: 1em;
}
.privacy-content li { margin-bottom: 6px; }

/* ----------------------------------------------------------
   24. FORM STYLES (shared + WPForms overrides)
   ---------------------------------------------------------- */
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--ink-700); margin-bottom: 6px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--bg-soft);
  transition: border-color 0.15s, background 0.15s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--purple-500);
  background: white;
  box-shadow: 0 0 0 3px var(--purple-100);
}
.form-row textarea { resize: vertical; min-height: 92px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* WPForms reset — map their classes to our design system */
.wpforms-container {
  margin: 0 !important;
}
.wpforms-form .wpforms-field {
  padding: 0 0 14px !important;
}
.wpforms-form label.wpforms-field-label {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--ink-700) !important;
  margin-bottom: 6px !important;
}
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="date"],
.wpforms-form input[type="number"],
.wpforms-form textarea,
.wpforms-form select {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1.5px solid var(--ink-100) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  background: var(--bg-soft) !important;
  color: var(--ink-900) !important;
  transition: border-color 0.15s, background 0.15s !important;
  box-shadow: none !important;
}
.wpforms-form input:focus,
.wpforms-form textarea:focus,
.wpforms-form select:focus {
  outline: none !important;
  border-color: var(--purple-500) !important;
  background: white !important;
  box-shadow: 0 0 0 3px var(--purple-100) !important;
}
.wpforms-form .wpforms-submit-container {
  padding: 0 !important;
}
.wpforms-form button[type="submit"],
.wpforms-form input[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 14px 28px !important;
  border-radius: var(--radius-xl) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.18s !important;
  background: var(--purple-700) !important;
  color: white !important;
  box-shadow: 0 4px 0 var(--purple-900) !important;
  width: 100% !important;
  justify-content: center !important;
}
.wpforms-form button[type="submit"]:hover,
.wpforms-form input[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 0 var(--purple-900) !important;
}
.wpforms-form .wpforms-error-container {
  background: #fff0f0 !important;
  border: 1.5px solid #f5a5a5 !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  margin-bottom: 14px !important;
  font-size: 14px !important;
  color: #c0392b !important;
}
.wpforms-confirmation-container-full,
.wpforms-confirmation-scroll {
  background: var(--purple-50) !important;
  border: 1.5px solid var(--purple-300) !important;
  border-radius: var(--radius-md) !important;
  padding: 24px !important;
  text-align: center !important;
  color: var(--ink-700) !important;
}

/* WPForms page-break steps (registration multi-step) */
.wpforms-page-indicator { margin-bottom: 24px !important; }
.wpforms-page-indicator-page {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
}
.wpforms-page-indicator-page.active span {
  background: var(--purple-700) !important;
  color: white !important;
}
.wpforms-form .wpforms-page-next,
.wpforms-form .wpforms-page-prev {
  display: inline-flex !important;
  align-items: center !important;
  padding: 12px 24px !important;
  border-radius: var(--radius-xl) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  cursor: pointer !important;
  border: none !important;
  transition: all 0.18s !important;
}
.wpforms-form .wpforms-page-next {
  background: var(--purple-700) !important;
  color: white !important;
}
.wpforms-form .wpforms-page-prev {
  background: transparent !important;
  color: var(--purple-700) !important;
  border: 2px solid var(--purple-300) !important;
  margin-right: 10px !important;
}

/* Radio / checkbox pill style for WPForms */
.wpforms-field-radio .wpforms-field-label-inline,
.wpforms-field-checkbox .wpforms-field-label-inline {
  font-size: 14px !important;
  color: var(--ink-700) !important;
}

/* ----------------------------------------------------------
   25. SCROLL REVEAL
   ---------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.reveal.in { opacity: 1; transform: none; }

/* ----------------------------------------------------------
   26. SVG ICON UTILITY
   ---------------------------------------------------------- */
.icon-svg {
  display: inline-block; vertical-align: middle;
  width: 1em; height: 1em;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ----------------------------------------------------------
   27. RESPONSIVE — 900px breakpoint
   ---------------------------------------------------------- */
@media (max-width: 900px) {
  /* Show mobile nav toggle, hide desktop nav */
  .nav-toggle { display: block; }
  .site-nav { display: none; }

  /* Stacked layouts */
  .hero-grid,
  .why-grid,
  .about-grid,
  .contact-grid,
  .register-wrap,
  .mission-grid { grid-template-columns: 1fr; }

  .services-grid,
  .testimonial-grid,
  .values-grid,
  .gs-highlights,
  .options-grid { grid-template-columns: 1fr; }

  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-divider { display: none; }

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

  .cta-banner { padding: 36px 24px; }
  .form-grid-2 { grid-template-columns: 1fr; }

  .privacy-wrap { grid-template-columns: 1fr; }
  .privacy-toc { position: relative; top: 0; margin-bottom: 32px; }

  .zero-cost-card { grid-template-columns: 1fr; text-align: center; }
  .lang-card { grid-template-columns: 1fr; }

  .hero-card { margin-top: 32px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .header-inner { padding: 12px 0; }
}

/* ----------------------------------------------------------
   28. ACCESSIBILITY
   ---------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--yellow-500);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* High contrast mode */
@media (forced-colors: active) {
  .btn-primary, .btn-yellow { forced-color-adjust: none; }
}

/* ----------------------------------------------------------
   29. PRINT
   ---------------------------------------------------------- */
@media print {
  .topbar, .site-header, .site-footer, .cta-banner { display: none; }
  .privacy-wrap { grid-template-columns: 1fr; }
  .privacy-toc { display: none; }
}
