
:root {
  --bg: #0b1220;
  --panel: #101a2b;
  --panel-2: #13203a;
  --soft: #eef3f8;
  --text: #d6deea;
  --muted: #9fb0c7;
  --line: rgba(255,255,255,0.08);
  --blue: #2aa5ff;
  --blue-2: #0e7fd6;
  --teal: #22d3ee;
  --accent: #f3f7fb;
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --radius: 20px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  background: radial-gradient(circle at top right, rgba(42,165,255,0.12), transparent 20%), var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: #73c7ff; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.topbar {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.topbar .container { display:flex; justify-content: space-between; gap: 16px; padding: 10px 0; align-items:center; flex-wrap:wrap; }
.topbar p { margin: 0; color: var(--muted); }
header.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(11,18,32,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display:flex; align-items:center; justify-content:space-between; gap:18px; min-height:82px;
}
.brand { display:flex; align-items:center; gap:14px; color: white; font-weight: 800; letter-spacing: 0.01em; }
.brand img { width: 46px; height: 46px; }
.brand .brand-text { display:flex; flex-direction:column; line-height:1.05; }
.brand .brand-text small { color: var(--muted); font-weight:600; font-size:12px; letter-spacing:.08em; text-transform:uppercase; }
nav ul { list-style:none; display:flex; gap:20px; padding:0; margin:0; align-items:center; }
nav a { color: var(--text); font-weight:600; font-size:15px; }
nav a.active, nav a:hover { color: white; }
.header-actions { display:flex; gap:12px; align-items:center; }
.phone-chip {
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid rgba(42,165,255,.35); background: rgba(42,165,255,.08);
  padding:10px 14px; border-radius:999px; color:#fff; font-weight:700; white-space:nowrap;
}
.menu-toggle { display:none; border:1px solid var(--line); background:transparent; color:white; border-radius:12px; padding:10px 12px; }
.hero {
  padding: 72px 0 26px;
}
.hero-grid {
  display:grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items:stretch;
}
.hero-copy {
  background: linear-gradient(180deg, rgba(19,32,58,.92), rgba(12,18,31,.95));
  border:1px solid var(--line); border-radius:28px; padding: 42px; box-shadow: var(--shadow); position:relative; overflow:hidden;
}
.hero-copy::after {
  content:""; position:absolute; inset:auto -120px -120px auto; width:240px; height:240px; background:radial-gradient(circle, rgba(42,165,255,.3), transparent 70%); pointer-events:none;
}
.hero-kicker { display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(34,211,238,.28); background:rgba(34,211,238,.1); border-radius:999px; padding:8px 12px; color:#c9f7ff; font-size:13px; font-weight:700; margin-bottom:16px; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); line-height:1.05; margin:0 0 16px; color:white; }
.hero p.lead { font-size: 18px; color: #c9d5e6; margin:0 0 24px; max-width: 62ch; }
.hero-points { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px 16px; margin: 22px 0 26px; }
.hero-points span, .bullet-list li { display:flex; gap:10px; align-items:flex-start; color: #d5e0ef; }
.hero-points span::before, .bullet-list li::before { content: "✓"; color: var(--teal); font-weight: 800; }
.btn-row, .cta-row { display:flex; gap:14px; flex-wrap:wrap; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 18px; border-radius:14px; font-weight:800; transition:.2s transform, .2s background;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color:white; box-shadow: 0 12px 24px rgba(19,136,228,.22); }
.btn-secondary { border:1px solid rgba(255,255,255,.14); color:white; background: rgba(255,255,255,.04); }
.hero-art, .panel {
  background: linear-gradient(180deg, rgba(19,32,58,.92), rgba(12,18,31,.95));
  border:1px solid var(--line); border-radius:28px; overflow:hidden; box-shadow: var(--shadow);
}
.hero-art img { width:100%; height:100%; object-fit:cover; object-position:center; min-height: 500px; }
.section { padding: 28px 0 80px; }
.section-title { max-width: 760px; margin-bottom: 30px; }
.section-title h2 { font-size: clamp(28px, 4vw, 44px); color:white; margin:0 0 12px; line-height:1.1; }
.section-title p { margin:0; color: var(--muted); font-size:17px; }
.quick-form { margin-top: -20px; position: relative; z-index: 3; }
.form-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line); border-radius:24px; padding: 24px; box-shadow: var(--shadow);
}
.form-grid { display:grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap:14px; align-items:end; }
.form-grid .field-full { grid-column: 1 / -1; }
label { display:block; font-weight:700; color:#fff; font-size:14px; margin-bottom:6px; }
input, select, textarea {
  width:100%; border:1px solid rgba(255,255,255,.12); border-radius:14px; background: rgba(255,255,255,.05);
  color:#fff; padding:13px 14px; font: inherit;
}
select option { color:black; }
textarea { min-height: 120px; resize: vertical; }
.form-note { color: var(--muted); font-size: 13px; margin: 10px 0 0; }
.cards-3, .cards-4, .services-grid, .locations-grid, .guides-grid, .stats-grid, .gallery-grid, .faq-grid, .content-grid {
  display:grid; gap:20px;
}
.stats-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.stat-card, .info-card, .service-card, .location-card, .guide-card, .faq-card, .gallery-card, .testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line); border-radius:22px; padding:24px; box-shadow: var(--shadow);
}
.stat-card strong { display:block; font-size: 34px; color:white; line-height:1; }
.stat-card span { color: var(--muted); font-size:15px; }
.cards-3, .gallery-grid, .guides-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cards-4, .services-grid, .locations-grid, .faq-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.service-card h3, .guide-card h3, .location-card h3, .faq-card h3, .testimonial-card h3, .gallery-card h3, .info-card h3 { color:white; margin-top:0; margin-bottom:10px; line-height:1.2; }
.service-card p, .guide-card p, .location-card p, .faq-card p, .testimonial-card p, .info-card p { color: var(--muted); }
.service-card ul, .info-card ul { margin:0; padding-left:0; list-style:none; }
.service-card ul li, .info-card ul li { margin:0 0 8px; color:#d7e1ed; display:flex; gap:10px; }
.service-card ul li::before, .info-card ul li::before { content:"•"; color:var(--teal); }
.gallery-card img { width:100%; border-radius:18px; margin-bottom:16px; aspect-ratio: 4/3; object-fit:cover; border:1px solid rgba(255,255,255,.08); }
.split { display:grid; grid-template-columns: 1fr 1fr; gap:26px; align-items:start; }
.content-grid { grid-template-columns: 1.1fr .9fr; }
.content-grid .sticky-panel { position: sticky; top: 112px; }
.rich-text h2, .rich-text h3 { color: white; line-height:1.15; }
.rich-text p, .rich-text li { color: var(--text); }
.rich-text ul { padding-left: 0; list-style:none; }
.rich-text ul li { display:flex; gap:10px; margin-bottom:10px; }
.rich-text ul li::before { content:"✓"; color:var(--teal); font-weight:800; }
.badge-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.badge { border:1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color:#dff5ff; border-radius:999px; padding:8px 12px; font-size:13px; font-weight:700; }
.process { counter-reset: steps; display:grid; gap:14px; }
.process .step { position:relative; padding:20px 20px 20px 72px; background: rgba(255,255,255,.03); border:1px solid var(--line); border-radius:18px; }
.process .step::before { counter-increment: steps; content: counter(steps); position:absolute; left:18px; top:18px; width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg, var(--blue), var(--teal)); color:#00111e; display:flex; align-items:center; justify-content:center; font-weight:900; }
.kicker { text-transform: uppercase; letter-spacing: .12em; color: var(--teal); font-size: 12px; font-weight:800; margin-bottom:8px; }
.cta-banner {
  background: linear-gradient(135deg, rgba(42,165,255,.14), rgba(34,211,238,.08));
  border:1px solid rgba(42,165,255,.22); border-radius:30px; padding:34px; display:grid; grid-template-columns: 1.2fr .8fr; gap:20px; align-items:center; box-shadow: var(--shadow);
}
.testimonials { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:20px; }
.footer {
  padding: 56px 0 26px; border-top:1px solid var(--line); background: rgba(0,0,0,.18); margin-top:30px;
}
.footer-grid { display:grid; grid-template-columns: 1.4fr .8fr .8fr .8fr; gap:22px; }
.footer h4 { color:white; margin-top:0; }
.footer p, .footer li, .footer a { color: var(--muted); }
.footer ul { list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.breadcrumbs { font-size:14px; color: var(--muted); margin-bottom:20px; }
.breadcrumbs a { color: #b5cae0; }
.page-hero { padding: 44px 0 18px; }
.page-hero .hero-copy { padding: 30px; }
.price-table { width:100%; border-collapse: collapse; overflow:hidden; border-radius:18px; }
.price-table th, .price-table td { padding: 14px 16px; border-bottom:1px solid var(--line); text-align:left; }
.price-table th { color:white; background: rgba(255,255,255,.04); }
.notice { border-left: 4px solid var(--teal); background: rgba(34,211,238,.08); padding:16px 18px; border-radius: 14px; color: #dff8ff; }
.small { font-size: 14px; color: var(--muted); }
.mobile-cta { display:none; position:fixed; left:14px; right:14px; bottom:14px; z-index:30; gap:10px; }
.mobile-cta a { flex:1; }
@media (max-width: 1080px) {
  nav { display:none; position:absolute; left:16px; right:16px; top:84px; background: rgba(11,18,32,.98); border:1px solid var(--line); border-radius:18px; padding:16px; }
  nav.open { display:block; }
  nav ul { flex-direction:column; align-items:flex-start; }
  .menu-toggle { display:block; }
  .header-actions .phone-chip { display:none; }
  .hero-grid, .content-grid, .split, .cta-banner, .footer-grid { grid-template-columns:1fr; }
  .form-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cards-4, .services-grid, .locations-grid, .stats-grid, .faq-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cards-3, .gallery-grid, .guides-grid, .testimonials { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hero { padding-top: 34px; }
  .hero-copy { padding: 28px 22px; }
  .hero-art img { min-height: 280px; }
  .hero-points { grid-template-columns:1fr; }
  .form-grid, .cards-4, .services-grid, .locations-grid, .stats-grid, .faq-grid, .cards-3, .gallery-grid, .guides-grid, .testimonials { grid-template-columns:1fr; }
  .header-row { min-height:72px; }
  .mobile-cta { display:flex; }
  body { padding-bottom: 84px; }
}

.photo-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 460px;
}
.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}
.feature-copy { padding: 24px 4px; }
.content-photo {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
  margin: 0 0 28px;
  box-shadow: var(--shadow);
}
.stock-note { margin-top: 14px; }
button:disabled { opacity: .65; cursor: wait; }
.hidden-submit-frame { display: none; }
