
:root{
  --blue:#0b7cf0;
  --blue-deep:#075fc4;
  --red:#ef174a;
  --ink:#0c172b;
  --muted:#68788f;
  --line:#e4ebf3;
  --soft:#f5f8fc;
  --soft-blue:#edf6ff;
  --green:#12b865;
  --shadow:0 24px 70px rgba(33,64,105,.12);
  --shadow-soft:0 12px 34px rgba(33,64,105,.08);
  --radius:28px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  min-height:100vh;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(circle at 8% 8%,rgba(11,124,240,.10),transparent 25rem),
    radial-gradient(circle at 92% 12%,rgba(239,23,74,.06),transparent 24rem),
    #fff;
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  opacity:.18;
  background-image:radial-gradient(#b8c9db 1px,transparent 1px);
  background-size:29px 29px;
  mask-image:linear-gradient(#000,transparent 62%);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1180px,calc(100% - 34px));margin:0 auto}

/* HEADER */
.site-header{
  height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.logo-link{display:flex;align-items:center;flex-shrink:0}
.logo-link img{
  width:178px;
  height:70px;
  object-fit:contain;
  object-position:left center;
  border-radius:13px;
}
.header-right{display:flex;align-items:center;gap:11px}
.status{
  display:inline-flex;align-items:center;gap:8px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.92);
  border-radius:999px;
  padding:10px 14px;
  font-size:.78rem;font-weight:750;
  color:#53647c;
  box-shadow:var(--shadow-soft);
}
.status-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--green);
  animation:pulse 1.8s infinite;
}
@keyframes pulse{70%{box-shadow:0 0 0 10px rgba(18,184,101,0)}}
.header-call{
  padding:11px 15px;border-radius:999px;
  background:var(--ink);color:#fff;
  font-size:.78rem;font-weight:800;
  transition:.2s ease;
}
.header-call:hover{transform:translateY(-2px)}

/* HERO */
.hero{
  min-height:calc(100vh - 160px);
  display:grid;
  grid-template-columns:1.07fr .93fr;
  gap:40px;
  align-items:center;
  padding:36px 0 50px;
}
.hero-copy{position:relative;z-index:2}
.kicker{
  width:max-content;max-width:100%;
  display:inline-flex;align-items:center;gap:9px;
  padding:9px 13px;border-radius:999px;
  background:var(--soft-blue);color:var(--blue-deep);
  font-size:.78rem;font-weight:800;
  margin-bottom:22px;
}
.kicker::before{
  content:"";
  width:8px;height:8px;border-radius:50%;
  background:var(--blue);
}
h1{
  font-size:clamp(3.5rem,7vw,6.75rem);
  line-height:.91;
  letter-spacing:-.072em;
  max-width:780px;
  margin-bottom:24px;
}
h1 span{color:var(--blue);position:relative;display:inline-block}
h1 span::after{
  content:"";
  position:absolute;left:4%;right:-2%;bottom:-6px;height:10px;
  border-radius:100%;
  background:rgba(11,124,240,.13);
  transform:rotate(-1deg);
}
.hero-copy>p{
  max-width:690px;
  color:var(--muted);
  font-size:clamp(1rem,1.45vw,1.16rem);
  line-height:1.8;
  margin-bottom:28px;
}
.actions{display:flex;flex-wrap:wrap;gap:12px}
.btn{
  min-height:54px;
  padding:0 20px;
  border-radius:16px;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-size:.92rem;font-weight:800;
  border:1px solid var(--line);
  background:#fff;
  transition:.22s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-soft)}
.btn-whatsapp{
  background:linear-gradient(135deg,#1bc86e,#0da957);
  color:#fff;border-color:transparent;
  box-shadow:0 15px 35px rgba(18,184,101,.18);
}
.btn-primary{
  background:linear-gradient(135deg,#1188fb,#0764d5);
  color:#fff;border-color:transparent;
  box-shadow:0 15px 35px rgba(11,124,240,.19);
}
.icon{
  width:21px;height:21px;display:inline-grid;place-items:center;
  font-size:.95rem;
}
.availability{
  margin-top:28px;
  width:max-content;max-width:100%;
  display:flex;align-items:center;gap:12px;
  padding:13px 15px;
  border:1px solid var(--line);
  border-radius:18px;background:#fff;
  box-shadow:var(--shadow-soft);
}
.avatar-stack{display:flex}
.avatar{
  width:34px;height:34px;border:3px solid #fff;border-radius:50%;
  margin-left:-8px;display:grid;place-items:center;
  color:#fff;font-size:.68rem;font-weight:900;
}
.avatar:first-child{margin-left:0}
.avatar:nth-child(1){background:var(--blue)}
.avatar:nth-child(2){background:var(--red)}
.avatar:nth-child(3){background:var(--green)}
.availability strong{display:block;font-size:.8rem}
.availability small{display:block;color:var(--muted);font-size:.7rem;margin-top:2px}

/* HERO VISUAL */
.visual{
  min-height:610px;
  position:relative;
  display:flex;align-items:center;justify-content:center;
}
.visual-blob{
  position:absolute;
  width:480px;height:480px;
  border-radius:42% 58% 59% 41% / 42% 44% 56% 58%;
  background:linear-gradient(145deg,#e4f3ff,#f6eaf0 52%,#eafbf2);
  animation:morph 9s ease-in-out infinite alternate;
}
@keyframes morph{50%{border-radius:57% 43% 46% 54% / 38% 60% 40% 62%;transform:rotate(3deg)}}
.showcase{
  width:min(440px,92%);
  min-height:445px;
  position:relative;z-index:3;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.96);
  border-radius:32px;
  padding:22px;
  box-shadow:0 38px 90px rgba(42,78,120,.18);
}
.showcase-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px}
.showcase-top strong{font-size:.9rem}
.live{
  font-size:.68rem;font-weight:800;color:#147c4d;
  background:#e9fbf2;padding:7px 9px;border-radius:999px;
}
.product-stage{
  height:285px;
  border-radius:24px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg,#0b1c35,#14365f);
}
.product-stage::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 72% 18%,rgba(39,170,255,.44),transparent 27%),
    radial-gradient(circle at 20% 18%,rgba(239,23,74,.24),transparent 30%);
}
.laptop{
  position:absolute;z-index:2;
  width:355px;
  left:50%;bottom:-28px;
  transform:translateX(-50%);
}
.stage-copy{
  position:absolute;z-index:3;left:22px;top:20px;color:#fff
}
.stage-copy span{
  display:inline-block;
  font-size:.64rem;font-weight:800;
  border:1px solid rgba(255,255,255,.17);
  border-radius:999px;padding:7px 9px;
  background:rgba(255,255,255,.08)
}
.stage-copy h2{
  font-size:1.8rem;line-height:1.04;letter-spacing:-.04em;margin-top:12px
}
.quick-links{
  display:grid;grid-template-columns:1fr 1fr;gap:11px;margin-top:13px
}
.quick-card{
  display:flex;align-items:center;gap:10px;
  padding:13px;border:1px solid var(--line);
  border-radius:17px;background:#fff;
}
.quick-card .badge{
  width:40px;height:40px;border-radius:12px;
  display:grid;place-items:center;font-size:1rem;font-weight:900;
}
.badge.green{background:#e8fbf1;color:var(--green)}
.badge.blue{background:#eaf4ff;color:var(--blue)}
.quick-card strong{display:block;font-size:.75rem}
.quick-card small{display:block;color:var(--muted);font-size:.64rem;margin-top:2px}
.float-card{
  position:absolute;z-index:4;
  padding:12px 13px;border-radius:17px;
  display:flex;align-items:center;gap:10px;
  background:#fff;border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  animation:float 4s ease-in-out infinite;
}
.float-card img{width:48px;height:48px;object-fit:contain}
.float-card strong{display:block;font-size:.71rem}
.float-card small{display:block;color:var(--muted);font-size:.62rem;margin-top:2px}
.f-one{top:44px;right:-12px}
.f-two{left:-22px;bottom:70px;animation-delay:.7s}
@keyframes float{50%{transform:translateY(-9px)}}

/* WAYS TO SHOP */
.shop-section{padding:26px 0 52px}
.section-heading{
  display:flex;align-items:flex-end;justify-content:space-between;gap:18px;
  margin-bottom:18px;
}
.section-heading h2{font-size:1.5rem;letter-spacing:-.035em}
.section-heading p{color:var(--muted);font-size:.81rem}
.shop-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.info-card{
  border:1px solid var(--line);border-radius:22px;background:#fff;
  padding:21px;box-shadow:0 10px 28px rgba(33,64,105,.055);
  transition:.22s ease;
}
.info-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-soft)}
.info-icon{
  width:48px;height:48px;border-radius:14px;
  display:grid;place-items:center;
  margin-bottom:14px;font-size:1.1rem;font-weight:900;
}
.info-card:nth-child(1) .info-icon{background:#e9fbf2;color:var(--green)}
.info-card:nth-child(2) .info-icon{background:#eaf4ff;color:var(--blue)}
.info-card:nth-child(3) .info-icon{background:#fff0f4;color:var(--red)}
.info-card h3{font-size:.95rem;margin-bottom:7px}
.info-card p{color:var(--muted);font-size:.77rem;line-height:1.65}
.info-card a{display:inline-block;margin-top:13px;color:var(--blue);font-size:.75rem;font-weight:800}

/* SOCIALS */
.social-section{
  border-top:1px solid var(--line);
  padding:28px 0 0;
}
.social-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:10px;margin-top:16px}
.social-link{
  min-height:78px;
  border:1px solid var(--line);border-radius:18px;
  background:#fff;
  display:flex;align-items:center;justify-content:center;flex-direction:column;gap:6px;
  transition:.22s ease;
}
.social-link:hover{transform:translateY(-3px);border-color:#cfddec;box-shadow:var(--shadow-soft)}
.social-link strong{font-size:.73rem}
.social-link span{
  width:32px;height:32px;border-radius:10px;
  display:grid;place-items:center;color:#fff;font-weight:900;font-size:.75rem
}
.fb{background:#1877f2}.ig{background:linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7)}
.tt{background:#111}.xx{background:#111}.yt{background:#ff0033}.li{background:#0a66c2}

/* BRANCH STRIP */
.branch-strip{
  margin-top:28px;
  background:var(--ink);
  color:#fff;
  border-radius:26px;
  padding:22px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
}
.branch-strip p{color:#c5d0df;font-size:.78rem;margin-top:4px}
.branch-strip .btn{border-color:rgba(255,255,255,.14);background:#fff;color:var(--ink);min-height:48px}

/* FOOTER */
footer{
  padding:26px 0 35px;
  display:flex;justify-content:space-between;align-items:center;gap:18px;
  color:#8b99ab;font-size:.74rem;
}
footer strong{color:#607087}
.whatsapp-float{
  position:fixed;right:20px;bottom:20px;z-index:12;
  width:58px;height:58px;border-radius:19px;
  display:grid;place-items:center;
  background:linear-gradient(145deg,#1bd16f,#0da957);
  color:#fff;font-size:1.2rem;font-weight:900;
  box-shadow:0 20px 48px rgba(18,184,101,.26);
  transition:.22s ease;
}
.whatsapp-float:hover{transform:translateY(-3px) scale(1.03)}

/* RESPONSIVE */
@media(max-width:980px){
  .hero{grid-template-columns:1fr;min-height:auto}
  .visual{min-height:560px}
  .shop-grid{grid-template-columns:1fr 1fr}
  .info-card:last-child{grid-column:1/-1}
  .social-grid{grid-template-columns:repeat(3,1fr)}
  .f-one{right:2%}.f-two{left:2%}
}
@media(max-width:650px){
  .container{width:min(100% - 20px,1180px)}
  .site-header{height:82px}
  .logo-link img{width:145px;height:60px}
  .header-call{display:none}
  .status{font-size:.66rem;padding:8px 10px}
  .hero{padding-top:31px;gap:2px}
  h1{font-size:clamp(3.05rem,16vw,4.65rem)}
  .hero-copy>p{font-size:.95rem}
  .actions{display:grid;grid-template-columns:1fr}
  .btn{width:100%}
  .availability{width:100%}
  .visual{min-height:515px}
  .visual-blob{width:350px;height:350px}
  .showcase{width:95%;padding:14px;border-radius:26px}
  .product-stage{height:250px}
  .laptop{width:315px}
  .f-one{top:18px;right:-2px}
  .f-two{left:-2px;bottom:25px}
  .float-card img{width:40px;height:40px}
  .section-heading{align-items:flex-start;flex-direction:column;gap:4px}
  .shop-grid{grid-template-columns:1fr}
  .info-card:last-child{grid-column:auto}
  .social-grid{grid-template-columns:repeat(2,1fr)}
  .branch-strip{align-items:flex-start;flex-direction:column}
  .branch-strip .btn{width:auto}
  footer{align-items:flex-start;flex-direction:column}
  .whatsapp-float{right:14px;bottom:14px;width:55px;height:55px;border-radius:18px}
}
