:root {
  --color-bg: #F6FFF8;
  --color-surface: #ffffff;
  --color-mint: #DFFFE2;
  --color-breeze: #9AD1D4;
  --color-sky: #59A5D8;
  --color-deep: #386FA4;
  --color-text: #1a2f45;
  --color-text-muted: #4a6278;
  --color-border: rgba(56, 111, 164, 0.14);
  --font-sans: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --fs-sm: clamp(0.875rem, 0.82rem + 0.25vw, 0.9375rem);
  --fs-base: clamp(1rem, 0.95rem + 0.35vw, 1.0625rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --fs-xl: clamp(1.375rem, 1.15rem + 0.9vw, 1.75rem);
  --fs-2xl: clamp(1.75rem, 1.35rem + 1.4vw, 2.25rem);
  --fs-hero: clamp(2.25rem, 1.5rem + 3vw, 3.35rem);
  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-body: 1.65;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(56, 111, 164, 0.06);
  --shadow-md: 0 8px 24px rgba(56, 111, 164, 0.1);
  --shadow-lg: 0 20px 50px rgba(56, 111, 164, 0.14);
  --shadow-glow: 0 0 0 1px rgba(154, 209, 212, 0.35), 0 12px 40px rgba(89, 165, 216, 0.18);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-deep);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--color-sky);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--color-text);
  margin: 0 0 var(--space-4);
}

h1 {
  font-size: var(--fs-hero);
}

h2 {
  font-size: var(--fs-2xl);
}

h3 {
  font-size: var(--fs-xl);
}

p {
  margin: 0 0 var(--space-4);
  color: var(--color-text-muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.skip {
  position: absolute;
  left: -9999px;
  top: var(--space-4);
  z-index: 1000;
  padding: var(--space-3) var(--space-6);
  background: var(--color-deep);
  color: var(--color-surface);
  border-radius: var(--radius-sm);
}

.skip:focus {
  left: var(--space-4);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 255, 248, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--color-text);
}

.brand:hover {
  color: var(--color-deep);
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-sky), var(--color-deep));
  box-shadow: var(--shadow-sm);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-2);
}

.nav-desktop a {
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
  transition: background var(--transition), color var(--transition);
}

.nav-desktop a:hover {
  background: var(--color-mint);
  color: var(--color-deep);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background: var(--color-mint);
  color: var(--color-deep);
  font-size: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6) var(--space-6);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  padding: var(--space-4);
  font-weight: 500;
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: background var(--transition);
}

.nav-mobile a:hover {
  background: var(--color-mint);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-sky), var(--color-deep));
  color: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-surface);
}

.btn-ghost {
  background: var(--color-surface);
  color: var(--color-deep);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  background: var(--color-mint);
  color: var(--color-deep);
  transform: translateY(-1px);
}

.btn-sm {
  padding: var(--space-3) var(--space-5);
  font-size: var(--fs-xs);
}

.section {
  padding: var(--space-16) var(--space-6);
}

.section-alt {
  background: linear-gradient(180deg, var(--color-mint) 0%, rgba(223, 255, 226, 0.35) 100%);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-head {
  max-width: 40rem;
  margin-bottom: var(--space-10);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-sky);
  margin-bottom: var(--space-3);
}

.hero {
  padding: var(--space-12) var(--space-6) var(--space-20);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(154, 209, 212, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-copy h1 {
  margin-bottom: var(--space-5);
}

.hero-copy p {
  font-size: var(--fs-lg);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  background: var(--color-surface);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.split {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split.reverse .split-visual {
    order: -1;
  }
}

.soft-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.soft-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature-item:hover {
  border-color: rgba(89, 165, 216, 0.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-item h3 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.feature-item i {
  font-size: 1.75rem;
  color: var(--color-sky);
  flex-shrink: 0;
}

.service-list {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-block {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--color-surface), rgba(223, 255, 226, 0.55));
  border: 1px solid var(--color-border);
}

.service-block h3 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.service-block h3 i {
  color: var(--color-deep);
}

.benefit-row {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .benefit-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-pill {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-pill:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.benefit-pill i {
  font-size: 2rem;
  color: var(--color-breeze);
  margin-bottom: var(--space-4);
}

.steps {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: var(--color-mint);
  color: var(--color-deep);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.testimonial-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-card {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.quote-card:hover {
  box-shadow: var(--shadow-md);
}

.quote-card cite {
  display: block;
  margin-top: var(--space-5);
  font-style: normal;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--color-text);
}

.faq-list details {
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-list details:hover {
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  cursor: pointer;
  padding: var(--space-5) var(--space-6);
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--color-text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  color: var(--color-sky);
  transition: transform var(--transition);
}

.faq-list details[open] summary i {
  transform: rotate(180deg);
}

.faq-list .faq-body {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.contact-wrap {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 900px) {
  .contact-wrap {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.contact-inner {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: var(--fs-base);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-sky);
  box-shadow: 0 0 0 3px rgba(89, 165, 216, 0.2);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-group .error-msg {
  display: none;
  margin-top: var(--space-2);
  font-size: var(--fs-xs);
  color: #c0392b;
}

.form-group.is-invalid input,
.form-group.is-invalid textarea {
  border-color: #c0392b;
}

.form-group.is-invalid .error-msg {
  display: block;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.checkbox-row input {
  margin-top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-deep);
}

.checkbox-row label {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.checkbox-row.is-invalid label {
  color: #c0392b;
}

.checkbox-row .error-msg {
  display: none;
  width: 100%;
  margin-left: 0;
  margin-top: var(--space-2);
}

.checkbox-row.is-invalid .error-msg {
  display: block;
}

.disclaimer-box {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: rgba(56, 111, 164, 0.06);
  border: 1px solid var(--color-border);
}

.disclaimer-box p {
  margin: 0;
  font-size: var(--fs-sm);
}

.site-footer {
  background: linear-gradient(180deg, var(--color-deep) 0%, #2d5680 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: var(--space-16) var(--space-6) var(--space-10);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer a:hover {
  color: var(--color-mint);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  margin-bottom: var(--space-4);
  color: var(--color-surface);
}

.footer-col h3 {
  color: var(--color-surface);
  font-size: var(--fs-base);
  margin-bottom: var(--space-4);
}

.footer-col ul li {
  margin-bottom: var(--space-3);
}

.footer-col ul a {
  font-size: var(--fs-sm);
}

.footer-meta {
  max-width: var(--max-width);
  margin: var(--space-12) auto 0;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
}

.cookie-banner {
  position: fixed;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 200;
  max-width: 32rem;
  margin: 0 auto;
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-5);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 47, 69, 0.45);
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}

.cookie-overlay.is-open {
  display: flex;
}

.cookie-modal {
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.cookie-modal h2 {
  margin-bottom: var(--space-4);
}

.cookie-modal p {
  font-size: var(--fs-sm);
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-toggle-row span {
  font-weight: 600;
  font-size: var(--fs-sm);
}

.cookie-toggle-row small {
  display: block;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.switch {
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  transition: background var(--transition);
}

.slider::before {
  content: "";
  position: absolute;
  width: 1.15rem;
  height: 1.15rem;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-surface);
  border-radius: var(--radius-full);
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.switch input:checked + .slider {
  background: var(--color-sky);
}

.switch input:checked + .slider::before {
  transform: translate(1.15rem, -50%);
}

.switch input:disabled + .slider {
  background: var(--color-mint);
  opacity: 0.8;
}

.switch input:disabled + .slider::before {
  transform: translate(1.15rem, -50%);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.page-hero {
  padding: var(--space-12) var(--space-6) var(--space-8);
  background: linear-gradient(135deg, var(--color-mint), rgba(154, 209, 212, 0.4));
  border-bottom: 1px solid var(--color-border);
}

.page-hero-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: var(--space-4);
}

.legal-content {
  padding: var(--space-10) var(--space-6) var(--space-20);
}

.legal-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-inner h2 {
  margin-top: var(--space-10);
  font-size: var(--fs-xl);
}

.legal-inner h3 {
  margin-top: var(--space-8);
  font-size: var(--fs-lg);
}

.legal-inner ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

.legal-inner li {
  margin-bottom: var(--space-2);
}

.thank-panel {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16) var(--space-6);
}

.thank-card {
  max-width: 32rem;
  text-align: center;
  padding: var(--space-12);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.thank-card i {
  font-size: 3rem;
  color: var(--color-sky);
  margin-bottom: var(--space-6);
}

.split-spaced {
  margin-top: var(--space-12);
}

.how-visual {
  max-width: 760px;
  margin: 0 auto var(--space-10);
}

.faq-narrow {
  max-width: 42rem;
}

.contact-list {
  margin-top: var(--space-6);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.contact-list li {
  margin-bottom: var(--space-3);
}

.btn-block {
  width: 100%;
}

.disclaimer-heading {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-3);
}

.footer-lede {
  font-size: var(--fs-sm);
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.82);
}

.page-home .hero-gradient {
  background: linear-gradient(165deg, var(--color-bg) 0%, rgba(154, 209, 212, 0.22) 45%, var(--color-mint) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 14s ease-in-out infinite alternate;
}

.page-home .hero::before {
  animation: hero-radial-pulse 12s ease-in-out infinite alternate;
  transform-origin: 50% 20%;
}

@keyframes hero-radial-pulse {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero-shine-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 36%,
    rgba(255, 255, 255, 0.14) 48%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.12) 52%,
    transparent 64%
  );
  background-size: 180% 100%;
  animation: hero-shine-sweep 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes hero-shine-sweep {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -20% 0;
  }
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-spark {
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: var(--radius-full);
  background: var(--color-sky);
  opacity: 0.45;
  box-shadow: 0 0 12px rgba(89, 165, 216, 0.55);
  animation: hero-spark-drift 14s ease-in-out infinite;
}

.hero-spark-1 {
  left: 12%;
  bottom: 18%;
}

.hero-spark-2 {
  left: 42%;
  top: 22%;
  animation-delay: -4s;
  background: var(--color-breeze);
}

.hero-spark-3 {
  right: 18%;
  bottom: 28%;
  animation-delay: -7s;
}

@keyframes hero-spark-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.35;
  }
  40% {
    transform: translate(22px, -28px) scale(1.35);
    opacity: 0.85;
  }
  70% {
    transform: translate(-10px, 12px) scale(0.9);
    opacity: 0.45;
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.25;
  animation: hero-orb-bob 18s ease-in-out infinite;
}

.hero-orb-1 {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-mint);
  right: 22%;
  top: 35%;
  animation-delay: -2s;
}

.hero-orb-2 {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--color-breeze);
  left: 20%;
  top: 48%;
  animation-delay: -9s;
}

@keyframes hero-orb-bob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-16px) scale(1.05);
  }
}

.hero-title-block {
  line-height: var(--lh-tight);
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero-title-accent {
    background-image: linear-gradient(
      110deg,
      var(--color-deep) 0%,
      var(--color-sky) 35%,
      var(--color-breeze) 55%,
      var(--color-deep) 85%,
      var(--color-sky) 100%
    );
    background-size: 240% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: hero-title-shimmer 9s ease-in-out infinite;
  }
}

@keyframes hero-title-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.hero-title-rule {
  display: block;
  height: 0.28rem;
  width: min(11rem, 88vw);
  max-width: 11rem;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--color-sky), var(--color-breeze), var(--color-mint));
  margin: 0 0 var(--space-5);
  opacity: 0.95;
}

html.js .page-home .hero-copy:not(.is-visible) .hero-title-rule {
  width: 0;
}

html.js .page-home .hero-copy.is-visible .hero-title-rule {
  animation: hero-rule-grow 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

@keyframes hero-rule-grow {
  from {
    width: 0;
  }
  to {
    width: min(11rem, 88vw);
  }
}

html.js .page-home .hero-copy.is-visible .hero-lead {
  animation: hero-lead-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

@keyframes hero-lead-in {
  from {
    opacity: 0;
    transform: translateY(0.65rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow-pulse {
  animation: eyebrow-soft 4s ease-in-out infinite;
}

@keyframes eyebrow-soft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(89, 165, 216, 0);
  }
  50% {
    box-shadow: 0 0 22px 3px rgba(89, 165, 216, 0.18);
  }
}

.page-home .hero-btn-primary {
  position: relative;
  overflow: hidden;
}

.page-home .hero-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 45%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.2) 55%,
    transparent 100%
  );
  transform: translateX(-130%);
  animation: hero-btn-sheen 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-btn-sheen {
  0%,
  55% {
    transform: translateX(-130%);
  }
  70% {
    transform: translateX(130%);
  }
  100% {
    transform: translateX(130%);
  }
}

.page-home .hero-btn-primary .hero-btn-icon {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-home .hero-btn-primary:hover .hero-btn-icon {
  transform: translateX(5px);
}

.page-home .hero-btn-ghost {
  animation: hero-ghost-border 10s ease-in-out infinite;
}

@keyframes hero-ghost-border {
  0%,
  100% {
    border-color: var(--color-border);
  }
  50% {
    border-color: rgba(89, 165, 216, 0.55);
  }
}

.page-home .hero-visual.hero-card {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.page-home .hero-card-aura {
  position: absolute;
  inset: -14%;
  z-index: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(89, 165, 216, 0.45) 0%,
    rgba(154, 209, 212, 0.2) 40%,
    transparent 72%
  );
  animation: hero-aura-pulse 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-aura-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

.page-home .hero-visual .hero-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
}

html.js .page-home .hero-visual.is-visible {
  animation: hero-card-float 8s ease-in-out infinite;
}

@keyframes hero-card-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

html.js .page-home .hero-visual.is-visible:hover {
  animation-play-state: paused;
  transform: translateY(-7px) rotate(-0.45deg);
}

html.js .page-home .hero-visual.is-visible .hero-frame img {
  animation: hero-img-breathe 11s ease-in-out infinite;
}

@keyframes hero-img-breathe {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.025) translateY(-3px);
  }
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  animation: blob-float 18s ease-in-out infinite;
}

.blob-a {
  width: min(380px, 90vw);
  height: min(380px, 90vw);
  background: radial-gradient(circle, var(--color-breeze), transparent 70%);
  top: -10%;
  right: -15%;
  animation-delay: 0s;
}

.blob-b {
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  background: radial-gradient(circle, var(--color-sky), transparent 72%);
  bottom: 5%;
  left: -8%;
  animation-delay: -6s;
}

.blob-c {
  width: min(200px, 50vw);
  height: min(200px, 50vw);
  background: radial-gradient(circle, var(--color-mint), transparent 75%);
  top: 40%;
  left: 35%;
  animation-delay: -10s;
  opacity: 0.4;
}

@keyframes blob-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(2%, -3%) scale(1.05);
  }
  66% {
    transform: translate(-3%, 2%) scale(0.98);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 40%;
  }
  100% {
    background-position: 100% 60%;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes check-pop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .page-home .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
}

html.js .page-home .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1.is-visible {
  transition-delay: 0.08s;
}

.reveal-delay-2.is-visible {
  transition-delay: 0.14s;
}

.reveal-delay-3.is-visible {
  transition-delay: 0.2s;
}

.eyebrow-animate {
  animation: reveal-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-frame {
  position: relative;
  border-radius: inherit;
  overflow: hidden;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.hero-visual {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow var(--transition);
}

html.js .page-home .hero-visual.is-visible:hover {
  transform: translateY(-6px) rotate(-0.5deg);
}

.section-stats {
  padding-top: 0;
  padding-bottom: var(--space-12);
  margin-top: calc(-1 * var(--space-6));
  position: relative;
  z-index: 2;
}

.trust-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  padding: var(--space-6) var(--space-8);
  margin: 0;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.trust-item {
  flex: 1 1 14rem;
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  transition: background var(--transition);
}

.trust-item:hover {
  background: rgba(223, 255, 226, 0.45);
}

.trust-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-mint);
  color: var(--color-deep);
  font-size: 1.25rem;
}

.trust-label {
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  color: var(--color-text-muted);
}

.trust-label strong {
  color: var(--color-text);
  display: block;
  margin-bottom: var(--space-1);
}

.business-info-card {
  max-width: 48rem;
  margin: 0 auto;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.business-info-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-5);
}

.business-info-list dt {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--color-text);
  margin: 0;
}

.business-info-list dd {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.business-info-list dd:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.business-info-foot {
  margin: var(--space-8) 0 0;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.stats-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  padding: var(--space-6) var(--space-8);
  margin: 0;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.stat-item {
  flex: 1 1 10rem;
  text-align: center;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  transition: background var(--transition), transform var(--transition);
}

.stat-item:hover {
  background: rgba(223, 255, 226, 0.5);
  transform: translateY(-2px);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--color-deep);
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
  display: block;
  max-width: 14rem;
  margin: 0 auto;
}

.section-tabs-wrap {
  background: linear-gradient(180deg, transparent, rgba(154, 209, 212, 0.12));
}

.planner-tabs {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
}

.tablist-scroll {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-4);
  background: linear-gradient(180deg, var(--color-mint), transparent);
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.tab-btn {
  flex: 1 1 auto;
  min-width: 7.5rem;
  padding: var(--space-3) var(--space-5);
  font-size: var(--fs-sm);
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--color-deep);
  background: var(--color-mint);
}

.tab-btn.is-active {
  background: linear-gradient(135deg, var(--color-sky), var(--color-deep));
  color: var(--color-surface);
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.tab-panels {
  padding: var(--space-8);
  min-height: 12rem;
}

.tab-panel {
  display: none;
  animation: tab-fade 0.45s ease both;
}

.tab-panel.is-active {
  display: block;
}

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

.tab-panel h3 {
  margin-top: 0;
}

.tab-highlights {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 0;
}

.tab-highlights li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.tab-highlights i {
  color: var(--color-sky);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.tilt-hover {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow var(--transition), border-color var(--transition);
}

.tilt-hover:hover {
  transform: perspective(900px) rotateX(2deg) rotateY(-2deg) translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.step-glow {
  transition: box-shadow var(--transition), transform var(--transition);
}

.step-glow:hover {
  box-shadow: 0 12px 40px rgba(89, 165, 216, 0.2);
  transform: translateY(-2px);
}

.quote-card-accent {
  background: linear-gradient(145deg, var(--color-surface), rgba(223, 255, 226, 0.7));
  border-color: rgba(89, 165, 216, 0.3);
}

.faq-details .faq-body {
  animation: none;
}

.faq-details[open] .faq-body {
  animation: tab-fade 0.4s ease both;
}

.legal-page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(154, 209, 212, 0.35), transparent 55%), radial-gradient(900px 500px at 100% 20%, rgba(89, 165, 216, 0.2), transparent 50%), var(--color-bg);
  pointer-events: none;
}

.legal-hero-pro {
  position: relative;
  padding: var(--space-16) var(--space-6) var(--space-12);
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(135deg, rgba(223, 255, 226, 0.9), rgba(154, 209, 212, 0.35));
}

.legal-hero-pro::before {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 65%);
  top: -40%;
  right: -10%;
  pointer-events: none;
}

.legal-hero-inner-pro {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 900px) {
  .legal-hero-inner-pro {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.legal-hero-card {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.legal-hero-card ul {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.legal-hero-card li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.legal-hero-card i {
  color: var(--color-sky);
  font-size: 1.25rem;
}

.legal-layout-pro {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-10) var(--space-6) var(--space-20);
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 1000px) {
  .legal-layout-pro {
    grid-template-columns: 15rem 1fr;
    align-items: start;
  }
}

.legal-toc-pro {
  position: sticky;
  top: 5.5rem;
  align-self: start;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.legal-toc-pro h2 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-sky);
}

.legal-toc-pro ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.legal-toc-pro li {
  margin-bottom: var(--space-2);
}

.legal-toc-pro a {
  display: block;
  padding: var(--space-2) 0;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.legal-toc-pro a:hover {
  color: var(--color-deep);
  border-bottom-color: var(--color-breeze);
}

.legal-main-pro .legal-inner {
  max-width: 54rem;
  margin: 0;
}

.legal-article-pro h2 {
  scroll-margin-top: 6rem;
  padding-bottom: var(--space-2);
  border-bottom: 2px solid rgba(154, 209, 212, 0.5);
}

.legal-article-pro h2:first-of-type {
  margin-top: 0;
}

.legal-callout {
  margin: var(--space-8) 0;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-sky);
  background: linear-gradient(90deg, rgba(223, 255, 226, 0.65), var(--color-surface));
  font-size: var(--fs-sm);
}

.legal-callout strong {
  color: var(--color-text);
}

.legal-article-pro code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--color-mint);
  padding: 0.12em 0.45em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.legal-kv {
  display: grid;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

@media (min-width: 640px) {
  .legal-kv {
    grid-template-columns: 1fr 1fr;
  }
}

.legal-kv dt {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--color-text);
  margin: 0;
}

.legal-kv dd {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.thank-page {
  overflow-x: hidden;
}

.thank-hero {
  padding: var(--space-16) var(--space-6) var(--space-12);
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(223, 255, 226, 0.85), var(--color-bg));
}

.thank-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(42rem, 90vw);
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, transparent, var(--color-sky), transparent);
}

.thank-icon-wrap {
  width: 5rem;
  height: 5rem;
  margin: 0 auto var(--space-6);
  border-radius: var(--radius-full);
  background: linear-gradient(145deg, var(--color-mint), var(--color-breeze));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  animation: check-pop 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.thank-icon-wrap i {
  font-size: 2.5rem;
  color: var(--color-deep);
}

.thank-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-12) var(--space-6) var(--space-8);
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 900px) {
  .thank-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.thank-panel-card {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.thank-panel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.thank-timeline {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 0;
  counter-reset: tl;
}

.thank-timeline li {
  position: relative;
  padding-left: var(--space-10);
  margin-bottom: var(--space-6);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.thank-timeline li::before {
  counter-increment: tl;
  content: counter(tl);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background: var(--color-mint);
  color: var(--color-deep);
  font-weight: 700;
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 2.25rem;
  bottom: -1.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--color-breeze), transparent);
}

.thank-tips {
  display: grid;
  gap: var(--space-4);
}

.thank-tip {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.thank-tip i {
  font-size: 1.5rem;
  color: var(--color-sky);
  flex-shrink: 0;
}

.thank-closing {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 var(--space-6) var(--space-20);
  text-align: center;
}

.thank-hero-lede {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--color-text-muted);
}

.thank-panel-narrow {
  margin-bottom: 0;
}

.thank-footnote {
  margin-bottom: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.thank-closing-lede {
  margin-bottom: var(--space-8);
}

.thank-meta-note {
  margin-top: var(--space-6);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

@media (max-width: 380px) {
  .header-inner {
    padding: var(--space-3) var(--space-4);
    gap: var(--space-3);
  }

  .brand {
    font-size: 0.82rem;
    gap: var(--space-2);
  }

  .brand-mark {
    width: 1.85rem;
    height: 1.85rem;
  }

  .section {
    padding: var(--space-10) var(--space-4);
  }

  .hero {
    padding: var(--space-10) var(--space-4) var(--space-12);
  }

  .cookie-banner {
    left: var(--space-2);
    right: var(--space-2);
    bottom: var(--space-2);
    padding: var(--space-4);
    max-width: none;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .stats-strip {
    flex-direction: column;
    padding: var(--space-4);
  }

  .trust-strip {
    flex-direction: column;
    padding: var(--space-4);
  }

  .stat-item {
    flex: 1 1 auto;
  }

  .tab-btn {
    min-width: 6.75rem;
    padding: var(--space-3) var(--space-4);
    font-size: 0.8125rem;
  }

  .tab-panels {
    padding: var(--space-5);
  }

  .feature-item,
  .service-block,
  .step,
  .quote-card {
    padding: var(--space-5);
  }

  .footer-grid {
    gap: var(--space-8);
  }

  .legal-toc-pro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 320px) {
  :root {
    --fs-hero: clamp(1.55rem, 10vw, 2.25rem);
    --fs-2xl: clamp(1.4rem, 6vw, 1.85rem);
    --space-16: 3rem;
    --space-20: 3.5rem;
  }

  html {
    font-size: 94%;
  }

  .header-inner {
    padding: 0.625rem 0.75rem;
  }

  .brand {
    font-size: 0.72rem;
    letter-spacing: -0.02em;
  }

  .nav-toggle {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.35rem;
  }

  .nav-mobile {
    padding: var(--space-3) var(--space-4) var(--space-5);
  }

  .nav-mobile a {
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
  }

  .section {
    padding: 2.25rem 0.75rem;
  }

  .hero {
    padding: 2rem 0.75rem 2.75rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
  }

  .btn {
    padding: 0.75rem 1rem;
  }

  .eyebrow {
    font-size: 0.65rem;
  }

  .faq-list summary {
    padding: var(--space-4);
    font-size: 0.9rem;
  }

  .faq-list .faq-body {
    padding: 0 var(--space-4) var(--space-4);
  }

  .form-group input,
  .form-group textarea {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .contact-inner {
    padding: var(--space-5);
  }

  .cookie-modal {
    padding: var(--space-5);
    max-height: 88vh;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .footer-meta span:last-child {
    word-break: break-all;
  }

  .thank-hero {
    padding: 2.5rem 0.75rem 2rem;
  }

  .thank-grid {
    padding: var(--space-8) 0.75rem var(--space-6);
  }

  .legal-layout-pro {
    padding: var(--space-8) 0.75rem var(--space-12);
  }

  .legal-hero-pro {
    padding: var(--space-10) 0.75rem var(--space-8);
  }
}

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

  .page-home .hero-gradient {
    animation: none;
  }

  .page-home .hero::before {
    animation: none !important;
    transform: none;
  }

  .hero-shine-layer {
    display: none;
  }

  .hero-ambient {
    display: none;
  }

  @supports (-webkit-background-clip: text) or (background-clip: text) {
    .hero-title-accent {
      animation: none !important;
      background-image: none !important;
      -webkit-text-fill-color: unset;
      color: inherit;
    }
  }

  html.js .page-home .hero-copy.is-visible .hero-title-rule {
    animation: none !important;
    width: min(11rem, 88vw);
  }

  html.js .page-home .hero-copy.is-visible .hero-lead {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .eyebrow-pulse {
    animation: none !important;
    box-shadow: none !important;
  }

  .page-home .hero-btn-primary::after {
    display: none !important;
  }

  .page-home .hero-btn-ghost {
    animation: none !important;
  }

  .page-home .hero-card-aura {
    animation: none !important;
    opacity: 0.75;
    transform: none;
  }

  html.js .page-home .hero-visual.is-visible {
    animation: none !important;
  }

  html.js .page-home .hero-visual.is-visible .hero-frame img {
    animation: none !important;
  }

  html.js .page-home .hero-visual.is-visible:hover {
    transform: none !important;
  }

  html.js .page-home .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-blobs .blob {
    animation: none;
  }

  .thank-icon-wrap {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
