/* assets/css/style.css */
:root{
  --bg: #07111a;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.14);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --r: 18px;
  --r2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(1200px 800px at 10% 10%, rgba(80,200,255,.18), transparent 55%),
    radial-gradient(900px 600px at 90% 15%, rgba(120,255,220,.10), transparent 55%),
    radial-gradient(1100px 700px at 40% 95%, rgba(255,150,60,.08), transparent 50%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
  overflow-x:hidden;
}

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

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,17,26,.55);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.brand-mark{
  width:36px; height:36px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(80,200,255,.35), rgba(120,255,220,.22));
  border:1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.brand-name{font-size:15px}
.brand.mini .brand-mark{width:34px;height:34px;border-radius:12px}

.site-nav{
  display:flex; align-items:center; gap:18px;
}
.site-nav a{
  font-size:14px;
  color:var(--muted);
  padding:10px 10px;
  border-radius: 12px;
  transition: .2s ease;
}
.site-nav a:hover{color:var(--text); background: rgba(255,255,255,.06)}

/* Burger */
.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  background: rgba(255,255,255,.85);
  margin:4px auto;
  border-radius:2px;
  transition: .2s ease;
}

/* Hero */
.hero{
  position:relative;
  min-height: 78vh;
  display:grid;
  align-items:end;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.hero-media{
  position:absolute; inset:0;
}
.hero-media img{
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(800px 500px at 20% 30%, rgba(0,0,0,.15), rgba(0,0,0,.58) 60%),
    linear-gradient(to top, rgba(7,17,26,.95), rgba(7,17,26,.18));
}
.hero-content{position:relative; padding: 96px 0 54px}
.hero-card{
  width:min(760px, 100%);
  background: rgba(10, 22, 33, .62);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  border-radius: var(--r2);
  padding: 26px 22px;
  backdrop-filter: blur(14px);
}
.hero-title{
  font-size: clamp(34px, 4.2vw, 56px);
  margin:0 0 6px;
  line-height:1.08;
}
.hero-subtitle{
  font-size: clamp(16px, 1.7vw, 20px);
  margin:0 0 14px;
  color: rgba(255,255,255,.86);
  font-weight:650;
}
.hero-text p{margin:0 0 10px; color: rgba(255,255,255,.86)}
.hero-actions{
  display:flex; flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 750;
  font-size: 14px;
  cursor:pointer;
  transition: .2s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.09)}
.btn:active{transform: translateY(0)}
.btn.primary{
  background: linear-gradient(135deg, rgba(80,200,255,.55), rgba(120,255,220,.30));
  border-color: rgba(255,255,255,.18);
}
.btn.ghost{
  background: rgba(255,255,255,.04);
}
.btn.small{padding: 10px 12px; border-radius: 12px; font-weight:800}

/* Sections */
.section{padding: 72px 0}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 60%);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.section-head{margin-bottom:22px}
.kicker{
  margin:0 0 6px;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: rgba(255,255,255,.70);
}
.section-title{
  margin:0;
  font-size: clamp(26px, 3.1vw, 40px);
  line-height:1.15;
}
.section-subtitle{
  margin: 12px 0 0;
  color: rgba(255,255,255,.82);
  font-weight:650;
  font-size: 16px;
}

.muted{color:var(--muted)}
.prose p{margin:0 0 12px; color: rgba(255,255,255,.86)}
.prose.wide{max-width: 860px}

/* Split layout */
.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:stretch;
}
.split-reverse{grid-template-columns: .95fr 1.05fr}
.split-reverse .split-media{order:2}
.split-media img{
  height:100%;
  object-fit:cover;
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.split-content{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

/* Video */
.video-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.video{
  width:100%;
  display:block;
  aspect-ratio: 16 / 9;
  background: #000;
}

/* Stats */
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  padding: 18px 16px;
  box-shadow: var(--shadow);
}
.stat-ico{font-size:22px; margin-bottom:10px}
.stat-title{margin:0 0 8px; font-size:16px}
.stat-text{margin:0; color: rgba(255,255,255,.82)}

/* Cards */
.cards-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-card{
  overflow:hidden;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
}
.card-media{
  position:relative;
  height: 220px;
}
.card-media img{
  width:100%; height:100%;
  object-fit:cover;
  filter: saturate(1.06) contrast(1.02);
}
.price-tag{
  position:absolute;
  right:14px; top:14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(7,17,26,.62);
  border:1px solid rgba(255,255,255,.14);
  font-weight: 900;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.card-body{padding: 18px 16px 16px}
.card-body h3{margin:0 0 10px; font-size:16px}
.card-body p{margin:0 0 12px; color: rgba(255,255,255,.86)}
.bullets{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255,255,255,.85);
}
.bullets li{margin:6px 0}

/* Reviews */
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.review{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  padding: 18px 16px;
  box-shadow: var(--shadow);
}
.review-stars{letter-spacing:2px; margin-bottom:10px}
.review p{margin:0 0 12px; color: rgba(255,255,255,.86)}
.review-author{color: var(--muted); font-weight:750}

/* Banner */
.banner{
  position:relative;
  min-height: 44vh;
  display:grid;
  align-items:center;
  overflow:hidden;
}
.banner-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter: saturate(1.06) contrast(1.02);
}
.banner-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(7,17,26,.92), rgba(7,17,26,.35) 60%, rgba(7,17,26,.70));
}
.banner-content{position:relative}
.banner-content h1{
  margin:0 0 14px;
  max-width: 740px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height:1.1;
}

/* Checks */
.checks-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.check{
  display:flex;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
}
.check-ico{
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  flex: 0 0 auto;
}
.check h3{margin:0 0 6px; font-size:16px}
.check p{margin:0; color: rgba(255,255,255,.86)}

/* FAQ */
.faq{
  display:grid;
  gap: 12px;
}
.faq-item{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  padding: 14px 14px;
  box-shadow: var(--shadow);
}
.faq-item summary{
  cursor:pointer;
  font-weight: 850;
  color: rgba(255,255,255,.92);
  list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-body{
  margin-top:10px;
  color: rgba(255,255,255,.86);
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:start;
}
.contact-card{
  overflow:hidden;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
}
.contact-photo{width:100%; height:240px; object-fit:cover}
.contact-card .prose{padding: 18px 16px}
.contact-lines{
  margin-top:14px;
  display:grid;
  gap: 10px;
}
.contact-lines span{color: rgba(255,255,255,.70)}

.form-card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 18px 16px;
}
.form-head{margin-bottom: 12px}
.form-title{margin:0 0 6px; font-size:18px}
.form-subtitle{margin:0; color: var(--muted); font-size: 13px}

.field-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field{display:grid; gap:8px}
.field-full{grid-column:1 / -1}
.field span{color: rgba(255,255,255,.72); font-size:13px; font-weight:750}

input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,17,26,.50);
  color: var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{color: rgba(255,255,255,.45)}
input:focus, textarea:focus{
  border-color: rgba(120,255,220,.35);
  box-shadow: 0 0 0 4px rgba(120,255,220,.10);
}

.form-actions{
  display:flex;
  gap: 12px;
  margin-top: 12px;
}
.form-note{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.86);
  display:none;
}

/* Footer */
.site-footer{
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(7,17,26,.55);
}
.footer-inner{
  padding: 18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.footer-right{display:flex; gap: 14px; color: var(--muted)}
.footer-right a:hover{color: var(--text)}

/* Responsive */
@media (max-width: 980px){
  .split, .split-reverse{grid-template-columns: 1fr}
  .split-reverse .split-media{order:0}
  .stats-grid{grid-template-columns: 1fr 1fr}
  .cards-grid{grid-template-columns: 1fr}
  .reviews-grid{grid-template-columns: 1fr}
  .checks-grid{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
}

@media (max-width: 860px){
  .nav-toggle{display:inline-grid; place-items:center}
  .site-nav{
    position:fixed;
    inset: 74px 14px auto 14px;
    display:none;
    flex-direction:column;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(7,17,26,.88);
    border:1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
  }
  .site-nav a{width:100%; justify-content:flex-start; background: rgba(255,255,255,.04)}
  body.nav-open .site-nav{display:flex}
}

@media (max-width: 520px){
  .container{width: min(var(--max), calc(100% - 28px))}
  .hero-content{padding: 88px 0 46px}
  .hero-card{padding: 20px 16px}
  .field-grid{grid-template-columns:1fr}
  .card-media{height: 200px}
}
