
:root{
  --bg: #07131f;
  --surface: #0b1c2c;
  --surface-2: #081622;
  --text: #f6f8fb;
  --muted: rgba(246,248,251,.72);
  --faint: rgba(246,248,251,.18);
  --line: rgba(246,248,251,.12);
  --accent: #b87333; 
  --accent-2: #d7a56d;
  --blue: #0f4c81;
  --blue-2: #166bb0;
  --cyan: #00d6ff;
  --ok: #6ee7b7;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  background:
    radial-gradient(1200px 800px at 70% -10%, rgba(0,214,255,.18), transparent 60%),
    radial-gradient(1000px 700px at 15% 0%, rgba(15,76,129,.32), transparent 55%),
    radial-gradient(900px 650px at 92% 62%, rgba(184,115,51,.12), transparent 60%),
    linear-gradient(180deg, #050c15 0%, var(--bg) 20%, #040a12 100%);
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.45;
  letter-spacing:.2px;
}

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

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.grid{display:grid; gap:18px}

header.site-header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(10,12,18,.65);
  border-bottom: 1px solid var(--line);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{width:34px; height:34px}
.brand .name{font-weight:700; letter-spacing:.4px}
.brand .tag{font-size:12px; color:var(--muted); margin-top:2px}

nav.primary{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
nav.primary a{
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
}
nav.primary a.active, nav.primary a:hover{
  background: rgba(246,246,247,.06);
  color:var(--text);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(246,246,247,.04);
  color: var(--text);
  font-weight:600;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); background: rgba(246,246,247,.06); border-color: rgba(246,246,247,.18)}
.btn.primary{
  background: linear-gradient(135deg, rgba(184,115,51,.95), rgba(215,165,109,.8));
  border-color: rgba(215,165,109,.35);
  color:#12131a;
}
.btn.primary:hover{background: linear-gradient(135deg, rgba(184,115,51,1), rgba(215,165,109,.92))}
.btn.ghost{background: transparent}
.btn.small{padding:9px 11px; border-radius:12px; font-size:14px}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(246,246,247,.04);
  font-size: 13px;
}

.hero{
  padding:46px 0 10px;
}
.hero-card{
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(900px 600px at 70% 0%, rgba(0,214,255,.14), transparent 65%),
    radial-gradient(700px 520px at 18% 18%, rgba(15,76,129,.18), transparent 60%),
    linear-gradient(180deg, rgba(246,248,251,.06), rgba(246,248,251,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  padding: 28px;
  align-items:center;
}
.hero h1{
  margin:0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.08;
  letter-spacing: .2px;
}
.hero p{
  margin:14px 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 58ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
.hero-side{
  border-radius: var(--radius);
  border:1px solid rgba(246,246,247,.10);
  background: rgba(0,0,0,.18);
  overflow:hidden;
}
.hero-side img{display:block; width:100%; height:100%; object-fit:cover}
.hero-badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}

.section{padding:26px 0}
.section h2{
  font-size: 22px;
  margin: 0 0 12px;
}
.section .lead{
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 76ch;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246,246,247,.03);
  padding: 16px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}
.card .row{display:flex; justify-content:space-between; align-items:center; gap:10px; margin-top:14px}
.card .meta{font-size:12px; color:var(--muted)}

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.step{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246,246,247,.03);
  padding: 16px;
}
.step .n{
  width:34px; height:34px; display:grid; place-items:center;
  border-radius: 12px;
  background: rgba(184,115,51,.18);
  border: 1px solid rgba(215,165,109,.25);
  color: var(--accent-2);
  font-weight:700;
  margin-bottom: 10px;
}
.step p{margin:0; color:var(--muted); font-size:14px}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.thumb{
  border:1px solid var(--line);
  border-radius: 16px;
  overflow:hidden;
  background: rgba(246,246,247,.03);
}
.thumb img{width:100%; height:180px; object-fit:cover; display:block}
.thumb .cap{padding:10px 10px 12px}
.thumb .cap .t{font-weight:600; font-size:13px}
.thumb .cap .d{color:var(--muted); font-size:12px; margin-top:4px}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246,246,247,.03);
  padding: 16px;
}

.kpi{
  display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px;
}
.kpi .badge{background: rgba(246,246,247,.03)}

.footer{
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding: 26px 0 36px;
  color: var(--muted);
  font-size: 13px;
}
.footer .cols{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}
.footer a{color: var(--muted)}
.footer a:hover{color: var(--text)}
.footer .legal{margin-top:14px; color: rgba(246,246,247,.55)}

hr.sep{border:0; border-top:1px solid var(--line); margin: 14px 0}

form label{display:block; font-weight:600; font-size:13px; margin-bottom:6px}
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(246,246,247,.14);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(215,165,109,.55)}
textarea{min-height: 120px; resize: vertical}
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-grid .full{grid-column: 1 / -1}
.help{font-size:12px; color: var(--muted); margin-top:6px}
.note{font-size:13px; color: var(--muted)}
.callout{
  border:1px dashed rgba(215,165,109,.45);
  background: rgba(184,115,51,.08);
  border-radius: var(--radius);
  padding: 14px;
}

.pills{display:flex; gap:10px; flex-wrap:wrap; margin: 10px 0 0}
.pill{
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 10px;
  font-size:13px;
  color: var(--muted);
  background: rgba(246,246,247,.03);
}
.pill.active{border-color: rgba(215,165,109,.35); color: var(--text); background: rgba(184,115,51,.10)}

.table{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid var(--line);
}
.table th, .table td{
  text-align:left;
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.table th{background: rgba(246,246,247,.04); color: var(--muted); font-weight:700}
.table tr:last-child td{border-bottom:0}

.map{
  width:100%;
  min-height: 340px;
  border:0;
  border-radius: var(--radius);
  overflow:hidden;
}

.smallprint{font-size:12px; color: rgba(246,246,247,.55)}

@media (max-width: 980px){
  .hero-inner{grid-template-columns: 1fr; padding: 20px}
  .cards{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .gallery{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .split{grid-template-columns: 1fr}
  .footer .cols{grid-template-columns: 1fr}
  .form-grid{grid-template-columns: 1fr}
  nav.primary{display:none}
  .navbar{justify-content:space-between}
}

.brand__logo{display:inline-flex;align-items:center;}
.brand__logo img{height:44px;width:auto;}
@media (min-width: 768px){.brand__logo img{height:52px;}}


/* Hero media */
.hero-side .hero-media, .hero-side picture{display:block;}
.hero-side img{max-width:100%;height:auto;border-radius:18px;}
