:root {
  --ink: #071b33;
  --ink-2: #12324f;
  --blue: #0ea5e9;
  --blue-2: #38bdf8;
  --blue-3: #e0f2fe;
  --gold: #f59e0b;
  --green: #16a34a;
  --muted: #64748b;
  --light: #f8fafc;
  --line: #dbeafe;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(7, 27, 51, .16);
  --radius: 22px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--light);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { top: 12px; }

.topbar {
  background: var(--ink);
  color: #dff6ff;
  font-size: .92rem;
}
.topbar .container {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}
.topbar a { color: #e0f2fe; font-weight: 700; }

.header {
  background: rgba(248, 250, 252, .92);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(14, 165, 233, .14);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}
.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.logo-wrap img { width: 188px; height: auto; border-radius: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink-2);
  font-weight: 700;
  font-size: .95rem;
}
.nav-links a:hover, .nav-links a.active { background: var(--blue-3); color: var(--ink); }
.nav-cta { margin-left: 6px; }
.mobile-menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7, 27, 51, .17);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(7, 27, 51, .22); }
.btn.primary { background: var(--blue); }
.btn.secondary { background: var(--white); color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.btn.gold { background: var(--gold); color: #111827; }
.btn.full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #ffffff 100%);
  border-bottom: 1px solid rgba(14, 165, 233, .12);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(14, 165, 233, .16), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(245, 158, 11, .14), transparent 24%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
  padding: 70px 0 64px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, .12);
  color: var(--ink-2);
  border: 1px solid rgba(14, 165, 233, .24);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: .9rem;
}
.badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
h1 {
  margin: 20px 0 16px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -0.055em;
}
.hero-lead {
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  color: #334155;
  max-width: 680px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
}
.stat-card {
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(14, 165, 233, .16);
  border-radius: 18px;
  padding: 16px;
}
.stat-card strong { display: block; font-size: 1.4rem; line-height: 1; color: var(--ink); }
.stat-card span { color: var(--muted); font-weight: 700; font-size: .9rem; }
.hero-art { position: relative; }
.hero-card {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(14, 165, 233, .2);
  border-radius: 34px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.hero-note {
  position: absolute;
  right: 12px;
  bottom: 24px;
  max-width: 235px;
  background: var(--ink);
  color: #f8fafc;
  padding: 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.hero-note strong { color: #7dd3fc; display: block; }

.section { padding: 72px 0; }
.section.compact { padding: 48px 0; }
.section-title {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}
.section-kicker {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-size: .78rem;
}
h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.section-title p, .page-lead { color: var(--muted); font-size: 1.08rem; margin: 0; }

.grid { display: grid; gap: 20px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border: 1px solid rgba(14, 165, 233, .16);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, .06);
}
.card:hover { border-color: rgba(14, 165, 233, .36); }
.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue-3);
  color: var(--ink);
  font-size: 1.45rem;
  margin-bottom: 15px;
}
.card h3 { margin: 0 0 8px; font-size: 1.22rem; }
.card p { color: var(--muted); margin: 0; }
.card ul { margin: 14px 0 0; padding-left: 18px; color: #475569; }
.card li + li { margin-top: 6px; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.panel {
  background: var(--ink);
  color: var(--white);
  border-radius: 32px;
  padding: 34px;
  overflow: hidden;
  position: relative;
}
.panel::after {
  content: "";
  position: absolute;
  inset: auto -50px -80px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(14, 165, 233, .24);
}
.panel h2 { color: var(--white); }
.panel p { color: #cbd5e1; }
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.feature-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .06);
  padding: 14px;
  border-radius: 16px;
}
.check {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: .85rem;
  font-weight: 900;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15, 23, 42, .06);
}
.price-table th, .price-table td { padding: 16px; text-align: left; border-bottom: 1px solid #e2e8f0; }
.price-table th { background: var(--ink); color: var(--white); }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child { font-weight: 800; color: var(--ink-2); }

.page-hero {
  background: linear-gradient(135deg, #071b33 0%, #12324f 72%, #0ea5e9 100%);
  color: var(--white);
  padding: 74px 0;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: #dbeafe; max-width: 780px; font-size: 1.14rem; }
.breadcrumbs { color: #7dd3fc; font-weight: 800; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 4px; }

.cta-band {
  background: var(--ink);
  color: var(--white);
  border-radius: 34px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-band h2 { margin: 0 0 8px; color: var(--white); }
.cta-band p { margin: 0; color: #cbd5e1; }

.form-card {
  background: var(--white);
  border: 1px solid rgba(14, 165, 233, .16);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-group { display: grid; gap: 7px; margin-bottom: 16px; }
.form-group label { font-weight: 800; color: var(--ink-2); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 13px 14px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, .12);
}
.form-note { color: var(--muted); font-size: .9rem; margin: 12px 0 0; }
.notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  border-radius: 16px;
  padding: 14px 16px;
  margin: 16px 0;
}

.hours-card strong { display: block; }
.hours-list { list-style: none; padding: 0; margin: 16px 0 0; }
.hours-list li { display: flex; justify-content: space-between; border-bottom: 1px solid #e2e8f0; padding: 10px 0; gap: 16px; }
.hours-list li:last-child { border-bottom: 0; }
.map-placeholder {
  height: 310px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(14,165,233,.08) 1px, transparent 1px),
    linear-gradient(rgba(14,165,233,.08) 1px, transparent 1px),
    #eff6ff;
  background-size: 34px 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  color: var(--ink-2);
  padding: 24px;
}

.footer {
  background: #061525;
  color: #dbeafe;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .9fr;
  gap: 28px;
  margin-bottom: 34px;
}
.footer img { width: 180px; border-radius: 12px; margin-bottom: 14px; }
.footer h3 { color: var(--white); margin: 0 0 14px; font-size: 1rem; }
.footer a { display: block; color: #dbeafe; margin: 9px 0; }
.footer a:hover { color: #7dd3fc; }
.footer p { color: #cbd5e1; margin: 0 0 12px; }
.footer-bottom {
  border-top: 1px solid rgba(219, 234, 254, .16);
  padding-top: 20px;
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .92rem;
}
.disclaimer { font-size: .85rem; color: #94a3b8; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
  .topbar .container { flex-direction: column; align-items: flex-start; gap: 4px; }
  .mobile-menu-btn { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    inset: 78px 18px auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .nav-cta { margin-left: 0; }
  .hero-grid, .split, .grid.three, .grid.four, .grid.two, .footer-grid { grid-template-columns: 1fr; }
  .quick-stats { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 48px; }
  .hero-note { position: static; margin-top: 14px; max-width: none; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .container { width: min(100% - 24px, var(--max)); }
  .logo-wrap img { width: 160px; }
  .hero-actions .btn, .cta-band .btn { width: 100%; }
  .section { padding: 54px 0; }
  .card, .form-card, .panel { padding: 21px; }
  .price-table th, .price-table td { padding: 12px; font-size: .92rem; }
}

.contact-details {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.contact-details p {
  margin: 8px 0;
}
