:root {
  --green: #00693e;
  --green-dark: #004d2d;
  --green-light: #e8f5ee;
  --green-muted: #f0f7f2;
  --gold: #ffcd00;
  --gold-dark: #c9a100;
  --gold-light: #fffbde;
  --ink: #0f1f15;
  --ink-mid: #3a4f41;
  --ink-muted: #5a7060;
  --surface: #ffffff;
  --surface-alt: #f5f8f5;
  --border: rgba(0, 0, 0, 0.08);
  --red: #d84b2a;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 20px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #f9f7f2;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 80px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(0, 0, 0, 0.2);
}
.btn-outline:hover {
  border-color: var(--ink);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.section-label-green {
  color: var(--green);
}
.section-label-white {
  color: rgba(255, 255, 255, 0.45);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: #8a5a00;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 205, 0, 0.35);
  margin-bottom: 28px;
}
.divider {
  border-top: 1px solid var(--border);
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-brand {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.5px;
}
.nav-brand .ds {
  color: var(--green);
}
.nav-brand .mate {
  color: var(--gold-dark);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-muted);
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-login {
  font-size: 14px;
  color: var(--ink-muted);
  padding: 8px 16px;
  transition: color 0.15s;
}
.nav-login:hover {
  color: var(--ink);
}
.nav-cta {
  background: var(--ink);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--ink-mid);
}

/* HERO */
.hero {
  padding: 88px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 105, 62, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -160px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 205, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink-mid);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-muted);
  flex-wrap: wrap;
}
.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}
.hero-card-wrap {
  max-width: 480px;
  margin: 56px auto 0;
  position: relative;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow:
    0 20px 60px rgba(0, 105, 62, 0.09),
    0 4px 16px rgba(0, 0, 0, 0.05);
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.hero-card-title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.status-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #16a34a;
  font-weight: 600;
}
.status-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 13px;
}
.stat-row:last-child {
  border-bottom: none;
}
.stat-label {
  color: var(--ink-muted);
}
.stat-val {
  font-weight: 700;
  font-family: "Sora", sans-serif;
  font-size: 14px;
}
.stat-val.green {
  color: var(--green);
}
.stat-val.gold {
  color: var(--gold-dark);
}
.stat-val.muted {
  color: var(--ink-muted);
  font-weight: 400;
}
.hero-float {
  position: absolute;
  bottom: -36px;
  right: -20px;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(255, 205, 0, 0.28);
}
.hero-float .big {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.hero-float .lbl {
  font-size: 11px;
  color: var(--ink-mid);
  margin-top: 2px;
}

/* PROBLEM */
.problem-section {
  padding: 72px 0;
}
.problem-section h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.problem-section p {
  color: var(--ink-mid);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 14px;
}
.problem-section p strong {
  color: var(--ink);
  font-weight: 500;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.pain-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: #fff0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.pain-card h3 {
  font-size: 15px;
  margin-bottom: 7px;
}
.pain-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* MISTAKE + APPROACH */
.two-col-section {
  padding: 0 0 72px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.card {
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
}
.card-mistake {
  background: #fef3ef;
  border-color: rgba(216, 75, 42, 0.15);
}
.card-approach {
  background: #f0f8ee;
  border-color: rgba(40, 140, 60, 0.15);
}
.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.card-mistake .card-label {
  color: #a03020;
}
.card-approach .card-label {
  color: #286830;
}
.card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.card-mistake h3 {
  color: #8a2818;
}
.card-approach h3 {
  color: #1a4820;
}
.card p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}
.card-mistake p {
  color: #6a3028;
}
.card-approach p {
  color: #2a4a30;
}

/* HOW IT WORKS */
.how-section {
  background: var(--green);
}
.how-section .section-label {
  color: var(--gold);
}
.how-section h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}
.how-section .lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 48px;
  font-weight: 300;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  background: rgba(255, 255, 255, 0.05);
  padding: 28px 22px;
}
.step-num {
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.step-icon {
  font-size: 26px;
  margin-bottom: 10px;
}
.step h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 7px;
}
.step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-weight: 300;
}

/* COMPARISON */
.compare-section {
  background: var(--ink);
  padding: 80px 0;
}
.compare-section .section-label {
  color: rgba(255, 255, 255, 0.4);
}
.compare-section h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 36px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.compare-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
}
.compare-card.highlight {
  background: var(--gold);
  border-color: var(--gold);
}
.compare-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.6;
  color: #fff;
}
.compare-card.highlight .compare-tag {
  color: #5a3800;
  opacity: 1;
}
.compare-card h4 {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}
.compare-card.highlight h4 {
  color: #1a1200;
}
.compare-list {
  list-style: none;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
}
.compare-card.highlight .compare-list {
  color: #4a3000;
}
.compare-list li::before {
  content: "→  ";
  opacity: 0.4;
}
.compare-card.highlight .compare-list li::before {
  content: "✓  ";
  opacity: 1;
  color: var(--green);
  font-weight: 700;
}

/* FEATURES */
.features-section {
  background: var(--surface-alt);
}
.features-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 105, 62, 0.09);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* PROFIT CALLOUT */
.profit-callout-section {
  background: var(--surface);
  padding: 80px 0;
}
.profit-callout-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.profit-callout-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.profit-callout-text h2 em {
  font-style: normal;
  color: var(--green);
}
.profit-callout-text p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 12px;
}
.profit-callout-text p strong {
  color: var(--ink);
  font-weight: 500;
}
.profit-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow:
    0 16px 48px rgba(0, 105, 62, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
}
.profit-mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.profit-mock-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.profit-mock-title {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.profit-mock-sku {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 3px;
}
.profit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px solid #f3f4f6;
}
.profit-row:last-child {
  border-bottom: none;
}
.profit-row-label {
  color: var(--ink-muted);
}
.profit-row-val {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 13px;
}
.profit-row-val.neg {
  color: var(--red);
}
.profit-row-val.neutral {
  color: var(--ink-mid);
}
.profit-total {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profit-total-label {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
}
.profit-total-val {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}
.profit-badge-row {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}
.profit-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--green-light);
  color: var(--green-dark);
}

/* INTEGRATIONS */
.integrations-section {
  background: var(--surface-alt);
}
.integrations-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}
.integrations-section .lead {
  color: var(--ink-muted);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 40px;
}
.integrations-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.integration-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.integration-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.integration-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  background: var(--surface);
  transition: border-color 0.2s;
}
.integration-card:hover {
  border-color: var(--green);
}
.int-logo {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.int-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.int-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.int-tag {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
  font-weight: 300;
}
.int-more {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  background: transparent;
  border: 1.5px dashed var(--border);
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 300;
}
.int-more a {
  color: var(--green);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* PRICING */
.pricing-section {
  background: var(--surface);
}
.pricing-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 10px;
}
.pricing-section .lead {
  color: var(--ink-muted);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 44px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--green);
  border-width: 2px;
  box-shadow: 0 16px 48px rgba(0, 105, 62, 0.11);
}
.popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.plan-price {
  font-family: "Sora", sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup {
  font-size: 20px;
  vertical-align: super;
}
.plan-period {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 20px;
  font-weight: 300;
}
.plan-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 24px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 300;
}
.plan-features li .tick {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-features li strong {
  font-weight: 700;
  color: var(--ink); /* pulls it to full ink color, not the muted grey */
}
.btn-plan-primary {
  display: block;
  text-align: center;
  background: var(--green);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.btn-plan-primary:hover {
  background: var(--green-dark);
}
.btn-plan-outline {
  display: block;
  text-align: center;
  border: 1.5px solid var(--border);
  color: var(--ink-mid);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}
.btn-plan-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

/* TIP */
.tip-section {
  background: var(--surface-alt);
  padding: 80px 0;
}
.tip-box {
  background: var(--gold-light);
  border: 1px solid rgba(255, 205, 0, 0.4);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.tip-emoji {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.tip-box h3 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #6a4500;
  margin-bottom: 6px;
}
.tip-box p {
  font-size: 15px;
  color: #7a5010;
  font-weight: 300;
  line-height: 1.7;
}

/* FAQ */
.faq-section {
  background: var(--surface);
}
.faq-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 36px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover {
  background: var(--surface-alt);
}
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--green);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-ans {
  max-height: 200px;
}
.faq-ans-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* CTA */
.cta-section {
  background: var(--ink);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 205, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-section h2 em {
  font-style: normal;
  color: var(--gold);
}
.cta-section p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-footnote {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

/* FOOTER */
footer {
  background: #f9f7f2;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 48px 0 40px;
}
.footer-brand .nav-brand {
  font-size: 20px;
}
.footer-tagline {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 300;
}
.footer-links h4 {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 14px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 14px;
  color: var(--ink-muted);
  transition: color 0.15s;
  font-weight: 300;
}
.footer-links a:hover {
  color: var(--green);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-muted);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--ink-muted);
  transition: color 0.15s;
}
.footer-legal a:hover {
  color: var(--green);
}

@media (max-width: 860px) {
  section {
    padding: 60px 0;
  }
  .pain-grid,
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .integrations-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .nav-links {
    display: none;
  }
  .profit-callout-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 580px) {
  .pain-grid,
  .features-grid,
  .compare-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   DOCS 
   ============================================================ */

/* Layout */
.docs-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 48px 0 96px;
  align-items: start;
}

/* Sidebar */
.docs-sidebar {
  position: sticky;
  top: 82px;
}
.docs-sidebar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.docs-sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.docs-sidebar a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-muted);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    background 0.15s,
    color 0.15s;
  border-left: 2px solid transparent;
}
.docs-sidebar a:hover {
  color: var(--ink);
  background: var(--surface-alt);
}
.docs-sidebar a.active {
  color: var(--green);
  font-weight: 500;
  border-left-color: var(--green);
  background: var(--green-light);
}

/* Article */
.docs-article {
  min-width: 0;
}
.docs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.docs-breadcrumb a {
  color: var(--ink-muted);
}
.docs-breadcrumb a:hover {
  color: var(--green);
}
.docs-breadcrumb span {
  opacity: 0.4;
}
.docs-article h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.docs-meta {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 32px;
  font-weight: 300;
}
.docs-article h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 40px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  letter-spacing: -0.02em;
}
.docs-article h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 24px 0 8px;
}
.docs-article p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 400;
}
.docs-article ul,
.docs-article ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.docs-article li {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 6px;
  font-weight: 400;
}
.docs-article a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Step blocks */
.step-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 24px 20px;
  margin: 20px 0;
}
.step-block-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.step-block h3 {
  margin: 0 0 8px;
  font-size: 15px;
}
.step-block p {
  margin: 0;
  font-size: 14px;
}
.step-block ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.step-block li {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Callouts */
.callout {
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 20px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.callout-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.2;
}
.callout p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}
.callout p + p {
  margin-top: 8px;
}
.callout-tip {
  background: var(--gold-light);
  border: 1px solid rgba(255, 205, 0, 0.35);
}
.callout-tip p {
  color: #7a5010;
}
.callout-info {
  background: var(--green-light);
  border: 1px solid rgba(0, 105, 62, 0.15);
}
.callout-info p {
  color: var(--green-dark);
}
.callout-warn {
  background: #fef3ef;
  border: 1px solid rgba(216, 75, 42, 0.2);
}
.callout-warn p {
  color: #8a3820;
}

/* Phase header — visually groups related steps */
.phase-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 44px 0 16px;
}
.phase-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.phase-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.phase-header h2 {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* Workflow overview strip */
.workflow-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(0, 105, 62, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 28px 0;
}
.workflow-step {
  background: var(--surface);
  padding: 16px 14px;
  text-align: center;
}
.workflow-step-icon {
  font-size: 22px;
  margin-bottom: 6px;
}
.workflow-step-label {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.workflow-step-sub {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 3px;
}
.workflow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 105, 62, 0.06);
  padding: 0 4px;
}

/* Two option cards */
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
}
.option-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.option-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.option-card h3 {
  font-size: 15px;
  margin: 0 0 8px;
}
.option-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}
.option-card.recommended {
  border-color: var(--green);
  background: var(--green-light);
}
.option-card.recommended .option-card-label {
  color: var(--green);
}
.option-card.standard .option-card-label {
  color: var(--ink-muted);
}

.sync-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.sync-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--surface-alt);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-bottom: 2px solid var(--border);
}
.sync-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid);
  line-height: 1.5;
  vertical-align: top;
}
.sync-table tr:last-child td {
  border-bottom: none;
}
.sync-table td:first-child {
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.badge-auto {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}
.badge-flag {
  display: inline-block;
  background: var(--gold-light);
  color: #8a5a00;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}

/* Profit formula block (profit-calculator.html) */
.formula-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 20px 0;
}
.formula-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #f3f4f6;
}
.formula-row:last-child {
  border-bottom: none;
}
.formula-row-label {
  color: var(--ink-mid);
}
.formula-row-val {
  font-family: "Sora", sans-serif;
  font-weight: 600;
}
.formula-row-val.neg {
  color: var(--red);
}
.formula-row-val.neutral {
  color: var(--ink-mid);
}
.formula-total {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.formula-total-label {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
}
.formula-total-val {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
}

/* Docs index grid */
.docs-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.docs-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.docs-hero p {
  font-size: 16px;
  color: var(--ink-mid);
  font-weight: 300;
  max-width: 520px;
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 48px 0 80px;
}
.doc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-decoration: none;
  color: var(--ink);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.doc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 105, 62, 0.09);
  border-color: var(--green);
}
.doc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.doc-card-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
}
.doc-card h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.doc-card p {
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.doc-card-arrow {
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  margin-top: 4px;
}
.docs-cta-box {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.docs-cta-box h3 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.docs-cta-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* Between-doc navigation */
.docs-nav-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}
.docs-nav-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition:
    border-color 0.2s,
    background 0.2s;
  min-width: 180px;
}
.docs-nav-link:hover {
  border-color: var(--green);
  background: var(--green-light);
}
.docs-nav-link-label {
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.docs-nav-link-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.docs-nav-link.next {
  text-align: right;
  margin-left: auto;
}

/* Helpful feedback footer */
.docs-helpful {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.docs-helpful p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-muted);
}
.docs-helpful a {
  font-size: 14px;
  color: var(--green);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Legal pages (terms.html, privacy.html) */
.legal-layout {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 0 96px;
}
.legal-layout h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.legal-meta {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 40px;
  font-weight: 300;
}
.legal-layout h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 36px 0 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  letter-spacing: -0.02em;
}
.legal-layout p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-layout ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-layout li {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-layout a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 760px) {
  .docs-layout {
    grid-template-columns: 1fr;
  }
  .docs-sidebar {
    display: none;
  }
  .docs-grid {
    grid-template-columns: 1fr;
  }
}
