:root{
  --bg:#06070c;
  --card:#0d1118;
  --panel:#0f131c;
  --text:#f7f8fb;
  --muted:#c7cbda;
  --line:rgba(255,255,255,.08);
  --accent:#f73d5c;
  --accent-2:#ff6b81;
  --green:#24e39c;
  --shadow:0 28px 70px rgba(0,0,0,.35);
  --radius:18px;
  --container:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth; overflow-x:hidden}
body{
  margin:0;
  font-family:'Space Grotesk', 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 12% 8%, rgba(247,61,92,.28), transparent 55%),
    radial-gradient(900px 500px at 88% 5%, rgba(36,227,156,.22), transparent 50%),
    linear-gradient(180deg, #05060a 0%, #0a0c13 40%, #05060a 100%);
  overflow-x:hidden;
  padding-top:96px;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(var(--container), calc(100% - 48px)); margin:0 auto}
.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;}
.skip:focus{left:20px; top:20px; width:auto; height:auto; padding:10px 12px; z-index:9999; background:rgba(10,10,14,.92); border:1px solid var(--line); border-radius:12px;}

.header{
  position:fixed; top:0; left:0; right:0; z-index:60;
  backdrop-filter:saturate(180%) blur(16px);
  background: rgba(8,10,16,.75);
  border-bottom:1px solid var(--line);
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 240px}
.brand img{height:80px; width:auto}
.brand .name{font-weight:800; letter-spacing:.2px; font-size:19px; color:#e23c3c}
.brand .tag{color:#19b870; font-weight:700; font-size:13px; margin-top:4px}
.nav{display:flex; gap:10px; align-items:center;}
.nav a{
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight:700;
  transition:all .2s ease;
}
.nav a:hover{color:var(--text); background: rgba(255,255,255,.07); border-color: var(--green); box-shadow:0 0 0 1px rgba(36,227,156,.35)}
.nav a:active{background:#fff; color:#05060a; border-color:#fff; box-shadow:0 0 0 1px rgba(255,255,255,.75)}
.nav a:focus{outline:none; box-shadow: 0 0 0 4px rgba(36,227,156,.20); border-color: rgba(36,227,156,.35)}

@media (hover: none){
  .nav a:active{
    background: linear-gradient(135deg, rgba(36,227,156,.92), rgba(36,227,156,.78));
    color:#05060a;
    border-color: rgba(36,227,156,.9);
    box-shadow:0 0 0 2px rgba(36,227,156,.30);
    transform:scale(.985);
  }
  .btn:active{
    background: linear-gradient(135deg, rgba(36,227,156,.92), rgba(36,227,156,.78));
    color:#05060a;
    border-color: rgba(36,227,156,.9);
    box-shadow:0 10px 24px rgba(36,227,156,.25);
    transform:scale(.985);
  }
}
.nav a.primary{
  color:var(--text);
  border-color: rgba(247,61,92,.45);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow:0 10px 26px rgba(247,61,92,.35);
}
.hamburger{
  display:none;
  width:48px; height:48px; border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-size:18px;
}

.hero{padding:86px 0 44px; position:relative}
.hero:before, .hero:after{
  content:""; position:absolute; border-radius:999px; filter:blur(70px); opacity:.35; z-index:0;
}
.hero:before{width:320px; height:320px; background:var(--accent); top:40px; left:-80px;}
.hero:after{width:320px; height:320px; background:var(--green); bottom:-40px; right:-80px; opacity:.28;}
.hero-grid{display:grid; grid-template-columns: 1.2fr 0.8fr; gap:32px; position:relative; z-index:1}
.hero-text h1{margin:14px 0 12px; font-size: clamp(34px, 4vw, 52px); line-height:1.04; letter-spacing:-0.8px}
.lead{margin:0; color:var(--muted); font-size:17px; line-height:1.65; max-width: 72ch}
.eyebrow{display:inline-flex; align-items:center; gap:10px; padding:8px 12px; border-radius:999px; border:1px solid rgba(36,227,156,.25); background: rgba(36,227,156,.08); font-weight:800; letter-spacing:.2px}
.eyebrow .dot{width:10px;height:10px;border-radius:99px;background:linear-gradient(135deg,var(--green),#42ffb8); box-shadow:0 8px 22px rgba(36,227,156,.35)}

.bullet-list{margin:18px 0 10px; padding:0; list-style:none; color:var(--muted); display:grid; gap:10px}
.bullet-list li{padding-left:28px; position:relative; line-height:1.55}
.bullet-list li:before{content:""; position:absolute; left:0; top:9px; width:12px; height:12px; border-radius:4px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow:0 6px 16px rgba(247,61,92,.35)}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin-top:18px}
.cta-note{color:var(--muted); font-size:14px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 15px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:800;
  letter-spacing:.2px;
  transition:all .2s ease;
}
.btn:hover{background: rgba(255,255,255,.08); transform:translateY(-1px)}
.btn.primary{
  border-color: rgba(247,61,92,.45);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow:0 10px 26px rgba(247,61,92,.35);
}
.btn.ghost{
  border-color: rgba(36,227,156,.30);
  background: rgba(36,227,156,.06);
}

.stats{display:grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap:12px; margin-top:16px}
.stat{padding:12px 14px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.02)}
.stat-num{font-weight:800; font-size:20px}
.stat-label{color:var(--muted); font-size:13px; margin-top:2px}

.hero-panel{
  border-radius:26px;
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding:26px;
  display:flex; flex-direction:column; gap:18px;
}
.panel-header{display:flex; align-items:center; justify-content:space-between; gap:12px}
.panel-body{display:flex; flex-direction:column; gap:14px}
.badge{display:inline-flex; align-items:center; gap:6px; padding:6px 10px; border-radius:10px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); font-weight:700; font-size:12px; letter-spacing:.3px; text-transform:uppercase}
.badge.green{background: rgba(36,227,156,.12); border-color: rgba(36,227,156,.35); color:var(--text)}
.panel-actions{display:flex; gap:10px; flex-wrap:wrap}
.panel-note{color:var(--muted); font-size:13px}

.section{padding:48px 0}
.section h2{margin:6px 0 10px; font-size:28px; letter-spacing:-0.4px}
.section p{margin:0; color:var(--muted); line-height:1.7}
.section-head{display:flex; align-items:flex-start; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom:18px}
.note-card{padding:14px 16px; border-radius:14px; border:1px solid var(--line); background:rgba(255,255,255,.03); max-width:260px}

.features{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:14px}
.feature{padding:16px; border-radius: var(--radius); border:1px solid rgba(255,255,255,.10); background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));}
.feature b{display:block; margin-bottom:6px; font-size:15px}


.gallery{display:grid; grid-template-columns: 1fr; gap:14px; margin-top:18px}
.photo{position:relative; border-radius: 16px; overflow:hidden; border:1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); box-shadow:0 18px 40px rgba(0,0,0,.25)}
.photo img{aspect-ratio: 16/9; object-fit: cover; width:100%; transition:transform .35s ease; filter:saturate(1.05)}
.photo:hover img{transform:scale(1.02)}
.photo figcaption{position:absolute; inset:auto 0 0 0; padding:14px 16px; background: linear-gradient(180deg, rgba(6,7,12,0), rgba(6,7,12,0.82)); color:var(--text); display:grid; gap:6px}
.photo .tag{display:inline-flex; align-items:center; gap:6px; font-size:12px; padding:6px 10px; border-radius:10px; background: rgba(255,255,255,.08); width:max-content}
.photo .title{font-weight:700}
.photo p{margin:0; color:var(--muted); font-size:13px; line-height:1.45}

.contact-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; margin-top:14px}
.card{border-radius: var(--radius); border:1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); padding:18px; box-shadow:0 16px 34px rgba(0,0,0,.18)}
.kv{display:grid; gap:10px}
.kv div{padding:12px; border-radius:14px; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03);}
.kv b{display:block; margin-bottom:4px; color:var(--text)}
.kv a[href^="mailto"]{color:var(--text); transition:color .15s ease, text-decoration-color .15s ease}
.kv a[href^="mailto"]:hover{color:var(--green); text-decoration:underline; text-decoration-color:var(--green)}

.cta-strip{padding:42px 0 12px}
.cta-strip-inner{display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; border:1px solid rgba(255,255,255,.10); border-radius:20px; padding:20px 22px; background: linear-gradient(135deg, rgba(247,61,92,.14), rgba(36,227,156,.12)); box-shadow:0 16px 34px rgba(0,0,0,.24)}
.cta-strip h3{margin:6px 0 4px; font-size:24px; letter-spacing:-0.3px}
.cta-strip-actions{display:flex; gap:10px; flex-wrap:wrap}

.footer{margin-top:28px; padding:28px 0; border-top:1px solid var(--line); color:var(--muted);}
.small{font-size:13px}
.contact-lead{font-size:24px; font-weight:800; line-height:1.2; margin:0 0 4px}
.muted{color:var(--muted)}

.service-page p{margin:0 0 14px; color:var(--muted); line-height:1.7}
.service-page p:last-child{margin-bottom:0}
.service-icons{font-size:26px; margin-right:10px}
.service-photo{margin:18px auto; border:1px solid rgba(255,255,255,.12); border-radius:16px; overflow:hidden; box-shadow:0 18px 40px rgba(0,0,0,.25); background:rgba(255,255,255,.03); max-width:400px}
.service-photo img{display:block; width:100%; height:auto}
.team-photo{margin:18px auto; border:1px solid rgba(255,255,255,.12); border-radius:16px; overflow:hidden; box-shadow:0 14px 30px rgba(0,0,0,.22); background:rgba(255,255,255,.03); max-width:400px}
.team-photo img{display:block; width:100%; height:auto}
.service-gallery{margin-top:16px; display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:12px}
.service-thumb{border:1px solid rgba(255,255,255,.12); border-radius:14px; overflow:hidden; background:rgba(255,255,255,.03); box-shadow:0 14px 30px rgba(0,0,0,.22); max-width:400px; margin:16px auto}
.service-thumb img{display:block; width:100%; height:auto}

.fab{
  position:fixed; right:18px; bottom:18px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color:var(--text);
  font-weight:800;
  letter-spacing:.2px;
  box-shadow:0 14px 30px rgba(0,0,0,.25);
  z-index:60;
}
.fab:hover{transform:translateY(-1px); box-shadow:0 16px 36px rgba(0,0,0,.3)}
.fab:focus{outline:none; box-shadow:0 0 0 4px rgba(36,227,156,.25), 0 16px 36px rgba(0,0,0,.3)}

@media (max-width: 1100px){
  .hero-grid{grid-template-columns:1fr; gap:18px}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width: 920px){
  .features{grid-template-columns: 1fr}
}
@media (max-width: 760px){
  .container{width:min(var(--container), calc(100% - 32px))}
  .gallery{grid-template-columns:1fr}
  .header-inner{flex-wrap:wrap; gap:10px}
  .nav{display:none}
  .hamburger{display:inline-flex; align-items:center; justify-content:center}
  .header.open .nav{
    display:flex; flex-direction:column; align-items:stretch; gap:8px;
    position:absolute;
    left:20px; right:20px; top:84px;
    padding:12px;
    border-radius: 18px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(10,10,14,.96);
    backdrop-filter: blur(16px);
  }
  .header.open .nav a{width:100%}
  .stats{grid-template-columns:1fr}
  .hero{padding-top:64px}
}
