/* ============================================
   Numero Navigator Numerology — Earth & Growth
   Soft Sand · Deep Forest Green · Muted Brown
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Client palette */
  --sand: #F4EDE1;
  --forest: #1F3A2E;
  --brown: #8B5E3C;
  --forest-light: #2D5443;
  --forest-dark: #152820;
  --sand-deep: #E8DFD0;
  --sand-card: #FFF9F2;

  --bg: #F4EDE1;
  --bg-elevated: #EDE4D4;
  --bg-card: #FFF9F2;
  --ink: #1F3A2E;
  --cream: #1F3A2E;
  --grey: #8B5E3C;
  --line: rgba(139, 94, 60, 0.22);
  /* Legacy token aliases → Earth & Growth */
  --purple: #1F3A2E;
  --purple-light: #2D5443;
  --purple-dark: #152820;
  --midnight: #1F3A2E;
  --violet: #2A4538;
  --gold: #1F3A2E;
  --gold-light: #2D5443;
  --gold-dark: #152820;
  --orange: #1F3A2E;
  --orange-dark: #152820;
  --pink: #E8DFD0;
  --pink-2: #E0D5C4;
  --good: #2E6B4A;
  --bad: #A63D3D;
  --shadow: 0 10px 32px rgba(31, 58, 46, 0.1);
  --shadow-lg: 0 18px 48px rgba(31, 58, 46, 0.14);
  --radius: 16px;
  --radius-sm: 8px;
  --header-h: 80px;
  --util-h: 38px;
  --max: 1360px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --transition: 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 19px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
  max-width: 100%;
  font-size: 1.05rem;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest);
  letter-spacing: 0.01em;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  max-width: 100%;
}

.site-header .container {
  width: min(100% - 1.25rem, var(--max));
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-orange {
  background: var(--forest);
  color: #F4EDE1;
  border-color: var(--forest);
  box-shadow: 0 4px 16px rgba(31, 58, 46, 0.2);
}
.btn-orange:hover {
  transform: translateY(-2px);
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  box-shadow: 0 8px 24px rgba(31, 58, 46, 0.28);
  filter: none;
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: #F4EDE1;
}

.btn-outline-white {
  background: transparent;
  color: #F4EDE1;
  border-color: rgba(244, 237, 225, 0.55);
}
.btn-outline-white:hover {
  background: #F4EDE1;
  color: var(--forest);
}

.btn-white {
  background: #F4EDE1;
  color: var(--forest);
  border-color: #F4EDE1;
}
.btn-white:hover {
  background: #fff;
  border-color: #fff;
  color: var(--forest-dark);
}

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.72rem; }
.btn-lg { padding: 0.95rem 1.9rem; font-size: 0.88rem; }

/* ========== Utility Bar ========== */
.util-bar {
  background: #05030A;
  color: var(--grey);
  height: var(--util-h);
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.util-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
}

.util-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.util-social a {
  opacity: 0.75;
  display: flex;
  color: var(--gold-light);
  transition: opacity var(--transition), color var(--transition);
}
.util-social a:hover { opacity: 1; color: var(--gold); }
.util-social svg { width: 14px; height: 14px; fill: currentColor; }

.util-login {
  color: var(--cream);
  font-weight: 500;
  padding-left: 1rem;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  letter-spacing: 0.04em;
}
.util-login:hover { color: var(--gold); }

/* ========== Sticky Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 6, 20, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  color: var(--cream);
  flex: 0 0 auto;
  letter-spacing: 0.01em;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  max-width: 11.5rem;
  padding-right: 0.5rem;
  margin-right: 0.25rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.logo-brand {
  display: block;
  white-space: nowrap;
  line-height: 1.1;
}
.logo-accent { color: var(--gold); }
.logo-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 0.32rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  border-radius: 4px;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-item.is-open > .nav-link,
.nav-link.current { color: var(--gold); }

.nav-chevron {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 3.5px solid currentColor;
  opacity: 0.55;
}

.header-ctas {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
  align-items: center;
}
.header-ctas .btn {
  padding: 0.55rem 0.85rem;
  font-size: 0.7rem;
  white-space: nowrap;
}
.header-ctas .btn-outline {
  padding: 0.55rem 0.75rem;
}

/* Dropdowns & Mega-menus */
.dropdown,
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--bg-card);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  min-width: 200px;
  padding: 0.75rem 0;
  z-index: 100;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
}

.mega-menu {
  padding: 1.5rem;
  min-width: 420px;
  left: 0;
  transform: translateX(0) translateY(6px);
}

.mega-menu.cols-2 { min-width: 440px; }
.mega-menu.cols-3 { min-width: 620px; }

.nav-item:hover > .dropdown,
.nav-item:hover > .mega-menu,
.nav-item.is-open > .dropdown,
.nav-item.is-open > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item:hover > .mega-menu,
.nav-item.is-open > .mega-menu {
  transform: translateX(0) translateY(0);
}

.nav-item:nth-child(1) .mega-menu,
.nav-item:nth-child(2) .mega-menu { left: 0; }
.nav-item:nth-child(3) .mega-menu { left: 50%; transform: translateX(-50%) translateY(6px); }
.nav-item:nth-child(3):hover .mega-menu,
.nav-item:nth-child(3).is-open .mega-menu { transform: translateX(-50%) translateY(0); }

.dropdown a,
.mega-menu a {
  display: block;
  padding: 0.45rem 1.25rem;
  font-size: 0.875rem;
  color: var(--grey);
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover,
.mega-menu a:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
}
.dropdown a.current,
.mega-menu a.current {
  color: var(--gold);
  font-weight: 600;
  background: rgba(212, 175, 55, 0.1);
}

.mega-grid {
  display: grid;
  gap: 1.5rem;
}
.mega-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.mega-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.mega-col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 0 1.25rem 0.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.4rem;
}

.mega-col a { padding-left: 1.25rem; padding-right: 1.25rem; }

/* ========== Section Commons ========== */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  text-align: center;
  margin-bottom: 0.85rem;
  color: var(--cream);
}
.section-sub {
  text-align: center;
  color: var(--grey);
  max-width: 640px;
  margin: 0 auto 2.75rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
}

/* Light readable content sections */
.section-light {
  background: #F7F2EA;
  color: #2A2438;
}
.section-light .section-title,
.section-light h1,
.section-light h2,
.section-light h3 {
  color: #1A1228;
}
.section-light .section-sub,
.section-light p,
.section-light .how-text,
.section-light .disclaimer-note {
  color: #4A4458;
}
.section-light .explorer-intro {
  background: #fff;
  color: #3D3750;
  border-color: rgba(26, 18, 40, 0.1);
  box-shadow: 0 8px 28px rgba(26, 18, 40, 0.08);
  font-size: 1.1rem;
}
.section-light .explorer-heading { color: #1A1228; }
.section-light .number-circle {
  background: linear-gradient(145deg, #5B2E91, #2A1848);
  color: #F0D78C;
}
.section-light .number-item a { color: #5B2E91; font-size: 0.85rem; }
.section-light .number-item a:hover { color: #B8922A; }
.section-light .service-card {
  background: #fff;
  border-color: rgba(26, 18, 40, 0.1);
}
.section-light .service-card-body h3 { color: #1A1228; }
.section-light .service-card-body p { color: #5A5468; }
.section-light .remedy-card,
.section-light .process-card,
.section-light .faq-item {
  background: #fff;
  border-color: rgba(26, 18, 40, 0.1);
}
.section-light .remedy-card h3,
.section-light .process-card h3,
.section-light .faq-item summary { color: #1A1228; }
.section-light .remedy-card p,
.section-light .process-card p,
.section-light .faq-answer { color: #5A5468; }
.section-light .process-num { color: #B8922A; opacity: 0.8; }
.section-light .remedy-icon {
  background: rgba(212, 175, 55, 0.15);
  color: #8A6A18;
}
.section-light .about-text p { color: #4A4458; }
.section-light .btn-outline {
  color: #5B2E91;
  border-color: #5B2E91;
}
.section-light .btn-outline:hover {
  background: #5B2E91;
  color: #fff;
}

a.service-card { display: block; color: inherit; cursor: pointer; }
a.service-card:hover .service-card-body h3 { color: #5B2E91; }

.number-item-link span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5B2E91;
}
.section-light .number-item-link span { color: #5B2E91; }
.section-light .video-caption { color: #1A1228; }
.section-light .video-thumb {
  border-color: rgba(26, 18, 40, 0.12);
}
.section-light .eyebrow { color: #B8922A; }
.services-section.section-light { background: #F7F2EA; }
.number-explorer.section-light { background: #F7F2EA; border-color: rgba(26,18,40,0.08); }

/* ——— Homepage number gallery (scrollable 1–9) ——— */
.number-gallery-wrap {
  position: relative;
}
.gallery-scroll-hint {
  text-align: center;
  font-size: 0.82rem;
  color: #8B5E3C;
  margin: 0 0 0.85rem;
  font-weight: 500;
}
.number-gallery {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0.25rem 1.15rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 58, 46, 0.35) transparent;
}
.number-gallery::-webkit-scrollbar {
  height: 8px;
}
.number-gallery::-webkit-scrollbar-thumb {
  background: rgba(31, 58, 46, 0.35);
  border-radius: 999px;
}
.number-gallery-card {
  display: block;
  flex: 0 0 min(78vw, 280px);
  background: #fff;
  border: 1px solid rgba(26, 18, 40, 0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  color: inherit;
  scroll-snap-align: start;
}
.number-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(26, 18, 40, 0.12);
  border-color: rgba(212, 175, 55, 0.55);
}
.number-gallery-img {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #2A1848;
}
.number-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.number-gallery-card:hover .number-gallery-img img {
  transform: scale(1.06);
}
.number-gallery-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #F0D78C, #D4AF37);
  color: #1A0F08;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.number-gallery-body {
  padding: 1rem 1.15rem 1.2rem;
}
.number-gallery-body h3 {
  font-size: 1.35rem;
  color: #1A1228;
  margin-bottom: 0.25rem;
}
.number-gallery-body p {
  font-size: 0.88rem;
  color: #5A5468;
  margin-bottom: 0.65rem;
  font-weight: 400;
}
.number-gallery-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: #5B2E91;
  letter-spacing: 0.02em;
}
.number-gallery-card:hover .number-gallery-cta {
  color: #B8922A;
}

.hero-cosmos { pointer-events: none; }
.float-nums { pointer-events: none; }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-thumb {
  position: relative;
}
.service-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-thumb .thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 6, 20, 0.75) 100%);
  z-index: 1;
}
.service-thumb span {
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-visual-frame.has-photo {
  padding: 0;
  overflow: hidden;
  background:
    url('images/hero-cosmos.jpg') center / cover no-repeat,
    linear-gradient(160deg, #2A1848 0%, #160B28 60%, #0B0614 100%);
}
.hero-visual-frame.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual-frame.has-photo .frame-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(11, 6, 20, 0.92));
  z-index: 2;
  text-align: center;
}
.hero-visual-frame.has-photo .frame-caption .frame-num {
  font-size: 2.5rem;
  margin-bottom: 0.15rem;
}
.hero-panel h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
}
.hero-panel .hero-lead {
  font-size: 1.15rem;
  line-height: 1.75;
}

/* Article / number pages */
.article-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.article-hero-num {
  font-family: var(--font-head);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  opacity: 0.9;
}
.article-meta {
  margin-top: 1rem;
  color: var(--grey);
  font-size: 1.05rem;
}
.article-meta strong { color: var(--gold-light); }

.number-strip {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 18, 40, 0.1);
}
.number-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}
.number-strip-label {
  font-weight: 600;
  color: #1A1228;
  font-size: 1rem;
}
.number-strip-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.number-strip-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(91, 46, 145, 0.25);
  color: #5B2E91;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  transition: all var(--transition);
}
.number-strip-links a:hover,
.number-strip-links a.is-current {
  background: #5B2E91;
  border-color: #5B2E91;
  color: #F0D78C;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
.article-content {
  font-size: 1.12rem;
  line-height: 1.85;
  color: #3D3750;
}
.article-content h2 {
  font-size: 1.75rem;
  margin: 2rem 0 0.75rem;
  color: #1A1228;
}
.article-content p { margin-bottom: 1.15rem; }
.article-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.75rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(26, 18, 40, 0.12);
}
.article-cta-box {
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  padding: 1.75rem;
  margin: 2rem 0;
}
.article-cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1A1228;
}
.article-pager {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 18, 40, 0.1);
}
.article-pager a {
  font-weight: 600;
  color: #5B2E91;
  font-size: 1.05rem;
}
.article-pager a:hover { color: #B8922A; }

.article-aside { position: sticky; top: calc(var(--header-h) + 1rem); }
.aside-card {
  background: #fff;
  border: 1px solid rgba(26, 18, 40, 0.1);
  border-radius: 12px;
  padding: 1.35rem;
  margin-bottom: 1.25rem;
}
.aside-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  color: #1A1228;
}
.aside-card > a {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(26, 18, 40, 0.08);
  color: #5B2E91;
  font-weight: 500;
  font-size: 1rem;
}
.aside-card > a:hover { color: #B8922A; }
.aside-nums { display: flex; flex-direction: column; gap: 0.4rem; }
.num-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #F7F2EA;
  transition: background var(--transition);
}
.num-card:hover { background: rgba(212, 175, 55, 0.2); }
.num-card-n {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #5B2E91;
  color: #F0D78C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
}
.num-card-t { color: #1A1228; font-weight: 500; font-size: 0.95rem; }

.calculator-card {
  background: #F7F2EA;
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.calculator-card h2 { color: #5B2E91; }
.form-row label { color: #5B2E91; font-size: 0.95rem; }
.form-row input,
.form-row select {
  background: #fff;
  color: #1A1228;
  border-color: rgba(26, 18, 40, 0.15);
  font-size: 1rem;
  padding: 0.85rem 1rem;
}
.phone-input { background: #fff; border-color: rgba(26, 18, 40, 0.15); }
.phone-input select { background: #F0E8D8; color: #1A1228; }
.phone-input input { color: #1A1228; }
.result-label { color: #5A5468; font-size: 1.05rem; }
.result-meaning { color: #4A4458; font-size: 1.05rem; }
.result-meaning strong { color: #1A1228; }
.result-cta {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}
.result-cta p { color: #1A1228; font-size: 1.05rem; }
.system-toggle { background: #fff; border-color: rgba(26, 18, 40, 0.12); }
.system-toggle label { color: #5A5468; }

.dropdown a,
.mega-menu a {
  font-size: 0.95rem;
  padding: 0.55rem 1.25rem;
}

.btn {
  font-size: 0.88rem;
  padding: 0.85rem 1.6rem;
}
.btn-sm { font-size: 0.8rem; padding: 0.65rem 1.2rem; }
.btn-lg { font-size: 0.95rem; padding: 1rem 2rem; }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .article-hero-grid { grid-template-columns: 1fr; }
  .article-hero-num { display: none; }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ========== Immersive Full-Bleed Hero ========== */
.home-hero {
  position: relative;
  min-height: calc(100vh - var(--util-h) - var(--header-h));
  min-height: 85vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--midnight);
}

.hero-cosmos {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(107, 63, 160, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(140, 90, 200, 0.3) 0%, transparent 35%),
    linear-gradient(160deg, #0B0614 0%, #1A0F32 40%, #0F0820 100%);
  z-index: 0;
}

.hero-cosmos::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(240, 215, 140, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(243, 237, 227, 0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 30%, rgba(240, 215, 140, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 70%, rgba(243, 237, 227, 0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 85% 40%, rgba(240, 215, 140, 0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 80%, rgba(243, 237, 227, 0.35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 15%, rgba(240, 215, 140, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 85%, rgba(243, 237, 227, 0.45) 0%, transparent 100%);
  animation: twinkle 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes twinkle {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

.hero-cosmos::after {
  content: '1  3  5  7  9  2  4  6  8';
  position: absolute;
  font-family: var(--font-head);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 600;
  color: rgba(212, 175, 55, 0.04);
  letter-spacing: 0.2em;
  white-space: nowrap;
  top: 50%;
  left: 5%;
  transform: translateY(-50%) rotate(-8deg);
  pointer-events: none;
}

.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.2fr;
  width: 100%;
  min-height: inherit;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 2.5rem 3.5rem clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(105deg, rgba(11, 6, 20, 0.95) 0%, rgba(22, 12, 40, 0.88) 100%);
  border-right: 1px solid rgba(212, 175, 55, 0.12);
}

.hero-panel .brand-mark {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero-panel h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-panel h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}

.hero-panel .hero-lead {
  color: var(--grey);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.hero-visual-frame {
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 40%, rgba(107, 63, 160, 0.5) 0%, transparent 55%),
    linear-gradient(160deg, #2A1848 0%, #160B28 60%, #0B0614 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 80px rgba(212, 175, 55, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-visual-frame::before {
  content: '';
  position: absolute;
  width: 180%;
  height: 180%;
  background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.15), transparent 30%);
  animation: spinSlow 28s linear infinite;
  opacity: 0.6;
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.hero-visual-frame .frame-inner {
  position: relative;
  z-index: 1;
}

.hero-visual-frame .frame-num {
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.35);
  margin-bottom: 0.5rem;
}

.hero-visual-frame .frame-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}

.hero-visual-frame .frame-photo-hint {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(243, 237, 227, 0.35);
  font-style: italic;
  font-family: var(--font-head);
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
}
.hero-dots span.active {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ========== Number explorer ========== */
.number-explorer {
  padding: 4rem 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.explorer-intro {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
}

.number-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.number-item {
  text-align: center;
  transition: transform var(--transition);
}
.number-item:hover { transform: translateY(-4px); }

.number-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--violet), var(--purple-dark));
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.45rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.number-item a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.number-item a:hover { color: var(--gold-light); }

.explorer-heading {
  text-align: center;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--cream);
}

/* ========== Service Grid ========== */
.services-section { background: var(--bg); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(212, 175, 55, 0.4);
}

.service-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #3D2860 0%, #1A0F32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}
.service-thumb span {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.85;
}

.service-card-body { padding: 1.25rem 1.35rem 1.5rem; }
.service-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--cream);
}
.service-card-body p {
  font-size: 0.875rem;
  color: var(--grey);
  font-weight: 300;
}

/* ========== CTA Band ========== */
.cta-band {
  background: linear-gradient(120deg, #2A1848 0%, #1A0F32 50%, #160B28 100%);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.18) 0%, transparent 45%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.35rem;
}

/* ========== How Numerology Works ========== */
.how-section {
  background: var(--bg-elevated);
  text-align: center;
}
.how-section .how-text {
  max-width: 680px;
  margin: 0 auto;
  color: var(--grey);
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ========== Calculator Teaser ========== */
.calc-teaser {
  background:
    radial-gradient(ellipse at 90% 50%, rgba(107, 63, 160, 0.25) 0%, transparent 50%),
    var(--violet);
  position: relative;
  overflow: hidden;
}
.calc-teaser::before {
  content: '7';
  position: absolute;
  font-family: var(--font-head);
  font-size: 22rem;
  font-weight: 600;
  color: rgba(212, 175, 55, 0.04);
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
}

.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.teaser-links h2 { text-align: left; margin-bottom: 0.5rem; }
.teaser-links > p { color: var(--grey); margin-bottom: 1.5rem; font-weight: 300; }

.calc-link-list { display: flex; flex-direction: column; gap: 0.5rem; }

.calc-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.15rem;
  background: rgba(11, 6, 20, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--cream);
  transition: all var(--transition);
}
.calc-link:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
  transform: translateX(4px);
  color: var(--gold-light);
}
.calc-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}

.mock-result {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  margin-left: auto;
}
.mock-result .mock-label {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.mock-number {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 2px solid var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 600;
  color: var(--gold);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}
.mock-result .mock-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--cream);
}

/* ========== Remedies ========== */
.remedies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.remedy-card {
  display: block;
  text-align: center;
  padding: 0 0 1.5rem;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.remedy-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.remedy-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.15rem;
  background: #1F3A2E;
}
.remedy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.remedy-card:hover .remedy-media img { transform: scale(1.04); }

.remedy-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}
.remedy-card h3 { font-size: 1.3rem; margin: 0 1.25rem 0.5rem; }
.remedy-card p { font-size: 0.875rem; color: var(--grey); font-weight: 300; margin: 0 1.25rem; }

.mandala-accent {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 1.25rem;
  object-fit: contain;
  border-radius: 50%;
  opacity: 0.92;
  filter: drop-shadow(0 8px 18px rgba(31, 58, 46, 0.18));
}

.disclaimer-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey);
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
  opacity: 0.8;
}

.remedy-keyword-title {
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin: 2.5rem 0 0.5rem;
}
.problem-keyword-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.problem-keyword-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-keyword-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.problem-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8B5E3C;
  margin-bottom: 0.35rem;
}
.problem-keyword-card strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  color: #1F3A2E;
}
.problem-keyword-card p {
  font-size: 0.82rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.45;
  margin: 0;
}

.switch-intro {
  max-width: 760px;
  margin: 0 auto 1.75rem;
  text-align: center;
}
.switch-intro p {
  font-size: 0.95rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}
.switch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.switch-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
}
.switch-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  color: #1F3A2E;
}
.switch-card p {
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 300;
  margin: 0;
  line-height: 1.4;
}
.switch-plan-note {
  max-width: 720px;
  margin: 0 auto 1rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  text-align: center;
}
.switch-plan-note p {
  font-size: 0.88rem;
  color: var(--grey);
  font-weight: 300;
  margin: 0 0 0.55rem;
  line-height: 1.5;
}
.switch-plan-note p:last-of-type { margin-bottom: 0; }

/* ========== Process ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.process-num {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}
.process-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.process-card p { font-size: 0.9rem; color: var(--grey); font-weight: 300; }

/* ========== Pricing ========== */
.pricing-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(107, 63, 160, 0.2) 0%, transparent 50%),
    var(--bg-elevated);
}

.pricing-feature {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.pricing-feature h3 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}
.feature-list li {
  font-size: 0.9rem;
  color: var(--grey);
  padding-left: 1.4rem;
  position: relative;
  font-weight: 300;
}
.feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.2rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.pricing-cards-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  align-items: stretch;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1A0F08;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.price-amount {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.price-tagline,
.price-card > p {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
  font-weight: 300;
}
.price-bestfor {
  font-size: 0.78rem !important;
  color: var(--ink, #2A241C) !important;
  background: rgba(31, 58, 46, 0.06);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  margin-bottom: 1rem !important;
  text-align: left;
  line-height: 1.4;
}
.price-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8B5E3C;
  text-align: left;
  margin: 0.35rem 0 0.35rem;
}
.price-group-upgrade {
  color: #1F3A2E;
  margin-top: 0.85rem;
}
.price-features {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  text-align: left;
  flex: 1;
}
.price-features-compact {
  flex: 0;
  margin-bottom: 0.25rem;
}
.price-features-compact li {
  font-size: 0.78rem;
  opacity: 0.85;
}
.price-features li {
  font-size: 0.82rem;
  color: var(--grey);
  padding: 0.35rem 0 0.35rem 1.35rem;
  position: relative;
  font-weight: 300;
  border-bottom: 1px solid rgba(139, 94, 60, 0.12);
  line-height: 1.4;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 0.4rem;
  font-weight: 700;
}
.price-note {
  font-size: 0.75rem !important;
  font-style: italic;
  margin: 0.25rem 0 1rem !important;
  text-align: left;
  line-height: 1.45;
}
.price-card .btn {
  margin-top: auto;
  width: 100%;
}

.pricing-upgrade-info {
  margin-top: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-upgrade-info h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
.upgrade-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.upgrade-info-grid h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #1F3A2E;
}
.upgrade-info-grid p {
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}
.upgrade-info-foot {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 94, 60, 0.15);
  font-size: 0.82rem;
  color: var(--grey);
  text-align: center;
  font-weight: 300;
}

/* ========== About ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text h2 { text-align: left; margin-bottom: 1rem; }
.about-text p { color: var(--grey); margin-bottom: 1rem; font-weight: 300; }

.about-media {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-portrait {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 0 auto 1.25rem;
  border-radius: 16px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
}
.stat-box {
  background: linear-gradient(145deg, #2A1848, #160B28);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.35rem;
  color: var(--gold);
}
.stat-label { font-size: 0.8rem; color: var(--grey); letter-spacing: 0.06em; text-transform: uppercase; }

.expertise-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto 1.75rem;
  max-width: 920px;
}
.expertise-pills span,
.expertise-pills a.pill-link {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #FFF9F2;
  border: 1px solid rgba(139, 94, 60, 0.22);
  color: #1F3A2E;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}
.expertise-pills a.pill-link {
  background: #1F3A2E;
  color: #F4EDE1;
  border-color: #1F3A2E;
}
.expertise-pills a.pill-link:hover {
  background: #8B5E3C;
  border-color: #8B5E3C;
  color: #FFF9F2;
}

.related-expertise-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto 2rem;
}
.expertise-card {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: #FFF9F2;
  border: 1px solid rgba(139, 94, 60, 0.22);
  border-radius: 16px;
  padding: 1.5rem 1.25rem 1.35rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(31, 58, 46, 0.12);
}
.expertise-card .solution-orb {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.85rem;
}
.expertise-card .solution-orb span { font-size: 1.45rem; }
.expertise-card h4 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: #1F3A2E;
  margin: 0 0 0.4rem;
}
.expertise-card p {
  font-size: 0.95rem;
  color: #8B5E3C;
  margin: 0 0 0.65rem;
  line-height: 1.45;
}
.expertise-card-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1F3A2E;
}
@media (max-width: 700px) {
  .related-expertise-cards { grid-template-columns: 1fr; }
}

.certificate-frame {
  margin: 0 auto;
  max-width: 380px;
  background: #FFF9F2;
  border: 1px solid rgba(139, 94, 60, 0.22);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(31, 58, 46, 0.12);
}
.certificate-frame a { display: block; }
.certificate-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.certificate-frame figcaption {
  padding: 0.75rem 0.9rem 1rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #8B5E3C;
  text-align: center;
}
.certificate-frame figcaption a {
  display: inline;
  color: #1F3A2E;
  font-weight: 600;
  margin-left: 0.35rem;
}

/* ========== Testimonials ========== */
.testimonials-section { background: var(--bg-elevated); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-style: italic;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 500;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--gold-dark));
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--cream); }
.author-meta { font-size: 0.75rem; color: var(--grey); }

/* ========== Videos ========== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-thumb {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #2A1848, #0B0614);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}
.video-thumb:hover {
  transform: scale(1.02);
  border-color: rgba(212, 175, 55, 0.4);
}
.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35);
}
.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 14px solid #1A0F08;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}
.video-caption {
  margin-top: 0.75rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--cream);
  text-align: center;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(212, 175, 55, 0.4); }

.faq-item summary {
  padding: 1.1rem 1.35rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer {
  padding: 0 1.35rem 1.15rem;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ========== Visit / Map ========== */
.visit-section {
  background: #F4EDE1;
}
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: stretch;
  margin-top: 0.5rem;
}
.visit-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
}
.visit-details h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--forest);
  margin: 0;
}
.visit-address {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--brown);
  font-weight: 400;
}
.visit-map-link {
  align-self: flex-start;
  margin-top: 0.35rem;
}
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(139, 94, 60, 0.22);
  box-shadow: var(--shadow);
  min-height: 320px;
  background: #E8DFD0;
}
.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}
.footer-address {
  margin: 0.65rem 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(244, 237, 225, 0.75);
}

@media (max-width: 900px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .visit-map,
  .visit-map iframe { min-height: 280px; }
}

/* ========== Consult CTA ========== */
.consult-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(107, 63, 160, 0.35) 0%, transparent 40%),
    linear-gradient(145deg, #1A0F32 0%, #0B0614 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.consult-section .container { position: relative; z-index: 1; }
.consult-section h2 {
  color: var(--cream);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.consult-section > .container > p {
  color: var(--grey);
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-inline: auto;
  font-weight: 300;
}
.consult-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ========== Disclaimer Strip ========== */
.disclaimer-strip {
  background: #05030A;
  color: rgba(168, 155, 184, 0.75);
  padding: 0.9rem 0;
  text-align: center;
  font-size: 0.78rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* ========== Footer ========== */
.site-footer {
  background: #05030A;
  color: rgba(243, 237, 227, 0.75);
  padding-top: 3.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.15fr;
  gap: 1.75rem 1.5rem;
  padding-bottom: 2.5rem;
  align-items: start;
}

.footer-brand .footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
  display: block;
}
.footer-brand .logo-brand {
  white-space: nowrap;
}
.footer-brand .footer-tagline {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: var(--grey);
  font-weight: 300;
}
.footer-address {
  margin-bottom: 0.85rem !important;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.footer-social a:hover svg { fill: #1A0F08; }
.footer-social svg { width: 16px; height: 16px; fill: var(--gold-light); }

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--grey);
  padding: 0.3rem 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-promo {
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    rgba(26, 18, 48, 0.8);
  align-self: start;
}
.footer-promo h4 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.footer-promo p {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 1rem;
  font-weight: 300;
}
.footer-promo .btn { width: 100%; }

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 1.15rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  font-size: 0.8rem;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}
.footer-legal a:hover { color: var(--gold); }
.footer-regions { color: rgba(168, 155, 184, 0.55); font-size: 0.75rem; }
.footer-copy {
  white-space: nowrap;
}
.footer-copy { color: rgba(168, 155, 184, 0.65); }

/* ========== Calculator Pages ========== */
.page-hero {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(107, 63, 160, 0.3) 0%, transparent 50%),
    linear-gradient(160deg, #1A0F32 0%, #0B0614 100%);
  padding: 2.75rem 0 2.25rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: '1  4  7  2  5  8  3  6  9';
  position: absolute;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 600;
  color: rgba(212, 175, 55, 0.04);
  letter-spacing: 0.4em;
  bottom: 10%;
  right: -5%;
  white-space: nowrap;
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { opacity: 0.4; }

.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.page-hero .page-desc {
  color: var(--grey);
  max-width: 560px;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.calc-section {
  padding: 3rem 0 4rem;
  position: relative;
  min-height: 480px;
  background: var(--bg);
}

.calc-section.theme-life,
.calc-section.theme-name,
.calc-section.theme-mobile,
.calc-section.theme-house,
.calc-section.theme-compat {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 63, 160, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    var(--bg);
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.calc-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  position: relative;
}

.calc-visual-placeholder {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.25rem;
  color: rgba(243, 237, 227, 0.55);
  text-align: center;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #2A1848 0%, #0B0614 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.theme-mobile .calc-visual-placeholder {
  border-radius: 28px 28px 20px 20px;
  max-width: 220px;
  aspect-ratio: 9 / 16;
}
.theme-compat .calc-visual-placeholder {
  background: transparent;
  box-shadow: none;
  border: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 280px;
  aspect-ratio: auto;
}

.compat-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #3D2860, #160B28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 auto;
}
.compat-circle:nth-child(2) { margin-top: 1.5rem; }
.compat-circle:nth-child(3) {
  background: linear-gradient(135deg, var(--gold-dark), #6B4A10);
  color: #1A0F08;
  border-color: var(--gold);
}
.compat-circle:nth-child(4) { margin-top: 1.5rem; }

/* Calculator Card */
.calculator-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
}

.calculator-card.white-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.calculator-card h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.system-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.5rem;
  background: rgba(11, 6, 20, 0.5);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
  max-width: 320px;
  margin-inline: auto;
}
.system-toggle label {
  flex: 1;
  text-align: center;
  padding: 0.55rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--grey);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
}
.system-toggle input { display: none; }
.system-toggle label:has(input:checked) {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1A0F08;
}

.calc-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
  align-items: center;
}

.form-row label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--gold);
  text-align: right;
  letter-spacing: 0.02em;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  background: rgba(11, 6, 20, 0.6);
  color: var(--cream);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.form-row input::placeholder { color: rgba(168, 155, 184, 0.55); }
.form-row select option { background: #1A1230; color: var(--cream); }

.phone-input {
  display: flex;
  gap: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  background: rgba(11, 6, 20, 0.6);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.phone-input:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.phone-input select {
  border: none;
  border-radius: 0;
  background: rgba(212, 175, 55, 0.1);
  padding: 0.7rem 0.4rem 0.7rem 0.6rem;
  font-size: 0.85rem;
  color: var(--cream);
  max-width: 90px;
  flex-shrink: 0;
}
.phone-input select:focus { box-shadow: none; }
.phone-input input {
  border: none;
  border-radius: 0;
  flex: 1;
  min-width: 0;
  background: transparent;
}
.phone-input input:focus { box-shadow: none; }

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
}
.form-actions .btn { min-width: 140px; }

.form-error {
  color: var(--bad);
  font-size: 0.85rem;
  text-align: center;
  display: none;
}
.form-error.is-visible { display: block; }

.calc-result {
  display: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
  animation: fadeUp 0.4s ease;
}
.calc-result.is-visible { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-label {
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

.result-number-box {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  background: rgba(212, 175, 55, 0.08);
  border: 2px solid var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 3.75rem;
  font-weight: 600;
  color: var(--gold);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.result-pair {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.result-pair-item { text-align: center; }
.result-pair-item .pair-label {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.result-pair-item .result-number-box {
  width: 100px;
  height: 100px;
  font-size: 2.75rem;
  margin-bottom: 0;
}

.result-verdict {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.result-verdict.good { color: var(--good); }
.result-verdict.bad { color: var(--bad); }
.result-verdict.neutral { color: var(--grey); }

.result-meaning {
  max-width: 400px;
  margin: 0 auto 1.5rem;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.65;
  font-weight: 300;
}
.result-meaning strong {
  display: block;
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.result-cta {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.result-cta p {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 400;
}

.related-calcs {
  background: var(--bg-elevated);
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.related-card {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--line);
}
.related-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.related-card h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}
.related-card p {
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 300;
}

.float-nums {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.float-nums span {
  position: absolute;
  font-family: var(--font-head);
  font-weight: 600;
  color: rgba(31, 58, 46, 0.04);
  animation: floatNum 12s ease-in-out infinite;
}

@keyframes floatNum {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-promo { grid-column: 1 / -1; max-width: 420px; }
  .mega-menu.cols-3 { min-width: 480px; }
  .mega-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-layout { grid-template-columns: 1fr; }
  .calc-visual { display: none; }
  .calculator-card { max-width: 520px; margin: 0 auto; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-panel {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    padding: 3rem 1.5rem;
  }
  .hero-visual { min-height: 360px; padding: 2rem 1.5rem 3rem; }
}

@media (max-width: 1280px) {
  .logo {
    font-size: clamp(1.15rem, 1.4vw, 1.4rem);
    max-width: 10.5rem;
  }
  .nav-link {
    padding: 0.45rem 0.22rem;
    font-size: 0.68rem;
  }
  .header-ctas .btn {
    padding: 0.5rem 0.7rem;
    font-size: 0.65rem;
  }
}

@media (max-width: 1100px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }
  .header-inner {
    overflow: visible;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 2100;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--util-h) + var(--header-h));
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    height: calc(100dvh - var(--util-h) - var(--header-h));
    background: #F4EDE1;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0.75rem 1rem 2rem;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s ease;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
  }
  .main-nav.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-item { border-bottom: 1px solid rgba(139, 94, 60, 0.18); }

  .nav-link {
    padding: 0.95rem 0.5rem;
    font-size: 0.95rem;
    justify-content: space-between;
    color: #1F3A2E;
  }

  .dropdown,
  .mega-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0 !important;
    padding: 0.25rem 0 0.75rem 0.75rem;
    background: #E8DFD0;
  }
  .nav-item.is-open > .dropdown,
  .nav-item.is-open > .mega-menu { display: block; }

  .mega-menu a,
  .dropdown a {
    display: block;
    padding: 0.55rem 0.35rem;
    color: #1F3A2E;
    font-size: 0.9rem;
  }

  .mega-grid.cols-2,
  .mega-grid.cols-3 { grid-template-columns: 1fr; gap: 0.75rem; }

  .header-ctas .btn-outline { display: none; }
  .header-ctas .btn {
    display: inline-flex;
    padding: 0.5rem 0.7rem;
    font-size: 0.68rem;
  }
  .logo {
    font-size: clamp(1.1rem, 3.8vw, 1.35rem);
    min-width: 0;
    max-width: min(58vw, 12.5rem);
    padding-right: 0;
    margin-right: 0;
  }
  .logo-tag {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .hero-actions .btn {
    white-space: normal;
    text-align: center;
  }

  .service-grid,
  .remedies-grid,
  .problem-keyword-grid,
  .switch-grid,
  .process-grid,
  .testimonials-grid,
  .videos-grid { grid-template-columns: 1fr 1fr; }

  .teaser-grid { grid-template-columns: 1fr; }
  .mock-result { margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .pricing-cards,
  .pricing-cards-3 { grid-template-columns: 1fr; max-width: 400px; }
  .upgrade-info-grid { grid-template-columns: 1fr; }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .form-row label { text-align: left; }
}

@media (max-width: 600px) {
  :root { --header-h: 64px; }
  html { font-size: 17px; }

  .header-ctas { display: none; }
  .logo {
    max-width: calc(100vw - 4.5rem);
    font-size: 1.35rem;
  }

  .util-bar .container {
    gap: 0.5rem;
    overflow: hidden;
  }

  .service-grid,
  .remedies-grid,
  .problem-keyword-grid,
  .switch-grid,
  .process-grid,
  .testimonials-grid,
  .videos-grid,
  .related-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { align-items: center; }
  .footer-legal-links { justify-content: center; }
  .footer-copy { white-space: normal; }

  .consult-actions { flex-direction: column; align-items: center; }
  .consult-actions .btn { width: 100%; max-width: 280px; }

  .number-circle { width: 44px; height: 44px; font-size: 1.15rem; }
  .number-row { gap: 0.75rem; }

  .calculator-card { padding: 1.5rem 1.25rem; }
  .result-pair { gap: 1rem; }
  .result-pair-item .result-number-box { width: 80px; height: 80px; font-size: 2.25rem; }

  .home-hero { min-height: auto; }
  .hero-panel h1 { font-size: 2.1rem; }
  .hero-visual-frame { max-width: 280px; }

  .section,
  .number-explorer,
  .home-hero,
  .cta-band,
  .consult-section,
  .site-footer {
    overflow-x: hidden;
    max-width: 100%;
  }
}
