:root{
  --blue:#0F47AF;
  --red:#D21034;
  --green:#00853F;
  --gold:#FCD116;
  --black:#0B0B0B;
  --bg:#FFFFFF;
  --muted:rgba(11,11,11,.72);
  --line:rgba(11,11,11,.12);
  --shadow:0 16px 48px rgba(11,11,11,.12);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  color:var(--black);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{width:min(1140px, 92vw); margin:0 auto}

/* Top bar */
.topbar{
  border-bottom:1px solid var(--line);
  background:linear-gradient(90deg, rgba(15,71,175,.07), rgba(252,209,22,.06), rgba(0,133,63,.06), rgba(210,16,52,.05));
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  font-size:14px;
  color:var(--muted);
}
.topbar-right{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.badges{display:flex; gap:10px; flex-wrap:wrap}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--line);
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
}
.i{width:18px;height:18px}

/* Nav */
.nav{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px}
.brand img{height:105px; width:auto; max-width:400px; object-fit:contain}
.menu{display:flex; align-items:center; gap:18px}
.menu a{font-weight:800; color:rgba(11,11,11,.84)}
.menu a:hover{color:var(--blue)}
.mobile-toggle{display:none}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:900;
  transition: transform .08s ease, box-shadow .15s ease, border-color .15s ease;
  background:#fff;
}
.btn:hover{transform:translateY(-1px); box-shadow:var(--shadow); border-color:rgba(11,11,11,.18)}
.btn.primary{background:var(--blue); color:#fff; border-color:transparent}
.btn.green{background:var(--green); color:#fff; border-color:transparent}
.btn.ghost{background:transparent}
.btn .i{filter: drop-shadow(0 1px 0 rgba(0,0,0,.15))}

/* Hero */
.hero{
  padding:58px 0 26px;
  background:
    radial-gradient(900px 380px at 10% 10%, rgba(15,71,175,.09), transparent 60%),
    radial-gradient(900px 380px at 90% 20%, rgba(0,133,63,.08), transparent 60%),
    radial-gradient(900px 380px at 70% 90%, rgba(210,16,52,.07), transparent 60%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.hero-small{
  padding:40px 0 20px;
}
.hero-grid-simple{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:center;
}
.hero-image{
  display:flex;
  justify-content:center;
  align-items:center;
}
.hero-image img{
  width:100%;
  max-width:400px;
  height:auto;
  border-radius:16px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:950;
  color:var(--blue);
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
}
h1{margin:16px 0 12px; font-size:clamp(32px,4.2vw,56px); line-height:1.05; letter-spacing:-.02em}
.lead{font-size:clamp(16px,1.35vw,20px); color:var(--muted); max-width:60ch}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.trust-row{display:flex; gap:14px; flex-wrap:wrap; margin-top:18px; color:var(--muted); font-weight:800; font-size:14px}
.trust-row span{display:inline-flex; align-items:center; gap:8px}

.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.92);
  box-shadow: 0 8px 28px rgba(11,11,11,.07);
}
.hero-art{padding:18px}
.hero-card{padding:20px; background:rgba(255,255,255,.95); border-radius:16px; border:1px solid var(--line)}
.hero-card-title{font-weight:950; font-size:18px; margin-bottom:14px; color:var(--black)}
.hero-card-row{display:flex; gap:12px; align-items:flex-start; margin:10px 0; font-size:15px}
.hero-card-row span:first-child{flex-shrink:0; color:var(--green)}
.hero-card-row span:first-child img{width:20px; height:20px; stroke:var(--green)}
.hero-card-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.hero-art .hero-panel{
  border-radius:16px;
  border:1px solid var(--line);
  overflow:hidden;
  background: linear-gradient(135deg, rgba(15,71,175,.08), rgba(252,209,22,.06), rgba(0,133,63,.06));
}
.hero-art .hero-panel-inner{padding:18px}
.hero-metric{display:flex; gap:12px; align-items:flex-start; padding:12px 0; border-top:1px solid var(--line)}
.hero-metric:first-child{border-top:0}
.hero-metric .icon{
  width:40px;height:40px;border-radius:14px;
  display:grid; place-items:center;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
}
.hero-metric h3{margin:0; font-size:16px}
.hero-metric p{margin:2px 0 0; color:var(--muted); font-size:14px}

.section{padding:60px 0}
.section h2{font-size:34px; margin:0 0 10px}
.section p{color:var(--muted); margin:0 0 18px}

.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.feature{padding:18px}
.feature .icon{
  width:44px;height:44px;border-radius:14px;
  display:grid; place-items:center;
  border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(15,71,175,.10), rgba(0,133,63,.08), rgba(210,16,52,.07));
}
.feature h3{margin:12px 0 6px}
.feature p{margin:0; color:var(--muted)}

.pricing{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.price-card{padding:18px}
.price-top{display:flex; justify-content:space-between; align-items:flex-start; gap:10px}
.plan{font-weight:950; font-size:18px}
.price{font-weight:1000; font-size:36px; letter-spacing:-.02em}
.small{font-size:13px; color:var(--muted); font-weight:800}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  font-size:12px;
  font-weight:900;
  color:rgba(11,11,11,.82);
}

ul{padding-left:18px; color:var(--muted); margin:14px 0}
li{margin:8px 0}

.split{display:grid; grid-template-columns:1fr 1fr; gap:16px; align-items:start}
.form-wrap{padding:18px}
label{display:block; font-weight:900; margin:10px 0 6px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  outline:none;
  font-size:15px;
  background:#fff;
}
input:focus, select:focus, textarea:focus{border-color: rgba(15,71,175,.45); box-shadow: 0 0 0 4px rgba(15,71,175,.10)}
textarea{min-height:120px; resize:vertical}
.notice{margin-top:12px; font-size:14px; color:var(--muted)}
.alert{display:none; margin-top:12px; padding:12px; border-radius:14px; border:1px solid var(--line)}
.alert.ok{border-color: rgba(0,133,63,.35); background: rgba(0,133,63,.08)}
.alert.bad{border-color: rgba(210,16,52,.35); background: rgba(210,16,52,.08)}

.footer{
  border-top:1px solid var(--line);
  padding:28px 0;
  color:var(--muted);
  background:linear-gradient(90deg, rgba(15,71,175,.06), rgba(252,209,22,.05), rgba(0,133,63,.05));
}
.footer-grid{display:grid; grid-template-columns:1.2fr .8fr; gap:16px; align-items:start}
.footer a{color:rgba(11,11,11,.82); font-weight:900}
.footer a:hover{color:var(--blue)}

.whatsapp-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:80;
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:12px 14px;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.25);
  font-weight:950;
}
.whatsapp-fab img{width:20px;height:20px; filter: drop-shadow(0 1px 0 rgba(0,0,0,.2))}
.whatsapp-fab:focus{outline:3px solid rgba(252,209,22,.65); outline-offset:3px}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .hero-grid-simple{grid-template-columns:1fr}
  .grid-3, .pricing{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .menu{display:none}
  .mobile-toggle{display:inline-flex}
}
