:root {
  --color-primary: #2D2E32;
  --color-secondary: #D1D5DB;
  --color-accent: #FFB000;
  --font-main: "Inter", "Segoe UI", Arial, sans-serif;
  --radius: 20px;
  --shadow: 0 12px 40px rgba(45, 46, 50, 0.08);
  --spacing: clamp(1rem, 2vw, 1.5rem);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-primary);
  background: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
a { color: inherit; text-underline-offset: 3px; }
.container { width: min(1120px, 92vw); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eceef2;
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; font-weight: 700; }
.brand span { white-space: nowrap; font-size: .95rem; }
.desktop-nav { display: flex; gap: .85rem; }
.desktop-nav a { text-decoration: none; font-size: .87rem; padding: .3rem .5rem; border-radius: 999px; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { background: #f3f4f6; }
.burger { display: none; width: 44px; height: 44px; border: 1px solid #d5d9df; border-radius: 10px; background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 4px; cursor: pointer; }
.burger span { width: 18px; height: 2px; background: var(--color-primary); transition: transform .25s ease, opacity .25s ease; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(15,17,21,.45); display: grid; place-items: center; z-index: 25; }
.mobile-overlay[hidden] { display: none; }
.mobile-nav { width: min(420px, 88vw); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem; display: grid; gap: .5rem; transform: translateY(10px); transition: transform .25s ease; }
.mobile-overlay.show .mobile-nav { transform: translateY(0); }
.mobile-nav a { text-decoration: none; padding: .7rem .8rem; border-radius: 12px; }
.mobile-nav a:hover, .mobile-nav a:focus-visible { background: #f5f6f9; }
section { padding: clamp(2.5rem, 6vw, 5rem) 0; position: relative; }
.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(209,213,219,.25), rgba(255,176,0,.12));
  z-index: -1;
}
.grid-2, .section-grid { display: grid; gap: clamp(1rem, 2.6vw, 2rem); align-items: center; }
.grid-2 { grid-template-columns: 1fr; }
.section-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.hero-copy, .order-card, .section-grid article, .sub-hero .logo-figure {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(1rem, 2.3vw, 1.6rem);
  box-shadow: var(--shadow);
}
.eyebrow { text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: #5a5f69; }
h1, h2, h3 { line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(1.8rem, 4.8vw, 3.05rem); }
h2 { font-size: clamp(1.4rem, 3.2vw, 2.15rem); }
.trust-badge { background: #f3f5f8; padding: .65rem .8rem; border-radius: 999px; display: inline-block; font-size: .92rem; }
.rating { margin-top: .8rem; font-weight: 600; }
.pricing { font-size: 1.4rem; font-weight: 700; }
.new-price { color: var(--color-accent); margin-right: .5rem; }
.old-price { text-decoration: line-through; color: #6a717d; }
.disclaimer { font-size: .92rem; color: #535965; }
.order-card figure { margin: 0 0 .8rem; }
.order-card img { width: 100%; height: auto; border-radius: 14px; border: 1px solid #ebeef3; }
form { display: grid; gap: .65rem; }
label { display: grid; gap: .35rem; font-weight: 600; font-size: .94rem; }
input, textarea {
  border: 1px solid #d7dbe3;
  border-radius: 12px;
  padding: .72rem .8rem;
  font: inherit;
}
input:focus, textarea:focus { outline: 2px solid rgba(255,176,0,.4); border-color: var(--color-accent); }
.checkbox { display: flex; align-items: flex-start; gap: .6rem; font-weight: 500; }
.btn-primary, .btn-secondary {
  border: 0;
  border-radius: 999px;
  padding: .8rem 1.1rem;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary { background: linear-gradient(90deg, #ffbf2f, var(--color-accent)); color: #1a1a1a; font-weight: 700; }
.btn-secondary { background: #eef1f6; color: #1d2230; }
.btn-primary:hover, .btn-secondary:hover { filter: saturate(1.2); transform: translateY(-1px); transition: .2s ease; }
.faq-list { display: grid; gap: .8rem; }
.faq-item { border: 1px solid #e4e7ec; border-radius: 16px; overflow: hidden; background: #fff; }
.faq-question { width: 100%; text-align: left; border: 0; background: #fff; padding: 1rem; font: inherit; font-weight: 700; cursor: pointer; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { margin: 0; padding: 0 1rem 1rem; }
.faq-item.open .faq-answer { max-height: 160px; }
iframe { width: 100%; min-height: 280px; border: 0; border-radius: 14px; }
.site-footer { border-top: 1px solid #eceef2; padding: 1rem 0 1.25rem; margin-top: auto; }
.footer-grid { display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.footer-grid nav { display: flex; gap: .8rem; }
.cookie-banner { position: fixed; inset: auto 0 0 0; z-index: 40; padding: 1rem; }
.cookie-card { width: min(980px, 96vw); margin: 0 auto; background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 1rem; }
.cookie-options { display: grid; gap: .45rem; margin: .7rem 0; }
.cookie-actions { display: flex; gap: .55rem; flex-wrap: wrap; justify-content: flex-end; }
.reveal { opacity: 0; transform: translateX(22px); transition: opacity .45s ease, transform .45s ease; }
.reveal.visible { opacity: 1; transform: translateX(0); }
@media (min-width: 860px) { .grid-2 { grid-template-columns: 1.1fr .9fr; } }
@media (max-width: 1023px) {
  .desktop-nav { display: none; }
  .burger { display: inline-flex; }
}
