:root{
  --bg:#0b0f14;
  --panel:#111824;
  --panel2:#0f1520;
  --text:#e9eef6;
  --muted:#a9b6c9;
  --line:rgba(255,255,255,.10);
  --accent:#2dd4bf;
  --accent2:#60a5fa;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 800px at 20% -10%, rgba(45,212,191,.18), transparent 55%),
              radial-gradient(900px 700px at 100% 10%, rgba(96,165,250,.16), transparent 55%),
              var(--bg);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.9}

.container{width:min(1100px, 92vw); margin:0 auto}

.header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.72);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand-mark{
  width:38px;height:38px;display:grid;place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(45,212,191,.25), rgba(96,165,250,.20));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight:800;
}
.brand-name{font-weight:700; letter-spacing:.2px}
.links{display:flex; gap:14px; color:var(--muted)}
.links a{padding:8px 10px; border-radius:10px}
.links a:hover{background: rgba(255,255,255,.06)}

.hero{padding:56px 0 28px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:start;
}
h1{font-size: clamp(2rem, 3vw, 3rem); margin:0 0 10px}
.lead{color:var(--muted); margin:0 0 18px; font-size:1.05rem}

.cta-row{display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 8px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
  font-weight:650;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(45,212,191,.20), rgba(96,165,250,.20));
  border-color: rgba(255,255,255,.16);
}
.quick-links{margin:10px 0 0; color:var(--muted)}
.quick-links a{color: var(--accent); font-weight:650}

.bullets{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  color:var(--muted);
}
.bullets li{
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.04);
}

.hero-card{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding:18px;
}
.hero-card h2{margin:0 0 6px; font-size:1.1rem}
.hero-card h3{margin:14px 0 6px; font-size:1rem; color:var(--muted)}
.card-divider{height:1px;background:var(--line); margin:14px 0}

.section{padding:44px 0}
.section.alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section h2{margin:0 0 8px; font-size:1.7rem}
.section-sub{margin:0 0 18px; color:var(--muted)}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(17,24,36,.65);
  padding:16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.card h3{margin:0 0 6px}
.card p{margin:0; color:var(--muted)}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.gallery figure{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.gallery img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}
.gallery figcaption{
  padding:10px 12px;
  color:var(--muted);
  font-size:.95rem;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.contact-list{
  display:grid;
  gap:10px;
  margin-top:12px;
}
.contact-item{
  padding:12px 14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.label{display:block; color:var(--muted); font-size:.92rem; margin-bottom:2px}
.form-card{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(17,24,36,.65);
  box-shadow: var(--shadow);
}
.small{color:var(--muted); font-size:.95rem}
form{display:grid; gap:10px; margin-top:10px}
label{display:grid; gap:6px; color:var(--muted); font-size:.95rem}
input, textarea{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
textarea{min-height:110px; resize:vertical}

.footer{
  padding:22px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.footer-row{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}

code{
  background: rgba(0,0,0,.25);
  padding:2px 6px;
  border:1px solid var(--line);
  border-radius:8px;
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .contact-grid{grid-template-columns:1fr}
}

@media (max-width: 520px){
  .links{display:none}
  .cards{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .gallery img{height:220px}
}
