:root{
  --ink:#101433;
  --muted:#4a557a;
  --stroke: rgba(16,20,51,.10);

  /* Big playful palette */
  --blue:#13b5ff;
  --pink:#ff4fd8;
  --yellow:#ffd84a;
  --orange:#ff8a2a;
  --purple:#7a5cff;
  --green:#2fe7a9;

  --shadow: 0 18px 40px rgba(16,20,51,.12);
  --radius: 28px;
  --max: 1160px;
  --font: ui-rounded, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:#ffffff;
}

/* ====== Topbar ====== */
.topbar{
  position:sticky;
  top:0;
  z-index:60;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16,20,51,.08);
}
.container{max-width:var(--max); margin:0 auto; padding:0 18px;}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 260px;
}
.brand img{height:64px; width:auto; display:block} /* BIGGER LOGO */
.brand .sub{font-size:12px; color:var(--muted); font-weight:800}
.menu{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
}
.menu a{
  font-weight:1000;
  color:var(--ink);
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid transparent;
}
.menu a.active{
  border-color: rgba(16,20,51,.12);
  background: rgba(16,20,51,.04);
}
.actions{display:flex; gap:10px; align-items:center; justify-content:flex-end;}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(16,20,51,.12);
  background: #fff;
  box-shadow: 0 8px 22px rgba(16,20,51,.08);
  font-weight:1000;
}
.pill small{font-weight:900; color:var(--muted)}

/* ====== Section color blocks ====== */
.block{
  padding: 44px 0;
  position:relative;
  overflow:hidden;
}
.block.white{background:#fff;}
.block.blue{background: linear-gradient(135deg, rgba(19,181,255,.22), rgba(122,92,255,.14));}
.block.pink{background: linear-gradient(135deg, rgba(255,79,216,.18), rgba(255,138,42,.14));}
.block.yellow{background: linear-gradient(135deg, rgba(255,216,74,.26), rgba(47,231,169,.14));}
.block:before{
  content:"";
  position:absolute;
  inset:-120px;
  background:
    radial-gradient(240px 200px at 12% 18%, rgba(255,255,255,.55), transparent 60%),
    radial-gradient(240px 200px at 86% 22%, rgba(255,255,255,.40), transparent 62%),
    radial-gradient(260px 220px at 70% 86%, rgba(255,255,255,.38), transparent 65%);
  opacity:.85;
  pointer-events:none;
}
.block .container{position:relative}

/* ====== Cards & type ====== */
.card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(16,20,51,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
h1{
  margin: 0;
  font-size: clamp(36px, 4.3vw, 64px);
  line-height: 1.02;
  letter-spacing: -.8px;
  font-weight: 1000;
}
h2{
  margin:0 0 10px;
  font-size: 34px;
  font-weight: 1000;
  letter-spacing: -.4px;
}
.lead{
  margin: 12px 0 0;
  font-size: 19px;
  color: var(--muted);
  font-weight: 800;
  max-width: 62ch;
}
.sub{
  color: var(--muted);
  font-weight: 800;
  margin: 0 0 16px;
  max-width: 78ch;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius: 999px;
  background: #fff;
  border:1px solid rgba(16,20,51,.10);
  padding: 9px 14px;
  box-shadow: 0 10px 24px rgba(16,20,51,.08);
  font-weight:1000;
}
.badge i{
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(90deg,var(--pink),var(--purple),var(--blue),var(--green),var(--yellow),var(--orange));
  display:inline-block;
}

.cta{display:flex; gap:10px; flex-wrap:wrap; margin-top: 16px;}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 13px 16px;
  border-radius: 18px;
  border:1px solid rgba(16,20,51,.12);
  background:#fff;
  font-weight: 1000;
  box-shadow: 0 10px 22px rgba(16,20,51,.10);
}
.btn.primary{
  background: linear-gradient(135deg, rgba(19,181,255,.28), rgba(122,92,255,.22));
  border-color: rgba(19,181,255,.35);
}
.btn.pink{
  background: linear-gradient(135deg, rgba(255,79,216,.22), rgba(255,138,42,.18));
  border-color: rgba(255,79,216,.30);
}
.btn.yellow{
  background: linear-gradient(135deg, rgba(255,216,74,.30), rgba(47,231,169,.18));
  border-color: rgba(255,216,74,.35);
}

/* Layout helpers */
.grid-hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
  align-items:stretch;
}
.kpis{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.kpi{
  border-radius: 20px;
  border: 1px solid rgba(16,20,51,.08);
  background: rgba(16,20,51,.02);
  padding: 12px;
}
.kpi .big{font-weight:1000}
.kpi .sub{font-size: 13px; color: var(--muted); font-weight:850; margin-top:4px}

.tiles{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tile{
  border-radius: 26px;
  border:1px solid rgba(16,20,51,.10);
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 30px rgba(16,20,51,.12);
  padding: 18px;
  position:relative;
  overflow:hidden;
}
.tile h3{margin:0 0 6px; font-weight:1000; font-size:18px}
.tile p{margin:0; color:var(--muted); font-weight:800}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.list{margin:0; padding-left: 18px; color:var(--muted); font-weight:850}

.notice{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 20px;
  border: 1px dashed rgba(16,20,51,.22);
  background: rgba(255,216,74,.18);
  color: var(--muted);
  font-weight: 900;
}

/* Images */
.hero-img{
  width:100%;
  border-radius: var(--radius);
  border:1px solid rgba(16,20,51,.10);
  box-shadow: var(--shadow);
  display:block;
}
.img-row{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.img-card img{
  width:100%;
  height: 180px;
  object-fit: cover;
  border-radius: 22px;
  border:1px solid rgba(16,20,51,.10);
  box-shadow: 0 12px 26px rgba(16,20,51,.10);
  display:block;
  background:#fff;
}
.logo-strip{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-start;
}
.logo-strip img{
  height: 34px;
  width:auto;
  display:block;
  opacity:.95;
}

/* Footer */
.footer{
  border-top:1px solid rgba(16,20,51,.08);
  padding: 22px 0;
  background: #fff;
}
.footer .row{display:flex; gap:14px; justify-content:space-between; flex-wrap:wrap}
.footer small{color:var(--muted); font-weight:850}
.social a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(16,20,51,.10);
  background:#fff;
  font-weight:1000;
  margin-right:8px;
}

@media (max-width: 980px){
  .grid-hero{grid-template-columns:1fr}
  .tiles{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .img-row{grid-template-columns:1fr}
  .brand img{height:58px}
}


/* Social icon buttons */
.social a{
  gap:10px;
}
.social a img{
  width:18px;
  height:18px;
  object-fit:contain;
  display:block;
}
/* Product photo grid */
.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.product-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(16,20,51,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.product-card img{
  width:100%;
  height: 220px;
  object-fit: contain;
  background:#fff;
  display:block;
  padding: 18px;
}
.product-card .cap{
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(16,20,51,.08);
}
.product-card .cap b{display:block; font-weight:1000}
.product-card .cap span{display:block; color:var(--muted); font-weight:850; margin-top:4px; font-size:13px}
@media (max-width: 980px){
  .product-grid{grid-template-columns:1fr}
  .product-card img{height: 240px}
}


/* ====== IMPROVED MOBILE OPTIMIZATION ====== */
@media (max-width: 980px){

  .nav{ flex-wrap: wrap; gap: 10px; }

  .brand{
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .brand img{ height: 54px; }

  .menu{ width: 100%; justify-content: center; }

  .actions{ width: 100%; justify-content: center; }

  .pill{ width: 100%; justify-content: center; }

  .grid-hero, .split, .tiles, .img-row, .kpis, .product-grid{
    grid-template-columns: 1fr;
  }

  .block{ padding: 28px 0; }
  .card{ padding: 16px; }

  h1{ font-size: 38px; }
  h2{ font-size: 28px; }
  .lead{ font-size: 16px; }

  .hero-img{
    height: 220px;
    object-fit: cover;
  }

  .product-card img{
    height: 240px;
    object-fit: contain;
  }
}
