:root {
  --blue: #4A90E2;
  --orange: #F5A623;
  --navy: #16324f;
  --ink: #243443;
  --muted: #667789;
  --bg: #f7fafc;
  --card: #ffffff;
  --line: #dfe7ef;
  --success: #1f9d66;
  --shadow: 0 10px 30px rgba(22, 50, 79, 0.10);
  --radius: 18px;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 0.95rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  flex-wrap: wrap;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.logo-wrap { display: flex; align-items: center; gap: 0.8rem; }
.logo-wrap img { width: 54px; height: 54px; }
.logo-text strong { display: block; color: var(--navy); font-size: 1.1rem; }
.logo-text span { color: var(--muted); font-size: 0.92rem; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  font-weight: 700;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}
.nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown summary::after {
  content: "v";
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--orange);
  font-size: 0.78rem;
}
.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.7rem);
  min-width: 230px;
  z-index: 60;
  display: grid;
  gap: 0.35rem;
  padding: 0.65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
}
.nav-dropdown-menu a:hover {
  background: #fff7e8;
  text-decoration: none;
}
.btn, button, input[type="submit"] {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn:hover, button:hover, input[type="submit"]:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--orange); color: #1f1f1f; box-shadow: var(--shadow); }
.btn-secondary { background: var(--blue); color: #fff; box-shadow: var(--shadow); }
.btn-light { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.hero {
  background: radial-gradient(circle at top right, rgba(245,166,35,0.22), transparent 30%),
              radial-gradient(circle at left center, rgba(74,144,226,0.20), transparent 28%),
              linear-gradient(180deg, #ffffff, #f5f9fd);
  padding: 4.5rem 0 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(74,144,226,0.12);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
}
h1, h2, h3 { color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3.6rem); margin: 0.8rem 0 1rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 1rem; }
h3 { font-size: 1.15rem; margin: 0 0 0.6rem; }
.hero p.lead { font-size: 1.08rem; color: var(--muted); }
.hero-card, .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 1.25rem;
}
.stat {
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem;
  border: 1px solid var(--line);
  text-align: center;
}
.stat strong { display: block; font-size: 1.3rem; color: var(--navy); }
.section { padding: 4rem 0; }
.section.alt { background: #fff; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74,144,226,0.1);
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.checklist { padding-left: 1.1rem; }
.checklist li { margin: 0.4rem 0; }
.price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
}
.price small { font-size: 0.9rem; color: var(--muted); font-weight: 400; }
.band {
  background: linear-gradient(90deg, var(--blue), #68a5ec);
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
}
.band h2, .band h3, .band p, .band a { color: #fff; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1rem;
  margin-bottom: 0.8rem;
}
.faq summary { font-weight: 700; cursor: pointer; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
label { display: block; font-weight: 700; margin-bottom: 0.35rem; }
input, select, textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid #cdd8e3;
  font: inherit;
  background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  padding: 2.5rem 0 1.5rem;
}
.footer a { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}
.small { font-size: 0.92rem; color: var(--muted); }
.footer .small { color: rgba(255,255,255,0.72); }
.notice {
  background: #fff7e8;
  border: 1px solid #f7dfb0;
  color: #6c4c00;
  padding: 1rem;
  border-radius: 14px;
}
.page-hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, #ffffff, #f5f9fd);
  border-bottom: 1px solid var(--line);
}
.kicker { color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; }
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
th, td {
  padding: 0.95rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
th { background: #edf5fd; color: var(--navy); }
blockquote {
  margin: 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--orange);
  background: #fff;
  border-radius: 12px;
}
.more-services-grid,
.service-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.service-options-grid {
  margin-top: 1.6rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.service-card h3 {
  margin-bottom: 0.5rem;
}
.service-card p {
  margin-top: 0;
  color: var(--muted);
}
.service-card .btn {
  margin-top: 0.35rem;
}
.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.service-gallery figure {
  margin: 0;
}
.service-gallery .gallery-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-gallery .gallery-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edf5fd;
}
.service-gallery .gallery-image.image-missing::after {
  content: "Image pending upload";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}
.service-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 0.25s ease;
}
.service-gallery .gallery-item:hover img {
  transform: scale(1.045);
}
.service-gallery figcaption {
  padding: 0.9rem 1rem;
  color: var(--navy);
  font-weight: 800;
}
.pricing-list,
.benefit-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}
.pricing-list li,
.benefit-list li {
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  color: var(--navy);
  font-weight: 800;
}
.inquiry-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.inquiry-section .form-grid {
  margin-bottom: 1rem;
}
.form-field-full {
  grid-column: 1 / -1;
}
.disclaimer-box {
  background: #fff7e8;
  border: 1px solid #f7dfb0;
  border-radius: var(--radius);
  color: #6c4c00;
  padding: 1.15rem;
  font-weight: 800;
}
.disclaimer-box p {
  margin: 0;
}
.service-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.service-note p:last-child {
  margin-bottom: 0;
}
.dark-service-band {
  background:
    radial-gradient(circle at top right, rgba(245,166,35,0.20), transparent 32%),
    linear-gradient(135deg, #10263f, var(--navy));
  color: #fff;
}
.dark-service-band h2,
.dark-service-band h3 {
  color: #fff;
}
.dark-service-band p {
  color: rgba(255,255,255,0.78);
}
@media (max-width: 900px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .more-services-grid, .service-options-grid, .service-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .navbar { flex-direction: column; align-items: flex-start; }
  .stats { grid-template-columns: 1fr; }
  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 0.55rem;
  }
}
@media (max-width: 640px) {
  .more-services-grid, .service-options-grid, .service-gallery { grid-template-columns: 1fr; }
  .nav-links,
  .nav-links li,
  .nav-links .btn {
    width: 100%;
  }
  .nav-dropdown summary {
    display: flex;
    justify-content: space-between;
  }
  .btn,
  button,
  input[type="submit"] {
    width: 100%;
    text-align: center;
  }
}
