@font-face{
  font-family:ui-sans;
  src:local("Inter"),local("SF Pro Display"),local("Segoe UI"),local("Roboto");
  font-display:swap;
}

:root{
  --color-primary:#F9FAFB;
  --color-secondary:#2D3436;
  --color-accent:#FFC300;
  --color-bg:#E9ECEF;
  --font-main:ui-sans,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  --radius:16px;
  --shadow:0 12px 30px rgba(45,52,54,.14);
  --spacing:clamp(16px,2.2vw,28px);
  --container:1100px;
  --header-h:72px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth; overflow-x: hidden}
body{
  margin:0;
  min-height:100vh;
  overflow-x: hidden;
  display:flex;
  flex-direction:column;
  font-family:var(--font-main);
  color:var(--color-secondary);
  background:
    radial-gradient(800px 500px at 20% 10%, rgba(255,195,0,.18), transparent 55%),
    radial-gradient(760px 520px at 80% 0%, rgba(45,52,54,.10), transparent 55%),
    linear-gradient(180deg, var(--color-primary), var(--color-bg) 65%, var(--color-primary));
}

img{max-width:100%;height:auto;display:block}
a{color:inherit}
button,input,textarea{font:inherit}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;height:auto;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(249,250,251,.92);
  box-shadow:var(--shadow);
  z-index:9999;
}

.page{
  flex:1;
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

.container{
  width:min(var(--container), calc(100% - 2*var(--spacing)));
  margin-inline:auto;
}

header.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(140%) blur(14px);
  background:rgba(249,250,251,.78);
  border-bottom:1px solid rgba(45,52,54,.08);
}
.header-inner{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.brand-mark{
  width:34px;height:34px;
  border-radius:12px;
  box-shadow:0 10px 22px rgba(45,52,54,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.7), rgba(233,236,239,.7));
  overflow:hidden;
}
.brand-mark img{width:34px;height:34px;object-fit:contain}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-text strong{
  letter-spacing:.02em;
  font-weight:740;
}
.brand-text span{
  font-size:12px;
  opacity:.7;
  white-space:nowrap;
}

nav.primary-nav{
  display:none;
  align-items:center;
  gap:6px;
}
nav.primary-nav a{
  text-decoration:none;
  padding:10px 10px;
  border-radius:999px;
  opacity:.88;
  position:relative;
  transition:transform .22s ease, box-shadow .22s ease, background-color .22s ease, opacity .22s ease;
}
nav.primary-nav a:hover, nav.primary-nav a:focus-visible{
  opacity:1;
  background:rgba(45,52,54,.06);
  box-shadow:0 0 0 10px rgba(255,195,0,.0);
  transform:translateZ(0) scale(1.02);
  outline:none;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.pill{
  border:1px solid rgba(45,52,54,.10);
  background:rgba(233,236,239,.65);
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
}
.pill:hover,.pill:focus-visible{
  outline:none;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(45,52,54,.14);
  border-color:rgba(45,52,54,.18);
}
.pill-primary{
  background:var(--color-secondary);
  color:var(--color-primary);
  border-color:rgba(45,52,54,.28);
}
.pill-primary:hover,.pill-primary:focus-visible{
  box-shadow:0 0 0 10px rgba(255,195,0,.12), 0 12px 30px rgba(45,52,54,.16);
}

.burger{
  width:44px;height:44px;
  padding:0;
  border-radius:14px;
  display:grid;
  place-items:center;
}
.burger-lines{
  width:18px;height:12px;
  position:relative;
}
.burger-lines span{
  position:absolute;
  left:0;right:0;
  height:2px;
  background:currentColor;
  border-radius:999px;
  transition:transform .24s ease, top .24s ease, opacity .24s ease;
}
.burger-lines span:nth-child(1){top:0}
.burger-lines span:nth-child(2){top:5px}
.burger-lines span:nth-child(3){top:10px}
.burger[aria-expanded="true"] .burger-lines span:nth-child(1){top:5px;transform:rotate(45deg)}
.burger[aria-expanded="true"] .burger-lines span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] .burger-lines span:nth-child(3){top:5px;transform:rotate(-45deg)}

.overlay{
  position:fixed;
  inset:0;
  display:none;
  z-index:80;
}
.overlay[aria-hidden="false"]{display:block}
.overlay-backdrop{
  position:absolute;
  inset:0;
  background:rgba(45,52,54,.55);
  backdrop-filter:blur(8px);
  animation:fadeIn .18s ease both;
}
.overlay-panel{
  position:absolute;
  top:12px;
  right:12px;
  left:12px;
  max-width:520px;
  margin-left:auto;
  border-radius:calc(var(--radius) + 6px);
  background:rgba(249,250,251,.92);
  box-shadow:var(--shadow);
  border:1px solid rgba(45,52,54,.10);
  overflow:hidden;
  transform-origin:top right;
  animation:panelIn .22s ease both;
}
.overlay-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 14px 10px;
}
.overlay-nav{
  padding:0 12px 14px;
  display:grid;
  gap:6px;
}
.overlay-nav a{
  text-decoration:none;
  padding:12px 12px;
  border-radius:16px;
  background:rgba(233,236,239,.70);
  border:1px solid rgba(45,52,54,.10);
  transition:transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.overlay-nav a:hover,.overlay-nav a:focus-visible{
  outline:none;
  transform:translateY(-1px);
  box-shadow:0 12px 26px rgba(45,52,54,.14), 0 0 0 10px rgba(255,195,0,.10);
}

main{flex:1}

section.block{
  padding:clamp(52px, 8vw, 96px) 0;
  position:relative;
}
.block .block-inner{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
  align-items:center;
}
.block h1{
  font-size:clamp(34px, 4.2vw, 54px);
  letter-spacing:-.02em;
  margin:0;
}
.block h2{
  font-size:clamp(26px, 3.2vw, 34px);
  letter-spacing:-.01em;
  margin:0;
}
.kicker{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  font-size:13px;
  opacity:.8;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(45,52,54,.10);
  background:rgba(249,250,251,.70);
}
.dot{
  width:8px;height:8px;
  border-radius:99px;
  background:var(--color-accent);
  box-shadow:0 0 0 6px rgba(255,195,0,.14);
}

.hero{
  padding-top:clamp(44px, 7vw, 82px);
}
.hero-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}
.orb{
  position:absolute;
  border-radius:999px;
  filter:blur(0.2px);
  opacity:.75;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.90), rgba(255,195,0,.32) 42%, rgba(45,52,54,.08) 70%, transparent 72%),
    radial-gradient(circle at 70% 70%, rgba(233,236,239,.90), rgba(45,52,54,.08) 65%, transparent 72%);
  box-shadow:0 30px 80px rgba(45,52,54,.10);
  transform:translateZ(0);
}
.orb.one{width:520px;height:520px;left:-220px;top:-260px}
.orb.two{width:420px;height:420px;right:-190px;top:-220px}
.orb.three{width:520px;height:520px;right:-260px;bottom:-340px;opacity:.55}

.glass{
  border-radius:calc(var(--radius) + 10px);
  background:linear-gradient(180deg, rgba(249,250,251,.85), rgba(233,236,239,.62));
  border:1px solid rgba(45,52,54,.10);
  box-shadow:var(--shadow);
}
.hero-grid{
  display:grid;
  gap:18px;
}
.hero-copy{
  padding:clamp(18px, 3vw, 26px);
}
.lead{
  font-size:clamp(15px, 2vw, 18px);
  line-height:1.55;
  opacity:.92;
  margin:10px 0 0;
}
.hero-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.rating{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(45,52,54,.06);
  border:1px solid rgba(45,52,54,.10);
}
.stars{
  letter-spacing:.12em;
  font-variant-numeric:tabular-nums;
}
.price-row{
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.price{
  font-size:30px;
  font-weight:780;
}
.price-old{
  opacity:.6;
  text-decoration:line-through;
}
.trust-badge{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:18px;
  background:rgba(255,195,0,.10);
  border:1px solid rgba(255,195,0,.30);
}

.order-card{
  padding:clamp(18px, 3vw, 26px);
}
.order-top{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  align-items:start;
  text-align:center;
}
.product-shot{
  width:84px;height:84px;
  border-radius:18px;
  background:rgba(255,255,255,.6);
  border:1px solid rgba(45,52,54,.10);
  overflow:hidden;
  margin-inline:auto;
}
.product-shot img{width:84px;height:84px;object-fit:contain}
.order-top h3{
  margin:0;
  font-size:18px;
  letter-spacing:-.01em;
}
.order-top p{margin:4px 0 0;opacity:.78;font-size:13px;line-height:1.35}

@media (min-width: 520px){
  .order-top{
    grid-template-columns:84px 1fr;
    align-items:center;
    text-align:left;
  }
  .product-shot{margin-inline:0}
}

form.order-form{
  margin-top:16px;
  display:grid;
  gap:12px;
}
.grid-2{
  display:grid;
  gap:12px;
  grid-template-columns:1fr;
}
label.field{
  display:grid;
  gap:6px;
  font-size:13px;
  opacity:.92;
}
.control{
  appearance:none;
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(45,52,54,.14);
  background:rgba(249,250,251,.75);
  transition:box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}
.control:focus{
  outline:none;
  border-color:rgba(255,195,0,.65);
  box-shadow:0 0 0 10px rgba(255,195,0,.12);
}
.helper{
  font-size:12px;
  opacity:.72;
  line-height:1.35;
}
.row{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.row input[type="checkbox"]{
  margin-top:3px;
  width:18px;height:18px;
  accent-color:var(--color-accent);
}
.error{
  color:#8a1f11;
  background:rgba(255,195,0,.12);
  border:1px solid rgba(255,195,0,.32);
  padding:10px 12px;
  border-radius:14px;
  display:none;
}
.error[aria-hidden="false"]{display:block}

.cards{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.card{
  padding:18px;
  border-radius:calc(var(--radius) + 8px);
  background:linear-gradient(180deg, rgba(249,250,251,.76), rgba(233,236,239,.60));
  border:1px solid rgba(45,52,54,.10);
  box-shadow:0 10px 28px rgba(45,52,54,.10);
  transition:transform .22s ease, box-shadow .22s ease;
}
.card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(45,52,54,.14), 0 0 0 12px rgba(255,195,0,.08);
}
.card h3{margin:0 0 8px;font-size:16px;letter-spacing:-.01em}
.card p{margin:0;opacity:.82;line-height:1.55}

.faq{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.faq button{
  text-align:left;
  width:100%;
}
.faq-item{
  border-radius:calc(var(--radius) + 8px);
  border:1px solid rgba(45,52,54,.10);
  background:rgba(249,250,251,.70);
  overflow:hidden;
}
.faq-q{
  padding:14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border:0;
  background:transparent;
  cursor:pointer;
}
.faq-q:focus-visible{outline:none;box-shadow:0 0 0 10px rgba(255,195,0,.12)}
.faq-a{
  padding:0 14px 14px;
  opacity:.84;
  line-height:1.55;
  display:none;
}
.faq-item[data-open="true"] .faq-a{display:block}
.chev{
  width:10px;height:10px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
  transition:transform .22s ease;
  opacity:.7;
}
.faq-item[data-open="true"] .chev{transform:rotate(225deg)}

.legal-disclaimer{
  margin-top:16px;
  padding:14px 14px;
  border-radius:18px;
  background:rgba(45,52,54,.05);
  border:1px solid rgba(45,52,54,.10);
  opacity:.9;
  line-height:1.55;
}

.contact-box{
  display:grid;
  gap:10px;
  padding:18px;
}
.contact-box a{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(45,52,54,.10);
  background:rgba(249,250,251,.72);
  transition:transform .22s ease, box-shadow .22s ease;
  width:fit-content;
}
.contact-box a:hover,.contact-box a:focus-visible{
  outline:none;
  transform:translateY(-1px);
  box-shadow:0 12px 28px rgba(45,52,54,.14), 0 0 0 12px rgba(255,195,0,.10);
}

footer.site-footer{
  margin-top:auto;
  padding:28px 0;
  border-top:1px solid rgba(45,52,54,.10);
  background:rgba(249,250,251,.80);
  backdrop-filter:saturate(140%) blur(14px);
}
.footer-grid{
  display:grid;
  gap:14px;
  align-items:start;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
}
.footer-links a{
  opacity:.85;
  text-decoration:none;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(233,236,239,.55);
  border:1px solid rgba(45,52,54,.08);
}
.footer-links a:hover,.footer-links a:focus-visible{
  outline:none;
  box-shadow:0 0 0 10px rgba(255,195,0,.10);
  opacity:1;
}
.small{
  font-size:12px;
  opacity:.78;
  line-height:1.45;
}

.cookie-banner{
  position:fixed;
  left:0;right:0;
  bottom:0;
  padding:14px;
  z-index:90;
  display:none;
}
.cookie-banner[aria-hidden="false"]{display:block}
.cookie-card{
  width:min(980px, calc(100% - 2*var(--spacing)));
  margin:0 auto;
  padding:14px 14px;
  border-radius:calc(var(--radius) + 10px);
  border:1px solid rgba(45,52,54,.12);
  background:rgba(249,250,251,.92);
  box-shadow:0 18px 44px rgba(45,52,54,.18);
  display:flex;
  flex-direction:column;
  gap:12px;
}
.cookie-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.cookie-actions .pill{flex:1}
.cookie-actions .pill:not(.pill-primary){background:rgba(233,236,239,.72)}

.modal{
  position:fixed;
  inset:0;
  z-index:95;
  display:none;
}
.modal[aria-hidden="false"]{display:block}
.modal .overlay-backdrop{animation:fadeIn .18s ease both}
.modal-panel{
  position:absolute;
  left:12px;right:12px;
  top:50%;
  transform:translateY(-50%);
  width:min(640px, calc(100% - 24px));
  margin:0 auto;
  background:rgba(249,250,251,.95);
  border:1px solid rgba(45,52,54,.12);
  border-radius:calc(var(--radius) + 12px);
  box-shadow:0 18px 54px rgba(45,52,54,.20);
  overflow:hidden;
  animation:panelIn .22s ease both;
}
.modal-head{
  padding:14px 14px 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.modal-body{
  padding:0 14px 14px;
  display:grid;
  gap:12px;
}
.toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 12px;
  border-radius:18px;
  background:rgba(233,236,239,.62);
  border:1px solid rgba(45,52,54,.10);
}
.toggle small{opacity:.72}
.toggle input[type="checkbox"]{
  width:22px;height:22px;
  accent-color:var(--color-accent);
}

.reveal{
  opacity:0;
  transform:translateY(10px) scale(.99);
  transition:opacity .65s ease, transform .65s ease;
  will-change:opacity,transform;
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0) scale(1);
}

@media (min-width: 860px){
  .hero-grid{grid-template-columns:1.05fr .95fr;gap:18px}
  .grid-2{grid-template-columns:1fr 1fr}
  .cards{grid-template-columns:repeat(3, 1fr)}
  .footer-grid{grid-template-columns:1.1fr .9fr}
}
@media (min-width: 1024px){
  nav.primary-nav{display:flex}
  .burger{display:none}
}

@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes panelIn{from{opacity:0;transform:translateY(-6px) scale(.985)}to{opacity:1;transform:translateY(0) scale(1)}}
