@font-face {
  font-family: "Sora";
  src: url("assets/fonts/sora-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --bg: #0f0f10;
  --bg2: #131314;
  --bg3: #1a1a1c;
  --panel: #151516;
  --panel2: #1b1b1d;
  --glass: rgba(10, 10, 11, 0.88);
  --glass2: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.075);
  --border-y: rgba(255, 191, 0, 0.22);
  --text: #e6e6e6;
  --muted: rgba(215, 215, 215, 0.56);
  --muted2: rgba(200, 200, 200, 0.34);
  --y: #ffbf00;
  --b: #0094ff;
  --success: #28c864;
  --danger: #ff6868;
  --ff: "Sora", system-ui, sans-serif;
  --fb: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

button, input, textarea, select {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--y);
  outline-offset: 3px;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(13, 13, 14, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-shell {
  height: 64px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo-full {
  width: 112px;
  height: auto;
}

.brand-logo-mark {
  display: none;
  width: 34px;
  height: 34px;
}

.brand-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.brand-sub {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a,
.mobile-menu a {
  text-decoration: none;
}

.nav-links a {
  border-radius: 8px;
  padding: 6px 13px;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--glass2);
}

.nav-cta,
.footer-contact {
  border: 0;
  border-radius: 10px;
  background: var(--y);
  color: #121213;
  cursor: pointer;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 750;
  padding: 8px 18px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 0 22px rgba(255, 191, 0, 0.2);
}

.nav-cta:hover,
.footer-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(255, 191, 0, 0.4);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel2);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars {
  display: grid;
  gap: 4px;
  width: 18px;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 190;
  padding: 0.75rem 1rem 1rem;
  background: #101011;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

body.nav-open .mobile-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.container,
.container-sm {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  width: min(100%, 780px);
}

.section {
  padding: 6rem 0;
}

.section-tint-y {
  background: rgba(255, 191, 0, 0.015);
}

.section-tint-b {
  background: rgba(0, 148, 255, 0.015);
}

.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(5rem, 10vh, 7rem) 0 clamp(4rem, 8vh, 5.5rem);
}

.hero-center {
  text-align: center;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--y);
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--y);
  box-shadow: 0 0 10px rgba(255, 191, 0, 0.7);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.65);
  }
}

.hero-title,
h1,
h2,
h3,
.btn,
.brand-sub,
.nav-links,
.step-num,
.panel-label,
.process-grid span,
.footer-grid h3 {
  font-family: var(--ff);
}

.hero-title {
  max-width: 880px;
  margin: 0 auto 1.4rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 830;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-title span,
.accent-y {
  color: var(--y);
}

.accent-b {
  color: var(--b);
}

.hero-copy {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  justify-content: center;
  margin-top: 2rem;
}

.inline-actions {
  margin-top: 2rem;
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 2rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.trust-row i,
.check-list i,
.who-list i {
  color: var(--y);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.btn-primary {
  background: var(--y);
  color: #121213;
  box-shadow: 0 0 24px rgba(255, 191, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 191, 0, 0.4);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: var(--glass2);
}

.btn-blue {
  border: 1px solid rgba(0, 148, 255, 0.25);
  background: rgba(0, 148, 255, 0.12);
  color: var(--b);
}

.btn-blue:hover {
  background: rgba(0, 148, 255, 0.22);
}

.btn-full {
  width: 100%;
}

.marquee-wrap {
  overflow: hidden;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 9px;
  color: var(--muted2);
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.marquee-item i {
  color: var(--y);
  font-size: 15px;
  opacity: 0.74;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-head {
  max-width: 720px;
}

.section-head.center {
  margin: 0 auto;
  text-align: center;
}

.pill {
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 1.4rem;
}

.pill-y {
  border: 1px solid rgba(255, 191, 0, 0.2);
  background: rgba(255, 191, 0, 0.08);
  color: var(--y);
}

.pill-b {
  border: 1px solid rgba(0, 148, 255, 0.2);
  background: rgba(0, 148, 255, 0.08);
  color: var(--b);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 770;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 720;
  line-height: 1.3;
}

p {
  margin: 0;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.lead + .lead {
  margin-top: 1rem;
}

.gline {
  height: 1px;
  margin: 0.6rem 0 2rem;
  background: rgba(255, 255, 255, 0.08);
}

.gline-b {
  background: linear-gradient(90deg, transparent, var(--b) 38%, var(--y) 62%, transparent);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.problem-block {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(255, 191, 0, 0.15);
  transition: border-color 0.2s ease;
}

.problem-block:hover {
  border-left-color: rgba(255, 191, 0, 0.5);
}

.problem-block > i {
  display: block;
  margin-bottom: 10px;
  color: var(--y);
  font-size: 22px;
  opacity: 0.75;
}

.problem-block p,
.step-item p,
.includes-grid p,
.benefits-grid p,
.process-grid p,
.not-for p,
.faq-a,
.footer-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.split-grid,
.includes-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.panel-card,
.cta-box {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--glass);
}

.panel-card::before,
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.quote-box {
  margin: 2rem 0 0;
  padding: 1.7rem 2rem;
  border-left: 3px solid var(--y);
}

.quote-box p {
  color: var(--text);
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.75;
}

.quote-box cite {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-panel {
  padding: 2rem;
  border-color: rgba(0, 148, 255, 0.18);
}

.panel-label {
  margin-bottom: 1.2rem;
  color: var(--b);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
}

.order-row span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: #aaa;
}

.order-row strong {
  flex: 1;
  min-width: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 560;
}

.order-row em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 720;
  white-space: nowrap;
}

.order-row.is-review {
  border-color: rgba(255, 191, 0, 0.2);
  background: rgba(255, 191, 0, 0.06);
}

.order-row.is-review span {
  background: var(--y);
}

.order-row.is-review em {
  color: var(--y);
}

.order-row.is-confirmed {
  border-color: rgba(0, 148, 255, 0.2);
  background: rgba(0, 148, 255, 0.06);
}

.order-row.is-confirmed span {
  background: var(--b);
}

.order-row.is-confirmed em {
  color: var(--b);
}

.order-row.is-done {
  border-color: rgba(40, 200, 100, 0.2);
  background: rgba(40, 200, 100, 0.06);
}

.order-row.is-done span,
.order-row.is-done em {
  color: var(--success);
}

.order-row.is-done span {
  background: var(--success);
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.panel-stats div {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  text-align: center;
}

.panel-stats strong {
  display: block;
  color: var(--y);
  font-family: var(--ff);
  font-size: 1.45rem;
  font-weight: 830;
}

.panel-stats div:last-child strong {
  color: var(--b);
}

.panel-stats span {
  color: var(--muted);
  font-size: 11px;
}

.steps-list {
  margin-top: 2.5rem;
}

.step-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
}

.step-item:last-child {
  border-bottom: 0;
}

.step-num {
  width: 52px;
  flex: 0 0 52px;
  font-size: 2rem;
  font-weight: 830;
  line-height: 1;
  opacity: 0.22;
  transition: opacity 0.2s ease;
}

.step-item:hover .step-num {
  opacity: 0.85;
}

.step-num.y {
  color: var(--y);
}

.step-num.b {
  color: var(--b);
}

.includes-intro {
  align-items: start;
  margin-bottom: 3.5rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 2rem;
}

.check-list span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
}

.includes-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--border);
}

.includes-grid article,
.benefits-grid article {
  background: var(--bg2);
  padding: 1.6rem;
  transition: background 0.2s ease;
}

.includes-grid article:hover,
.benefits-grid article:hover {
  background: var(--bg3);
}

.includes-grid i {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.includes-grid i.y {
  color: var(--y);
}

.includes-grid i.b {
  color: var(--b);
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.benefits-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--ff);
  font-size: 1.8rem;
  line-height: 1;
}

.who-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.who-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
}

.not-for {
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 1.6rem;
}

.not-for h3 {
  margin-bottom: 1rem;
  color: var(--muted2);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.not-for p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.not-for p i {
  color: var(--muted2);
  margin-top: 2px;
}

.note-box {
  display: block;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-left: 3px solid rgba(255, 191, 0, 0.3);
}

.note-box strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--y);
  font-family: var(--ff);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note-box span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 3rem;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--y), var(--b));
  opacity: 0.2;
}

.process-grid article {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  text-align: center;
}

.process-grid span {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 191, 0, 0.3);
  border-radius: 999px;
  background: var(--bg);
  color: var(--y);
  font-size: 18px;
  font-weight: 830;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.process-grid article:nth-child(even) span {
  border-color: rgba(0, 148, 255, 0.3);
  color: var(--b);
}

.process-grid article:hover span {
  border-color: currentColor;
  box-shadow: 0 0 20px color-mix(in srgb, currentColor 30%, transparent);
}

.faq-list {
  overflow: hidden;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.8rem;
  font-family: var(--ff);
  font-size: 14.5px;
  font-weight: 690;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease;
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.025);
}

.faq-q i {
  flex: 0 0 auto;
  color: var(--muted);
  transition: color 0.3s ease, transform 0.3s ease;
}

.faq-a {
  display: none;
  padding: 0 1.8rem 1.3rem;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-q {
  color: var(--y);
}

.faq-item.open .faq-q i {
  color: var(--y);
  transform: rotate(180deg);
}

.cta-box {
  border-color: rgba(255, 191, 0, 0.2);
  background: linear-gradient(135deg, rgba(255, 191, 0, 0.04), rgba(0, 148, 255, 0.025));
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  max-width: 620px;
  margin: 0 auto 1rem;
}

.cta-box > p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.eval-form {
  display: grid;
  gap: 14px;
  margin-top: 2rem;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.eval-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eval-form input,
.eval-form select,
.eval-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(10, 10, 11, 0.86);
  color: var(--text);
  padding: 12px 13px;
  font-family: var(--fb);
  font-size: 14px;
  letter-spacing: 0;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.eval-form input:focus,
.eval-form select:focus,
.eval-form textarea:focus {
  border-color: rgba(255, 191, 0, 0.42);
  background: rgba(15, 15, 16, 0.96);
  box-shadow: 0 0 0 4px rgba(255, 191, 0, 0.08);
}

.eval-form textarea {
  min-height: 132px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  min-height: 68px;
  padding-top: 4px;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.cta-microcopy {
  margin-top: 1rem !important;
  color: var(--muted2) !important;
  font-size: 12px !important;
  font-style: italic;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg2);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: 122px;
  height: auto;
  margin-bottom: 12px;
}

.footer-note {
  margin-top: 8px;
  color: rgba(200, 200, 200, 0.28) !important;
  max-width: 270px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: rgba(200, 200, 200, 0.34);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--text);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 18px;
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a:hover {
  border-color: var(--border-y);
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted2);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    flex-direction: column;
  }

  .split-grid,
  .includes-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .includes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .process-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .container,
  .container-sm {
    padding: 0 1.25rem;
  }

  .nav-shell {
    padding: 0 1rem;
  }

  .brand-logo-full {
    display: none;
  }

  .brand-logo-mark {
    display: block;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .hero-copy {
    font-size: 15.5px;
  }

  .problem-grid,
  .benefits-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .inline-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .order-row {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .order-row em {
    width: 100%;
    padding-left: 18px;
  }

  .faq-q {
    padding: 1.15rem 1.2rem;
  }

  .faq-a {
    padding: 0 1.2rem 1.15rem;
  }
}

@media (max-width: 560px) {
  .eyebrow {
    align-items: flex-start;
    text-align: left;
  }

  .trust-row {
    justify-content: flex-start;
  }

  .includes-grid,
  .footer-grid,
  .process-grid,
  .panel-stats {
    grid-template-columns: 1fr;
  }

  .step-item {
    gap: 1rem;
  }

  .step-num {
    width: 42px;
    flex-basis: 42px;
    font-size: 1.5rem;
  }

  .cta-box {
    padding: 2rem 1.25rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
