:root {
  --navy: #1a2c4e;
  --navy-deep: #0f1d36;
  --green: #2d8a3e;
  --gold: #b08545;
  --gold-soft: #fdf6ec;
  --blue-soft: #eef2f8;
  --text: #2c2c2c;
  --muted: #5a6a7a;
  --line: #d8dde5;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── SITE NAV ── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
}
.nav-brand {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }

/* ── HERO ── */
.hero {
  padding: 48px 0 36px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: center;
}
.hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img {
  width: 100%;
  max-width: 380px;
  display: block;
}
.hero-right h1 {
  font-size: 48px;
  line-height: 1.05;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.hero-right .subhead {
  font-size: 19px;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.4;
}
.hero-right .intro {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
}

.btn-cta {
  display: inline-block;
  margin-top: 22px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--navy-deep); }

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 36px;
}

/* ── FEATURES ── */
.features-section {
  padding-bottom: 40px;
}
.section-heading {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.feature { text-align: center; padding: 0 4px; }
.feature-icon {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 42px; height: 42px; }
.feature h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}
.feature p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── PRICING ── */
.pricing-section {
  padding-bottom: 40px;
}
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.price-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.price-header {
  padding: 18px 24px 0;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}
.standard .price-header { background: var(--blue-soft); }
.commerce .price-header { background: var(--gold-soft); }

.price-body {
  flex: 1;
  padding: 10px 24px 24px;
  display: flex;
  flex-direction: column;
}
.standard .price-body { background: var(--blue-soft); }
.commerce .price-body { background: var(--gold-soft); }

.price-tagline {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 14px;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  padding: 4px 0 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 14px;
}
.price-annual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  font-style: italic;
  text-align: center;
}
.price-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}
.price-amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.price-suffix {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
}
.price-line.annual .price-amount { font-size: 40px; font-weight: 700; }
.price-line.annual .price-suffix { font-size: 14px; }

.price-banner {
  text-align: center;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
}
.price-banner.navy { background: var(--navy); }
.price-banner.gold { background: var(--gold); }

.price-list {
  list-style: none;
  flex: 1;
}
.price-list li {
  position: relative;
  padding: 5px 0 5px 26px;
  font-size: 13px;
  color: var(--text);
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--navy);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='4,8 7,11 12,5'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.price-list.gold-checks li::before { background-color: var(--gold); }

.btn-plan {
  display: block;
  margin-top: 18px;
  text-align: center;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-plan:hover { background: var(--navy-deep); }
.btn-plan.gold { background: var(--gold); }
.btn-plan.gold:hover { background: #906e36; }

/* ── BOTTOM GRID ── */
.bottom-section {
  border-top: 1px solid var(--line);
  padding: 32px 0 36px;
}
.bottom-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.95fr;
  gap: 32px;
}
.bcol h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.bcol h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0 6px;
}
.bcol h4:first-of-type { margin-top: 0; }
.bcol p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 8px;
}
.bcol-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.bcol-heading h3 { margin-bottom: 0; }
.bcol-icon { width: 40px; height: 40px; flex-shrink: 0; }
.bcol-icon svg { width: 100%; height: 100%; }
.bcol-note {
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
  font-size: 13px;
  margin-top: 8px;
}
.impl-pricing {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0;
  font-size: 12.5px;
}
.impl-pricing td {
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
}
.impl-pricing td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--navy);
}
.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 13px;
  color: var(--text);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 4px;
  color: var(--navy);
  font-weight: 700;
}

/* ── FOOTER BAR ── */
.footer-bar {
  background: var(--navy);
  color: #fff;
  padding: 30px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.fb-left { display: flex; align-items: center; gap: 16px; }
.fb-icon {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fb-icon svg { width: 22px; height: 22px; }
.fb-text { font-size: 14px; line-height: 1.45; }
.fb-cta-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.fb-cta-text { font-size: 14px; color: #c8d0dc; line-height: 1.45; margin-bottom: 14px; }

.btn-cta-footer {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-cta-footer:hover { background: #e8edf5; }

/* ── CONTACT STRIP ── */
.contact-strip {
  border-top: 1px solid var(--line);
}
.contact-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 15px 0 20px;
}
.contact-inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
}
.contact-inner a:hover { text-decoration: underline; }
.contact-inner svg { width: 16px; height: 16px; }
.sep { color: var(--line); }

/* ── LEGAL STRIP ── */
.legal-strip {
  background: #f0f2f5;
  border-top: 1px solid var(--line);
  padding: 10px 0;
}
.legal-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.legal-links {
  margin-bottom: 4px;
}
.legal-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
}
.legal-links a:hover { text-decoration: underline; }
.legal-links .sep { margin: 0 8px; color: var(--line); }
.legal-text {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .nav-links { gap: 18px; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .logo-img { max-width: 300px; margin: 0 auto; }
  .hero-right h1 { font-size: 38px; }
  .hero-right .subhead { font-size: 17px; }
  .btn-cta { display: block; text-align: center; }

  .features {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .pricing { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .bottom-grid { grid-template-columns: 1fr 1fr; }
  .bcol.included { grid-column: 1 / -1; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .fb-left { justify-content: center; text-align: center; flex-direction: column; }
  .fb-text { text-align: center; }
  .fb-right { text-align: center; }
}

/* Mobile */
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .nav-inner {
    flex-direction: column;
    height: auto;
    padding: 8px 0;
    gap: 6px;
  }
  .nav-brand { font-size: 12px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; }

  .hero { padding: 32px 0 24px; }
  .hero-right h1 { font-size: 30px; }
  .hero-right .subhead { font-size: 16px; }

  .features { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .pricing { max-width: 100%; }
  .price-row { grid-template-columns: 1fr 1fr; }
  .price-amount { font-size: 40px; }
  .price-line.annual .price-amount { font-size: 30px; }

  .bottom-grid { grid-template-columns: 1fr; }
  .bcol.included { grid-column: auto; }

  .contact-inner { flex-direction: column; gap: 10px; }
  .sep { display: none; }
}
