/* =========================
   FIGMA-LIKE DESIGN TOKENS
   ========================= */
:root{
  --bg0:#070A13;
  --bg1:#0B1024;
  --bg2:#0F1733;

  --text:#EAF0FF;
  --muted:rgba(234,240,255,0.74);

  --stroke:rgba(255,255,255,0.12);
  --stroke2:rgba(255,255,255,0.08);
  --glass:rgba(255,255,255,0.07);

  --radius-1:14px;
  --radius-2:18px;
  --radius-3:22px;

  --shadow-1: 0 18px 45px rgba(0,0,0,0.45);
  --shadow-2: 0 22px 70px rgba(0,0,0,0.50);

  --purple:#7C3AED;
  --green:#22C55E;
  --blue:#60A5FA;
  --wa:#25D366;

  --gradA: linear-gradient(90deg, #A78BFA, #22C55E);
  --gradB: linear-gradient(90deg, #60A5FA, #A78BFA);
}

/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 820px at 18% 10%, rgba(124,58,237,.22), transparent 60%),
    radial-gradient(1000px 700px at 90% 35%, rgba(34,197,94,.18), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 55%, var(--bg0));
}

.container{width:min(1120px, 92%); margin:0 auto}

/* Utilities */
.muted{color:var(--muted)}
.hl{
  padding:2px 8px;
  border-radius:999px;
  background: rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 22px rgba(0,0,0,0.20);
  font-weight:900;
}

/* Topbar */
.topbar{
  background: rgba(255,255,255,0.04);
  border-bottom:1px solid var(--stroke2);
}
.topbar__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:10px 0;
  flex-wrap:wrap;
}
.topbar__left{display:flex; gap:10px; flex-wrap:wrap}
.topbar__right{display:flex; gap:12px; flex-wrap:wrap; align-items:center}

/* Chips */
.chip{
  display:inline-flex; align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  font-size:13px;
}
.chip--soft{
  background: rgba(255,255,255,0.06);
  color:var(--muted);
}

/* Links */
.link{
  color:var(--text);
  text-decoration:none;
  opacity:.88;
}
.link:hover{opacity:1; text-decoration:underline}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter: blur(12px);
  background: rgba(7,10,19,0.60);
  border-bottom: 1px solid var(--stroke2);
}
.header__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:14px 0;
  flex-wrap:wrap;
}
.brand{display:flex; gap:12px; align-items:center}
.brand__mark{
  width:46px; height:46px;
  border-radius:16px;
  display:grid; place-items:center;
  font-weight:1000;
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,197,94,.85));
  box-shadow: 0 18px 40px rgba(124,58,237,.22);
}
.brand__title{font-weight:1000; letter-spacing:.2px}
.brand__sub{font-size:13px; color:var(--muted); margin-top:2px}

.nav{display:flex; gap:10px; flex-wrap:wrap}
.nav__link{
  color:var(--text);
  text-decoration:none;
  padding:9px 10px;
  border-radius:14px;
  opacity:.86;
}
.nav__link:hover{
  opacity:1;
  background: rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.10);
}

/* Buttons */
.btn{
  border:none;
  cursor:pointer;
  text-decoration:none;
  font-weight:900;
  padding:11px 14px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  color:white;
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,197,94,.85));
  box-shadow: 0 18px 46px rgba(124,58,237,.20);
}
.btn--primary:hover{transform: translateY(-2px); box-shadow: 0 24px 70px rgba(124,58,237,.26)}
.btn--ghost{
  color:var(--text);
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
}
.btn--ghost:hover{transform: translateY(-2px); background: rgba(255,255,255,0.08)}
.btn--wa{
  color:#DFFFEA;
  background: rgba(37,211,102,.16);
  border:1px solid rgba(37,211,102,.35);
}
.btn--wa:hover{transform: translateY(-2px); box-shadow: 0 20px 55px rgba(37,211,102,.14)}
.full{width:100%}

/* Hero */
.hero{position:relative; padding:44px 0 22px}
.hero__bgGlow{
  position:absolute; inset:-140px 0 auto 0; height:560px;
  background:
    radial-gradient(420px 240px at 18% 20%, rgba(124,58,237,.36), transparent 70%),
    radial-gradient(420px 240px at 82% 30%, rgba(34,197,94,.22), transparent 70%);
  pointer-events:none;
  filter: blur(2px);
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
  position:relative;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  color:var(--muted);
  font-size:13px;
}
.dot{
  width:9px; height:9px; border-radius:999px;
  background: rgba(34,197,94,0.95);
  box-shadow: 0 0 0 6px rgba(34,197,94,0.12);
}
.hero__title{
  margin:14px 0 10px;
  font-size:46px;
  line-height:1.05;
  letter-spacing:-.6px;
}
.grad{
  background: var(--gradA);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.grad2{
  background: var(--gradB);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__sub{
  margin:0 0 14px;
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
}

/* Impact line */
.impact{
  margin:10px 0 16px;
  padding:12px 14px;
  border-radius: var(--radius-2);
  border:1px solid rgba(124,58,237,.28);
  background: rgba(124,58,237,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}
.impact__muted{color:rgba(234,240,255,0.80); margin-left:6px}

.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 16px}

/* Stats */
.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.stat{
  padding:12px;
  border-radius: var(--radius-2);
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
}
.stat__big{font-weight:1000}
.stat__small{margin-top:4px; font-size:12px; color:var(--muted)}

/* Glass Card */
.glass{
  background: var(--glass);
  border:1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-3);
  padding:16px;
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(14px);
}
.card3d{transform-style:preserve-3d}

/* Card head */
.cardHead{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}
.cardHead__title{font-weight:1000; font-size:18px}
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(34,197,94,.14);
  border:1px solid rgba(34,197,94,.30);
  color: rgba(234,240,255,0.90);
}

.label{
  display:block;
  margin-top:10px;
  margin-bottom:6px;
  font-size:13px;
  color: rgba(234,240,255,0.90);
}
.input{
  width:100%;
  border-radius:16px;
  padding:11px 12px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(7,10,19,0.45);
  color:var(--text);
  outline:none;
}
.input:focus{
  border-color: rgba(167,139,250,0.55);
  box-shadow: 0 0 0 4px rgba(124,58,237,.18);
}
.hint{margin-top:10px; font-size:12px; color:var(--muted)}

.contactMini{margin-top:12px; padding-top:12px; border-top:1px solid rgba(255,255,255,0.10)}
.contactMini__row{margin-top:6px}
.contactMini__link{color:#C7D2FE; text-decoration:none}
.contactMini__link:hover{text-decoration:underline}

/* Sections */
.section{padding:46px 0}
.section--soft{
  background: rgba(255,255,255,0.03);
  border-top:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.sectionHead{margin-bottom:14px}
.sectionTitle{margin:0; font-size:28px; letter-spacing:-.2px}
.sectionSub{margin:6px 0 0; color:var(--muted)}

/* Offer Grid */
.offerGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.offerCard{
  border-radius: var(--radius-3);
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 18px 46px rgba(0,0,0,0.35);
  transition: transform .22s ease, box-shadow .22s ease;
}
.offerCard:hover{transform: translateY(-6px); box-shadow: 0 24px 70px rgba(0,0,0,0.45)}
.offerCard__media{height:170px; overflow:hidden}
.offerCard__media img{
  width:100%;
  height:170px;
  object-fit:cover;
  display:block;
  transform: scale(1);
  transition: transform .28s ease;
}
.offerCard:hover .offerCard__media img{transform: scale(1.07)}
.offerCard__body{padding:14px}
.offerCard__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}
.offerCard__name{margin:0; font-size:16px; font-weight:1000}
.offerCard__off{
  padding:7px 10px;
  border-radius:999px;
  font-weight:1000;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
}
.offerCard__off.green{
  background: rgba(34,197,94,.14);
  border:1px solid rgba(34,197,94,.30);
}
.offerCard__off.hot{
  background: rgba(124,58,237,.16);
  border:1px solid rgba(124,58,237,.30);
}
.offerCard__tag{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.45}
.offerCard--wide{grid-column: span 3}

/* Offer note */
.offerNote{
  margin-top:14px;
  display:flex;
  gap:12px;
  align-items:center;
  padding:12px 14px;
  border-radius: var(--radius-3);
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}
.offerNote__icon{
  width:38px; height:38px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(37,211,102,.14);
  border:1px solid rgba(37,211,102,.30);
}
.offerNote__text{color:rgba(234,240,255,0.90)}

/* Brand Grid */
.brandGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.brandCard{
  padding:14px;
  border-radius: var(--radius-3);
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  transition: transform .18s ease;
}
.brandCard:hover{transform: translateY(-4px)}
.brandCard__title{font-weight:1000}
.brandCard__list{margin-top:6px; color:var(--muted); font-size:13px; line-height:1.45}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.gCard{
  position:relative;
  display:block;
  border-radius: var(--radius-3);
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow-1);
  transition: transform .22s ease, box-shadow .22s ease;
  text-decoration:none;
}
.gCard:hover{transform: translateY(-6px); box-shadow: var(--shadow-2)}
.gCard img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  transform: scale(1);
  transition: transform .28s ease;
}
.gCard:hover img{transform: scale(1.07)}
.gCard__text{
  position:absolute; inset:auto 0 0 0;
  padding:14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.70));
}
.gCard__title{font-weight:1000}
.gCard__sub{margin-top:3px; font-size:13px; color:rgba(234,240,255,0.82)}

/* Contact */
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.contactCard, .contactForm{
  padding:16px;
  border-radius: var(--radius-3);
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
}
.contactCard__title{font-weight:1000; font-size:18px}
.contactCard__sub{margin-top:6px; color:var(--muted)}
.contactRow{margin-top:10px; display:flex; gap:10px; align-items:center}
.contactLink{color:#C7D2FE; text-decoration:none}
.contactLink:hover{text-decoration:underline}

/* Footer */
.footer{
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.footer__inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footer__brand{font-weight:1000}
.footer__muted{margin-top:4px; color:var(--muted)}

/* Floating button */
.fab{
  position:fixed;
  right:18px;
  bottom:18px;
  width:56px;
  height:56px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(37,211,102,.16);
  border:1px solid rgba(37,211,102,.35);
  color:#DFFFEA;
  text-decoration:none;
  box-shadow: 0 18px 46px rgba(0,0,0,0.35);
  transition: transform .18s ease;
}
.fab:hover{transform: translateY(-4px)}

/* Reveal animation */
.reveal{opacity:0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease}
.reveal.show{opacity:1; transform: translateY(0)}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr}
  .hero__title{font-size:38px}
  .offerGrid{grid-template-columns: repeat(2, 1fr)}
  .offerCard--wide{grid-column: span 2}
  .brandGrid{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .contactGrid{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
}
@media (max-width: 520px){
  .hero__title{font-size:32px}
  .offerGrid{grid-template-columns:1fr}
  .offerCard--wide{grid-column: span 1}
  .brandGrid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
}
