
:root{
  --bg0:#071423;
  --bg1:#0a1c30;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.14);
  --text:#eaf2ff;
  --muted:rgba(234,242,255,.75);
  --accent:#00D4FF;
  --accent2:#7CFF6B;
  --good:#66e3a6;
  --warn:#FF2D55;
  --shadow:0 12px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  background: radial-gradient(1200px 700px at 20% 0%, rgba(111,211,255,.12), transparent 55%),
              radial-gradient(900px 500px at 85% 15%, rgba(102,227,166,.10), transparent 55%),
              linear-gradient(180deg, var(--bg1), var(--bg0));
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:22px 18px 64px}

.topbar{
  position:sticky; top:0; z-index:999;
  backdrop-filter: blur(14px);
  background: rgba(7,20,35,.70);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav{
  max-width:1100px;margin:0 auto;padding:10px 18px;
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
}
.brand{
  display:flex;align-items:center;gap:10px;min-width:170px;
}
.brand-badge{
  width:34px;height:34px;border-radius:10px;
  background: linear-gradient(135deg, rgba(111,211,255,.75), rgba(102,227,166,.55));
  border:1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.brand-title{font-weight:800;letter-spacing:.2px}
.nav-links{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.nav-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(111,211,255,.30), rgba(111,211,255,.18));
  border:1px solid rgba(255,255,255,.18);
  color: var(--text);
  font-weight:700;
  box-shadow: 0 8px 18px rgba(0,0,0,.20);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  line-height:1;
  min-height:40px;
}
.nav-btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.30)}
.nav-btn.active{
  background: linear-gradient(180deg, rgba(102,227,166,.35), rgba(111,211,255,.22));
  border-color: rgba(255,255,255,.30);
}

.hero h1{margin:18px 0 8px; font-size:42px; letter-spacing:.2px}
.hero p{margin:0 0 18px; color:var(--muted); font-size:16px; line-height:1.55}
.note{
  background: var(--card);
  border:1px dashed rgba(255,255,255,.20);
  padding:12px 14px;border-radius:14px;
  color:var(--muted);
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
@media (max-width: 980px){ .grid{grid-template-columns: repeat(2, 1fr);} .hero h1{font-size:36px}}
@media (max-width: 640px){ .grid{grid-template-columns: 1fr;} .hero h1{font-size:32px}}

.card{
  background: linear-gradient(180deg, var(--card2), var(--card));
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:16px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.card h3{margin:6px 0 10px; font-size:20px}
.card p{margin:0 0 12px; color:var(--muted)}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  background: rgba(255,107,107,.18);
  border:1px solid rgba(255,107,107,.35);
  color:#ffd2d2;
  padding:6px 10px;border-radius:999px;
  font-weight:800;font-size:12px;
}
.extra{
  display:inline-flex;align-items:center;justify-content:center;
  background: rgba(102,227,166,.22);
  border:1px solid rgba(102,227,166,.45);
  color:#d9fff0;
  padding:8px 10px;border-radius:999px;
  font-weight:800;font-size:12px;
  margin:8px 0 10px;
  width:100%;
  text-align:center;
}
.price{
  font-size:16px;
  font-weight:800;
  margin:8px 0 0;
}
.ul{margin:10px 0 16px; padding-left:18px; color:var(--muted); line-height:1.5}
.btn{
  display:flex;align-items:center;justify-content:center;
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  background: linear-gradient(180deg, rgba(111,211,255,.45), rgba(111,211,255,.22));
  border:1px solid rgba(255,255,255,.20);
  font-weight:900;
  box-shadow: 0 10px 18px rgba(0,0,0,.22);
}
.btn:hover{border-color: rgba(255,255,255,.32)}
.btn-secondary{
  background: rgba(255,255,255,.06);
}

.section-title{margin:28px 0 10px; font-size:20px; color:var(--text); letter-spacing:.2px}
.split{
  display:grid;grid-template-columns: 1fr 1fr; gap:14px;
}
@media (max-width: 860px){ .split{grid-template-columns: 1fr;}}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
@media (max-width: 980px){ .gallery-grid{grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 640px){ .gallery-grid{grid-template-columns: 1fr;} }

.photo{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.photo img{width:100%;height:240px;object-fit:cover;display:block}
.photo .cap{padding:10px 12px; color:var(--muted); font-weight:700}

.footer{
  margin-top:34px;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:18px;
  color:rgba(234,242,255,.78);
}
.footer .small{color:rgba(234,242,255,.62); font-size:13px; line-height:1.55}
.footer .links{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.pill{
  display:inline-flex;align-items:center;justify-content:center;
  padding:9px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-weight:800;
}


/* --- Home upgrade --- */
.brand-logo{width:44px;height:44px;object-fit:contain;filter:drop-shadow(0 10px 18px rgba(0,0,0,.35))}
.brand-title{letter-spacing:.3px}
.team-thumb{width:54px;height:54px;border-radius:14px;object-fit:cover;border:1px solid rgba(255,255,255,.22);box-shadow:var(--shadow)}
@media (min-width:980px){.team-thumb{width:64px;height:64px}}

.hero{position:relative;overflow:hidden}
.hero-grid{display:grid;gap:16px;align-items:center}
@media (min-width:980px){.hero-grid{grid-template-columns: 1.1fr .9fr;gap:22px}}
.hero h1{font-size:38px;line-height:1.05;margin:0 0 8px}
@media (min-width:980px){.hero h1{font-size:54px}}
.hero .kicker{display:inline-flex;gap:10px;flex-wrap:wrap;margin-bottom:12px}
.kbadge{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(0,212,255,.12);border:1px solid rgba(0,212,255,.35);font-weight:800}
.kbadge b{color:var(--accent)}
.hero .sub{font-size:16px;color:var(--muted);margin:0 0 14px}
.hero-list{display:grid;gap:10px;margin:14px 0 0;padding:0;list-style:none}
.hero-list li{display:flex;gap:10px;align-items:flex-start;padding:10px 12px;border-radius:14px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12)}
.hero-list li span{color:var(--accent);font-weight:900}
.hero-media{display:grid;gap:12px}
.hero-media .media-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);border-radius:18px;padding:14px;box-shadow:var(--shadow)}
.hero-media img{width:100%;height:auto;border-radius:14px;display:block}
.logo-big{max-width:260px;margin:0 auto 6px;display:block}
@media (min-width:980px){.logo-big{max-width:320px}}
/* --- End home upgrade --- */

@media (min-width:980px){.nav-links{flex-wrap:nowrap}}
