:root{
  --bg:#0b1220;
  --surface:#0f172a;
  --card:#111c33;
  --soft:#0c162b;
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.75);
  --line:rgba(255,255,255,.12);
  --accent:#22c55e;
  --accent2:#38bdf8;
  --shadow:0 18px 40px rgba(0,0,0,.35);
  --radius:16px;
}

*{margin:0;padding:0;box-sizing:border-box;font-family:system-ui,-apple-system,Arial,Helvetica,sans-serif}
html{scroll-behavior:smooth}
body{
  background: radial-gradient(1200px 700px at 15% 10%, rgba(56,189,248,.18), transparent 60%),
              radial-gradient(1200px 700px at 85% 15%, rgba(34,197,94,.18), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{width:92%;max-width:1120px;margin:0 auto}
.muted{color:var(--muted)}
.tiny{font-size:12px}

/* TOPBAR */
.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(15,23,42,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar-wrap{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0; gap:14px; flex-wrap:wrap;
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none}
.logo{
  width:44px;height:44px;border-radius:12px;
  display:grid;place-items:center;
  font-weight:900; letter-spacing:.5px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#06121b;
}
.brand-text h1{font-size:18px;line-height:1}
.brand-text p{font-size:12px;opacity:.9;margin-top:4px}

.top-actions{
  display:flex;align-items:center;gap:12px;flex-wrap:wrap;justify-content:flex-end
}

/* LANGUAGE SWITCH */
.lang-switch{
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:14px;
  padding:5px;
  display:flex;gap:6px;
}
.lang-btn{
  background:transparent;border:none;color:var(--text);
  padding:8px 10px;border-radius:12px;
  font-weight:800;cursor:pointer;opacity:.78;
}
.lang-btn.active{
  background:rgba(34,197,94,.95);
  color:#06121b;
  opacity:1;
}

/* BUTTONS */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:14px;
  text-decoration:none;font-weight:900;letter-spacing:.2px;
  border:1px solid transparent;
  transition:transform .08s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-lg{padding:12px 18px;border-radius:16px}
.btn-primary{
  background:linear-gradient(135deg,var(--accent),#7cffb0);
  color:#06121b;
  box-shadow:0 12px 22px rgba(34,197,94,.22);
}
.btn-outline{
  background:transparent;
  border-color:rgba(34,197,94,.7);
  color:var(--text);
}
.btn-ghost{
  background:rgba(255,255,255,.06);
  border-color:var(--line);
  color:var(--text);
}

/* HERO */
.hero{position:relative;padding:56px 0 10px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:800;
  margin-bottom:14px;
}
.hero-left h2{
  font-size:40px;
  line-height:1.12;
  letter-spacing:-.5px;
}
@media (max-width: 520px){
  .hero-left h2{font-size:32px}
}
.hero-sub{
  margin-top:10px;
  font-weight:1000;
  letter-spacing:.2px;
  color:rgba(234,240,255,.92);
  font-size:16px;
}
.lead{
  font-size:16px;
  margin-top:12px;
  color:var(--muted);
  max-width:60ch;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}
@media (max-width: 720px){
  .trust{grid-template-columns:1fr}
}
.trust-item{
  padding:14px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
}
.trust-item strong{display:block}
.trust-item span{display:block;color:var(--muted);font-size:13px;margin-top:4px}

.local-line{
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(56,189,248,.08);
  border:1px solid rgba(56,189,248,.22);
  color:rgba(234,240,255,.9);
  font-weight:800;
}

/* CARDS */
.card{
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.card-glass{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}
.card-mini{
  margin-top:12px;
  padding:14px 16px;
}
.card-hover:hover{
  border-color:rgba(56,189,248,.45);
}

.divider{
  height:1px;
  background:var(--line);
  margin:14px 0;
}

.quick-buttons{display:flex;flex-direction:column;gap:10px;margin-top:10px}

.checklist{list-style:none;display:grid;gap:8px;margin-top:10px}
.checklist li{
  position:relative;
  padding-left:22px;
  color:var(--muted);
  font-weight:800;
}
.checklist li::before{
  content:"✓";
  position:absolute;left:0;top:0;
  color:var(--accent);
  font-weight:1000;
}

/* WAVE */
.hero-wave{
  height:32px;
  margin-top:32px;
  background:linear-gradient(90deg, rgba(56,189,248,.35), rgba(34,197,94,.35));
  border-radius:999px;
  opacity:.25;
}

/* SECTIONS */
.section{padding:54px 0}
.section-soft{
  background:rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.section-head h2{
  font-size:28px;
  letter-spacing:-.3px;
}

/* GRIDS */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media (max-width: 900px){
  .grid-3{grid-template-columns:1fr}
}

/* STEPS */
.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media (max-width: 900px){
  .steps{grid-template-columns:1fr}
}
.step{
  display:flex;gap:12px;align-items:flex-start;
  padding:18px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
}
.step-num{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(34,197,94,.18);
  border:1px solid rgba(34,197,94,.35);
  font-weight:1000;
}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
@media (max-width: 900px){
  .gallery{grid-template-columns:1fr}
}
.photo{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.photo img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition:transform .18s ease;
}
.photo:hover img{transform:scale(1.03)}

/* FORM */
.form-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
@media (max-width: 900px){
  .form-grid{grid-template-columns:1fr}
}
.form .row{display:grid;gap:6px;margin-top:12px}
.form label{font-weight:900;color:rgba(234,240,255,.92)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(3,7,18,.45);
  color:var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color:rgba(56,189,248,.6);
  box-shadow:0 0 0 4px rgba(56,189,248,.12);
}
textarea{resize:vertical}
.form-actions{
  display:flex;gap:10px;flex-wrap:wrap;
  margin-top:14px;
}

/* CTA BIG */
.cta-big{
  padding:26px;
  border-radius:20px;
  background:linear-gradient(135deg, rgba(34,197,94,.18), rgba(56,189,248,.14));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:var(--shadow);
}
.cta-big h2{font-size:28px;letter-spacing:-.3px}
.cta-big p{margin-top:8px}
.cta-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

/* FOOTER */
.footer{
  border-top:1px solid var(--line);
  padding:26px 0 14px;
  background:rgba(0,0,0,.15);
}
.footer-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:14px;
  align-items:center;
}
@media (max-width: 900px){
  .footer-wrap{grid-template-columns:1fr}
}
.footer-title{font-weight:1000;font-size:18px}
.footer-links{display:flex;gap:14px;flex-wrap:wrap}
.footer-links a{color:var(--muted);text-decoration:none;font-weight:800}
.footer-links a:hover{color:var(--text)}
.footer-contact{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
@media (max-width: 900px){
  .footer-contact{justify-content:flex-start}
}
.footer-bottom{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

/* FAB */
.fab{
  position:fixed;
  right:16px;
  bottom:16px;
  width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--accent),#7cffb0);
  color:#06121b;
  display:grid;
  place-items:center;
  font-weight:1000;
  text-decoration:none;
  box-shadow:0 18px 36px rgba(34,197,94,.25);
  border:1px solid rgba(0,0,0,.12);
}
.fab span{letter-spacing:.5px}