:root{
  --brand-orange:#f5a623;
  --brand-blue:#1f73c7;

  --bg:#07101f;
  --card:#0f2244;
  --text:#eef5ff;
  --muted:#b9c7e6;
  --line:rgba(255,255,255,.12);

  --shadow:0 18px 46px rgba(0,0,0,.35);
  --radius:18px;
  --max:1120px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  background:radial-gradient(1000px 600px at 70% -10%, rgba(31,115,199,.35), transparent 60%),
             radial-gradient(800px 500px at 15% 0%, rgba(245,166,35,.25), transparent 55%),
             var(--bg);
  color:var(--text);
  font-family:var(--font);
  line-height:1.6;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.small{font-size:12px;color:var(--muted)}
.muted{color:var(--muted)}
.hr{height:1px;background:var(--line);margin:22px 0}

/* ================= NAVIGATION ================= */

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(7,16,31,.9);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand .logo{
  width:46px;
  height:46px;
  border-radius:12px;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.brand .logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:6px;
}

.brand .name strong{display:block;font-size:14px}
.brand .name span{display:block;font-size:12px;color:var(--muted)}

.links{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.links a{
  font-size:14px;
  color:var(--muted);
}

.links a:hover{
  color:var(--text);
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  font-weight:700;
  background:linear-gradient(90deg,var(--brand-orange),var(--brand-blue));
  color:#07101f;
  transition:all .2s ease;
  white-space:nowrap;
}

.btn:hover{transform:translateY(-2px)}

.btn.secondary{
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
}

.btn.whatsapp{
  background:linear-gradient(90deg,#22c55e,#16a34a);
  color:#07101f;
}

/* ================= HERO ================= */

.hero{
  padding:70px 0;
}

.heroGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

@media(max-width:900px){
  .heroGrid{grid-template-columns:1fr}
}

.panel{
  background:var(--card);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
}

.kicker{
  display:inline-block;
  padding:6px 12px;
  background:rgba(245,166,35,.15);
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  margin-bottom:15px;
}

h1{margin-top:0;font-size:40px}

.sub{
  color:var(--muted);
  margin-bottom:20px;
}

.ctaRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:15px;
}

/* ================= HERO IMAGE BLOCK ================= */

.heroPhoto{
  position:relative;
  background-image:url("cutt off.png");
  background-size:cover;
  background-position:center;
  min-height:420px;
  overflow:hidden;
  border-radius:var(--radius);
}

.heroOverlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(7,16,31,.15),
    rgba(7,16,31,.8)
  );
  display:flex;
  align-items:flex-end;
  padding:30px;
}

.badge{
  background:rgba(7,16,31,.85);
  padding:20px;
  border-radius:16px;
  max-width:420px;
}

.badge strong{
  display:block;
  margin-bottom:8px;
  font-size:16px;
}

.badge span{
  font-size:14px;
  color:var(--muted);
}

/* ================= SECTIONS ================= */

section{padding:60px 0}

.sectionTitle{margin-bottom:30px}
.sectionTitle h2{margin:0 0 10px 0}
.sectionTitle p{color:var(--muted)}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

@media(max-width:900px){
  .grid3{grid-template-columns:1fr}
}

.card{
  background:var(--card);
  padding:20px;
  border-radius:var(--radius);
}

.list{
  list-style:none;
  padding:0;
  margin:15px 0 0 0;
}

.list li{
  margin-bottom:8px;
  display:flex;
  gap:8px;
  color:var(--muted);
}

.tick{
  font-weight:bold;
  color:var(--brand-blue);
}

/* ================= STEPS ================= */

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

@media(max-width:900px){
  .steps{grid-template-columns:1fr 1fr}
}
@media(max-width:500px){
  .steps{grid-template-columns:1fr}
}

.step{
  background:var(--card);
  padding:20px;
  border-radius:var(--radius);
}

.step .n{
  background:var(--brand-orange);
  color:#07101f;
  width:30px;
  height:30px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  margin-bottom:10px;
}

/* ================= FOOTER ================= */

footer{
  border-top:1px solid var(--line);
  padding:20px 0;
  color:var(--muted);
  font-size:14px;
}

/* ================= FLOATING WHATSAPP ================= */

.wa-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:linear-gradient(180deg,#22c55e,#16a34a);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 15px 35px rgba(0,0,0,.4);
  z-index:9999;
}

.wa-float svg{
  width:24px !important;
  height:24px !important;
  max-width:24px !important;
  max-height:24px !important;
  display:block;
}
