:root {
  --navy: #0b1f3a;
  --navy-soft: #16365f;
  --teal: #14b8a6;
  --teal-dark: #0f9486;
  --teal-pale: #e8fbf8;
  --white: #ffffff;
  --paper: #f7fbff;
  --ink: #102033;
  --muted: #5c6b7d;
  --line: #dbe6f0;
  --shadow: 0 22px 60px rgba(11, 31, 58, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(232, 251, 248, 0.7) 0, rgba(255, 255, 255, 0) 520px),
    var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  gap: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  overflow: hidden;
  width: 300px;
  height: 78px;
  padding: 7px 12px;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.12);
}

.brand-banner {
  justify-content: center;
  width: 320px;
  height: 90px;
  padding: 6px 12px;
  border-color: rgba(20, 184, 166, 0.24);
  background: #06111f;
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.16);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.lang-button {
  min-width: 42px;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.lang-button.is-active {
  color: var(--white);
  background: var(--navy);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  min-height: calc(100vh - 86px);
  gap: 44px;
  padding-top: 36px;
}

.hero-content {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 7vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-trust-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  max-width: 640px;
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(255, 255, 255, 0) 56%),
    var(--white);
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.08);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.trust-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-kicker {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
}

.trust-stat {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 850;
}

.trust-copy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.trust-source {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-leverage {
  max-width: 620px;
  margin: 16px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-left: 4px solid var(--teal-dark);
  border-radius: 8px;
  color: var(--navy);
  background: var(--teal-pale);
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 16px 36px rgba(15, 148, 134, 0.24);
}

.button.primary:hover {
  background: #0c8175;
}

.button.ghost {
  color: var(--navy);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.button.subtle {
  color: var(--teal-dark);
  border-color: rgba(20, 184, 166, 0.18);
  background: var(--teal-pale);
}

.header-cta {
  min-height: 42px;
  padding: 10px 14px;
  white-space: nowrap;
}

.product-preview {
  position: relative;
}

.preview-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(219, 230, 240, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(255, 255, 255, 0) 42%),
    var(--white);
  box-shadow: var(--shadow);
}

.preview-topbar {
  display: flex;
  gap: 7px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
}

.review-card,
.reply-card {
  margin: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.review-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-header strong {
  display: block;
  color: var(--navy);
}

.stars {
  color: #f5a524;
  font-size: 0.96rem;
}

.review-card p,
.reply-card p {
  margin: 14px 0 0;
  color: var(--ink);
}

.reply-card {
  margin-top: -4px;
  background: var(--teal-pale);
  border-color: rgba(20, 184, 166, 0.28);
}

.ai-badge {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.preview-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.preview-actions span {
  flex: 1;
  padding: 10px;
  border-radius: 7px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 850;
  text-align: center;
}

.reputation-urgency {
  width: 100%;
  max-width: none;
  padding: 76px 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.22), rgba(20, 184, 166, 0) 38%),
    linear-gradient(180deg, #07172c 0%, var(--navy) 100%);
}

.urgency-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.reputation-urgency .eyebrow {
  color: #80f2e7;
}

.urgency-copy h2 {
  color: var(--white);
}

.urgency-copy > p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.urgency-highlight {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(20, 184, 166, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.urgency-highlight strong {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.45;
}

.urgency-alert,
.urgency-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
}

.urgency-alert {
  width: 46px;
  height: 46px;
  color: #ffd166;
  background: rgba(255, 209, 102, 0.14);
}

.urgency-icon {
  width: 52px;
  height: 52px;
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.urgency-alert svg,
.urgency-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.urgency-cta-copy {
  font-weight: 850;
}

.urgency-flow {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.urgency-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(219, 230, 240, 0.92);
  border-radius: 8px;
  background: var(--white);
}

.urgency-step p {
  margin: 0;
  color: var(--navy);
  font-weight: 850;
  line-height: 1.32;
}

.problem {
  width: 100%;
  max-width: none;
  padding: 72px 16px;
  background: var(--navy);
}

.section-inner {
  width: min(920px, 100%);
  margin: 0 auto;
}

.section-inner.narrow {
  text-align: center;
}

.problem h2 {
  color: var(--white);
}

.problem p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.section-cta {
  margin-top: 26px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(11, 31, 58, 0.08);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

.target {
  padding-top: 36px;
}

.benefits {
  padding-top: 36px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(11, 31, 58, 0.08);
}

.benefit-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.benefits-cta {
  margin-top: 18px;
}

.target-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.target-list span {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.pricing {
  padding-top: 36px;
}

.pricing-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.pricing-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 18px;
}

.pricing-launch-note {
  display: inline-flex;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid rgba(20, 184, 166, 0.24);
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  font-weight: 900;
}

.billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
}

.billing-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.billing-option.is-active {
  color: var(--white);
  background: var(--navy);
}

.billing-badge {
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--teal-pale);
  font-size: 0.72rem;
  font-weight: 950;
  white-space: nowrap;
}

.billing-option.is-active .billing-badge {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.pricing-annual-note {
  margin: -4px 0 18px;
  color: var(--ink);
  font-weight: 850;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(11, 31, 58, 0.08);
}

.plan-card.featured {
  border-color: rgba(20, 184, 166, 0.72);
  box-shadow: 0 22px 58px rgba(15, 148, 134, 0.16);
}

.plan-card.custom {
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(255, 255, 255, 0) 44%),
    var(--white);
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 900;
}

.plan-head {
  display: grid;
  gap: 12px;
  padding-right: 2px;
}

.plan-head h3 {
  padding-right: 84px;
  font-size: 1.38rem;
}

.plan-head p:not(.plan-price) {
  margin: 8px 0 0;
  color: var(--muted);
}

.plan-price {
  margin: 0;
  color: var(--navy);
}

.plan-price span {
  display: inline-block;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  font-weight: 950;
  line-height: 1.12;
}

.plan-price small {
  margin-left: 4px;
  color: var(--muted);
  font-weight: 850;
}

.plan-billing-note {
  width: fit-content;
  margin: -4px 0 0;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #f8fbfd;
  font-size: 0.8rem;
  font-weight: 900;
}

.plan-billing-note.is-annual {
  border-color: rgba(20, 184, 166, 0.28);
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.plan-features {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.plan-features li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal-dark);
  content: "✓";
  font-weight: 950;
}

.plan-copy {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.plan-cta {
  width: 100%;
  margin-top: auto;
}

.pricing-vat-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.trial-note {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid rgba(20, 184, 166, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(255, 255, 255, 0) 45%),
    var(--paper);
}

.trial-note h3 {
  font-size: 1.35rem;
}

.trial-note p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

.trial-note .button {
  flex: 0 0 auto;
}

.pricing-panel {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0) 45%),
    var(--paper);
}

.pricing-panel p:last-child {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
}

.pricing-cta {
  flex: 0 0 auto;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 32px;
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 104px;
}

.form-intro p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #cfdbe8;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

.field input:user-invalid,
.field select:user-invalid {
  border-color: #d94a4a;
}

.form-button,
.form-note,
.form-message,
.success-actions,
.privacy-consent {
  grid-column: 1 / -1;
}

.privacy-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 8px;
  background: rgba(232, 251, 248, 0.55);
  color: var(--muted);
  font-size: 0.9rem;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal-dark);
}

.privacy-consent a,
.footer-links a,
.footer-link-button {
  color: var(--teal-dark);
  font-weight: 850;
}

.privacy-consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 850;
}

.form-message.is-error {
  color: #b93838;
}

.success-actions[hidden] {
  display: none;
}

.success-actions {
  display: flex;
}

.success-actions .button {
  width: 100%;
}

.faq {
  padding-top: 36px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  min-height: 58px;
  padding: 17px 20px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--navy);
}

.footer-copy p {
  max-width: 560px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: flex-end;
}

.footer-links a,
.footer-link-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.92rem;
  padding: 0;
}

.footer-links a:hover,
.footer-link-button:hover {
  color: var(--navy);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 40;
  width: min(1040px, calc(100% - 24px));
  margin: 0 auto;
}

.cookie-banner-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(219, 230, 240, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 52px rgba(11, 31, 58, 0.18);
  backdrop-filter: blur(16px);
}

.cookie-banner h2,
.cookie-modal h2 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.cookie-banner p,
.cookie-modal-copy,
.cookie-option p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-actions .button,
.cookie-modal-actions .button {
  min-height: 42px;
  padding: 10px 14px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 31, 58, 0.42);
}

.cookie-modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(219, 230, 240, 0.95);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.cookie-options {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.cookie-option {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.cookie-option strong {
  color: var(--navy);
}

.cookie-status {
  flex: 0 0 auto;
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.cookie-option input[type="checkbox"] {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 26px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: #cfdbe8;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.cookie-option input[type="checkbox"]::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--white);
  content: "";
  transition: transform 160ms ease;
}

.cookie-option input[type="checkbox"]:checked {
  background: var(--teal-dark);
}

.cookie-option input[type="checkbox"]:checked::before {
  transform: translateX(20px);
}

.legal-main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 72px;
}

.legal-hero {
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 760px;
  font-size: clamp(2.1rem, 6vw, 4rem);
}

.legal-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.legal-section h3 {
  margin: 20px 0 8px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section ul {
  padding-left: 20px;
}

.company-note {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(20, 184, 166, 0.24);
  border-radius: 8px;
  background: var(--teal-pale);
  color: var(--navy);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.legal-language-block {
  display: grid;
  gap: 6px;
  padding-top: 14px;
}

@media (max-width: 900px) {
  .header-actions {
    flex-wrap: wrap;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
  }

  .product-preview {
    max-width: 560px;
  }

  .steps-grid,
  .benefits-grid,
  .urgency-grid,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .form-intro {
    position: static;
  }

  .pricing-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .trial-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    align-items: flex-start;
    padding: 12px 0;
  }

  .brand {
    width: 228px;
    height: 66px;
    padding: 5px 9px;
  }

  .brand:not(.brand-banner) {
    width: 220px;
    height: 62px;
    padding: 6px 10px;
  }

  .header-actions {
    gap: 8px;
    flex-wrap: wrap;
  }

  .language-switcher {
    max-width: 100%;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .lang-button {
    min-width: 36px;
    min-height: 32px;
    padding: 0 9px;
    font-size: 0.72rem;
  }

  .hero {
    gap: 30px;
  }

  .hero-trust-card {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
  }

  .hero-actions,
  .preview-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .review-card,
  .reply-card {
    margin: 14px;
    padding: 16px;
  }

  .review-header {
    flex-direction: column;
    gap: 6px;
  }

  .problem {
    padding: 56px 12px;
  }

  .reputation-urgency {
    padding: 58px 12px;
  }

  .urgency-highlight {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 16px;
  }

  .urgency-alert {
    width: 40px;
    height: 40px;
  }

  .urgency-flow {
    padding: 12px;
  }

  .step-card {
    min-height: 150px;
  }

  .step-number {
    margin-bottom: 26px;
  }

  .pricing-panel,
  .plan-card,
  .trial-note,
  .waitlist-form {
    padding: 20px;
  }

  .pricing-launch-note {
    border-radius: 8px;
  }

  .pricing-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-option {
    flex: 1;
    justify-content: center;
    padding: 8px 10px;
  }

  .plan-head h3 {
    padding-right: 0;
  }

  .plan-badge {
    position: static;
    width: fit-content;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .footer-copy p {
    text-align: left;
  }

  .cookie-banner {
    bottom: 12px;
    width: min(100% - 20px, 1040px);
  }

  .cookie-banner-content {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .cookie-actions,
  .cookie-modal-actions {
    justify-content: stretch;
  }

  .cookie-modal {
    align-items: end;
    padding: 10px;
  }

  .cookie-modal-panel {
    max-height: calc(100vh - 20px);
    padding: 22px;
  }

  .cookie-option {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .header-cta {
    width: auto;
  }

  .urgency-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .urgency-icon {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
