:root {
  --navy: #16304d;
  --navy-light: #1F3A5F;
  --gold: #C89B3C;
  --gold-light: #E4C577;
  --cream: #FBF8F2;
  --ink: #222222;
  --gray: #5C6470;
  --light-border: #E4E1D8;
  --radius: 10px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}
h1, h2, h3, .logo { font-family: 'Poppins', 'Inter', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
h2 { font-size: 32px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.section-sub { color: var(--gray); font-size: 17px; max-width: 620px; margin-bottom: 48px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { border-color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); }

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--light-border);
  backdrop-filter: blur(6px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.logo { font-size: 21px; font-weight: 700; color: var(--navy); }
.logo span { color: var(--gold); }
nav ul { list-style: none; display: flex; gap: 28px; }
nav a { font-size: 15px; font-weight: 500; color: var(--navy); }
nav a:hover { color: var(--gold); }
nav a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-weight: 600; color: var(--navy); font-size: 15px; }
.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--navy); cursor: pointer; }

/* Hero (home) */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 100px 0 90px;
  text-align: center;
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto 20px;
}
.hero p {
  font-size: 18px;
  color: #D8DFE8;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page hero (sub-pages) */
.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 700px;
  margin: 0 auto 14px;
}
.page-hero p {
  font-size: 16px;
  color: #D8DFE8;
  max-width: 580px;
  margin: 0 auto;
}

/* Trust bar */
.trust-bar {
  background: var(--cream);
  padding: 22px 0;
  border-bottom: 1px solid var(--light-border);
}
.trust-bar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.trust-bar li { display: flex; align-items: center; gap: 8px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* Problem/solution */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.card-list { list-style: none; }
.card-list li {
  padding: 18px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--ink);
  border-left: 3px solid var(--gold);
}
.card-list.solution li { border-left-color: var(--navy); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 28px 22px;
}
a.service-card { display: block; transition: transform 0.15s ease, box-shadow 0.15s ease; }
a.service-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(22,48,77,0.08); }
.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.service-card p { font-size: 14px; color: var(--gray); }
.service-card .card-link { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--gold); }

/* Process */
.process { background: var(--cream); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
  margin: 0 auto 18px;
}
.step h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--gray); max-width: 260px; margin: 0 auto; }

/* Pricing */
.pricing-card {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.pricing-card h3 { color: #fff; font-size: 24px; margin-bottom: 14px; }
.pricing-card ul { list-style: none; }
.pricing-card ul li { padding: 8px 0; font-size: 15px; color: #D8DFE8; display: flex; gap: 10px; }
.pricing-card ul li::before { content: "✓"; color: var(--gold-light); font-weight: 700; }
.price-box { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 32px; text-align: center; }
.price-amount { font-size: 40px; font-weight: 700; color: var(--gold-light); }
.price-label { font-size: 13px; color: #B9C2CF; margin-bottom: 4px; }
.price-plus { font-size: 15px; color: #D8DFE8; margin: 14px 0; }
.price-mo { font-size: 28px; font-weight: 700; color: #fff; }
.website-price-note { font-size: 13px; color: #B9C2CF; margin-top: 14px; line-height: 1.5; }

/* Monthly tiers */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.tier-card {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 14px;
  padding: 32px 26px;
  position: relative;
}
.tier-card.featured { border: 2px solid var(--gold); }
.tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tier-card h4 { font-size: 18px; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.tier-price { font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.tier-price span { font-size: 14px; font-weight: 500; color: var(--gray); }
.tier-card ul { list-style: none; }
.tier-card ul li { padding: 7px 0; font-size: 14px; color: var(--gray); display: flex; gap: 8px; }
.tier-card ul li::before { content: "✓"; color: var(--gold); font-weight: 700; }

/* About */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-photo {
  background: var(--cream);
  border: 1px solid var(--light-border);
  border-radius: 14px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 14px;
}
.about-text p { color: var(--gray); margin-bottom: 16px; font-size: 15px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 0 22px;
}
.faq-item summary {
  padding: 18px 0;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--gold); font-weight: 400; flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { padding: 0 0 18px; color: var(--gray); font-size: 15px; max-width: 640px; }

/* CTA banner */
.cta-banner {
  background: var(--gold);
  text-align: center;
  padding: 56px 24px;
}
.cta-banner h2 { color: var(--navy); margin-bottom: 24px; }
.cta-banner .btn-navy:hover { background: #0F2338; }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-list { list-style: none; margin-top: 24px; }
.contact-info-list li { padding: 12px 0; border-bottom: 1px solid var(--light-border); font-size: 15px; }
.contact-info-list strong { color: var(--navy); display: inline-block; min-width: 90px; }
form { display: flex; flex-direction: column; gap: 14px; }
input, select, textarea {
  padding: 13px 14px;
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  width: 100%;
}
textarea { resize: vertical; min-height: 100px; }
label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: -8px; }

/* Footer */
footer { background: var(--navy); color: #B9C2CF; padding: 48px 0 24px; font-size: 14px; }
.footer-wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer-col a { display: block; color: #B9C2CF; margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; text-align: center; font-size: 13px; color: #8C97A6; }

/* Sticky mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 14px;
  text-align: center;
  z-index: 200;
}
.mobile-call-bar a { color: #fff; font-weight: 700; font-size: 16px; }

@media (max-width: 860px) {
  nav, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .split, .about-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .pricing-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .tier-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .hero { padding: 70px 0 100px; }
  .page-hero h1 { font-size: 26px; }
  section { padding: 56px 0; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 58px; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-bar ul { gap: 20px; }
}
