/* FollowWon — shared stylesheet */

:root {
  --navy-950: #05070c;
  --navy-900: #0b0f18;
  --navy-800: #121927;
  --navy-700: #1b2740;
  --navy-600: #24345a;
  --accent-500: #24466f;
  --accent-400: #2e5586;
  --accent-50: #eef2f7;
  --ink-900: #14171c;
  --ink-700: #3a4046;
  --ink-500: #666d76;
  --ink-300: #c9ced4;
  --ink-100: #f0f1f3;
  --white: #ffffff;
  --amber-500: #b45309;
  --danger-500: #b42318;
  --success-500: #16663f;
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 5px;
  --shadow-sm: 0 1px 2px rgba(10, 12, 16, 0.05);
  --shadow-md: 0 2px 6px rgba(10, 12, 16, 0.08);
  --shadow-lg: 0 4px 14px rgba(10, 12, 16, 0.12);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0 0 1em; color: var(--ink-700); }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-500);
  margin-bottom: 12px;
}
.badge-founded {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent-500); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-400); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy-900); border-color: var(--ink-300); }
.btn-outline:hover { border-color: var(--navy-700); background: var(--ink-100); }
.btn-white { background: var(--white); color: var(--navy-900); }
.btn-white:hover { box-shadow: var(--shadow-md); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--ink-300);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--ink-700);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px;
  transition: color .15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 2px;
  background: var(--accent-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover { color: var(--navy-900); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy-900); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--navy-900);
  position: relative; transition: all .2s ease;
}
.nav-toggle::before { position: absolute; transform: translateY(-7px); }
.nav-toggle::after { position: absolute; transform: translateY(7px); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .navbar.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: var(--white);
    padding: 12px;
    border-bottom: 1px solid var(--ink-100);
    box-shadow: var(--shadow-md);
  }
  .navbar.open .nav-links a { padding: 14px 16px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="40" height="40"%3E%3Cpath d="M40 0H0V40" fill="none" stroke="%23ffffff" stroke-opacity="0.06" stroke-width="1"/%3E%3C/svg%3E');
}
.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px 64px;
}
.hero-inner .hero-content { max-width: 680px; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.hero-facts strong { color: var(--white); font-weight: 600; }
.hero h1 { font-size: clamp(28px, 3.6vw, 40px); color: var(--white); margin-bottom: 16px; }
.hero p.lead { color: rgba(255,255,255,0.82); font-size: 17px; max-width: 620px; }
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
@media (max-width: 880px) {
  .hero-inner { padding: 48px 20px 48px; }
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--ink-100); }
.section-dark { background: var(--navy-950); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head p { font-size: 17px; }
.section-head.left { margin: 0 0 44px; text-align: left; }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 920px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--ink-300);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: border-color .15s ease;
}
.card:hover { border-color: var(--navy-700); }
.icon-tile {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-500);
  margin-bottom: 14px;
}
.card h3 { font-size: 16.5px; margin-bottom: 6px; }
.card p { font-size: 14.5px; margin-bottom: 0; }

.step {
  display: flex; gap: 20px; align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.step h4 { margin-bottom: 6px; font-size: 17px; }
.step p { font-size: 15px; }

.logo-strip {
  display: flex; flex-wrap: wrap; gap: 36px; align-items: center; justify-content: center;
  opacity: 0.65;
}
.logo-strip span {
  font-weight: 700; letter-spacing: 0.02em; font-size: 15px; color: var(--ink-500);
  border: 1px solid var(--ink-300); padding: 8px 16px; border-radius: var(--radius-sm);
}

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}
.checklist { list-style: none; margin: 20px 0 0; padding: 0; }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; color: var(--ink-700);
  padding: 8px 0;
}
.checklist li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent-500); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy-950);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-md);
  padding: 48px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.82); margin-bottom: 0; }

/* ---------- Fee table (pricing) ---------- */
.fee-table-wrap { border: 1px solid var(--ink-300); border-radius: var(--radius-md); overflow: hidden; }
table.fee-table { width: 100%; border-collapse: collapse; background: var(--white); }
table.fee-table caption { text-align: left; padding: 16px 20px; font-weight: 700; font-size: 15px; border-bottom: 1px solid var(--ink-300); background: var(--ink-100); }
table.fee-table th, table.fee-table td { padding: 14px 20px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--ink-100); vertical-align: top; }
table.fee-table thead th { background: var(--navy-950); color: var(--white); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; border-bottom: none; }
table.fee-table tbody tr:last-child td { border-bottom: none; }
table.fee-table tbody tr:hover { background: var(--ink-100); }
table.fee-table td.row-label { font-weight: 600; color: var(--ink-900); width: 26%; }
table.fee-table td.center, table.fee-table th.center { text-align: center; }
table.fee-table .check { color: var(--accent-500); font-weight: 700; }
table.fee-table .dash { color: var(--ink-300); }
table.fee-table .price-row td { font-size: 20px; font-weight: 800; color: var(--navy-900); background: var(--ink-100); }

/* ---------- Forms ---------- */
.form-shell {
  background: var(--white);
  border: 1px solid var(--ink-300);
  border-radius: var(--radius-md);
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; color: var(--ink-900); }
.field .hint { font-size: 12.5px; color: var(--ink-500); margin-top: 6px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="number"], select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ink-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-500);
  box-shadow: 0 0 0 3px var(--accent-50);
}
textarea { resize: vertical; min-height: 110px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* Dropzone */
.dropzone {
  border: 2px dashed var(--ink-300);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  text-align: center;
  background: var(--ink-100);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.dropzone.dragover { border-color: var(--accent-500); background: var(--accent-50); }
.dropzone svg { color: var(--accent-500); margin-bottom: 12px; }
.dropzone p { margin-bottom: 4px; font-weight: 600; color: var(--ink-900); }
.dropzone .sub { font-size: 13px; color: var(--ink-500); font-weight: 400; }
#file-input { display: none; }
.file-list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.file-chip {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px solid var(--ink-300);
  padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13.5px;
}
.file-chip .remove { color: var(--danger-500); cursor: pointer; font-weight: 700; background: none; border: none; font-size: 15px; }

.form-msg { margin-top: 18px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; display: none; }
.form-msg.show { display: block; }
.form-msg.success { background: #ecfdf5; color: var(--success-500); border: 1px solid #a7f3d0; }
.form-msg.error { background: #fef2f2; color: var(--danger-500); border: 1px solid #fecaca; }
.form-msg.loading { background: var(--ink-100); color: var(--ink-700); border: 1px solid var(--ink-300); }

/* ---------- Trust / security strip ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 880px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-item { padding: 22px 10px; }
.trust-item svg { color: var(--accent-500); margin-bottom: 10px; }
.trust-item h4 { font-size: 15px; margin-bottom: 4px; }
.trust-item p { font-size: 13px; margin-bottom: 0; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
footer h5 { color: var(--white); font-size: 14px; margin-bottom: 16px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }
footer a { text-decoration: none; color: rgba(255,255,255,0.65); font-size: 14.5px; }
footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 800; font-size: 19px; margin-bottom: 14px; }
address { font-style: normal; font-size: 14.5px; color: rgba(255,255,255,0.65); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: var(--navy-950);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 620px; margin-bottom: 0; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 13.5px; color: var(--ink-500); }
.divider { height: 1px; background: var(--ink-100); margin: 40px 0; }
table.plain { width: 100%; border-collapse: collapse; }
table.plain th, table.plain td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--ink-100); font-size: 14.5px; }
table.plain th { color: var(--ink-500); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; }

/* ---------- Scroll-reveal motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view .reveal-item {
  opacity: 1; transform: translateY(0);
}
.reveal-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-stagger.in-view .reveal-item:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in-view .reveal-item:nth-child(2) { transition-delay: 70ms; }
.reveal-stagger.in-view .reveal-item:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.in-view .reveal-item:nth-child(4) { transition-delay: 210ms; }
.reveal-stagger.in-view .reveal-item:nth-child(5) { transition-delay: 280ms; }
.reveal-stagger.in-view .reveal-item:nth-child(6) { transition-delay: 350ms; }

