:root {
  --navy: #0a1628;
  --navy-2: #0f2744;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --gold: #c9a227;
  --slate: #64748b;
  --text: #1a2332;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
  --font: "DM Sans", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.narrow { width: min(720px, 92%); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--navy); }
.logo:hover { text-decoration: none; }
.logo-img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.logo-text { font-weight: 700; font-size: 1rem; letter-spacing: -0.02em; }
.nav-links { display: flex; list-style: none; gap: 1.5rem; }
.nav-links a { color: var(--slate); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--navy); text-decoration: none; }
.nav-menu { display: flex; align-items: center; gap: 1.25rem; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: 0.15s ease; text-decoration: none;
  font-family: inherit;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-dark); color: white; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline { background: white; color: var(--navy); border-color: var(--border); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn-lg { padding: 0.95rem 1.6rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.hero {
  position: relative; overflow: hidden;
  padding: 4.5rem 0 5rem;
  background: linear-gradient(165deg, #0a1628 0%, #0f2744 55%, #134e4a 100%);
  color: white;
}
.hero-glow {
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,0.35), transparent 70%);
  top: -120px; right: -80px; pointer-events: none;
}
.hero-inner { position: relative; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 0.85rem; border-radius: 999px; font-size: 0.85rem; margin-bottom: 1.25rem;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.hero-title {
  font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 1.1rem;
}
.hero-title em { font-style: italic; color: #5eead4; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 540px; margin-bottom: 1.75rem; }
.hero-sub strong { color: white; font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.hero .btn-ghost { color: white; border-color: rgba(255,255,255,0.35); }
.hero-trust { font-size: 0.9rem; color: rgba(255,255,255,0.55); }

.section { padding: 4.5rem 0; }
.section-eyebrow {
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem;
  font-weight: 700; color: var(--teal); margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--navy); margin-bottom: 0.75rem; letter-spacing: -0.02em;
}
.section-lead { color: var(--slate); font-size: 1.1rem; max-width: 560px; margin-bottom: 2rem; }

.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem;
}
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}
.card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.card p { color: var(--slate); font-size: 0.98rem; }

.deliverables {
  list-style: none; counter-reset: d; max-width: 640px;
}
.deliverables li {
  counter-increment: d; position: relative;
  padding: 1rem 1rem 1rem 3.25rem; margin-bottom: 0.65rem;
  background: white; border: 1px solid var(--border); border-radius: 12px;
}
.deliverables li::before {
  content: counter(d); position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background: var(--navy); color: white; font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.hours-note { margin-top: 1.25rem; color: var(--slate); font-size: 0.95rem; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem;
}
.pricing-card h3 { margin-bottom: 0.75rem; }
.pricing-featured {
  border-color: var(--teal); box-shadow: 0 16px 48px rgba(13,148,136,0.15);
  position: relative;
}
.pricing-tag {
  position: absolute; top: -12px; left: 1.25rem;
  background: var(--teal); color: white; font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 0.65rem; border-radius: 999px;
}
.price { margin: 0.5rem 0 0.25rem; }
.price .amount { font-size: 2.4rem; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; }
.price .per { font-size: 1rem; color: var(--slate); font-weight: 500; }
.price-sub { color: var(--slate); font-size: 0.9rem; margin-bottom: 1rem; }
.pricing-card ul { list-style: none; margin: 1rem 0 1.5rem; }
.pricing-card li {
  padding: 0.4rem 0 0.4rem 1.4rem; position: relative; color: var(--slate); font-size: 0.95rem;
}
.pricing-card li::before {
  content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700;
}

.who { background: white; border-block: 1px solid var(--border); }
.who p { color: var(--slate); font-size: 1.08rem; }

.faq details {
  background: white; border: 1px solid var(--border); border-radius: 12px;
  padding: 1rem 1.15rem; margin-bottom: 0.65rem;
}
.faq summary { cursor: pointer; font-weight: 600; color: var(--navy); }
.faq details p { margin-top: 0.65rem; color: var(--slate); }

.cta-section { padding-bottom: 5rem; }
.cta-panel {
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: white; border-radius: 24px; padding: 3rem 2rem; text-align: center;
  box-shadow: var(--shadow);
}
.cta-logo { margin: 0 auto 1.25rem; border-radius: 14px; }
.cta-panel h2 { font-family: var(--serif); font-weight: 400; font-size: 2.1rem; margin-bottom: 0.5rem; }
.cta-sub { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.cta-note { margin-top: 1.25rem; font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 420px; margin-left: auto; margin-right: auto; }
.cta-note a { color: #5eead4; }
.cta-social { margin-top: 1rem; }
.cta-social a { color: rgba(255,255,255,0.75); font-weight: 500; }

.site-footer { padding: 2rem 0 2.5rem; border-top: 1px solid var(--border); background: white; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img { border-radius: 8px; }
.footer-brand p { color: var(--slate); font-size: 0.85rem; }
.footer-copy { color: var(--slate); font-size: 0.85rem; }

@media (max-width: 860px) {
  .grid-3, .pricing-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; position: absolute; left: 0; right: 0; top: 72px;
    background: white; border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 1rem 4%; align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; gap: 0.75rem; }
}
