/* Fyra Air - Full Rebuild Premium CSS (no dependencies) */
:root{
  --bg:#0b1220;
  --bg2:#0f1a2e;
  --text:#e8eefc;
  --muted:#b6c2e2;
  --line:rgba(255,255,255,.10);
  --glass:rgba(255,255,255,.05);
  --cool:#2aa8ff;
  --warm:#ff3b3b;
  --wa:#25D366;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius:22px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  line-height:1.55;
  background:
    radial-gradient(1100px 700px at 12% 10%, rgba(42,168,255,.18), transparent 55%),
    radial-gradient(1000px 700px at 88% 15%, rgba(255,59,59,.14), transparent 55%),
    radial-gradient(900px 600px at 50% 100%, rgba(37,211,102,.10), transparent 60%),
    var(--bg);
}
a{color:inherit;text-decoration:none}
a:hover{opacity:.95}
img,svg{max-width:100%;height:auto;display:block}
.container{max-width:1120px;margin:0 auto;padding:0 18px}

/* Top bar */
.topbar{
  position:sticky;top:0;z-index:50;
  background: rgba(11,18,32,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;gap:14px;
}
.brand{display:flex;align-items:center;gap:12px;min-width:240px}
.brand-logo{
  width:44px;height:44px;border-radius:12px;
  border:1px solid var(--line);background:rgba(255,255,255,.04);
  object-fit:cover;
}
.brand-name{font-weight:900;font-size:18px;letter-spacing:.2px}
.brand-sub{font-weight:800;font-size:12px;color:var(--muted)}
.nav{display:flex;align-items:center;gap:18px}
.nav a{color:var(--muted);font-weight:900;font-size:14px}
.nav a:hover{color:var(--text)}
.nav-cta{
  padding:10px 14px;border-radius:14px;border:1px solid var(--line);
  background: rgba(255,255,255,.05);color:var(--text);
}
.burger{
  display:none;width:44px;height:40px;border-radius:14px;
  border:1px solid var(--line);background:rgba(255,255,255,.06);
}
.burger span{display:block;height:2px;margin:7px 9px;background:rgba(232,238,252,.9);border-radius:99px}

/* Hero */
.hero{padding:34px 0 10px}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:18px;align-items:start}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color:var(--muted);font-weight:900;font-size:12px;
}
h1{font-size:44px;line-height:1.05;margin:14px 0 12px}
p{margin:0 0 14px;color:var(--muted);font-size:16px}
.hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:16px;border:1px solid var(--line);
  font-weight:950;font-size:14px;min-height:44px;
  background: rgba(255,255,255,.04);
}
.btn.primary{
  background: linear-gradient(90deg, rgba(42,168,255,.95), rgba(255,59,59,.85));
  border-color: rgba(255,255,255,.18);
  color:#071021;
}
.btn.ghost{background: rgba(255,255,255,.03)}
.btn.whatsapp{background: rgba(37,211,102,.16);border-color: rgba(37,211,102,.35)}
.stats{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.stat{
  display:flex;gap:10px;align-items:center;
  border:1px solid var(--line);border-radius:16px;
  background: rgba(255,255,255,.04);
  padding:10px 12px;
}
.stat span{font-size:18px}
.stat b{display:block}
.stat small{display:block;color:var(--muted);font-weight:800}

.hero-media{
  position:relative;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.hero-img{width:100%;height:auto}
.hero-badge{
  position:absolute;left:14px;bottom:14px;
  border:1px solid var(--line);
  border-radius:18px;
  background: rgba(11,18,32,.70);
  backdrop-filter: blur(10px);
  padding:12px 12px;
  max-width: 320px;
}
.hb-top{font-weight:950}
.hb-mid{color:var(--muted);font-weight:800;font-size:13px;margin:4px 0 10px}
.hb-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 12px;border-radius:14px;border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  font-weight:950;font-size:13px;
}

/* Sections */
.section{padding:56px 0;border-top:1px solid var(--line)}
.section.alt{background: rgba(255,255,255,.02)}
.section-head{display:flex;flex-direction:column;gap:6px}
h2{font-size:30px;margin:0}
.lead{max-width:860px}

/* Grids */
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:18px}
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:18px}

/* Cards */
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  overflow:hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.card-img{width:100%;height:200px;object-fit:cover;background:rgba(255,255,255,.02)}
.card-body{padding:16px}
h3{margin:0 0 6px;font-size:18px;font-weight:950}
.card p{margin:0 0 10px}
.card ul{margin:0;padding-left:18px;color:var(--muted)}
.card li{margin:6px 0}

/* Panels */
.panel{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  padding:16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.mini{color: rgba(182,194,226,.90);font-size:12px;margin-top:10px}
.contact-mini{display:flex;flex-wrap:wrap;gap:10px;margin-top:10px}
.mini-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 12px;border-radius:14px;border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-weight:950;font-size:13px;
}
.mini-btn.wa{border-color: rgba(37,211,102,.35);background: rgba(37,211,102,.14)}

/* Services */
.service{
  display:flex;gap:12px;align-items:flex-start;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  padding:16px;
}
.ico{
  width:42px;height:42px;border-radius:16px;border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  background: rgba(255,255,255,.04);
  font-size:18px;
}

/* Tags */
.tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.tags span{
  padding:10px 12px;border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:900;font-size:13px;
}

/* Contact form */
.form label{display:block;margin:10px 0;color:var(--muted);font-weight:900;font-size:12px}
.form input,.form textarea{
  width:100%;margin-top:6px;
  padding:12px 12px;border-radius:16px;border:1px solid var(--line);
  background: rgba(11,18,32,.55);
  color:var(--text);outline:none;
}
.form textarea{min-height:110px;resize:vertical}
.form input:focus,.form textarea:focus{border-color: rgba(42,168,255,.55)}

/* Footer */
.footer{padding:26px 0;border-top:1px solid var(--line);background: rgba(0,0,0,.14)}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
.foot-left{display:flex;align-items:center;gap:12px}
.foot-logo{width:40px;height:40px;border-radius:12px;border:1px solid var(--line);object-fit:cover}
.foot-name{font-weight:950}
.foot-sub{color:var(--muted);font-size:12px}
.foot-links{display:flex;gap:14px;flex-wrap:wrap}
.foot-links a{color:var(--muted);font-weight:900;font-size:13px}
.foot-links a:hover{color:var(--text)}
.copy{padding:10px 0 0;color: rgba(182,194,226,.75);font-size:12px}

/* Floating buttons */
.float{
  position:fixed;right:16px;z-index:60;
  padding:12px 14px;border-radius:999px;border:1px solid var(--line);
  font-weight:950;font-size:13px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.float.wa{bottom:72px;border-color: rgba(37,211,102,.35);background: rgba(37,211,102,.14)}
.float.call{bottom:16px;border-color: rgba(42,168,255,.35);background: rgba(42,168,255,.12)}

/* Mobile */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  h1{font-size:38px}
}
@media (max-width: 920px){
  .burger{display:block}
  .nav{
    position:absolute;right:18px;top:64px;
    display:none;flex-direction:column;align-items:stretch;gap:6px;
    min-width:220px;
    padding:10px;border-radius:18px;border:1px solid var(--line);
    background: rgba(11,18,32,.95);
    box-shadow: var(--shadow);
  }
  .nav.open{display:flex}
  .nav a{padding:10px 12px;border-radius:14px;background: rgba(255,255,255,.03)}
  .nav-cta{background: rgba(255,255,255,.05)}
}
@media (max-width: 420px){
  h1{font-size:32px}
  .btn{width:100%}
}
