:root {
  --gold: #c4a035;
  --gold-dark: #9e8128;
  --navy: #1a2744;
  --navy-dark: #121c33;
  --ink: #1a1f27;
  --muted: #5a6370;
  --line: #d8dee6;
  --bg: #e8ecf1;
  --card: #ffffff;
  --ad: #f7f1e3;
  --ad-text: #7a5a22;
  --radius: 6px;
  --max: 1180px;
  --font: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 18px;
}

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

a {
  color: var(--navy);
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

.logo {
  width: min(320px, 88vw);
  height: auto;
}

.ad-bar {
  background: var(--ad);
  border-bottom: 1px solid #ead7b0;
  color: var(--ad-text);
  font-size: 0.92rem;
}

.ad-bar .wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.ad-pill {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 3px 8px;
  border-radius: var(--radius);
}

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

.article-card,
.side-card,
.site-footer .inner,
.legal-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-card {
  padding: 32px 36px 40px;
}

.legal-card {
  padding: 36px 40px 44px;
  margin: 24px auto 48px;
  max-width: 860px;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.meta strong {
  color: var(--ink);
  font-weight: 600;
}

h1 {
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  line-height: 1.25;
  color: var(--navy-dark);
  margin: 10px 0 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin: 32px 0 12px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 22px 0 8px;
}

.lead,
.article-card p,
.legal-card p {
  color: #2b323c;
}

.hero {
  width: 100%;
  margin: 6px 0 22px;
  object-fit: cover;
  max-height: 420px;
  border-radius: var(--radius);
  transition: transform 0.55s ease;
}

.hero:hover {
  transform: scale(1.012);
}

.figure {
  margin: 20px 0 8px;
  overflow: hidden;
  border-radius: var(--radius);
}

.figure img {
  width: 100%;
  border-radius: var(--radius);
  transition: transform 0.55s ease;
}

.figure:hover img {
  transform: scale(1.02);
}

.caption {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 8px 0 0;
}

.checks {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding: 7px 0 7px 28px;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 14px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.steps {
  margin: 8px 0 18px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  margin: 0 0 12px;
  padding: 12px 14px 12px 54px;
  background: #f6f7f9;
  border-radius: var(--radius);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 8px 0 20px;
  padding: 16px 16px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.02rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 8px 18px rgba(18, 28, 51, 0.16);
}

.cta:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.cta-wrap {
  margin: 18px 0 8px;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.text-link:hover {
  color: var(--gold-dark);
}

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

.side {
  position: sticky;
  top: 16px;
}

.side-card {
  padding: 26px 22px 28px;
}

.side-card h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  line-height: 1.15;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}

.stars {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 14px;
}

.stars span:first-child {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 1.05rem;
}

.product {
  width: 100%;
  margin: 0 auto 14px;
  max-height: 220px;
  object-fit: contain;
}

.side-card .checks {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 14px;
}

.side-card .cta {
  margin-bottom: 0;
  padding: 17px 16px;
}

.mobile-offer {
  display: none;
  margin: 8px 0 22px;
}

.site-footer {
  padding: 0 0 40px;
}

.site-footer .inner {
  padding: 22px 24px 26px;
  text-align: center;
}

.site-footer p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 8px;
}

.legal-links a {
  color: var(--navy);
  text-decoration: none;
}

.legal-links a:hover {
  color: var(--gold-dark);
}

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

.legal-card li {
  margin: 6px 0;
}

.back {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.back:hover {
  color: var(--navy);
}

.contact-grid {
  display: grid;
  gap: 10px;
  margin: 18px 0 8px;
}

.contact-item {
  display: grid;
  gap: 2px;
}

.contact-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form input,
.form textarea {
  font: inherit;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

.form-ok {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  background: #eef6ee;
  color: #215c2a;
  border-radius: var(--radius);
}

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(18, 28, 46, 0.12);
  padding: 16px 18px;
}

.cookie.is-open {
  display: block;
  animation: cookie-in 0.4s ease;
}

@keyframes cookie-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cookie p {
  margin: 0 0 12px;
  color: #2b323c;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .cta {
  width: auto;
  margin: 0;
  padding: 10px 18px;
  font-size: 0.88rem;
}

.cookie-actions .ghost {
  background: #eceff3;
  color: var(--navy);
}

.cookie-actions .ghost:hover {
  background: #e0e4ea;
  color: var(--navy);
}

.has-reveal .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.has-reveal .reveal.is-in {
  opacity: 1;
  transform: none;
}

.has-reveal .page-home .side-card.reveal {
  transition-delay: 0.1s;
}

.has-reveal .reveal .steps li,
.has-reveal .reveal .checks li {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.has-reveal .reveal.is-in .steps li,
.has-reveal .reveal.is-in .checks li {
  opacity: 1;
  transform: none;
}

.has-reveal .reveal.is-in .steps li:nth-child(1),
.has-reveal .reveal.is-in .checks li:nth-child(1) { transition-delay: 0.04s; }
.has-reveal .reveal.is-in .steps li:nth-child(2),
.has-reveal .reveal.is-in .checks li:nth-child(2) { transition-delay: 0.08s; }
.has-reveal .reveal.is-in .steps li:nth-child(3),
.has-reveal .reveal.is-in .checks li:nth-child(3) { transition-delay: 0.12s; }
.has-reveal .reveal.is-in .checks li:nth-child(4) { transition-delay: 0.16s; }
.has-reveal .reveal.is-in .checks li:nth-child(5) { transition-delay: 0.2s; }
.has-reveal .reveal.is-in .checks li:nth-child(6) { transition-delay: 0.24s; }

@media (max-width: 960px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .side {
    display: none;
  }

  .mobile-offer {
    display: block;
  }

  .article-card,
  .legal-card {
    padding: 22px 18px 28px;
  }

  body {
    font-size: 17px;
  }
}

@media (max-width: 560px) {
  .ad-bar .wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 1.55rem;
  }
}

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

  .cta,
  .hero,
  .figure img {
    transition: none;
  }

  .hero:hover,
  .figure:hover img,
  .cta:hover {
    transform: none;
    box-shadow: none;
  }

  .has-reveal .reveal,
  .has-reveal .reveal.is-in,
  .has-reveal .reveal .steps li,
  .has-reveal .reveal .checks li,
  .has-reveal .reveal.is-in .steps li,
  .has-reveal .reveal.is-in .checks li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .cookie.is-open {
    animation: none;
  }
}
