:root{
  --bg:#050B14;
  --bg2:#061022;

  --panel:#0B1626;
  --panel2:#0E1D30;

  --border:rgba(148,163,184,.16);
  --border2:rgba(148,163,184,.22);

  --text:#E5E7EB;
  --muted:rgba(229,231,235,.72);

  --accent:#2DD4BF;
  --accent2:rgba(45,212,191,.20);

  --orange:#FF6A00;
  --orange2:rgba(255,106,0,.22);

  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 650px at 15% -10%,rgba(45,212,191,.08),transparent 60%),
    radial-gradient(900px 550px at 85% 10%,rgba(96,165,250,.06),transparent 65%),
    linear-gradient(180deg,var(--bg),var(--bg2));
  line-height:1.55;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}

.wrap{max-width:1200px;margin:0 auto;padding:0 20px}
.section{padding:96px 0}
.section-title{
  font-size:2.25rem;
  letter-spacing:-.02em;
  margin:0 0 14px;
}
.section-lead{
  color:var(--muted);
  max-width:85ch;
  margin:0 0 18px;
}

/* Background vibe, subtle */
.bg-animated{
  position:relative;
}
.bg-animated::before{
  content:"";
  position:fixed;
  inset:-20%;
  pointer-events:none;
  opacity:.55;
  background:
    radial-gradient(circle at 20% 30%,rgba(45,212,191,.06),transparent 40%),
    radial-gradient(circle at 80% 40%,rgba(96,165,250,.05),transparent 42%),
    radial-gradient(circle at 35% 75%,rgba(45,212,191,.04),transparent 45%);
  filter:blur(10px);
  animation:bgFloat 18s linear infinite;
}
@keyframes bgFloat{
  0%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(-2.5%,1.5%,0)}
  100%{transform:translate3d(0,0,0)}
}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:linear-gradient(180deg,rgba(5,11,20,.92),rgba(5,11,20,.78));
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  height:86px;
  display:flex;align-items:center;justify-content:space-between;gap:18px;
}
.brand{
  display:flex;align-items:center;gap:14px;min-width:0;
}
.brand img{height:44px;width:auto}
.brand-tagline{color:var(--muted);font-size:.95rem;white-space:nowrap}

.nav{display:flex;align-items:center;gap:12px}
.nav-link{
  color:var(--muted);
  font-size:.92rem;
  padding:8px 10px;
  border-radius:999px;
}
.nav-link:hover{color:var(--text)}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:11px 18px;
  border-radius:999px;
  font-weight:800;
  font-size:.9rem;
  border:1px solid transparent;
  cursor:pointer;
  white-space:nowrap;
}
.btn-primary{
  background:var(--accent);
  color:#06201B;
  box-shadow:0 14px 40px rgba(45,212,191,.24);
}
.btn-primary:hover{filter:brightness(1.04)}
.btn-ghost{
  background:transparent;
  border:1px solid var(--border2);
}
.btn-ghost:hover{border-color:rgba(45,212,191,.35)}
.btn-emergency{
  background:var(--orange);
  color:#170800;
  font-weight:900;
  letter-spacing:.04em;
  box-shadow:0 18px 60px rgba(255,106,0,.25);
}
.btn-emergency:hover{filter:brightness(1.05)}
.full{width:100%}

/* Card base */
.card{
  background:linear-gradient(180deg,var(--panel),var(--panel2));
  border:1px solid var(--border);
  border-radius:22px;
}

/* Services */
.principles{
  list-style:none;
  padding:0;
  margin:10px 0 22px;
  color:var(--muted);
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:4px 18px;
  max-width:520px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
}

.service-card{
  background:linear-gradient(180deg,var(--panel),var(--panel2));
  border:1px solid var(--border);
  border-radius:22px;
  overflow:hidden;
  min-height:560px;
}

.service-media{
  padding:18px;
  border-bottom:1px solid var(--border);
  background:
    radial-gradient(600px 180px at 50% 0%,rgba(45,212,191,.10),transparent 55%),
    linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,0));
}
.service-media img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 18px 70px rgba(0,0,0,.45);
}

.service-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:18px 20px 0;
}
.service-head h3{
  margin:0;
  font-size:1.22rem;
  letter-spacing:-.01em;
}
.service-icon{
  width:40px;height:40px;
  border-radius:12px;
  border:1px solid rgba(45,212,191,.18);
  background:rgba(45,212,191,.08);
  color:rgba(229,231,235,.88);
  cursor:pointer;
  flex:0 0 auto;
}
.service-icon:hover{border-color:rgba(45,212,191,.30)}

.service-desc{
  padding:6px 20px 0;
  margin:0;
  color:var(--muted);
}

.service-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:14px 20px 0;
}
.tag{
  font-size:.78rem;
  color:rgba(229,231,235,.82);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  padding:6px 10px;
  border-radius:999px;
}
.tag:first-child{
  border-color:rgba(45,212,191,.18);
  background:rgba(45,212,191,.08);
}

.service-box{
  margin:16px 20px 0;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:14px;
  padding:12px 12px 13px;
}
.service-box-title{
  font-size:.78rem;
  color:rgba(229,231,235,.66);
  margin-bottom:6px;
}
.service-box-body{
  color:rgba(229,231,235,.82);
  font-size:.95rem;
}
.service-box-muted{
  border-color:rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
  margin-bottom:18px;
}

/* How it works */
.how-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  margin-top:18px;
}
.how-card{
  background:linear-gradient(180deg,var(--panel),var(--panel2));
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
}
.how-step{
  font-weight:900;
  margin-bottom:8px;
}
.how-card p{margin:0;color:var(--muted)}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.25fr;
  gap:22px;
  margin-top:18px;
}

.reach-card{
  background:
    radial-gradient(700px 240px at 10% 0%,rgba(255,106,0,.10),transparent 55%),
    radial-gradient(650px 240px at 90% 20%,rgba(45,212,191,.10),transparent 55%),
    linear-gradient(180deg,var(--panel),var(--panel2));
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  padding:22px;
  position:relative;
  overflow:hidden;
}
.reach-card::after{
  content:"";
  position:absolute;
  inset:-60px -90px auto auto;
  width:220px;height:220px;
  background:radial-gradient(circle,rgba(255,106,0,.18),transparent 65%);
  filter:blur(6px);
  pointer-events:none;
}
.reach-card h3{margin:0 0 14px}

.reach-items{
  display:grid;
  gap:12px;
  margin-bottom:14px;
}
.reach-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.reach-item:hover{border-color:rgba(45,212,191,.22)}
.reach-static:hover{border-color:rgba(255,255,255,.08)}
.reach-dot{
  width:10px;height:10px;border-radius:999px;
  background:rgba(255,255,255,.45);
  box-shadow:0 0 0 6px rgba(255,255,255,.04);
  flex:0 0 auto;
}
.reach-dot-orange{
  background:var(--orange);
  box-shadow:0 0 0 6px rgba(255,106,0,.08);
}
.reach-dot-teal{
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(45,212,191,.08);
}
.reach-label{font-size:.78rem;color:rgba(229,231,235,.62)}
.reach-value{font-weight:800}

.reach-statement{
  color:rgba(229,231,235,.78);
  margin:14px 0 14px;
  border-left:2px solid rgba(255,106,0,.45);
  padding-left:12px;
}

.reach-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:16px;
}
.badge{
  font-size:.78rem;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.reach-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.form-card{
  background:linear-gradient(180deg,var(--panel),var(--panel2));
  border:1px solid var(--border);
  border-radius:22px;
  padding:22px;
}
.form-card h3{margin:0 0 14px}

.contact-form label{
  display:block;
  margin:0 0 6px;
  font-size:.8rem;
  color:rgba(229,231,235,.65);
}
.contact-form input,
.contact-form textarea,
.select{
  width:100%;
  padding:12px 14px;
  background:#081322;
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  color:var(--text);
  font-size:.95rem;
  outline:none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.select:focus{
  border-color:rgba(45,212,191,.35);
  box-shadow:0 0 0 4px rgba(45,212,191,.08);
}
.contact-form textarea{min-height:120px;resize:vertical}

.form-row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-bottom:12px;
}
.form-actions{
  display:flex;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}
.form-note{
  margin-top:12px;
  color:rgba(229,231,235,.60);
  font-size:.85rem;
}

/* Emergency page */
.page-title{
  font-size:2.4rem;
  letter-spacing:-.02em;
  margin:0 0 12px;
}
.emergency-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:22px;
  margin-top:18px;
}
.emergency-card{padding:22px}
.emergency-aside{padding:22px}
.card-title{margin:0 0 12px;font-size:1.25rem}
.bullet{margin:0;padding-left:18px;color:var(--muted)}
.bullet li{margin:6px 0}
.aside-callout{
  margin:16px 0;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,106,0,.18);
  background:rgba(255,106,0,.08);
  color:rgba(229,231,235,.80);
}

/* Footer */
.site-footer{
  padding:36px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:.85rem;
}

/* Responsive */
@media(max-width:1000px){
  .services-grid{grid-template-columns:1fr}
  .how-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .emergency-grid{grid-template-columns:1fr}
  .brand-tagline{display:none}
}

