:root {
  --ink: #12212b;
  --muted: #53646f;
  --paper: #f6f3ed;
  --card: #fffdf9;
  --line: #d9d7d0;
  --blue: #174f75;
  --blue-dark: #0d354f;
  --teal: #0c756c;
  --gold: #c78b2c;
  --shadow: 0 20px 60px rgba(18, 33, 43, .11);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 2%, rgba(23, 79, 117, .13), transparent 28rem),
    linear-gradient(180deg, #fbfaf7 0, var(--paper) 38rem);
  font: 17px/1.62 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

a { color: var(--blue); text-underline-offset: .18em; }
a:hover { color: var(--teal); }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(18, 33, 43, .1);
  background: rgba(251, 250, 247, .94);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { color: var(--ink); font-weight: 750; text-decoration: none; letter-spacing: -.02em; }
.brand span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 1.15rem; font-size: .93rem; }
.nav-links a { text-decoration: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0 4.5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; letter-spacing: -.035em; }
h1 { max-width: 760px; margin-bottom: 1.25rem; font: 700 clamp(2.55rem, 6.2vw, 5.1rem)/1.02 Georgia, serif; }
h2 { max-width: 760px; margin-bottom: 1rem; font: 700 clamp(1.85rem, 3.6vw, 3.05rem)/1.08 Georgia, serif; }
h3 { margin-bottom: .55rem; font-size: 1.05rem; }

.lead { max-width: 690px; margin: 0; color: #344b59; font-size: clamp(1.08rem, 2vw, 1.28rem); }
.offer { margin: 1rem 0 0; color: var(--blue-dark); font-weight: 700; }

.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .72rem 1.05rem;
  border: 1px solid var(--blue);
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}
.button:hover { background: var(--blue-dark); color: #fff; }
.button.secondary { background: transparent; color: var(--blue); }
.button.secondary:hover { background: rgba(23, 79, 117, .07); color: var(--blue-dark); }

.hero-proof {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(23, 79, 117, .2);
  border-radius: 16px;
  background: rgba(255, 253, 249, .88);
  box-shadow: var(--shadow);
}
.hero-proof::before {
  content: "";
  position: absolute;
  width: 5rem;
  height: .34rem;
  top: 0;
  left: 1.5rem;
  border-radius: 0 0 6px 6px;
  background: var(--gold);
}
.proof-row { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.proof-row:last-child { border: 0; padding-bottom: 0; }
.proof-row strong { display: block; color: var(--blue-dark); font-size: 1.08rem; }
.proof-row span { color: var(--muted); font-size: .92rem; }

section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.tint { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 253, 249, .68); }
.intro { max-width: 760px; color: var(--muted); font-size: 1.08rem; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.card { padding: 1.35rem; border: 1px solid var(--line); border-radius: 12px; background: var(--card); }
.card p { margin: 0; color: var(--muted); }
.number { display: block; margin-bottom: .85rem; color: var(--gold); font: 700 1.55rem/1 Georgia, serif; }

.sample {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(300px, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.sample-panel { padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: 16px; background: var(--blue-dark); color: #fff; box-shadow: var(--shadow); }
.sample-panel h3 { font: 700 1.5rem/1.15 Georgia, serif; }
.sample-panel p { color: #d9e4ea; }
.sample-panel a { color: #fff; }
.sample-panel .button { border-color: #fff; background: #fff; color: var(--blue-dark); }
.sample-panel .button:hover { background: #eaf3f4; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.step { position: relative; padding-left: 3.2rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
}
.step p { margin: 0; color: var(--muted); }

.price-table { width: 100%; margin-top: 2rem; border-collapse: collapse; background: var(--card); }
.price-table th, .price-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--line); text-align: left; }
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table tr:last-child td { border-bottom: 0; }
.price-note { max-width: 760px; color: var(--muted); }

.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.fit ul { margin: 0; padding-left: 1.2rem; }
.fit li { margin-bottom: .55rem; }

.closing { text-align: center; }
.closing h2, .closing p { margin-left: auto; margin-right: auto; }
.closing p { max-width: 650px; color: var(--muted); }
.closing .actions { justify-content: center; }

footer { padding: 2rem 0 3rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.footer-row { display: flex; justify-content: space-between; gap: 1.5rem; }
.footer-row p { margin: 0; }

@media (max-width: 800px) {
  .nav-links a:not(.language) { display: none; }
  .hero, .sample, .grid, .steps, .fit { grid-template-columns: 1fr; }
  .hero { padding-top: 3.5rem; }
  .hero-proof { max-width: 520px; }
  .footer-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
