:root{
  --bg:#0b1220;
  --panel:#101a2e;
  --text:#e9eefc;
  --muted:rgba(233,238,252,.72);
  --brand:#59d6ff;
  --brand2:#7c5cff;
  --border:rgba(255,255,255,.12);
  --shadow:0 18px 40px rgba(0,0,0,.35);
  --radius:16px;
  --radius2:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
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(900px 450px at 20% -10%, rgba(89,214,255,.25), transparent 60%),
    radial-gradient(800px 400px at 95% 10%, rgba(124,92,255,.20), transparent 55%),
    linear-gradient(180deg, #08101d 0%, #070d18 100%);
  color:var(--text);
}
.container{width:min(1120px, 92vw); margin:0 auto}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:16px; top:16px; width:auto; height:auto; z-index:9999; padding:10px 14px; background:#000; border:1px solid var(--border); border-radius:12px}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(8, 14, 26, .55);
  border-bottom:1px solid var(--border);
}
.header-row{display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px}
.brand-mark{
  width:44px; height:44px; border-radius:14px;
  background: linear-gradient(135deg, rgba(89,214,255,.95), rgba(124,92,255,.95));
  display:flex; align-items:center; justify-content:center;
  font-weight:800; letter-spacing:.5px;
}
.brand-title{font-weight:800; font-size:16px}
.brand-subtitle{color:var(--muted); font-size:13px; margin-top:2px}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color:var(--muted); text-decoration:none; font-weight:600; font-size:14px}
.nav a:hover{color:var(--text)}
.nav-cta{
  padding:10px 14px; border-radius:12px;
  background: linear-gradient(135deg, rgba(89,214,255,.25), rgba(124,92,255,.25));
  border:1px solid rgba(255,255,255,.16);
  color:var(--text) !important;
}

.nav-toggle{display:none; background:transparent; border:1px solid var(--border); border-radius:12px; padding:10px; width:44px; height:44px}
.nav-toggle span{display:block; height:2px; background:var(--text); margin:5px 0; opacity:.9}

.hero{padding:40px 0 16px}
.hero-grid{display:grid; grid-template-columns: 1.25fr .95fr; gap:22px; align-items:start}
.hero-copy h1{margin:8px 0 12px; font-size:clamp(26px, 3.2vw, 40px); line-height:1.12}
.hero-copy p{margin:0; color:var(--muted); font-size:16px; line-height:1.65}
.hero-actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:var(--text);
  text-decoration:none;
  font-weight:700;
}
.btn:hover{transform: translateY(-1px); transition: transform .15s ease; border-color: rgba(255,255,255,.26)}
.btn.primary{
  border-color: rgba(89,214,255,.45);
  background: linear-gradient(135deg, rgba(89,214,255,.30), rgba(124,92,255,.25));
}
.btn.small{padding:9px 12px; border-radius:12px; font-size:13px}

.phone{color:rgba(255,255,255,.95)}

.rating-card{
  margin-top:18px;
  padding:14px 14px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  display:flex; gap:14px; align-items:center;
}
.big{font-size:32px; font-weight:900}
.stars{display:block; color: #ffd166; letter-spacing:2px; font-size:14px}
.rating-meta{line-height:1.25}
.muted{color:var(--muted)}

.hero-side{display:flex; flex-direction:column; gap:14px}
.info-panel{border:1px solid var(--border); background: rgba(255,255,255,.04); border-radius: var(--radius2); padding:16px; box-shadow: var(--shadow)}
.info-item{display:flex; gap:12px; align-items:flex-start; padding:10px 0; border-bottom:1px dashed rgba(255,255,255,.10)}
.info-item:last-child{border-bottom:none}
.info-icon{width:36px; height:36px; display:flex; align-items:center; justify-content:center; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:12px}
.info-label{font-size:12px; color:var(--muted); font-weight:700; text-transform:uppercase; letter-spacing:.06em}
.info-value{font-weight:800; margin-top:4px}
.info-note{font-size:12px; margin-top:6px}
.info-link{color:var(--text); text-decoration:none; font-weight:800}

.map-mini{border-radius: var(--radius2); overflow:hidden; border:1px solid var(--border); background: rgba(255,255,255,.03); box-shadow: var(--shadow)}
.map-mini iframe{width:100%; height:210px; border:0; display:block; filter:saturate(1.1) contrast(1.05)}

.share-row{display:flex; gap:10px}

.section{padding:46px 0}
.section.alt{background: rgba(255,255,255,.02); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06)}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:18px}
.section-head h2{margin:0; font-size:clamp(20px, 2.2vw, 28px)}

.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.card{border:1px solid var(--border); background: rgba(255,255,255,.04); border-radius: var(--radius2); padding:16px; box-shadow: var(--shadow)}
.card-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.avatar{width:38px; height:38px; border-radius:14px; background: rgba(89,214,255,.18); border:1px solid rgba(89,214,255,.35); display:flex; align-items:center; justify-content:center; font-weight:900; text-transform:lowercase}
.card-title{font-weight:900; margin-top:6px}
.card-stars{color:#ffd166; letter-spacing:2px; font-size:13px}
.card-body{margin:12px 0 10px; color:var(--muted); line-height:1.6; font-size:14px}
.card-footer{font-size:12px}

.apropos-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:start}
.checklist{list-style:none; padding:0; margin:18px 0 0; display:grid; gap:10px}
.checklist li{display:flex; gap:10px; align-items:flex-start; padding:10px 12px; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03); border-radius:14px}
.checklist li::before{content:"✓"; color: rgba(89,214,255,.95); font-weight:900}

.feature-stack{display:grid; gap:12px}
.feature{display:flex; gap:12px; padding:14px; border-radius: var(--radius2); border:1px solid var(--border); background: rgba(255,255,255,.04); box-shadow: var(--shadow)}
.feature-icon{width:44px; height:44px; border-radius:16px; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, rgba(89,214,255,.16), rgba(124,92,255,.16)); border:1px solid rgba(255,255,255,.12)}
.feature-title{font-weight:900}

.route-grid{display:grid; grid-template-columns: .95fr 1.05fr; gap:16px; align-items:stretch}
.route-copy{border:1px solid var(--border); background: rgba(255,255,255,.04); border-radius: var(--radius2); padding:16px; box-shadow: var(--shadow)}
.pill{display:inline-flex; align-items:center; gap:8px; padding:10px 12px; border-radius: 999px; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03); margin:0 8px 10px 0; font-weight:800; color: rgba(255,255,255,.92)}
.route-actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:8px}
.small{font-size:12px}
.route-map{border-radius: var(--radius2); overflow:hidden; border:1px solid var(--border); background: rgba(255,255,255,.03); box-shadow: var(--shadow)}
.route-map iframe{width:100%; height:360px; border:0; display:block}

.cta{padding:56px 0}
.cta-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:16px; align-items:start}
.cta-actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}
.cta-card{border:1px solid var(--border); background: rgba(255,255,255,.04); border-radius: var(--radius2); padding:18px; box-shadow: var(--shadow)}
.cta-row{display:flex; align-items:baseline; justify-content:space-between; gap:12px; padding:12px 0; border-bottom:1px dashed rgba(255,255,255,.12)}
.cta-row:last-of-type{border-bottom:none}
.cta-label{color:var(--muted); font-weight:800; text-transform:uppercase; letter-spacing:.06em; font-size:12px}
.cta-value{font-weight:900}
.cta-note{margin-top:10px}

.site-footer{border-top:1px solid rgba(255,255,255,.08); padding:22px 0; background: rgba(0,0,0,.10)}
.footer-row{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.footer-brand{font-weight:900}
.footer-links{display:flex; gap:16px; flex-wrap:wrap}
.footer-links a{color:var(--muted); text-decoration:none; font-weight:700; font-size:14px}
.footer-links a:hover{color:var(--text)}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr;}
  .apropos-grid{grid-template-columns: 1fr;}
  .route-grid{grid-template-columns: 1fr;}
  .cta-grid{grid-template-columns: 1fr;}
  .cards{grid-template-columns: 1fr;}
  .nav{display:none}
  .nav-toggle{display:block}
}

@media (max-width: 980px){
  .nav.open{display:flex; flex-direction:column; position:absolute; left:4vw; right:4vw; top:78px; padding:14px; background: rgba(10,16,30,.95); border:1px solid var(--border); border-radius:16px; box-shadow: var(--shadow)}
  .nav.open a{padding:10px 6px}
}

