/* Public marketing site styles — layered on top of style.css */

/* Override base body for public pages */
body.site { background: #fff; color: var(--ink); }

/* ===== Header ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--hair);
  position: sticky; top: 0; z-index: 50;
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand-header { padding: 0; border: 0; }
.site-nav {
  display: flex; align-items: center; gap: 28px;
}
.site-nav a {
  color: var(--ink); font-size: 14px; font-weight: 500;
  text-decoration: none;
}
.site-nav a:hover { color: var(--brand); }
.site-nav a.active { color: var(--brand); }
.nav-verify {
  padding: 8px 16px;
  background: var(--ink); color: #fff !important;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-verify:hover { background: var(--brand) !important; color: #fff !important; }

/* ===== Main ===== */
.site-main { min-height: 60vh; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }

/* ===== Hero ===== */
.hero {
  padding: 88px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
  border-bottom: 1px solid var(--hair);
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  padding: 4px 12px; border-radius: 999px;
  background: var(--wash); border: 1px solid var(--hair);
  color: var(--brand); font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 52px; line-height: 1.05;
  font-weight: 800; letter-spacing: -0.02em;
  margin: 0 0 20px; color: var(--ink);
}
.hero-title .accent { color: var(--brand); }
.hero-sub {
  font-size: 18px; line-height: 1.55; color: var(--soft);
  margin: 0 0 32px; max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero side verify box */
.hero-verify {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.06);
}
.hero-verify-eyebrow {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--brand-light); margin-bottom: 12px;
}
.hero-verify-title {
  font-size: 20px; font-weight: 700;
  margin: 0 0 8px;
}
.hero-verify-sub {
  font-size: 14px; color: var(--soft); margin: 0 0 16px;
}

/* ===== Trust bar (stats below hero) ===== */
.trust-bar {
  padding: 36px 0;
  border-bottom: 1px solid var(--hair);
  background: #fff;
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item .num {
  font-size: 28px; font-weight: 800;
  color: var(--ink); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.trust-item .lbl {
  font-size: 13px; color: var(--soft);
  font-weight: 500;
}

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--wash); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--brand); margin-bottom: 14px;
}
.section-title {
  font-size: 38px; font-weight: 800;
  letter-spacing: -0.02em; margin: 0 0 16px;
  color: var(--ink);
}
.section-sub {
  font-size: 17px; color: var(--soft);
  margin: 0 auto; max-width: 640px; line-height: 1.55;
}

/* ===== Feature grid ===== */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  background: #fff; border: 1px solid var(--hair);
  border-radius: 12px; padding: 32px;
}
.feat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--wash);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--brand);
}
.feat-card h3 {
  font-size: 18px; font-weight: 700;
  margin: 0 0 10px; color: var(--ink);
}
.feat-card p {
  font-size: 14px; line-height: 1.6;
  color: var(--soft); margin: 0;
}

/* ===== How it works steps ===== */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 24px 28px;
  background: #fff; border: 1px solid var(--hair);
  border-radius: 12px;
}
.step-num {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  color: var(--brand);
  background: var(--pass-bg); background: rgba(15,76,129,0.08);
  width: 28px; height: 28px; border-radius: 50%;
  text-align: center; line-height: 28px;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 16px; font-weight: 700;
  margin: 0 0 8px; color: var(--ink);
}
.step p {
  font-size: 13.5px; line-height: 1.55;
  color: var(--soft); margin: 0;
}

/* ===== Two-column content ===== */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.two-col h2 {
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.01em; margin: 0 0 16px;
}
.two-col p {
  font-size: 16px; line-height: 1.65; color: var(--soft);
  margin: 0 0 12px;
}
.two-col-img {
  background: var(--wash); border: 1px solid var(--hair);
  border-radius: 14px;
  aspect-ratio: 1.1 / 1;
  display: flex; align-items: center; justify-content: center;
  color: var(--soft); font-size: 14px;
}

/* ===== Pricing card ===== */
.price-card {
  max-width: 480px; margin: 0 auto;
  background: #fff; border: 2px solid var(--brand);
  border-radius: 16px; padding: 40px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15,76,129,0.10);
}
.price-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--brand);
  background: rgba(15,76,129,0.08);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 20px;
}
.price-amount {
  font-size: 56px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.price-amount .currency {
  font-size: 22px; font-weight: 700;
  color: var(--soft);
}
.price-amount .unit {
  font-size: 16px; font-weight: 500;
  color: var(--soft);
  margin-left: 2px;
}
.price-name {
  font-size: 16px; font-weight: 600;
  color: var(--ink); margin: 10px 0 24px;
}
.price-features {
  text-align: left;
  margin: 0 0 28px; padding: 0;
  list-style: none;
}
.price-features li {
  padding: 10px 0 10px 28px;
  font-size: 14.5px; color: var(--ink);
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.price-features li:last-child { border-bottom: 0; }
.price-features li::before {
  content: "✓";
  position: absolute; left: 0; top: 10px;
  color: var(--pass); font-weight: 700;
}
.price-note {
  font-size: 13px; color: var(--soft);
  margin-top: 16px;
}

/* ===== CTA strip ===== */
.cta-strip {
  background: var(--ink); color: #fff;
  padding: 72px 0; text-align: center;
}
.cta-strip h2 {
  font-size: 36px; font-weight: 800;
  letter-spacing: -0.01em; margin: 0 0 14px;
}
.cta-strip p {
  font-size: 17px; color: rgba(255,255,255,0.7);
  margin: 0 auto 28px; max-width: 540px;
}
.cta-strip .btn-primary {
  background: #fff; color: var(--ink);
}
.cta-strip .btn-primary:hover { background: var(--wash); color: var(--ink); }
.cta-strip .btn-secondary {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.cta-strip .btn-secondary:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ===== FAQ list ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--hair);
  padding: 24px 0;
}
.faq-q {
  font-size: 17px; font-weight: 700;
  color: var(--ink); margin: 0 0 8px;
}
.faq-a {
  font-size: 15px; line-height: 1.6;
  color: var(--soft); margin: 0;
}

/* ===== Buttons sized for marketing pages ===== */
.btn-lg {
  padding: 13px 24px;
  font-size: 15px;
  border-radius: 8px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--wash);
  border-top: 1px solid var(--hair);
  padding: 56px 0 0;
}
.site-footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--soft);
  margin: 0 0 14px;
}
.footer-col a {
  display: block;
  font-size: 14px; color: var(--ink);
  text-decoration: none;
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--brand); }
.footer-tag {
  font-size: 14px; color: var(--soft);
  line-height: 1.55; margin: 14px 0 0;
}
.footer-text {
  font-size: 14px; color: var(--soft);
  line-height: 1.55; margin: 0;
}
.site-footer-bottom {
  margin-top: 48px;
  border-top: 1px solid var(--hair);
  padding: 20px 0;
}
.site-footer-bottom .site-footer-inner {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--soft);
}

/* ===== Inner page hero (smaller, for non-home pages) ===== */
.page-hero {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
  border-bottom: 1px solid var(--hair);
  text-align: center;
}
.page-hero h1 {
  font-size: 42px; font-weight: 800;
  letter-spacing: -0.02em; margin: 0 0 14px;
  color: var(--ink);
}
.page-hero p {
  font-size: 17px; color: var(--soft);
  max-width: 620px; margin: 0 auto; line-height: 1.5;
}

/* ===== Contact form ===== */
.contact-form { max-width: 560px; margin: 0 auto; }
.contact-form .field { margin-bottom: 18px; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .hero-inner, .two-col { grid-template-columns: 1fr; gap: 32px; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .site-nav { display: none; }
  .hero { padding: 56px 0 48px; }
  .hero-title { font-size: 38px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 28px; }
  .site-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .site-footer-inner { grid-template-columns: 1fr; }
  .site-footer-bottom .site-footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== Real photos in two-col sections ===== */
.two-col-img-real {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--hair);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.06);
}

/* ===== Homepage hero photo, if used ===== */
.hero-photo {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--hair);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
