:root{
  --bg:#0b1220;
  --text:#0f172a;
  --muted:#64748b;
  --white:#ffffff;
  --line:rgba(15, 23, 42, 0.10);

  --primary:#2563eb;
  --primary2:#0ea5e9;

  --green:#22c55e;
  --purple:#8b5cf6;

  --radius:18px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:#fff;
}

.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  text-decoration:none;
  color:var(--text);
}
.brand-dot{
  width:12px;height:12px;border-radius:50%;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display:inline-block;
}
.menu{
  display:flex;
  gap:18px;
}
.menu a{
  text-decoration:none;
  color:var(--text);
  font-weight:500;
  font-size:14px;
  opacity:.85;
}
.menu a:hover{opacity:1}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  border:1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg, var(--primary), var(--primary2));
  color:white;
  box-shadow: 0 10px 18px rgba(37, 99, 235, .20);
}
.btn-ghost{
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
}
.btn-dark{
  background:#0b1220;
  color:white;
  box-shadow: 0 10px 18px rgba(2, 6, 23, .20);
}
.w-full{width:100%}

/* Hero */
.hero{
  padding:64px 0 24px;
  background:
    radial-gradient(900px 450px at 10% 10%, rgba(37,99,235,.18), transparent 60%),
    radial-gradient(900px 450px at 90% 0%, rgba(139,92,246,.16), transparent 60%),
    radial-gradient(900px 450px at 90% 90%, rgba(34,197,94,.12), transparent 60%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.pill{
  display:inline-flex;
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(15,23,42,.04);
  border:1px solid var(--line);
  color:rgba(15,23,42,.75);
}
.hero h1{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-0.02em;
}
.muted{color:var(--muted)}
.hero-actions{
  display:flex;
  gap:12px;
  margin:22px 0 18px;
  flex-wrap:wrap;
}
.hero-stats{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.stat{
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:12px 14px;
  min-width:150px;
  box-shadow: var(--shadow);
}
.stat-num{
  font-weight:800;
  font-size:18px;
}
.stat-label{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

/* Glass Card */
.glass-card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.12);
  border-radius:24px;
  padding:18px;
  box-shadow: var(--shadow);
}
.card-top{
  display:flex;
  gap:8px;
  margin-bottom:10px;
}
.chip{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:white;
  font-weight:600;
}
.chip-green{border-color:rgba(34,197,94,.35); color:#15803d}
.chip-purple{border-color:rgba(139,92,246,.35); color:#6d28d9}

.mini-grid{
  margin:14px 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.mini{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px;
  border:1px solid var(--line);
  border-radius:16px;
  background:white;
}
.mini-ico{font-size:18px}
.mini-title{font-weight:700;font-size:13px}
.mini-sub{font-size:12px}

/* Strip */
.strip{
  padding:14px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(15,23,42,.02);
}
.strip-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.logos{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.logos span{
  font-size:12px;
  padding:6px 10px;
  border:1px dashed rgba(15,23,42,.20);
  border-radius:999px;
  color:rgba(15,23,42,.7);
}

/* Sections */
.section{padding:64px 0}
.section.alt{
  background:rgba(15,23,42,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  margin-bottom:22px;
}
.section h2{
  margin:0;
  font-size:30px;
  letter-spacing:-0.02em;
}
.section p{margin:8px 0 0}

/* Products */
.product-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.product-card{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.product-card::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width:220px;height:220px;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.18), transparent 60%);
  transform: rotate(25deg);
}
.product-card:nth-child(2)::before{
  background: radial-gradient(circle at 30% 30%, rgba(139,92,246,.18), transparent 60%);
}
.product-badge{
  display:inline-flex;
  font-weight:700;
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:white;
}
.product-badge.green{border-color:rgba(34,197,94,.35); color:#15803d}
.product-badge.purple{border-color:rgba(139,92,246,.35); color:#6d28d9}

.feature-list{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
  font-size:14px;
}
.card-actions{
  display:flex;
  gap:10px;
  margin-top:18px;
  flex-wrap:wrap;
}

/* Why Cards */
.cards-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.info-card{
  background:white;
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  box-shadow: var(--shadow);
}
.info-ico{font-size:22px}
.info-card h4{margin:10px 0 6px}

/* Chips */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tag{
  padding:10px 12px;
  border-radius:999px;
  background:rgba(15,23,42,.03);
  border:1px solid var(--line);
  font-size:13px;
  font-weight:600;
  color:rgba(15,23,42,.75);
}

/* CTA */
.cta{
  padding:64px 0;
  background:
    radial-gradient(900px 450px at 0% 0%, rgba(14,165,233,.14), transparent 60%),
    radial-gradient(900px 450px at 100% 40%, rgba(139,92,246,.14), transparent 60%),
    #0b1220;
  color:white;
}
.cta-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.cta h2{margin:0;font-size:32px}
.cta .muted{color:rgba(226,232,240,.75)}
.form{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:16px;
}
.row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:10px;
}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:white;
  outline:none;
}
input::placeholder, textarea::placeholder{color:rgba(226,232,240,.65)}
select{color:rgba(226,232,240,.95)}
textarea{resize:vertical}
.small{font-size:12px;margin-top:10px}

/* Footer */
.footer{
  padding:22px 0;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer-links a{
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  font-size:13px;
  opacity:.85;
}
.footer-links a:hover{opacity:1}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .cta-inner{grid-template-columns:1fr}
  .product-grid{grid-template-columns:1fr}
  .cards-3{grid-template-columns:1fr}
  .hero h1{font-size:36px}
  .menu{display:none}
}
/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-delay-1 { animation-delay: 0.2s }
.fade-delay-2 { animation-delay: 0.4s }
.fade-delay-3 { animation-delay: 0.6s }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-lift {
  transition: transform .2s ease, box-shadow .2s ease;
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
/* ---------- WhatsApp CTA ---------- */

.whatsapp-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.wa-icon{
  font-size: 42px;
  margin-bottom: 10px;
}

.whatsapp-card h3{
  margin: 10px 0 6px;
  font-size: 22px;
  color: #fff;
}

.whatsapp-card .muted{
  color: rgba(226,232,240,.75);
  margin-bottom: 18px;
}

.btn-whatsapp{
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(37,211,102,.35);
}

.btn-whatsapp:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37,211,102,.45);
}
.cta-inner{
  align-items: center;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.brand-logo{
  height: 34px;        /* adjust if needed */
  width: auto;
  display: block;
}

.brand-text{
  font-size: 18px;
  letter-spacing: 0.2px;
}
/* ---------- Floating WhatsApp Button ---------- */

.whatsapp-float{
  position: fixed;
  bottom: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
  z-index: 9999;

  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(37, 211, 102, 0.55);
}

.whatsapp-float .wa-icon{
  font-size: 20px;
}

.whatsapp-float .wa-text{
  font-size: 14px;
}

/* Mobile Optimization */
@media(max-width: 768px){
  .whatsapp-float{
    padding: 14px;
  }
  .whatsapp-float .wa-text{
    display: none; /* icon only on mobile */
  }
}
/* ---------- Cookie Consent ---------- */

.cookie-banner{
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  background: rgba(15, 23, 42, 0.95);
  color: #fff;
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);

  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  width: calc(100% - 32px);
  z-index: 9998;
}

.cookie-banner p{
  margin: 0;
  font-size: 14px;
  color: rgba(226,232,240,.9);
}

.cookie-actions{
  flex-shrink: 0;
}

@media(max-width: 768px){
  .cookie-banner{
    flex-direction: column;
    text-align: center;
  }
}
