:root {
  --bg: #f5f7f6;
  --surface: #ffffff;
  --surface-strong: #111716;
  --text: #16201f;
  --muted: #5f6d6a;
  --line: #d9e2df;
  --teal: #116b63;
  --teal-dark: #0b504a;
  --amber: #d58928;
  --amber-soft: #fff4df;
  --shadow: 0 24px 70px rgba(16, 32, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: #ffffff;
  color: var(--text);
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 760;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #ffffff;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.site-header.is-scrolled {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 223, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
  letter-spacing: 0;
}

.is-scrolled .brand-mark {
  border-color: var(--line);
  background: var(--surface-strong);
  color: #ffffff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav a {
  text-decoration: none;
  opacity: 0.86;
}

.main-nav a:hover {
  opacity: 1;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.is-scrolled .language-switch {
  border-color: var(--line);
  background: rgba(17, 23, 22, 0.04);
}

.language-option {
  min-width: 34px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
}

.language-option[aria-pressed="true"] {
  background: var(--amber);
  color: #17100a;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background: #111716;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 15, 15, 0.92) 0%, rgba(9, 15, 15, 0.68) 34%, rgba(9, 15, 15, 0.18) 72%),
    linear-gradient(180deg, rgba(9, 15, 15, 0.18) 0%, rgba(9, 15, 15, 0.52) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, calc(100% - 40px));
  padding: 148px 0 56px clamp(20px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 7.5vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 780;
  text-decoration: none;
}

.button.primary {
  background: var(--amber);
  color: #17100a;
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.button.full {
  width: 100%;
}

.format-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.format-strip li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 700;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-bottom: 42px;
}

.section-intro.compact {
  display: block;
  max-width: 820px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

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

.problem-grid article,
.feature-list article,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(16, 32, 30, 0.06);
}

.problem-grid article {
  padding: 26px;
}

.problem-grid p,
.feature-list p,
.steps p,
.purchase-copy p,
.cta-section p,
.price-card li {
  color: var(--muted);
}

.icon {
  display: grid;
  width: 118px;
  height: 98px;
  place-items: center;
  margin-bottom: 24px;
}

.icon img {
  display: block;
  width: 118px;
  height: 98px;
  object-fit: contain;
}

.problem-grid h3,
.feature-list h3 {
  margin-bottom: 10px;
}

.feature-section,
.purchase-section {
  background: #ffffff;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

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

.feature-list article {
  padding: 24px;
}

.support-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
  border-radius: 8px;
  background: var(--surface-strong);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.support-panel h3 {
  margin-bottom: 22px;
}

.support-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.support-panel dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.support-panel dd {
  margin: 4px 0 0;
  font-size: 1.02rem;
  font-weight: 750;
}

.workflow-section {
  background: var(--amber-soft);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 82px 112px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-top: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.72);
}

.step-icon {
  display: grid;
  width: 112px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(17, 107, 99, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(16, 32, 30, 0.08);
}

.step-icon img {
  display: block;
  max-width: 88px;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.steps span {
  display: block;
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 900;
}

.step-copy {
  display: grid;
  gap: 8px;
}

.step-copy h3 {
  margin: 0;
}

.cta-section,
.purchase-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}

.cta-section {
  background: var(--teal-dark);
  color: #ffffff;
}

.cta-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  color: #ffffff;
  font-weight: 800;
}

.purchase-copy {
  max-width: 720px;
}

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

.price-card {
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(17, 107, 99, 0.55);
  box-shadow: 0 18px 48px rgba(17, 107, 99, 0.14);
}

.card-label {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.65rem;
}

.price {
  margin-top: 16px;
  font-size: 2.55rem;
  line-height: 1;
  font-weight: 860;
}

.tax-note {
  min-height: 42px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0;
  padding-left: 18px;
}

.purchase-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.purchase-form button {
  border: 0;
  cursor: pointer;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  font-weight: 800;
  color: var(--text);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.legal-nav a {
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--teal);
  text-decoration: underline;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(17, 107, 99, 0.08), transparent 34%),
    linear-gradient(180deg, #f8faf9 0%, #f2f5f4 100%);
}

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

.legal-header {
  margin-bottom: 28px;
}

.legal-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.legal-header .brand {
  color: var(--text);
}

.legal-header .brand-mark {
  border-color: var(--line);
  background: var(--surface-strong);
  color: #ffffff;
}

.legal-home-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 750;
  text-decoration: none;
}

.legal-home-link:hover {
  text-decoration: underline;
}

.legal-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-kicker {
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.legal-title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.legal-lead {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-body {
  display: grid;
  gap: 26px;
  margin-top: 38px;
}

.legal-body section {
  display: grid;
  gap: 12px;
}

.legal-body h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.08;
}

.legal-body ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-body li + li {
  margin-top: 8px;
}

.legal-body p {
  color: var(--muted);
}

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

.legal-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
}

.legal-panel h3 {
  margin-bottom: 10px;
}

.legal-note {
  padding: 18px 20px;
  border-left: 4px solid var(--amber);
  background: var(--amber-soft);
  color: #5c430f;
}

.legal-note p {
  color: inherit;
}

.legal-divider {
  height: 1px;
  background: var(--line);
}

.legal-footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

  .language-switch {
    margin-left: auto;
  }

  .hero {
    min-height: 880px;
  }

  .hero-content {
    width: min(720px, calc(100% - 32px));
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-intro,
  .feature-layout,
  .cta-section,
  .purchase-section,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .steps li {
    grid-template-columns: 58px 88px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 18px;
  }

  .step-icon {
    width: 88px;
    height: 76px;
  }

  .step-icon img {
    max-width: 68px;
    max-height: 58px;
  }

  .steps span {
    font-size: 2.2rem;
  }

  .support-panel {
    position: static;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-header-top {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 840px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 15, 15, 0.66) 0%, rgba(9, 15, 15, 0.86) 48%, rgba(9, 15, 15, 0.94) 100%);
  }

  .hero-content {
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }

  .format-strip li {
    font-size: 0.8rem;
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .steps span {
    font-size: 2rem;
  }

  .site-footer {
    flex-direction: column;
    padding-right: 16px;
    padding-left: 16px;
  }

  .legal-nav {
    justify-content: flex-start;
  }

  .legal-shell {
    width: min(100% - 24px, 980px);
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
