:root {
  --ink: #0c1420;
  --ink-soft: #4b5768;
  --ink-faint: #8592a3;
  --bg: #f6f7f9;
  --bg-alt: #eef1f5;
  --card: #ffffff;
  --line: #e2e6ec;

  --navy: #0f2942;
  --navy-deep: #081726;
  --forest: #1a5c4a;
  --forest-light: #e7f2ee;
  --accent: #2e8b6f;
  --accent-bright: #35a583;
  --gold: #c99a4d;

  --dark-bg: #081726;
  --dark-bg-2: #0d1f33;
  --dark-line: rgba(255,255,255,0.10);

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Source Serif 4', Georgia, serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(8,23,38,0.06);
  --shadow-md: 0 4px 16px rgba(8,23,38,0.08);
  --shadow-lg: 0 20px 60px -12px rgba(8,23,38,0.25);
  --shadow-xl: 0 32px 80px -20px rgba(8,23,38,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

.bg-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 600px at 82% -8%, rgba(26,92,74,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 12%, rgba(15,41,66,0.07), transparent 55%);
  pointer-events: none;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow { max-width: 740px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.3rem, 3.6vw, 3.1rem); line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 2.6vw, 2.35rem); line-height: 1.18; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

p { margin: 0 0 12px; color: var(--ink-soft); }
a { color: inherit; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.eyebrow-light { color: #7fd4b6; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246,247,249,0.78);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-mark {
  flex-shrink: 0;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.nav a:not(.btn):hover { color: var(--ink); }
.nav a.btn-small { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(.22,.61,.36,1), box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-bright), var(--forest));
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(26,92,74,0.45);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgba(26,92,74,0.55); }

.btn-ghost {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover { border-color: var(--ink-faint); background: #fff; }

.btn-small {
  padding: 9px 20px;
  font-size: 0.85rem;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-small:hover { background: var(--navy-deep); transform: translateY(-1px); }

.btn-full { width: 100%; padding: 16px; font-size: 1rem; }

/* Hero */
.hero {
  padding: 88px 0 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 { margin-bottom: 22px; }
.hl {
  background: linear-gradient(90deg, var(--forest), var(--accent-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Strip */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--card);
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 24px;
}

.strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  border-left: 2px solid var(--line);
}

.strip-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--navy), var(--forest));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.strip-label { font-size: 0.88rem; color: var(--ink-soft); }

/* Sections */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

.section-dark {
  background: linear-gradient(180deg, var(--dark-bg), var(--dark-bg-2));
  color: #fff;
  position: relative;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 15% 0%, rgba(53,165,131,0.14), transparent 60%);
  pointer-events: none;
}
.section-dark .wrap { position: relative; }

.section-dark h2.light { color: #fff; }

.lead { font-size: 1.05rem; max-width: 640px; }
.lead-light { color: #b9c6d4; }
.lead-muted { color: var(--ink-faint); font-size: 0.98rem; }

/* Grid cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--forest-light), #dcece5);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.card p { margin-bottom: 0; font-size: 0.95rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 44px;
  margin-top: 44px;
}

.step { display: flex; gap: 20px; }

.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.4;
  width: 40px;
}

.step p { font-size: 0.95rem; margin-bottom: 0; }

/* Form */
.contact-form {
  margin-top: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(6px);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #dfe6e2;
}

.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--dark-line);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.field input::placeholder, .field textarea::placeholder { color: #6d7c8a; }

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(53,165,131,0.18);
}

.hidden-field { position: absolute; left: -9999px; }

.form-success {
  margin-top: 24px;
  padding: 26px 28px;
  background: rgba(53,165,131,0.1);
  border: 1px solid rgba(53,165,131,0.3);
  border-radius: var(--radius);
}

.form-success h3 { color: #fff; margin-bottom: 6px; }
.form-success p { color: #b9c6d4; margin-bottom: 0; }

/* Footer */
.site-footer { background: var(--dark-bg); border-top: 1px solid var(--dark-line); }

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 24px;
  font-size: 0.85rem;
  color: #b9c6d4;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.footer-muted { color: #5c6b7a; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 24px; max-width: 460px; }
}

@media (max-width: 760px) {
  .nav { gap: 16px; }
  .nav a:not(.btn) { display: none; }
  .strip-inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero { padding: 56px 0 60px; }
  .section { padding: 68px 0; }
  .contact-form { padding: 22px; }
  .mock-browser { transform: none; animation: none; }
  .float-card { display: none; }
}

/* ---------- Rebuild 2026-09-05: screenshots, feature rows, segments, numbers, FAQ ---------- */

/* Hero visual */
.hero-visual { position: relative; }
.mock-glow {
  position: absolute; inset: -8% -6%; z-index: -1; border-radius: 40px;
  background: radial-gradient(60% 60% at 60% 40%, rgba(46,139,111,0.22), transparent 70%);
  filter: blur(30px);
}
.hero-points {
  list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 8px;
  font-size: 0.92rem; color: var(--ink-soft);
}
.hero-points li { padding-left: 24px; position: relative; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--forest-light); box-shadow: inset 0 0 0 2px var(--accent);
}

/* Screenshot frames */
.shot { margin: 0; overflow: hidden; background: #fff; }
.shot img { display: block; width: 100%; height: auto; }
.shot-browser {
  border-radius: 14px; border: 1px solid var(--line); box-shadow: var(--shadow-xl);
}
.shot-bar {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px;
  background: linear-gradient(180deg, #f9fafb, #eef1f5); border-bottom: 1px solid var(--line);
}
.shot-bar span { width: 9px; height: 9px; border-radius: 50%; background: #d3d9e1; }
.shot-bar span:nth-child(1) { background: #f0b3a8; }
.shot-bar span:nth-child(2) { background: #f2d49a; }
.shot-bar span:nth-child(3) { background: #b6dfc9; }
.shot-url {
  margin-left: 10px; flex: 1; max-width: 300px; font-size: 0.7rem; color: var(--ink-faint);
  background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 3px 10px;
}
.shot-hero { transform: rotate(-1.2deg) translateX(6px); }
.shot-card { border-radius: 14px; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.shot-small { box-shadow: var(--shadow-md); margin-bottom: 18px; aspect-ratio: 16 / 10; }
.shot-small img { height: 100%; object-fit: cover; object-position: top left; }
.shot-phone {
  width: 300px; max-width: 78%; margin: 0 auto; border-radius: 34px; padding: 10px;
  background: #0f1a26; box-shadow: var(--shadow-xl); aspect-ratio: 390 / 820;
}
.shot-phone img { border-radius: 26px; height: 100%; object-fit: cover; object-position: top; }

.float-card {
  position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg);
}
.float-card strong { display: block; font-size: 0.88rem; color: var(--ink); }
.float-card span { display: block; font-size: 0.72rem; color: var(--ink-faint); }
.float-icon {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  font-weight: 700; font-size: 0.95rem;
}
.float-card-a { left: -28px; bottom: 44px; }
.float-card-a .float-icon { background: var(--forest-light); color: var(--forest); }
.float-card-b { right: -18px; top: 40%; }
.float-card-b .float-icon { background: #fdf0dc; color: var(--gold); }

/* Feature rows (how it works) */
.feature-rows { display: grid; gap: 88px; margin-top: 56px; }
.feature-row {
  display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: center;
}
.feature-row-flip .feature-text { order: 2; }
.feature-text .step-num { margin-bottom: 14px; }
.feature-text h3 { font-size: 1.5rem; margin-bottom: 12px; }
.feature-text p { font-size: 1rem; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.check-list li { padding-left: 28px; position: relative; font-size: 0.94rem; color: var(--ink-soft); }
.check-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--forest-light); color: var(--forest); font-size: 0.7rem; font-weight: 800;
  display: grid; place-items: center; margin-top: 3px;
}

/* Statement card */
.statement {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  overflow: hidden; max-width: 560px; justify-self: center; width: 100%;
}
.statement-head {
  display: flex; justify-content: space-between; align-items: flex-end; padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
}
.statement-label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.statement-head strong { font-family: var(--font-display); font-size: 1.3rem; }
.statement-period { font-size: 0.85rem; color: var(--ink-faint); }
.statement-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.statement-table th, .statement-table td { padding: 11px 22px; text-align: right; }
.statement-table th:first-child, .statement-table td:first-child { text-align: left; }
.statement-table thead th { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; border-bottom: 1px solid var(--line); }
.statement-table tbody tr + tr td { border-top: 1px solid #f0f2f5; }
.statement-table tfoot td { border-top: 2px solid var(--ink); font-weight: 700; color: var(--ink); }
.statement-table td:last-child { color: var(--forest); font-weight: 600; }
.statement-foot { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px; background: var(--bg-alt); font-size: 0.85rem; color: var(--ink-soft); }
.statement-paid { background: var(--forest-light); color: var(--forest); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }

/* Platform grid */
.platform-grid .card { padding: 18px 18px 22px; }
.platform-grid h3 { margin-top: 4px; }

/* Segments */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.card-segment { padding: 32px; }
.segment-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--forest-light); color: var(--forest); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.segment-tag-alt { background: #fdf0dc; color: #8a6420; }
.card-segment h3 { font-size: 1.35rem; }

/* Numbers */
.numbers-grid { display: grid; grid-template-columns: 6fr 6fr; gap: 64px; align-items: center; }
.numbers-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 26px 0; }
.numbers-stats div { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.numbers-stats strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--forest); line-height: 1.1; }
.numbers-stats span { font-size: 0.8rem; color: var(--ink-faint); }
.numbers-table { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md); overflow: hidden; }
.numbers-table table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.numbers-table th, .numbers-table td { padding: 14px 20px; text-align: right; }
.numbers-table th:first-child, .numbers-table td:first-child { text-align: left; }
.numbers-table thead th { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); background: var(--bg-alt); }
.numbers-table tbody tr + tr td { border-top: 1px solid #f0f2f5; }
.numbers-table tfoot td { border-top: 2px solid var(--ink); font-weight: 700; color: var(--ink); }
.numbers-table td:last-child { color: var(--forest); font-weight: 600; }

/* FAQ */
.faq-list { display: grid; gap: 12px; margin-top: 36px; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 22px; }
.faq summary { cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; position: relative; padding-right: 32px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 12px; font-size: 1.3rem; color: var(--accent); font-weight: 400; }
.faq[open] summary::after { content: "\2212"; }
.faq p { padding-bottom: 18px; margin: 0; font-size: 0.95rem; }

/* Form select to match inputs */
.field select {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06); color: #fff; font: inherit; font-size: 0.95rem;
}
.field select option { color: var(--ink); }
.field select:focus { outline: none; border-color: var(--accent-bright); }

/* Responsive additions */
@media (max-width: 980px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row-flip .feature-text { order: 0; }
  .numbers-grid { grid-template-columns: 1fr; gap: 32px; }
  .grid-2 { grid-template-columns: 1fr; }
  .float-card-a { left: 0; bottom: -18px; }
  .float-card-b { right: 0; top: -10px; }
  .shot-hero { transform: none; }
}
@media (max-width: 760px) {
  .feature-rows { gap: 60px; }
  .numbers-stats { grid-template-columns: 1fr 1fr; }
  .statement-table th, .statement-table td, .numbers-table th, .numbers-table td { padding: 10px 12px; font-size: 0.85rem; }
  .shot-phone { width: 240px; }
  .float-card { display: none; }
}
