:root {
  --primary: #0a1628;
  --primary-soft: #152844;
  --secondary: #d4af37;
  --bg: #ffffff;
  --muted: #f2f6fb;
  --text: #0a1628;
  --text-soft: #4a5568;
  --success: #0e7a2b;
  --danger: #b00020;
  --radius: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: #07101e;
  color: #d9e2ef;
  font-size: 0.92rem;
}
.top-bar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-bar a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: white;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  background: var(--secondary);
  color: var(--primary);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: white;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
}
.nav-links a.active,
.nav-links a:hover { background: rgba(212, 175, 55, 0.2); }

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: white;
  font-size: 28px;
}

.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(212,175,55,0.18), transparent 30%),
    linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: white;
  padding: 84px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 22px;
  align-items: start;
}
.eyebrow {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.7vw, 3.8rem);
  line-height: 1.12;
}
.hero-lead {
  max-width: 760px;
  font-size: clamp(1rem, 2.3vw, 1.35rem);
  opacity: 0.96;
  margin-bottom: 0;
}
.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-points {
  margin: 20px 0 0;
  padding-left: 18px;
}
.trust-points li { margin-bottom: 4px; }

.hero-proof {
  background: #ffffff;
  color: var(--text);
}
.proof-title {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 700;
}
.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.proof-metrics strong {
  display: block;
  color: var(--primary);
  font-size: 1.05rem;
}
.proof-metrics span {
  display: block;
  color: var(--text-soft);
  font-size: 0.8rem;
}
.hero-proof blockquote {
  margin: 0 0 8px;
  color: var(--text-soft);
}
.proof-author {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-soft);
  font-weight: 700;
}

.section { padding: 76px 0; }
.section-muted { background: var(--muted); }
.section h2 {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin: 0 0 12px;
}
.section-intro {
  text-align: center;
  color: var(--text-soft);
  max-width: 760px;
  margin: 0 auto 34px;
}

.social-proof-strip { padding: 26px 0; }
.proof-strip-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: center;
}
.proof-strip-grid p { margin: 0; font-weight: 600; }
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.chips span {
  display: inline-block;
  background: #eef4ff;
  border: 1px solid #d7e3f8;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.86rem;
  color: #294268;
}

.grid {
  display: grid;
  gap: 18px;
}
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: white;
  border: 1px solid #e8ecf1;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.05);
}
.card h3 { margin-top: 0; }
.muted { color: var(--text-soft); }

.package ul {
  margin: 0 0 14px;
  padding-left: 18px;
}
.popular {
  border-color: #e4c772;
  box-shadow: 0 18px 32px rgba(10, 22, 40, 0.12);
  transform: translateY(-4px);
}
.badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}
.price {
  color: #b68f17;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 4px 0 10px;
}

.step-card {
  border-top: 4px solid #dbe5f5;
}
.step-number {
  margin: 0 0 8px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #edf3ff;
  color: #1f3f6d;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.gallery-grid img:hover {
  transform: translateY(-2px) scale(1.01);
}

.testimonial .stars {
  color: #c3950a;
  margin-top: 0;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.faq-wrap {
  max-width: 840px;
}
.faq-wrap details {
  border: 1px solid #dbe5f5;
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq-wrap summary {
  cursor: pointer;
  font-weight: 700;
}
.faq-wrap details p {
  color: var(--text-soft);
  margin-bottom: 0;
}

.contact-wrap {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1.6fr;
}
.tick-list {
  margin: 0 0 16px;
  padding-left: 18px;
}
.tick-list li { margin-bottom: 4px; }
.contact-info hr {
  border: 0;
  border-top: 1px solid #e7edf7;
  margin: 14px 0;
}

.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  border: 1px solid #ccd6e2;
  border-radius: 8px;
  padding: 10px;
  font: inherit;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(51, 113, 214, 0.2);
  border-color: #4a80d9;
}
.full { grid-column: 1 / -1; }

.form-note {
  margin: -2px 0 0;
  font-size: 0.84rem;
  color: var(--text-soft);
}
.status { margin: 0; min-height: 1.2em; font-size: 0.92rem; }

.btn {
  display: inline-block;
  border: 1px solid #cad3de;
  background: white;
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}
.btn-large { padding: 12px 16px; }
.btn-cta {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--primary);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  background: transparent;
}

.site-footer {
  background: var(--primary);
  color: white;
  padding: 20px 0 86px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer a { color: var(--secondary); }

.mobile-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 35;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(10, 22, 40, 0.28);
  display: none;
}

.lightbox {
  border: 0;
  border-radius: 14px;
  padding: 0;
  max-width: min(1000px, 94vw);
  width: 100%;
  background: #000;
}
.lightbox::backdrop { background: rgba(0, 0, 0, 0.7); }
.lightbox img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 960px) {
  .hero-grid,
  .proof-strip-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .proof-strip-grid p { text-align: center; }
  .chips { justify-content: center; }
  .cards-3,
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .top-bar-inner {
    min-height: 40px;
    justify-content: center;
  }
  .top-bar-inner p { display: none; }

  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 4%;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }
  .nav-links.open { display: flex; }

  .cards-3,
  .gallery-grid,
  .form-grid { grid-template-columns: 1fr; }

  .mobile-sticky-cta { display: inline-block; }
}
