:root{
  --color-primary:#0F1115;
  --color-secondary:#BCC6CC;
  --color-accent:#00FFAB;
  --font-main: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --radius:18px;
  --shadow: 0 20px 60px rgba(0,0,0,.18);
  --spacing: clamp(14px, 2.4vw, 26px);
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth; overflow-x: hidden;}
body{
  margin:0;
  font-family:var(--font-main);
  background: #FFFFFF;
  color:var(--color-primary);
  display:flex;
  flex-direction:column;
  overflow-x:hidden;
  min-height:100vh;
}

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

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:14px;
  top:14px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#fff;
  border:1px solid rgba(0,0,0,.1);
  border-radius:12px;
  z-index:9999;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid rgba(15,17,21,.08);
}
.header-inner{
  max-width:1140px;
  margin:0 auto;
  padding:14px var(--spacing);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 220px;
}
.brand-logo{
  width:34px;
  height:34px;
  border-radius:10px;
  overflow:hidden;
  box-shadow: 0 8px 24px rgba(0,255,171,.14);
}
.brand-name{
  font-weight:800;
  letter-spacing:.2px;
  font-size:14px;
  line-height:1.2;
}
.brand-name span{
  display:block;
  font-size:11px;
  font-weight:650;
  color:rgba(15,17,21,.6);
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:16px;
}
.desktop-nav a{
  font-size:13px;
  font-weight:700;
  color:rgba(15,17,21,.75);
  padding:10px 10px;
  border-radius:12px;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.desktop-nav a:hover{
  background: rgba(0,255,171,.08);
  color: rgba(15,17,21,1);
  transform: translateY(-1px);
}

.burger-btn{
  display:none;
  appearance:none;
  border:1px solid rgba(15,17,21,.12);
  background:#fff;
  border-radius:14px;
  padding:10px 12px;
  color:var(--color-primary);
  cursor:pointer;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.burger-btn:hover{
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  border-color: rgba(0,255,171,.35);
}
.burger-icon{
  width:22px;height:14px;display:inline-block;position:relative;
}
.burger-icon span{
  position:absolute;left:0;right:0;height:2px;background:var(--color-primary);border-radius:99px;
}
.burger-icon span:nth-child(1){top:0}
.burger-icon span:nth-child(2){top:6px}
.burger-icon span:nth-child(3){top:12px}
.burger-btn .burger-label{
  margin-left:10px;
  font-size:13px;
  font-weight:800;
}

.burger-overlay{
  position:fixed;
  inset:0;
  z-index:100;
  background: rgba(15,17,21,.52);
  display:none;
}
.burger-overlay.is-open{display:block}
.burger-panel{
  max-width:1023px;
  margin-left:auto;
  height:100%;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px) saturate(140%);
  border-left:1px solid rgba(15,17,21,.1);
  padding:18px var(--spacing);
  overflow:auto;
}
.burger-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(15,17,21,.08);
}
.burger-close{
  appearance:none;
  border:1px solid rgba(15,17,21,.12);
  background:#fff;
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
  font-weight:800;
}
.burger-close:hover{border-color: rgba(0,255,171,.35)}
.burger-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top:16px;
}
.burger-nav a{
  font-size:16px;
  font-weight:800;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(15,17,21,.08);
  background: rgba(255,255,255,.7);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.burger-nav a:hover{
  transform: translateY(-2px);
  border-color: rgba(0,255,171,.38);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.page-main{flex:1}

.hero{
  padding: clamp(22px, 4vw, 46px) var(--spacing);
}
.section{
  padding: 40px var(--spacing);
}
.section-inner{
  max-width:1140px;
  margin:0 auto;
}
.section-title{
  margin:0 0 18px 0;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing:.2px;
}
.section-subtitle{
  margin:0 0 22px 0;
  color: rgba(15,17,21,.72);
  font-weight:650;
}
.grid{
  display:grid;
  gap: 14px;
}
.grid-2{grid-template-columns: 1fr}
.grid-3{grid-template-columns: 1fr}
.grid-4{grid-template-columns: 1fr}

.card{
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,17,21,.08);
  box-shadow: 0 18px 60px rgba(15,17,21,.04);
  position:relative;
  overflow:hidden;
}
.card::after{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(450px 200px at 20% 10%, rgba(0,255,171,.16), transparent 50%),
              radial-gradient(400px 240px at 80% 0%, rgba(0,255,171,.10), transparent 55%);
  opacity:.0;
  transition: opacity .25s ease;
  pointer-events:none;
}
.card:hover::after{opacity:1}
.card:hover{
  border-color: rgba(0,255,171,.34);
}
.card .kicker{
  color: rgba(15,17,21,.65);
  font-weight:800;
  font-size:12px;
  letter-spacing:.26px;
  text-transform: uppercase;
}
.card h3{
  margin:8px 0 8px 0;
  font-size:16px;
}
.card p{
  margin:0;
  color: rgba(15,17,21,.72);
  font-weight: 600;
  line-height: 1.55;
}

.reveal{
  opacity:0;
  transform: translateX(18px);
  filter: blur(10px);
  transition: opacity .7s ease, transform .7s ease, filter .7s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
  filter: blur(0);
}

.hero-grid{
  max-width:1140px;
  margin:0 auto;
  display:grid;
  gap: 18px;
}
.hero-grid-1col{grid-template-columns: 1fr}

.hero-media{
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(180deg, rgba(0,255,171,.10), rgba(255,255,255,.88));
  border: 1px solid rgba(15,17,21,.08);
  padding: 16px;
  position:relative;
  overflow:hidden;
}
.hero-media::before{
  content:"";
  position:absolute;
  inset:-40px -20px auto -20px;
  height: 220px;
  background: radial-gradient(closest-side, rgba(0,255,171,.28), transparent);
  filter: blur(0px);
}
.hero-media .media-figure{
  margin: 8px 0 10px 0;
  position:relative;
  z-index:2;
  aspect-ratio: 16/10;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(15,17,21,.05), rgba(255,255,255,.82));
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-media img{
  width: min(360px, 88%);
  height:auto;
  object-fit:contain;
}

.hero-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:10px;
  position:relative;
  z-index:2;
}
.trust-badge{
  display:flex;
  align-items:center;
  gap:10px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,17,21,.08);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: 0 18px 60px rgba(15,17,21,.04);
}
.badge-dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(0,255,171,.16);
}
.trust-badge b{font-size:13px}
.trust-badge span{
  font-size:12px;
  color: rgba(15,17,21,.65);
  font-weight:700;
}

.price-row{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin: 16px 0 6px 0;
  flex-wrap:wrap;
}
.price{
  font-size: 30px;
  font-weight: 900;
  letter-spacing:-.4px;
}
.old-price{
  color: rgba(15,17,21,.5);
  font-weight: 850;
  text-decoration: line-through;
}
.hero-meta{
  margin: 12px 0 0 0;
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap:wrap;
}
.rating{
  display:flex;
  align-items:center;
  gap:10px;
}
.stars{
  display:flex;
  gap:4px;
}
.star{
  width: 16px;height:16px;
  fill: rgba(0,255,171,.98);
  filter: drop-shadow(0 0 10px rgba(0,255,171,.22));
}
.rating strong{font-size:13px}
.rating span{font-size:12px;color:rgba(15,17,21,.6);font-weight:800}

.hero-copy{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,17,21,.08);
  border-radius: calc(var(--radius) + 10px);
  padding: 18px;
  position:relative;
  overflow:hidden;
}
.hero-copy::before{
  content:"";
  position:absolute;
  inset: -20% -30% auto -30%;
  height: 240px;
  background:
    radial-gradient(closest-side, rgba(15,17,21,.08), transparent 55%),
    linear-gradient(90deg, rgba(0,255,171,.10), transparent);
  z-index:0;
}
.hero-copy > *{position:relative;z-index:1}
.hero-h1{
  margin: 0 0 10px 0;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing:-.9px;
  line-height:1.05;
}
.hero-description{
  margin: 0 0 14px 0;
  color: rgba(15,17,21,.73);
  font-weight: 650;
  line-height: 1.6;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border: 1px solid rgba(15,17,21,.10);
  background: rgba(255,255,255,.74);
  margin: 10px 0 16px 0;
}
.pill svg{flex:0 0 auto}
.pill span{
  font-weight:800;
  font-size:12px;
  letter-spacing:.14px;
  color: rgba(15,17,21,.72);
}

.order-card{
  margin-top: 12px;
  border-radius: calc(var(--radius) + 8px);
  padding: 16px;
  background: rgba(15,17,21,.96);
  color:#fff;
  box-shadow: var(--shadow);
  border:1px solid rgba(0,255,171,.22);
  position:relative;
  overflow:hidden;
}
.order-card::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(380px 160px at 15% 10%, rgba(0,255,171,.22), transparent 55%),
    radial-gradient(280px 220px at 80% 0%, rgba(255,255,255,.10), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.order-card > *{position:relative;z-index:1}
.order-title{
  margin:0 0 8px 0;
  font-size:16px;
  letter-spacing:.2px;
}
.order-subtitle{
  margin:0 0 14px 0;
  color: rgba(255,255,255,.78);
  font-weight:650;
  line-height:1.5;
}
.form{
  display:grid;
  gap:12px;
}
.field label{
  display:block;
  font-size:12px;
  font-weight:850;
  color: rgba(255,255,255,.82);
  margin-bottom:6px;
}
.field input,.field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:#fff;
  outline:none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea{min-height:92px;resize:vertical}
.field input:focus,.field textarea:focus{
  border-color: rgba(0,255,171,.6);
  box-shadow: 0 0 0 4px rgba(0,255,171,.12);
}
.helper{
  font-size:12px;
  color: rgba(255,255,255,.72);
  font-weight:650;
  line-height:1.4;
}
.gdpr-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.gdpr-row input{
  margin-top: 3px;
  width:16px;height:16px;
}
.gdpr-row span{
  font-size:12px;
  color: rgba(255,255,255,.82);
  font-weight:650;
  line-height:1.45;
}
.cta-row{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:flex-start;
  flex-wrap:wrap;
}
.btn{
  appearance:none;
  border:none;
  cursor:pointer;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 950;
  letter-spacing:.2px;
  color: #061014;
  background:
    linear-gradient(180deg, rgba(0,255,171,.98), rgba(0,255,171,.72));
  box-shadow: 0 16px 50px rgba(0,255,171,.26);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  position:relative;
  overflow:hidden;
}
.btn::before{
  content:"";
  position:absolute;
  left:-20%;
  top:-120%;
  width:140%;
  height:220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transform: rotate(16deg);
  opacity:.0;
  transition: opacity .3s ease;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(0,255,171,.32);
  filter: saturate(120%);
}
.btn:hover::before{opacity:1}
.btn:disabled{
  opacity:.55;
  cursor:not-allowed;
  transform:none;
}
.btn-secondary{
  background: transparent;
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  box-shadow:none;
}
.btn-secondary:hover{
  border-color: rgba(0,255,171,.55);
  box-shadow: 0 18px 60px rgba(0,255,171,.12);
}
.error{
  color: rgba(255,255,255,.92);
  background: rgba(255, 90, 90, .20);
  border: 1px solid rgba(255, 90, 90, .35);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 12px;
}
.success{
  color: rgba(255,255,255,.92);
  background: rgba(0,255,171,.18);
  border: 1px solid rgba(0,255,171,.35);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 12px;
}

.acc{
  display:grid;
  gap:10px;
}
.acc-item{
  border:1px solid rgba(15,17,21,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.76);
  overflow:hidden;
}
.acc-btn{
  width:100%;
  text-align:left;
  appearance:none;
  border:none;
  background: transparent;
  cursor:pointer;
  padding: 14px 14px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-weight: 900;
  color: rgba(15,17,21,.92);
}
.acc-btn:focus{
  outline:3px solid rgba(0,255,171,.25);
  outline-offset:2px;
}
.acc-panel{
  padding: 0 14px 14px 14px;
  color: rgba(15,17,21,.72);
  font-weight: 650;
  line-height:1.6;
  display:none;
}
.acc-panel.is-open{display:block}
.chev{
  width:18px;height:18px;flex:0 0 auto;
  transition: transform .2s ease;
}
.acc-item[data-open="true"] .chev{transform: rotate(180deg)}

.contact-box{
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.map-frame{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(15,17,21,.08);
  background: rgba(255,255,255,.8);
  height: 220px;
}
.map-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.mailto{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0,255,171,.10);
  border: 1px solid rgba(0,255,171,.32);
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.mailto:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 80px rgba(0,255,171,.20);
  background: rgba(0,255,171,.14);
}

.site-footer{
  border-top:1px solid rgba(15,17,21,.08);
  padding: 18px var(--spacing);
  background: rgba(255,255,255,.88);
}
.footer-inner{
  max-width:1140px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer-links a{
  color: rgba(15,17,21,.68);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 12px;
}
.footer-links a:hover{
  background: rgba(0,255,171,.08);
  color: rgba(15,17,21,1);
}
.counter{
  display:flex;
  align-items:center;
  gap:10px;
}
.counter .count{
  font-weight: 950;
  color: rgba(15,17,21,.95);
}
.social{
  display:flex;
  gap:10px;
  align-items:center;
}
.social a{
  width:40px;height:40px;
  border-radius: 14px;
  border:1px solid rgba(15,17,21,.08);
  background: rgba(255,255,255,.8);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.social a svg{
  width:18px;height:18px;
  fill: rgba(15,17,21,.72);
}
.social a:hover{
  border-color: rgba(0,255,171,.36);
  box-shadow: 0 18px 50px rgba(0,255,171,.16);
  transform: translateY(-2px);
}

.cookie-banner{
  position:fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,17,21,.10);
  border-radius: 22px;
  padding: 14px 14px;
  box-shadow: 0 40px 120px rgba(0,0,0,.16);
  display:none;
}
.cookie-banner.is-visible{display:block}
.cookie-banner h2{
  margin:0 0 10px 0;
  font-size: 15px;
}
.cookie-banner p{
  margin:0 0 12px 0;
  color: rgba(15,17,21,.70);
  font-weight:650;
  line-height:1.5;
}
.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.cookie-actions button{
  appearance:none;
  border-radius: 14px;
  padding: 10px 12px;
  cursor:pointer;
  font-weight: 950;
  border:1px solid rgba(15,17,21,.12);
  background: rgba(255,255,255,.8);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.cookie-actions button:hover{
  transform: translateY(-2px);
  border-color: rgba(0,255,171,.4);
  box-shadow: 0 22px 70px rgba(0,255,171,.18);
}
.cookie-actions .primary{
  border-color: rgba(0,255,171,.45);
  background: rgba(0,255,171,.14);
}

.cookie-modal-backdrop{
  position:fixed;
  inset:0;
  background: rgba(15,17,21,.52);
  z-index:210;
  display:none;
}
.cookie-modal-backdrop.is-open{display:block}
.cookie-modal{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width:min(680px, calc(100% - 26px));
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(15,17,21,.12);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 60px 180px rgba(0,0,0,.26);
}
.cookie-modal h2{
  margin:0 0 12px 0;
  font-size: 16px;
}
.cookie-options{
  display:grid;
  gap: 12px;
}
.cookie-option{
  border: 1px solid rgba(15,17,21,.08);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,.82);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.cookie-option b{
  font-size: 13px;
}
.cookie-option span{
  display:block;
  font-size: 12px;
  color: rgba(15,17,21,.66);
  font-weight:650;
  margin-top:4px;
}
.switch{
  display:flex;
  align-items:center;
  gap:10px;
}
.switch input[type="checkbox"]{
  width:18px;height:18px;
}
.cookie-modal-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top: 14px;
  flex-wrap:wrap;
}
.cookie-modal-actions button{
  appearance:none;
  border-radius: 14px;
  padding: 10px 12px;
  cursor:pointer;
  font-weight: 950;
  border:1px solid rgba(15,17,21,.12);
  background: rgba(255,255,255,.8);
}
.cookie-modal-actions .primary{
  border-color: rgba(0,255,171,.45);
  background: rgba(0,255,171,.14);
}

.legal-grid{
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.inline-note{
  color: rgba(15,17,21,.72);
  font-weight: 650;
  line-height: 1.6;
  margin: 0;
}

.disclaimer{
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(15,17,21,.10);
  background: rgba(15,17,21,.96);
  color: #fff;
  padding: 16px;
}
.disclaimer h3{
  margin:0 0 8px 0;
  font-size: 15px;
}
.disclaimer p{
  margin:0;
  color: rgba(255,255,255,.80);
  font-weight: 650;
  line-height:1.6;
}

@media (min-width: 760px){
  .grid-2{grid-template-columns: repeat(2,1fr)}
  .grid-3{grid-template-columns: repeat(3,1fr)}
  .grid-4{grid-template-columns: repeat(4,1fr)}
  .hero-grid-1col{grid-template-columns: 1fr}
  .hero-grid-2col{grid-template-columns: 1.25fr .75fr}
  .hero-grid{gap: 20px}
  .contact-box{grid-template-columns: 1.1fr .9fr; align-items:start}
  .legal-grid{grid-template-columns: 1fr 1fr}
}

@media (max-width: 1023px){
  .desktop-nav{display:none}
  .burger-btn{display:inline-flex; align-items:center}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal{transition:none; opacity:1; transform:none; filter:none}
  .btn, .card, .mailto, .social a{transition:none}
}
