:root{
  --bg:#ffffff;
  --paper:#ffffff;
  --text:#0b0f14;
  --muted:#5b6470;
  --line:#e7ebf0;
  --line2:#d7dde6;

  --accent:#ffcc00;      /* hazard yellow */
  --accent-dark:#b68f00; /* for hover */
  --ok:#0ea5e9;

  --shadow: 0 18px 50px rgba(11,15,20,.10);
  --r: 16px;
  --r2: 22px;

  --container: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial;
  color:var(--text);
  background:
    linear-gradient(180deg, #fff 0%, #fff 100%);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block; height:auto}
.container{width:min(var(--container), calc(100% - 40px)); margin:0 auto}

/* subtle paper texture */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* HEADER — clean editorial */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding: 14px 0;
}

.brand{
  display:flex; align-items:center; gap:.8rem;
  font-weight: 900;
  letter-spacing: .3px;
}
.brand-mark{
  width:44px; height:44px;
  border-radius: 999px;
  border: 2px solid var(--text);
  display:grid; place-items:center;
  position:relative;
}
.brand-mark::after{
  content:"";
  position:absolute;
  width:14px; height:14px;
  right:-3px; top:-3px;
  background: var(--accent);
  border:2px solid var(--text);
  border-radius: 999px;
}
.brand-mark i{font-size: 18px}
.brand .word{
  display:flex; flex-direction:column; line-height:1.05;
}
.brand .word b{font-size: 1.02rem}
.brand .word span{font-size:.78rem; color:var(--muted); font-weight: 750}

/* NAV underline style */
.nav{display:flex; align-items:center; gap:16px}
.nav a{
  color: var(--muted);
  font-weight: 800;
  padding: 10px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav a:hover{
  color: var(--text);
  border-color: var(--accent);
}

.mobile-toggle{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid var(--line2);
  background:#fff;
  cursor:pointer;
}
.mobile-drawer{
  display:none;
  position:fixed;
  inset: 72px 16px auto 16px;
  background:#fff;
  border:1px solid var(--line2);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px;
  z-index:60;
}
.mobile-drawer a{
  display:flex; align-items:center; gap:.6rem;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 800;
  color: var(--text);
}
.mobile-drawer a:hover{background: #f6f8fb}

/* BUTTONS — minimal, square-ish */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.6rem;
  padding:.9rem 1.05rem;
  border-radius: 12px;
  border: 2px solid var(--text);
  background:#fff;
  color: var(--text);
  font-weight: 900;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover{transform: translateY(-1px); background: #f6f8fb}
.btn.primary{
  background: var(--accent);
}
.btn.primary:hover{background: #ffd84d}
.btn.ghost{
  border-color: var(--line2);
  color: var(--text);
}

/* MARKER highlight */
.marker{
  background: linear-gradient(transparent 62%, rgba(255,204,0,.55) 62%);
  padding: 0 .08em;
}

/* HERO — split editorial with “plan” feel */
.hero{padding: 44px 0 18px}
.hero-wrap{
  border: 1px solid var(--line);
  border-radius: var(--r2);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
}
.hero-copy{
  padding: 22px;
  border-right: 1px solid var(--line);
}
.hero h1{
  margin: 10px 0 10px;
  font-size: clamp(2.0rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -1px;
}
.hero p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-actions{display:flex; flex-wrap:wrap; gap:10px}

.hero-media{
  min-height: 360px;
  position:relative;
  background:
    url("/assets/img/hero.png");
  background-size: cover;
  background-position: center;
}
.hero-media::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.92));
}
.hero-stats{
  position:absolute;
  left: 18px; right: 18px; bottom: 18px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.stat{
  background:#fff;
  border:1px solid var(--line2);
  border-radius: 16px;
  padding: 12px;
}
.stat .num{
  font-weight: 950;
  font-size: 1.35rem;
  letter-spacing:-.4px;
}
.stat .lbl{color:var(--muted); margin-top:4px; font-weight: 800}

/* Sections */
.section{padding: 22px 0}
.section-title{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap: 12px;
  margin-bottom: 12px;
}
.section-title h2{
  margin:0;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  letter-spacing: -.4px;
}
.section-title p{margin:0; color:var(--muted); max-width: 620px; line-height:1.65}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

/* Cards — clean borders, no glow */
.card{
  grid-column: span 4;
  border-radius: var(--r);
  border: 1px solid var(--line2);
  background:#fff;
  overflow:hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: var(--text);
}
.card .pad{padding: 16px}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.65}
.icon{
  width:44px; height:44px;
  border-radius: 14px;
  border:2px solid var(--text);
  display:grid; place-items:center;
  margin-bottom: 12px;
  background: #fff;
  position:relative;
}
.icon::after{
  content:"";
  position:absolute;
  inset:auto 6px 6px auto;
  width:10px; height:10px;
  border-radius: 999px;
  background: var(--accent);
  border:2px solid var(--text);
}
.icon i{color: var(--text)}

/* Split panels */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.panel{
  border-radius: var(--r2);
  border:1px solid var(--line2);
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel .pad{padding: 16px}
.panel p{color: var(--muted); line-height:1.75; margin:0}

.photo{
  min-height: 260px;
  background-size: cover;
  background-position:center;
}
.photo.one{background-image:url("/assets/img/prod1.png")}
.photo.two{background-image:url("/assets/img/prod2.png")}

/* Forms — crisp */
.form{display:grid; gap:10px}
.field{display:grid; gap:6px}
label{color: var(--muted); font-weight:900; font-size:.95rem}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border:1px solid var(--line2);
  background:#fff;
  color: var(--text);
  outline:none;
}
textarea{min-height: 120px; resize: vertical}
input:focus, textarea:focus{border-color: var(--text)}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.note{color: var(--muted); font-size:.92rem; line-height:1.6}

/* Footer — editorial */
.footer{
  margin-top: 26px;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-top{
  padding: 22px 0;
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 14px;
}
.footer h4{margin:0 0 10px}
.footer p, .footer a{color: var(--muted); line-height:1.7}
.footer a:hover{color: var(--text)}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  gap: 10px;
  padding: 14px 0 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size:.92rem;
}
.social{display:flex; gap:10px; align-items:center}
.social a{
  width:42px; height:42px;
  border-radius: 14px;
  border:1px solid var(--line2);
  background:#fff;
  display:grid; place-items:center;
}

/* Page hero */
.page-hero{padding: 30px 0 18px}
.page-hero .box{
  border-radius: var(--r2);
  border:1px solid var(--line2);
  background:#fff;
  padding: 16px;
  box-shadow: var(--shadow);
}

/* Cookie */
.cookie-banner{
  position:fixed;
  left:16px; right:16px; bottom:16px;
  z-index:100;
  display:none;
}
.cookie-banner .box{
  width:min(980px, 100%);
  margin: 0 auto;
  border-radius: 18px;
  border:1px solid var(--line2);
  background:#fff;
  box-shadow: var(--shadow);
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  justify-content:space-between;
}
.cookie-banner p{
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 720px;
}
.cookie-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  align-items:center;
  justify-content:flex-end;
}

/* Reveal — very subtle */
.reveal{
  opacity:0;
  transform: translateY(6px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.show{opacity:1; transform: translateY(0)}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .hero-copy{border-right:none; border-bottom:1px solid var(--line)}
  .card{grid-column: span 6}
  .split{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr}
}
@media (max-width: 700px){
  .nav{display:none}
  .mobile-toggle{display:inline-grid; place-items:center}
  .card{grid-column: span 12}
  .form-row{grid-template-columns:1fr}
  .cookie-banner .box{flex-direction:column; align-items:stretch}
  .cookie-actions{justify-content:flex-start}
  .btn.primary {display: none;}
  .btn.ghost {font-size: 14px;}
}
