/* SmartPunch marketing — light login theme + Bharat-style IA */
:root {
  --primary: #4099ff;
  --primary-dark: #2a75c7;
  --primary-soft: #eff6ff;
  --primary-glow: rgba(64, 153, 255, 0.14);
  --text: #0f172a;
  --text-body: #475569;
  --muted: #64748b;
  --bg: #eef3f8;
  --card: #ffffff;
  --border: #e2e8f0;
  --input-border: #dbe7f3;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1200px;
  --nav-h: 4.5rem;
  --radius: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--text);
}

h1,
h2,
h3 {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

p {
  margin: 0 0 1rem;
}

.muted {
  color: var(--muted);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Background */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 8% 100%, rgba(64, 153, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(14, 116, 144, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(64, 153, 255, 0.06) 0%, transparent 60%),
    linear-gradient(165deg, #eef3f8 0%, #f7fafc 45%, #e8eef5 100%);
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 10%, transparent 75%);
}

.site-bg::after,
.site-bg-ring {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(64, 153, 255, 0.18);
  animation: ringDrift 16s ease-in-out infinite;
}

.site-bg::after {
  width: min(560px, 70vw);
  height: min(560px, 70vw);
  right: -12%;
  top: -18%;
}

.site-bg-ring {
  position: fixed;
  z-index: -1;
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  left: -8%;
  bottom: -14%;
  border-color: rgba(14, 116, 144, 0.12);
  animation-direction: reverse;
  animation-duration: 20s;
}

@keyframes ringDrift {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.7;
  }
  50% {
    transform: translate(-18px, 12px);
    opacity: 1;
  }
}

/* Header — 3 columns: brand | nav | CTAs */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 252, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1.25rem;
  min-height: var(--nav-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  grid-column: 1;
}

.brand:hover {
  color: var(--text);
}

.brand-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #505458;
}

.brand-name span {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  border: 1px solid var(--border);
  background: #fff;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--text);
}

.nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.15rem;
  min-width: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.55rem 0.8rem;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-drop.is-active > .nav-drop-btn {
  color: var(--primary-dark);
}

.nav-drop {
  position: relative;
}

.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.55rem 0.8rem;
  cursor: pointer;
  white-space: nowrap;
}

.nav-drop-btn svg {
  width: 12px;
  height: 12px;
  opacity: 0.65;
  transition: transform 0.2s ease;
}

.nav-drop.is-open > .nav-drop-btn svg {
  transform: rotate(180deg);
}

.nav-drop-menu {
  display: block;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 280px;
  padding: 0.55rem 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-drop.is-open > .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-drop-menu a {
  display: block;
  padding: 0.7rem 1.1rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.nav-drop-menu a small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-drop-menu a:hover,
.nav-drop-menu a[aria-current="page"] {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.nav-drop-menu .nav-drop-all {
  border-top: 1px solid var(--border);
  margin-top: 0.35rem;
  color: var(--primary-dark);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  grid-column: 3;
  justify-self: end;
}

.nav-actions--mobile {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 28px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e5aa3 100%);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border-color: #93c5fd;
  color: var(--primary-dark);
}

.btn-secondary:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: #1e5aa3;
}

.btn-ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: #93c5fd;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

/* Hero */
.hero {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.hero-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.hero-accent {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin: 0 0 1.25rem;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-brand-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.hero-brand-name {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero-brand-name span {
  color: var(--primary);
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 18em;
}

.hero .tagline {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.hero .lede {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  color: var(--text-body);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Page hero */
.page-hero {
  padding: clamp(2.75rem, 6vw, 4rem) 0 1.75rem;
}

.page-hero .eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.page-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.8vw, 2.5rem);
  max-width: 22em;
}

.page-hero .lede {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
}

.section-head p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
}

.section-panel {
  background: transparent;
  border-block: none;
  position: relative;
}
.section-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(238, 243, 248, 0.35));
  border-block: 1px solid rgba(226, 232, 240, 0.85);
  pointer-events: none;
  z-index: -1;
}

/* Feature / module grids — spaced cards (not hairline mega-boxes) */
.feature-grid,
.module-grid,
.serve-grid,
.resource-grid,
.pillar-grid,
.insight-grid,
.help-topics,
.impact-grid,
.plans,
.addons {
  display: grid;
  gap: 1.15rem;
  background: transparent;
  border: none;
}

.feature-grid,
.module-grid,
.serve-grid,
.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid--tight {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list-check--cols {
  margin-top: 0;
}

.feature,
.feature-card,
.module-tile,
.serve-card,
.resource-card,
.addon,
.plan,
.pillar-card,
.insight-card,
.help-topic,
.impact-card,
.playbook {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.45rem 1.4rem 1.5rem;
  background: var(--card);
  text-decoration: none;
  color: inherit;
  border-radius: 0;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.feature,
.feature-card,
.module-tile,
.serve-card,
.resource-card,
.addon {
  min-height: 10rem;
}

/* Real SVG icons in cards */
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  margin-bottom: 0.2rem;
  border-radius: 0;
  background: linear-gradient(145deg, rgba(64, 153, 255, 0.2), rgba(64, 153, 255, 0.05));
  border: 1px solid rgba(64, 153, 255, 0.28);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.55);
}
.card-icon img {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

/* Number chips optional — prefer icon when both present */
.feature-card:has(.card-icon) .num,
.module-tile:has(.card-icon) .module-tile-num,
.pillar-card:has(.card-icon) .pillar-num {
  display: none;
}

.feature:hover,
.feature-card:hover,
.module-tile:hover,
.serve-card:hover,
.resource-card:hover,
.addon:hover,
.plan:hover,
.pillar-card:hover,
.insight-card:hover,
.help-topic:hover,
.playbook:hover,
.impact-card:hover {
  background: #fff;
  border-color: rgba(64, 153, 255, 0.45);
  box-shadow: 0 14px 32px rgba(42, 117, 199, 0.1);
  transform: translateY(-2px);
  color: inherit;
}

a.feature-card,
a.module-tile,
a.serve-card,
a.resource-card,
a.help-topic {
  cursor: pointer;
}

.feature-card .num,
.module-tile-num,
.pillar-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.15rem;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary-dark);
  background: linear-gradient(145deg, rgba(64, 153, 255, 0.22), rgba(64, 153, 255, 0.06));
  border: 1px solid rgba(64, 153, 255, 0.28);
}

.pillar-num {
  margin-bottom: 0.35rem;
}

.feature h3,
.feature-card h3,
.module-tile h2,
.serve-card h3,
.resource-card h3,
.addon h3,
.plan h3,
.pillar-card h3,
.insight-card h3,
.help-topic h3,
.playbook h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--text);
}

.feature p,
.feature-card p,
.module-tile p,
.serve-card p,
.resource-card p,
.addon p,
.plan p,
.pillar-card p,
.help-topic p,
.playbook > p {
  margin: 0;
  flex: 1;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--muted);
}

.card-go {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: auto;
  padding-top: 0.35rem;
}

.card-bullets {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.card-bullets li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.card-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 0;
  background: var(--primary);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: stretch;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.split-copy h2,
.split-copy h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  max-width: 18em;
}

.split-copy > p {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.65;
}

.split-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, #f8fbff 0%, #eef5fc 100%);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  min-height: 280px;
  height: 100%;
  padding: clamp(1rem, 2.5vw, 1.75rem);
}

.split-visual img {
  width: 100%;
  height: auto;
  max-height: 360px;
  min-height: 0;
  object-fit: contain;
}

.list-check,
.check-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.35rem;
}

.list-check li,
.check-list li {
  position: relative;
  padding: 0.2rem 0 0.2rem 1.25rem;
  color: var(--text-body);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  line-height: 1.45;
  font-size: 0.95rem;
}

.list-check li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 0;
  background: var(--primary);
  box-shadow: none;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
  .list-check,
  .check-list {
    grid-template-columns: 1fr;
  }
  .split-visual {
    min-height: 220px;
  }
}

.split-cta {
  margin: 1.35rem 0 0;
}

.split-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 0;
}
.split-aside .muted {
  margin: 0;
  line-height: 1.7;
}

.playbook .list-check,
.help-layout .list-check,
.form-panel + .list-check,
.split-copy .list-check.list-check--stack {
  grid-template-columns: 1fr;
}

.value-list {
  max-width: none;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-ghost,
input,
textarea,
select {
  border-radius: 0 !important;
}

/* Plans */
.plans {
  grid-template-columns: repeat(5, 1fr);
}

.plan {
  min-height: 11rem;
  padding: 1.45rem 1.2rem;
}

.plan .credits {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.plan p {
  font-size: 0.88rem;
}

.plan.featured {
  background: linear-gradient(165deg, rgba(64, 153, 255, 0.14), #fff 55%);
  border-color: rgba(64, 153, 255, 0.4);
  box-shadow: 0 14px 32px rgba(42, 117, 199, 0.12);
}

.addons {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}

.addon {
  min-height: 8.5rem;
}

/* Forms */
.form-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  max-width: 34rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--input-border);
  border-radius: 0;
  font: inherit;
  background: #fff;
  color: var(--text);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
  border-color: transparent;
}

.form-note {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Quote modal */
body.quote-modal-open {
  overflow: hidden;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.quote-modal.is-open {
  display: flex;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 70, 0.5);
  border: 0;
  cursor: pointer;
}

.quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 32rem);
  max-height: calc(100vh - 2rem);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
  padding: 1.65rem 1.85rem 1.5rem;
  box-sizing: border-box;
}

.quote-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 0;
}

.quote-modal__close:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.quote-modal__title {
  margin: 0 2.25rem 0.3rem 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.quote-modal__lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 36ch;
}

.quote-modal .form-panel {
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

.quote-modal .form-row {
  margin-bottom: 0.65rem;
}

.quote-modal .form-row:last-of-type {
  margin-bottom: 0.75rem;
}

.quote-modal .form-row label {
  margin-bottom: 0.2rem;
  font-size: 0.8rem;
}

.quote-modal .form-row input,
.quote-modal .form-row textarea,
.quote-modal .form-row select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.7rem;
  font-size: 0.92rem;
}

.quote-modal .form-row textarea {
  min-height: 2.75rem;
  max-height: 2.75rem;
  height: 2.75rem;
  resize: none;
  overflow: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
}

.quote-modal .form-row textarea::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.quote-modal .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

.quote-modal .form-row-2 .form-row {
  margin-bottom: 0.65rem;
  min-width: 0;
}

.quote-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.15rem 0 0;
}

.quote-modal__actions .btn {
  width: 100%;
  justify-content: center;
}

.quote-modal .form-note {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
}

.quote-modal__success {
  display: none;
  padding: 0.35rem 0 0;
}

.quote-modal.is-success .quote-modal__lead,
.quote-modal.is-success .quote-modal__form-wrap {
  display: none;
}

.quote-modal.is-success .quote-modal__success {
  display: block;
}

.quote-modal__success h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.quote-modal__success p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 560px) {
  .quote-modal {
    padding: 0.75rem;
    align-items: flex-start;
    padding-top: max(0.75rem, env(safe-area-inset-top));
  }

  .quote-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 1.5rem);
    padding: 1.35rem 1.25rem 1.2rem;
    overflow: hidden;
  }

  .quote-modal .form-row-2 {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .quote-modal__lead {
    max-width: none;
  }
}

.prose {
  max-width: 44rem;
}

.prose h2 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.55rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: rgba(255, 255, 255, 0.75);
  border-top: 1px solid var(--border);
  padding: 2.75rem 0 1.75rem;
  margin-top: 1rem;
  width: 100%;
}

.site-footer > .wrap {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.footer-brand-icon {
  width: 36px;
  height: 36px;
}

.footer-brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #505458;
}

.footer-brand-name span {
  color: var(--primary);
}

.site-footer h4 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.site-footer a:hover {
  color: var(--primary-dark);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  font-size: 0.86rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem;
  align-items: center;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  font-weight: 700;
  color: var(--primary-dark);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .feature-grid,
  .module-grid,
  .serve-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans {
    grid-template-columns: repeat(2, 1fr);
  }

  .addons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header-bar {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions--desktop {
    display: none;
  }

  .nav {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.1rem;
    padding: 0.85rem 1.25rem 1.35rem;
    background: rgba(247, 250, 252, 0.98);
    border-bottom: 1px solid var(--border);
    z-index: 40;
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
    grid-column: 1 / -1;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-link,
  .nav-drop-btn {
    width: 100%;
    text-align: left;
    padding: 0.85rem 0.2rem;
  }

  .nav-drop-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    border: 0;
    box-shadow: none;
    padding: 0 0 0.4rem 0.75rem;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, max-height 0.3s ease, visibility 0.25s ease;
  }

  .nav-drop.is-open > .nav-drop-menu {
    opacity: 1;
    visibility: visible;
    max-height: 640px;
    pointer-events: auto;
    transform: none;
  }

  .nav-actions--mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
  }

  .nav-actions--mobile .btn {
    width: 100%;
  }

  .feature-grid,
  .module-grid,
  .serve-grid,
  .resource-grid,
  .plans,
  .addons,
  .footer-grid,
  .split {
    grid-template-columns: 1fr;
  }
}

.help-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .help-layout { grid-template-columns: 1fr; }
}

.trust-strip .section-head {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

/* FAQ as stacked cards */
.faq {
  display: grid;
  gap: 0.75rem;
  border: none;
}
.faq details {
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 1rem 1.2rem;
  background: var(--card);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq details p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  max-width: 44rem;
  line-height: 1.65;
}

/* CTA band as soft panel */
.cta-band {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  text-align: center;
}
.cta-band .wrap,
.cta-band .cta-inner {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(165deg, rgba(64, 153, 255, 0.12), #fff 50%);
  border: 1px solid rgba(64, 153, 255, 0.28);
  border-radius: 0;
  box-shadow: 0 14px 36px rgba(42, 117, 199, 0.08);
}
.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}
.cta-band p {
  margin: 0 auto 1.35rem;
  max-width: 34rem;
  color: var(--muted);
}
.cta-band .hero-actions,
.cta-band .cta-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Resource Center extras */
.insight-grid {
  grid-template-columns: repeat(2, 1fr);
}
.insight-meta {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}
.insight-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.35rem;
}
.playbook-list {
  display: grid;
  gap: 1.15rem;
}
.playbook .list-check {
  margin-top: 0.35rem;
}
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.city-chip {
  padding: 0.6rem 1.05rem;
  border-radius: 0;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.help-topics {
  grid-template-columns: repeat(3, 1fr);
}
.help-topic {
  min-height: 7.5rem;
}
.contact-cards {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.contact-cards .serve-card {
  min-height: 0;
}

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: none;
}
.value-list li {
  padding: 1.2rem 1.3rem;
  border-radius: 0;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  line-height: 1.65;
  color: var(--muted);
}
.value-list li strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.pillar-grid {
  grid-template-columns: repeat(3, 1fr);
}
.impact-grid {
  grid-template-columns: repeat(4, 1fr);
}
.impact-card {
  background: linear-gradient(165deg, rgba(64, 153, 255, 0.1), #fff 55%);
  min-height: 0;
}
.impact-card strong {
  font-size: 1.05rem;
  color: var(--text);
}
.impact-card span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .insight-grid,
  .help-topics,
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .insight-grid,
  .help-topics,
  .pillar-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Square language + sitewide motion —— */
.site-header,
.form-panel,
.form-row input,
.form-row textarea,
.form-row select,
.faq details,
.cta-band .wrap,
.cta-band .cta-inner,
.city-chip,
.value-list li,
.split-copy,
.split-visual,
.list-check li,
.check-list li {
  border-radius: 0 !important;
}

.site-header {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.hero-accent {
  transform-origin: left center;
  animation: accentGrow 0.9s ease 0.15s both;
}

.brand-icon,
.hero-brand-icon {
  animation: iconIn 0.7s ease both;
}

.nav-drop-menu a {
  transition: background 0.18s ease, padding-left 0.18s ease;
}
.nav-drop-menu a:hover {
  padding-left: 1.35rem;
}

.card-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.feature-card:hover .card-icon,
.module-tile:hover .card-icon,
.serve-card:hover .card-icon,
.resource-card:hover .card-icon,
.addon:hover .card-icon,
.plan:hover .card-icon,
.help-topic:hover .card-icon,
.pillar-card:hover .card-icon,
.insight-card:hover .card-icon,
.playbook:hover .card-icon,
.impact-card:hover .card-icon {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 18px rgba(64, 153, 255, 0.22);
}

.btn-primary {
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(64, 153, 255, 0.35);
}

.faq details {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.faq details[open] {
  border-color: rgba(64, 153, 255, 0.4);
  box-shadow: 0 10px 28px rgba(42, 117, 199, 0.08);
}
.faq details p {
  animation: fadeUp 0.35s ease both;
}

.cta-band .wrap,
.cta-band .cta-inner {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.cta-band .wrap:hover,
.cta-band .cta-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(42, 117, 199, 0.12);
}

.site-footer a {
  transition: color 0.2s ease, transform 0.2s ease;
}
.site-footer a:hover {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-inner > *,
  .page-hero .wrap > * {
    opacity: 0;
    animation: fadeUp 0.7s ease both;
  }
  .hero-inner > *:nth-child(1),
  .page-hero .wrap > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-inner > *:nth-child(2),
  .page-hero .wrap > *:nth-child(2) { animation-delay: 0.12s; }
  .hero-inner > *:nth-child(3),
  .page-hero .wrap > *:nth-child(3) { animation-delay: 0.2s; }
  .hero-inner > *:nth-child(4),
  .page-hero .wrap > *:nth-child(4) { animation-delay: 0.28s; }
  .hero-inner > *:nth-child(5),
  .page-hero .wrap > *:nth-child(5) { animation-delay: 0.36s; }
  .hero-inner > *:nth-child(6),
  .page-hero .wrap > *:nth-child(6) { animation-delay: 0.44s; }

  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }

  /* Stagger children inside grids */
  .reveal.is-in.feature-grid > *,
  .reveal.is-in.module-grid > *,
  .reveal.is-in.serve-grid > *,
  .reveal.is-in.resource-grid > *,
  .reveal.is-in.pillar-grid > *,
  .reveal.is-in.insight-grid > *,
  .reveal.is-in.help-topics > *,
  .reveal.is-in.plans > *,
  .reveal.is-in.addons > *,
  .reveal.is-in.impact-grid > *,
  .reveal.is-in.playbook-list > * {
    opacity: 0;
    animation: fadeUp 0.55s ease both;
  }
  .reveal.is-in.feature-grid > *:nth-child(1),
  .reveal.is-in.module-grid > *:nth-child(1),
  .reveal.is-in.serve-grid > *:nth-child(1),
  .reveal.is-in.resource-grid > *:nth-child(1),
  .reveal.is-in.pillar-grid > *:nth-child(1),
  .reveal.is-in.insight-grid > *:nth-child(1),
  .reveal.is-in.help-topics > *:nth-child(1),
  .reveal.is-in.plans > *:nth-child(1),
  .reveal.is-in.addons > *:nth-child(1),
  .reveal.is-in.impact-grid > *:nth-child(1),
  .reveal.is-in.playbook-list > *:nth-child(1) { animation-delay: 0.04s; }
  .reveal.is-in.feature-grid > *:nth-child(2),
  .reveal.is-in.module-grid > *:nth-child(2),
  .reveal.is-in.serve-grid > *:nth-child(2),
  .reveal.is-in.resource-grid > *:nth-child(2),
  .reveal.is-in.pillar-grid > *:nth-child(2),
  .reveal.is-in.insight-grid > *:nth-child(2),
  .reveal.is-in.help-topics > *:nth-child(2),
  .reveal.is-in.plans > *:nth-child(2),
  .reveal.is-in.addons > *:nth-child(2),
  .reveal.is-in.impact-grid > *:nth-child(2),
  .reveal.is-in.playbook-list > *:nth-child(2) { animation-delay: 0.1s; }
  .reveal.is-in.feature-grid > *:nth-child(3),
  .reveal.is-in.module-grid > *:nth-child(3),
  .reveal.is-in.serve-grid > *:nth-child(3),
  .reveal.is-in.resource-grid > *:nth-child(3),
  .reveal.is-in.pillar-grid > *:nth-child(3),
  .reveal.is-in.insight-grid > *:nth-child(3),
  .reveal.is-in.help-topics > *:nth-child(3),
  .reveal.is-in.plans > *:nth-child(3),
  .reveal.is-in.addons > *:nth-child(3),
  .reveal.is-in.impact-grid > *:nth-child(3),
  .reveal.is-in.playbook-list > *:nth-child(3) { animation-delay: 0.16s; }
  .reveal.is-in.feature-grid > *:nth-child(4),
  .reveal.is-in.module-grid > *:nth-child(4),
  .reveal.is-in.serve-grid > *:nth-child(4),
  .reveal.is-in.resource-grid > *:nth-child(4),
  .reveal.is-in.help-topics > *:nth-child(4),
  .reveal.is-in.plans > *:nth-child(4),
  .reveal.is-in.addons > *:nth-child(4),
  .reveal.is-in.insight-grid > *:nth-child(4),
  .reveal.is-in.impact-grid > *:nth-child(4),
  .reveal.is-in.playbook-list > *:nth-child(4) { animation-delay: 0.22s; }
  .reveal.is-in.feature-grid > *:nth-child(5),
  .reveal.is-in.module-grid > *:nth-child(5),
  .reveal.is-in.serve-grid > *:nth-child(5),
  .reveal.is-in.resource-grid > *:nth-child(5),
  .reveal.is-in.help-topics > *:nth-child(5),
  .reveal.is-in.plans > *:nth-child(5),
  .reveal.is-in.insight-grid > *:nth-child(5),
  .reveal.is-in.playbook-list > *:nth-child(5) { animation-delay: 0.28s; }
  .reveal.is-in.feature-grid > *:nth-child(6),
  .reveal.is-in.module-grid > *:nth-child(6),
  .reveal.is-in.serve-grid > *:nth-child(6),
  .reveal.is-in.resource-grid > *:nth-child(6),
  .reveal.is-in.help-topics > *:nth-child(6),
  .reveal.is-in.insight-grid > *:nth-child(6),
  .reveal.is-in.playbook-list > *:nth-child(6) { animation-delay: 0.34s; }
  .reveal.is-in.help-topics > *:nth-child(7) { animation-delay: 0.4s; }
  .reveal.is-in.help-topics > *:nth-child(8) { animation-delay: 0.46s; }
  .reveal.is-in.help-topics > *:nth-child(9) { animation-delay: 0.52s; }
  .reveal.is-in.serve-grid > *:nth-child(n + 7),
  .reveal.is-in.feature-grid > *:nth-child(n + 7) { animation-delay: 0.4s; }

  .card-icon img {
    animation: iconSoft 3.2s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner > *,
  .page-hero .wrap > *,
  .reveal,
  .card-icon img,
  .hero-accent {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Coming soon — single full-viewport composition */
.coming-soon-body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.coming-soon-glow {
  position: fixed;
  inset: auto auto -20% -10%;
  width: min(70vw, 42rem);
  height: min(70vw, 42rem);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, rgba(64, 153, 255, 0.22) 0%, transparent 68%);
  animation: comingSoonDrift 14s ease-in-out infinite alternate;
}

.coming-soon {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.coming-soon-inner {
  width: min(100%, 40rem);
  text-align: center;
}

.coming-soon-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s ease both;
}

.coming-soon-logo {
  width: 4.5rem;
  height: 4.5rem;
  animation: comingSoonPulse 3.2s ease-in-out infinite;
}

.coming-soon-name {
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.coming-soon-name span {
  color: var(--primary);
}

.coming-soon-status {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-dark);
  animation: fadeUp 0.7s ease 0.12s both;
}

.coming-soon h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text);
  animation: fadeUp 0.7s ease 0.22s both;
}

.coming-soon-lede {
  margin: 0 auto 1.75rem;
  max-width: 32rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-body);
  animation: fadeUp 0.7s ease 0.32s both;
}

.coming-soon-meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  animation: fadeUp 0.7s ease 0.42s both;
}

.coming-soon-meta a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
}

.coming-soon-meta a:hover {
  color: var(--text);
  text-decoration: underline;
}

@keyframes comingSoonPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.03);
  }
}

@keyframes comingSoonDrift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(12%, -8%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-brand,
  .coming-soon-status,
  .coming-soon h1,
  .coming-soon-lede,
  .coming-soon-meta,
  .coming-soon-logo,
  .coming-soon-glow {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes accentGrow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes iconIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes iconSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
