/* Inter via Bunny Fonts — GDPR-compliant, no Google tracking, same font */
@import url('https://fonts.bunny.net/css?family=inter:400,500,600,700,800,900&display=swap');

:root {
  --bg: #0e0e11; --bg2: #121215; --bg3: #16161b;
  --surface: #1c1c22; --surface2: #22222b;
  --border: rgba(255,255,255,0.06); --border2: rgba(255,255,255,0.11);
  --text: #e8e8ed; --muted: #8b8c9e; --muted2: #5b5b70;
  --orange: #ff7a00; --orange2: #ff9933;
  --orange-bg: rgba(255,122,0,0.08); --orange-bd: rgba(255,122,0,0.18);
  --green: #22c55e; --red: #ef4444;
  --font: 'Inter', system-ui, sans-serif;
  --radius: 12px; --radius-lg: 20px; --max: 1160px; --transition: 0.2s ease;
}

/* ── Reset + Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: var(--font);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  line-height: 1.2;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,122,0,0.15); }
  50%       { box-shadow: 0 0 40px rgba(255,122,0,0.30); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0; }
}

.fade-up { animation: fadeUp 0.55s both; }
.d1  { animation-delay: 0.05s; }
.d2  { animation-delay: 0.12s; }
.d3  { animation-delay: 0.20s; }
.d4  { animation-delay: 0.28s; }
.d5  { animation-delay: 0.36s; }
.d6  { animation-delay: 0.44s; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 64px;
  /* Slightly lighter than --bg so nav is visually distinct on all pages */
  background: rgba(20,20,26,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  /* Flex on nav itself — most reliable vertical centring */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WordPress admin bar offset (logged-in view only) */
.admin-bar nav              { top: 32px; }
.admin-bar.home nav         { top: calc(32px + var(--announce-h, 40px)); }
@media (max-width: 600px) {
  .admin-bar nav            { top: 46px; }
  .admin-bar.home nav       { top: calc(46px + var(--announce-h, 40px)); }
}

.nav-inner {
  /* Flex row — logo left, CTA right, links absolutely centred */
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--max);
  padding: 0 24px;
}

.nav-logo {
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
}

.nav-logo-icon {
  flex-shrink: 0;
  display: block;
  border-radius: 7px;
}

/* Links sit at the exact centre of the nav bar, independent of logo/CTA width */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.nav-links li { list-style: none; }

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 7px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: block;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

/* CTA pushed to the far right */
.nav-actions {
  margin-left: auto;
  flex-shrink: 0;
}

.nav-cta   { flex-shrink: 0; }
.nav-hamburger { display: none; }

/* ── Announcement Bar ── */
#announce {
  background: linear-gradient(90deg, rgba(255,122,0,0.12) 0%, rgba(255,153,51,0.08) 50%, rgba(255,122,0,0.12) 100%);
  border-bottom: 1px solid var(--orange-bd);
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 910;
}

/* Homepage only: push nav below the announcement bar.
   JS in main.js reads actual #announce height and sets --announce-h on <body>. */
.home nav { top: var(--announce-h, 40px); }
.home .nav-mobile { top: calc(var(--announce-h, 40px) + 64px); }
@media (max-width: 760px) {
  .home nav { top: var(--announce-h, 40px); }
  .home .nav-mobile { top: calc(var(--announce-h, 40px) + 56px); }
}

.announce-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
}

.announce-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255,122,0,0.4);
  animation: pulse 1.5s ease-out infinite;
}

/* ── Section Helpers ── */
section {
  padding: 96px 0;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-bg);
  border: 1px solid var(--orange-bd);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Bulletproof centering inside .centered flex containers */
.centered > .section-label {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 48px;
}

.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.centered .section-sub { margin-bottom: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
  color: #060c18;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(255,122,0,0.30);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255,122,0,0.40);
  filter: brightness(1.06);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--border2);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border2);
  background: var(--surface);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

/* ── Hero ── */
#hero {
  padding: 180px 0 100px; /* 40px announce + 64px nav + 76px breathing room */
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,122,0,0.10) 0%, transparent 65%),
    var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,122,0,0.10) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0h40v40H0z' fill='none'/%3E%3Cpath d='M0 0h1v1H0zm40 0h1v1h-1zM0 40h1v1H0zm40 40h1v1h-1z' fill='rgba(255,255,255,0.015)'/%3E%3C/svg%3E");
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange2);
  background: var(--orange-bg);
  border: 1px solid var(--orange-bd);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: blink 2s infinite;
}

.hero-title {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-title span {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}

.hero-trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

.hero-trust-item strong { color: var(--text); }

/* Hero Visual — Dashboard mockup */
.hero-visual {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border),
    0 32px 64px rgba(0,0,0,0.5),
    0 0 60px rgba(255,122,0,0.06);
  animation: glow 4s ease-in-out infinite;
}

.hv-topbar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 16px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.hv-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.hv-title {
  font-size: 11px;
  color: var(--muted2);
  font-weight: 500;
  margin-left: 10px;
}

.hv-body { padding: 20px; }

.hv-stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.hv-stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.hv-stat-label {
  font-size: 10px;
  color: var(--muted2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.hv-stat-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}

.hv-stat-up {
  font-size: 10px;
  color: var(--green);
  font-weight: 600;
}

.hv-seq-list { display: flex; flex-direction: column; gap: 8px; }

.hv-seq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  gap: 12px;
}

.hv-seq-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hv-seq-icon { font-size: 18px; flex-shrink: 0; }

.hv-seq-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hv-seq-sub {
  font-size: 10px;
  color: var(--muted2);
  margin-top: 2px;
}

.hv-seq-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.hv-seq-badge.active {
  background: rgba(34,197,94,0.12);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.25);
}

.hv-seq-badge.paused {
  background: var(--surface2);
  color: var(--muted2);
  border: 1px solid var(--border);
}

.hv-seq-rate {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

/* ── Logo Bar ── */
#logos {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}

.logo-item {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -0.01em;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 16px;
  line-height: 1;
}

.logo-item:hover {
  color: var(--text);
  border-color: rgba(255,122,0,0.25);
  background: rgba(255,122,0,0.05);
}

/* ── Integrations ── */
#integrations {
  background: var(--bg2);
}

.int-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 28px;
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.int-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: all var(--transition);
  cursor: default;
}

.int-card:hover {
  background: var(--surface2);
  border-color: var(--border2);
  color: var(--text);
  transform: translateY(-2px);
}

.int-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.int-icon svg {
  display: block;
}

.int-sub {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.int-sub strong { color: var(--text); }

/* ── Problem ── */
#problem { background: var(--bg); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.problem-card.before {
  border-color: rgba(239,68,68,0.2);
  background: linear-gradient(135deg, rgba(239,68,68,0.04), var(--surface));
}

.problem-card.after {
  border-color: rgba(34,197,94,0.2);
  background: linear-gradient(135deg, rgba(34,197,94,0.04), var(--surface));
}

.prob-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.problem-card.before .prob-tag {
  background: rgba(239,68,68,0.1);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.2);
}

.problem-card.after .prob-tag {
  background: rgba(34,197,94,0.1);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.2);
}

.prob-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}

.prob-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prob-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.prob-list li span:first-child { flex-shrink: 0; margin-top: 1px; }

.problem-card.before .prob-list li span:first-child { color: var(--red); }
.problem-card.after .prob-list li span:first-child { color: var(--green); }

/* ── Features ── */
#features { background: var(--bg2); }

.features-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.feature-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fv-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fv-email {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.fv-email-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.fv-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--orange-bg);
  border: 1px solid var(--orange-bd);
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fv-from {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 2px;
}

.fv-subject {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fv-preview {
  font-size: 11px;
  color: var(--muted2);
  margin-left: 48px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feat-card:hover {
  border-color: rgba(255,122,0,0.2);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.feat-card:hover::before { opacity: 1; }

.feat-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-bg);
  border: 1px solid var(--orange-bd);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.feat-icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.feat-card:hover .feat-icon {
  background: rgba(255,122,0,0.14);
  border-color: rgba(255,122,0,0.3);
}

.feat-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── How It Works ── */
#how { background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  transition: all var(--transition);
}

.step:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.step-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.5;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  font-feature-settings: 'tnum';
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Testimonials ── */
#testimonials { background: var(--bg2); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

.testi-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.testi-stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange);
  color: #060c18;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.testi-role {
  font-size: 12px;
  color: var(--muted2);
}

/* ── Industry Proof Section ── */
#proof { background: var(--bg2); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.proof-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  opacity: 0.4;
}

.proof-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.proof-stat {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text);
}

.proof-stat span {
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
  margin-left: 2px;
}

.proof-context {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.proof-card-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
}

.proof-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted2);
}

.proof-solve {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-bg);
  border: 1px solid var(--orange-bd);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
}

.proof-solve svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.proof-source {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.proof-roi {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(255,122,0,0.04) 0%, var(--surface) 50%);
}

.proof-roi-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-roi-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.proof-roi-sub {
  font-size: 13px;
  color: var(--muted);
}

.proof-roi-calc {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.proof-roi-ex {
  font-size: 14px;
  color: var(--muted);
}

.proof-roi-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.04em;
}

@media (max-width: 760px) {
  .proof-grid { grid-template-columns: 1fr; }
  .proof-roi { padding: 24px; }
  .proof-roi-inner { flex-direction: column; align-items: flex-start; }
  .proof-stat { font-size: 44px; }
  .pricing-urgency { flex-direction: column; gap: 8px; }
  .price-vs { font-size: 11px; }
  .int-card { font-size: 12px; padding: 12px 14px; }
}

/* ── Blog Preview ── */
#blog-preview { background: var(--bg); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  opacity: 0;
  transition: opacity var(--transition);
}

.blog-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.blog-card:hover::before { opacity: 1; }

.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-bg);
  border: 1px solid var(--orange-bd);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  align-self: flex-start;
}

.blog-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.blog-title a {
  color: inherit;
  transition: color var(--transition);
}

.blog-title a:hover { color: var(--orange); }

.blog-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted2);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.blog-read {
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
  transition: color var(--transition);
}

.blog-read:hover { color: var(--orange2); }

.blog-cta-wrap {
  text-align: center;
  margin-top: 36px;
}

/* ── Blog Page (home.php / blog archive) ── */
.blog-page-wrap {
  /* 64px nav + 32px gap on non-home pages (no announce bar) */
  padding: 100px 0 80px;
  min-height: 80vh;
}

.blog-page-header {
  /* NO max-width here — border-bottom must span full container width
     to align visually with the article grid below */
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.blog-page-header .section-label {
  display: inline-block;
  margin-bottom: 14px;
}

.blog-page-header .section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.15;
  max-width: 680px; /* text readable width — does NOT affect border alignment */
}

.blog-page-header .section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px; /* same — only text, not container */
}

/* Category filter pills */
.blog-cat-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.blog-cat {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid var(--border2);
  color: var(--muted);
  background: var(--surface);
  transition: all var(--transition);
  text-decoration: none;
}

.blog-cat:hover,
.blog-cat.active {
  background: rgba(255,122,0,0.12);
  border-color: rgba(255,122,0,0.35);
  color: var(--orange);
}

/* Full blog grid — wider layout */
.blog-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Featured image in blog card */
.blog-card-img {
  display: block;
  margin: -28px -28px 20px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  height: 180px;
  background: linear-gradient(135deg, var(--surface2), var(--bg2));
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

/* No-image placeholder gradient */
.blog-card-img:not(:has(img))::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,122,0,0.08) 0%, var(--bg2) 100%);
}

/* Blog date + read time */
.blog-meta {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta span { color: var(--muted2); }

/* Newsletter CTA inside blog page */
.blog-nl-cta {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.blog-nl-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.blog-nl-cta .newsletter-form {
  margin: 0 auto;
  align-items: stretch;
}

.blog-nl-cta .nl-success {
  display: none;
  color: #4ade80;
  font-weight: 600;
  font-size: 15px;
}

/* Blog pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 0;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--orange);
  border-color: var(--orange);
  color: #060c18;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
  width: auto;
  padding: 0 16px;
}

/* Content path cards hover */
.content-path-card:hover {
  border-color: rgba(255,122,0,0.3) !important;
}

@media (max-width: 760px) {
  .blog-grid-full { grid-template-columns: 1fr; }
  .blog-page-header .section-title { font-size: 28px; }
  .blog-nl-cta { padding: 32px 20px; }
}

/* ── Pricing ── */
#pricing { background: var(--bg2); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}

.price-card.featured {
  border-color: rgba(255,122,0,0.35);
  background: linear-gradient(160deg, rgba(255,122,0,0.07) 0%, var(--surface) 60%);
  transform: scale(1.02);
  box-shadow: 0 0 0 1px rgba(255,122,0,0.12), 0 24px 60px rgba(255,122,0,0.12), 0 0 80px rgba(255,122,0,0.05);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #060c18;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.price-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.price-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.price-amount {
  font-size: 56px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.price-currency {
  font-size: 26px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--muted);
}

.price-note {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 24px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 0;
  line-height: 1.4;
}

.price-features li strong { color: var(--text); }

.pricing-urgency {
  background: rgba(255,122,0,0.07);
  border: 1px solid rgba(255,122,0,0.2);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-urgency strong { color: var(--text); }

.price-feature-dim {
  color: var(--muted2) !important;
  font-size: 13px;
  opacity: 0.65;
}

.price-upgrade-note {
  font-size: 12px;
  color: var(--muted2);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 8px;
}

.price-vs {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  border-top: 1px solid rgba(255,122,0,0.2);
  padding-top: 14px;
  margin-top: 8px;
}

.pricing-guarantee {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 36px;
}

/* ── FAQ ── */
#faq { background: var(--bg); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: var(--font);
  transition: color var(--transition);
}

.faq-q:hover { color: var(--orange); }

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--orange);
}

.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }

.faq-a p { margin: 0; }

.faq-a a { color: var(--orange); text-decoration: underline; }

/* ── Newsletter ── */
#newsletter { background: var(--bg2); }

.newsletter-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-magnet {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  background: var(--orange-bg);
  border: 1px solid var(--orange-bd);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.newsletter-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text);
}

.newsletter-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 460px;
  margin: 0 auto 28px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto 12px;
}

.nl-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
}

.nl-input::placeholder { color: var(--muted2); }

.nl-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.12);
}

.nl-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #060c18;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  transition: all var(--transition);
}

.nl-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.nl-fine {
  font-size: 12px;
  color: var(--muted2);
}

.nl-fine a { color: var(--muted); text-decoration: underline; }

.nl-success {
  display: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  padding: 14px 20px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius);
  max-width: 440px;
  margin: 0 auto;
}

.nl-success.show { display: block; }

/* ── Exit Popup ── */
#exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(14,14,17,0.92);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#exit-popup.show { display: flex; }

.exit-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: fadeUp 0.35s both;
  box-shadow: 0 32px 64px rgba(0,0,0,0.6);
}

.exit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 20px;
  color: var(--muted2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all var(--transition);
  font-family: var(--font);
  line-height: 1;
}

.exit-close:hover { color: var(--text); background: var(--surface2); }

.exit-emoji { font-size: 48px; margin-bottom: 16px; }

.exit-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: var(--text);
}

.exit-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.exit-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.exit-no {
  font-size: 12px;
  color: var(--muted2);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  transition: color var(--transition);
}

.exit-no:hover { color: var(--muted); }

/* ── Sticky CTA ── */
#sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(14,14,17,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

#sticky-cta.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(0);
}

#sticky-cta p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

#sticky-cta span {
  font-size: 13px;
  color: var(--muted);
}

/* ── Footer ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--muted2);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── Page Template ── */
.mm-page-wrap {
  padding: 120px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.mm-page-content .post-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--text);
}

.mm-page-content .post-content {
  font-size: 17px;
  line-height: 1.78;
  color: var(--text);
}

.mm-page-content .post-content h2 { font-size: 26px; font-weight: 700; margin: 32px 0 12px; }
.mm-page-content .post-content h3 { font-size: 21px; font-weight: 700; margin: 24px 0 10px; }
.mm-page-content .post-content p { margin-bottom: 18px; }
.mm-page-content .post-content a { color: var(--orange); text-decoration: underline; }
.mm-page-content .post-content ul,
.mm-page-content .post-content ol { padding-left: 24px; margin-bottom: 18px; }
.mm-page-content .post-content li { margin-bottom: 8px; }

/* ── Single Post Page ── */
.post-page-wrap { padding: 100px 0 80px; }

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.post-article { min-width: 0; }

.post-meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.post-date, .post-read-time { font-size: 13px; color: var(--muted2); }

.post-title {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 32px;
  color: var(--text);
}

.post-hero-img {
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,122,0,0.08), var(--bg2));
  min-height: 200px;
}

.post-hero-img img { width: 100%; height: auto; display: block; }

/* Post body typography */
.post-content { font-size: 17px; line-height: 1.78; color: var(--text); }

.post-content h2 {
  font-size: 28px; font-weight: 800; letter-spacing: -0.02em;
  margin: 44px 0 14px; color: var(--text);
  padding-top: 12px; border-top: 1px solid var(--border);
}

.post-content h3 { font-size: 21px; font-weight: 700; margin: 30px 0 10px; }
.post-content p { margin-bottom: 20px; }
.post-content a { color: var(--orange); text-decoration: underline; }
.post-content strong { color: var(--text); font-weight: 700; }

.post-content ul, .post-content ol { padding-left: 22px; margin-bottom: 20px; }
.post-content li { margin-bottom: 10px; line-height: 1.65; }

.post-content pre {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 12px; padding: 22px 24px; overflow-x: auto;
  margin: 24px 0; position: relative;
}

.post-content code {
  font-family: 'Fira Mono', 'Consolas', 'Courier New', monospace;
  font-size: 13.5px; color: #c9cfe3; line-height: 1.7;
}

.post-content :not(pre) > code {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 5px; padding: 2px 7px; font-size: 13px; color: var(--orange2);
}

.post-content table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 14px; }
.post-content th {
  background: var(--surface2); padding: 11px 14px; text-align: left;
  font-weight: 700; color: var(--text); border-bottom: 2px solid var(--border2);
}
.post-content td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--muted); }
.post-content tr:hover td { background: rgba(255,255,255,0.02); }
.post-content td strong { color: var(--orange); }

/* Author + share bar */
.post-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin: 44px 0 32px; padding: 24px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.post-author { display: flex; align-items: center; gap: 12px; }

.post-author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #060c18; flex-shrink: 0;
}

.post-author-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.post-author-role { font-size: 12px; color: var(--muted2); }

.post-share { display: flex; gap: 8px; flex-wrap: wrap; }

.share-btn {
  padding: 7px 14px; border-radius: 8px; font-size: 12px; font-weight: 600;
  background: var(--surface); border: 1px solid var(--border2);
  color: var(--muted); transition: all var(--transition); text-decoration: none;
}
.share-btn:hover { background: var(--surface2); color: var(--text); }

/* In-post CTA box */
.post-cta-box {
  display: grid; grid-template-columns: 36px 1fr auto;
  align-items: center; gap: 16px;
  background: linear-gradient(135deg,rgba(255,122,0,0.08),rgba(255,122,0,0.03));
  border: 1px solid rgba(255,122,0,0.22); border-radius: 14px; padding: 24px;
  margin: 36px 0;
}

.post-cta-icon { font-size: 22px; }
.post-cta-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.post-cta-sub { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Sidebar */
.post-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }

.sidebar-widget {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px;
}

.sidebar-widget-title {
  font-size: 14px; font-weight: 800; color: var(--text);
  margin-bottom: 12px; letter-spacing: -0.01em;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}

.sidebar-post-link {
  display: block; padding: 9px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: opacity var(--transition);
}
.sidebar-post-link:last-child { border-bottom: none; }
.sidebar-post-link:hover { opacity: 0.7; }
.sidebar-post-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 3px; }
.sidebar-post-meta { font-size: 11px; color: var(--muted2); }

.sidebar-cta {
  background: linear-gradient(135deg,rgba(255,122,0,0.09),var(--surface));
  border-color: rgba(255,122,0,0.22);
}
.sidebar-cta-title { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1.3; letter-spacing: -0.02em; }

/* Related posts */
.related-posts { max-width: var(--max); margin: 56px auto 0; padding: 40px 24px 0; border-top: 1px solid var(--border); }
.related-title { font-size: 22px; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.02em; }

/* ── Reading Progress Bar ── */
.reading-progress {
  position: fixed; top: 0; left: 0; z-index: 999;
  height: 3px; width: 0%; background: linear-gradient(90deg, var(--orange), var(--orange2));
  transition: width 0.1s linear; pointer-events: none;
}

/* ── Author strip (top of article) ── */
.post-author-strip {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.post-author-strip .post-author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #060c18; flex-shrink: 0;
}
.post-author-info { flex: 1; }
.post-reading-est { font-size: 12px; color: var(--muted2); white-space: nowrap; }

/* ── Table of Contents ── */
.post-toc {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--orange); border-radius: 0 12px 12px 0;
  padding: 20px 24px; margin: 0 0 36px;
}
.post-toc-title {
  font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.post-toc-list { padding-left: 18px; margin: 0; }
.post-toc-list li { margin-bottom: 6px; }
.post-toc-list a {
  font-size: 14px; color: var(--muted); text-decoration: none;
  line-height: 1.5; transition: color var(--transition);
}
.post-toc-list a:hover { color: var(--orange); }

/* Sidebar ToC */
.sidebar-toc-list { padding-left: 14px; margin: 0; }
.sidebar-toc-list li { margin-bottom: 5px; }
.sidebar-toc-list a {
  font-size: 12px; color: var(--muted2); text-decoration: none;
  line-height: 1.5; transition: color var(--transition);
  display: block; padding: 2px 0;
}
.sidebar-toc-list a:hover,
.sidebar-toc-list a.active { color: var(--orange); }
.sidebar-toc-list a.active { font-weight: 600; }

/* ── Enhanced post body ── */
.post-content blockquote {
  border-left: 3px solid var(--orange); margin: 28px 0;
  padding: 16px 20px; background: rgba(255,122,0,0.05);
  border-radius: 0 10px 10px 0; font-style: italic;
  color: var(--muted); font-size: 16px; line-height: 1.7;
}
.post-content blockquote cite {
  display: block; margin-top: 8px; font-size: 12px;
  font-style: normal; color: var(--muted2); font-weight: 600;
}
.post-content img {
  border-radius: 12px; margin: 28px 0; display: block;
  border: 1px solid var(--border);
}
.post-content figure { margin: 28px 0; }
.post-content figcaption {
  text-align: center; font-size: 12px; color: var(--muted2);
  margin-top: 8px; font-style: italic;
}
.post-content h2 { scroll-margin-top: 100px; }
.post-content h3 { scroll-margin-top: 100px; }
.toc-anchor { scroll-margin-top: 100px; }

/* Pre copy button */
.pre-copy-btn {
  position: absolute; top: 10px; right: 12px;
  background: var(--surface2); border: 1px solid var(--border2);
  color: var(--muted); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px; cursor: pointer; transition: all var(--transition);
}
.pre-copy-btn:hover { color: var(--text); background: var(--bg2); }

/* ── In-Post Visual Schemes ── */

/* Callout / insight box */
.mm-callout {
  background: rgba(255,122,0,0.06); border-left: 3px solid var(--orange);
  border-radius: 0 10px 10px 0; padding: 16px 20px; margin: 28px 0;
  font-size: 15px; color: var(--text); line-height: 1.65;
}
.mm-callout strong { color: var(--orange); }

/* Stat highlights strip */
.mm-stat-strip {
  display: flex; gap: 12px; margin: 28px 0; flex-wrap: wrap;
}
.mm-stat-box {
  flex: 1; min-width: 120px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px; padding: 20px; text-align: center;
}
.mm-stat-num { font-size: 36px; font-weight: 900; color: var(--orange); letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; }
.mm-stat-label { font-size: 12px; color: var(--muted); line-height: 1.45; }

/* Cost comparison bars */
.mm-cost-visual {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px; margin: 28px 0;
}
.mm-cost-label-row {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.mm-cost-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.mm-cost-name { font-size: 13px; font-weight: 600; color: var(--text); width: 100px; flex-shrink: 0; }
.mm-cost-bar-wrap {
  flex: 1; background: rgba(255,255,255,0.05);
  border-radius: 6px; height: 30px; overflow: hidden;
}
.mm-cost-bar {
  height: 100%; border-radius: 6px; display: flex; align-items: center;
  padding: 0 12px; font-size: 12px; font-weight: 700; color: #fff; white-space: nowrap;
}
.mm-cost-bar.bad { background: linear-gradient(90deg,#ef4444,#f87171); }
.mm-cost-bar.good { background: linear-gradient(90deg,var(--orange),var(--orange2)); color: #060c18; }

/* Sequence timeline */
.mm-timeline { margin: 28px 0; position: relative; padding-left: 4px; }
.mm-timeline::before {
  content: ''; position: absolute; left: 22px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--orange), var(--border2));
}
.mm-timeline-step { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 20px; position: relative; }
.mm-timeline-dot {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 10px; font-weight: 800; flex-shrink: 0;
  letter-spacing: 0.3px; position: relative; z-index: 1;
}
.mm-timeline-dot.day { background: var(--surface2); border: 2px solid var(--border2); color: var(--muted); }
.mm-timeline-dot.send { background: rgba(255,122,0,0.12); border: 2px solid var(--orange); color: var(--orange); }
.mm-timeline-dot.auto { background: rgba(96,165,250,0.1); border: 2px solid #60a5fa; color: #60a5fa; }
.mm-timeline-dot.reply { background: rgba(74,222,128,0.1); border: 2px solid #4ade80; color: #4ade80; }
.mm-timeline-body { flex: 1; padding-top: 10px; }
.mm-timeline-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.mm-timeline-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Split before / after */
.mm-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.mm-split-col { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.mm-split-col.bad { border-color: rgba(239,68,68,0.25); }
.mm-split-col.good { border-color: rgba(74,222,128,0.25); }
.mm-split-header { font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.mm-split-col.bad .mm-split-header { color: #f87171; }
.mm-split-col.good .mm-split-header { color: #4ade80; }
.mm-split-item { display: flex; gap: 8px; margin-bottom: 8px; font-size: 13px; color: var(--muted); line-height: 1.4; }
.mm-split-item span:first-child { flex-shrink: 0; }

/* Decision grid */
.mm-decision {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 14px; padding: 28px; margin: 28px 0;
}
.mm-decision-label { font-size: 11px; font-weight: 800; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.mm-decision-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.mm-decision-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.mm-decision-num { font-size: 28px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.mm-decision-action { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.mm-decision-when { font-size: 12px; color: var(--muted2); line-height: 1.4; }

@media (max-width: 920px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .post-cta-box { grid-template-columns: 36px 1fr; }
  .post-cta-box .btn { grid-column: 1/-1; width: 100%; justify-content: center; }
  .mm-split { grid-template-columns: 1fr; }
  .mm-decision-grid { grid-template-columns: 1fr; }
}

/* ── Responsive — 760px ── */
@media (max-width: 760px) {
  nav { height: 56px; }

  /* nav-inner is already flex from desktop — just override justify */
  .nav-inner { justify-content: space-between; padding: 0 16px; }

  /* Hide centred links on mobile — hamburger takes over */
  .nav-links { display: none !important; }

  /* Show hamburger on mobile */
  .nav-hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    margin-left: 12px;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--muted);
    border-radius: 2px;
    transition: all 0.2s;
  }

  #hero { padding: 116px 0 64px; } /* 40px announce + 56px nav + 20px breathing room */

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title { font-size: clamp(28px, 7vw, 44px); }

  .hero-visual { order: -1; }

  .hv-stat-row { grid-template-columns: repeat(3,1fr); }

  .int-grid { grid-template-columns: repeat(2,1fr); }

  .problem-grid { grid-template-columns: 1fr; }

  .features-hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feat-grid { grid-template-columns: repeat(2,1fr); }

  .steps-grid { grid-template-columns: repeat(2,1fr); }

  .testi-grid { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .price-card.featured { transform: none; }

  .newsletter-wrap { padding: 36px 24px; }

  .newsletter-form { flex-direction: column; }

  .footer-inner { flex-direction: column; text-align: center; }

  .footer-links { justify-content: center; }

  section { padding: 72px 0; }
}

/* ── Responsive — 680px ── */
@media (max-width: 680px) {
  .hero-ctas { flex-direction: column; }

  .hero-ctas .btn { width: 100%; justify-content: center; }

  .int-grid { grid-template-columns: repeat(2,1fr); }

  .feat-grid { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; }

  .hv-seq { flex-wrap: wrap; }

  .hv-stat-row { grid-template-columns: repeat(3,1fr); gap: 8px; }

  .hv-stat-val { font-size: 18px; }

  .exit-card { padding: 36px 24px; }

  .logos-row { gap: 8px 16px; }

  .logo-item { font-size: 13px; padding: 6px 12px; }

  section { padding: 56px 0; }
}

/* ── Legal pages (Privacy, Terms, Refund) ── */
.legal-page-wrap { padding: 120px 0 80px; }
.legal-container { max-width: 800px; }
.legal-header { margin-bottom: 48px; border-bottom: 1px solid var(--border); padding-bottom: 32px; }
.legal-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -.03em; color: var(--text); margin: 12px 0 8px; }
.legal-meta { font-size: 13px; color: var(--muted2); }

.legal-body { color: var(--text); font-size: 16px; line-height: 1.75; }
.legal-body > p { margin-bottom: 20px; }
.legal-body h2 { font-size: 20px; font-weight: 700; margin: 40px 0 12px; color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.legal-body h3 { font-size: 16px; font-weight: 600; margin: 24px 0 8px; color: var(--muted); }
.legal-body ul, .legal-body ol { padding-left: 24px; margin-bottom: 18px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--orange); text-decoration: underline; }
.legal-body strong { color: var(--text); font-weight: 600; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.legal-body th, .legal-body td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.legal-body th { background: var(--surface2); font-weight: 700; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }

/* Content path cards (spider strategy) */
.content-path-card:hover { border-color: var(--orange-bd) !important; }

/* Secondary features strip */
.secondary-feats {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; margin-top: 40px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.sf-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--muted); line-height: 1.4;
}
.sf-item span { font-size: 16px; flex-shrink: 0; }
@media(max-width:900px) { .secondary-feats { grid-template-columns: repeat(3,1fr); } }
@media(max-width:580px) { .secondary-feats { grid-template-columns: repeat(2,1fr); } }

/* Paddle trust badge in footer */
.footer-paddle { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 11px; color: var(--muted2); margin-top: 12px; }
.footer-paddle svg { opacity: .5; }
.footer-legal-row { display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; margin-top: 8px; }
.footer-legal-row a { font-size: 12px; color: var(--muted2); text-decoration: none; }
.footer-legal-row a:hover { color: var(--muted); }

/* ── Nav Actions (CTA button outside nav-links) ── */
.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .nav-actions { display: none; }
}

/* ── ROI Stats Strip ── */
.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 8px 48px;
  flex: 1;
  min-width: 160px;
}

.stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num span {
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
  margin-left: 2px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border2);
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .stat-divider { display: none; }
  .stat-item { min-width: 140px; padding: 16px 24px; }
  .stat-num { font-size: 32px; }
}

/* ── Feature Outcome Tag ── */
.feat-outcome {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-bg);
  border: 1px solid var(--orange-bd);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}

/* ── Feature Highlight Block ── */
.feat-highlight {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(255,122,0,0.04) 0%, var(--surface) 60%);
  overflow: hidden;
}

.feat-highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.feat-highlight-left {
  padding: 48px;
  border-right: 1px solid var(--border);
}

.feat-highlight-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--orange);
  background: var(--orange-bg);
  border: 1px solid var(--orange-bd);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.feat-highlight-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.feat-highlight-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feat-highlight-quote {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.6;
  border-left: 2px solid var(--orange-bd);
  padding-left: 14px;
  font-style: italic;
}

.feat-highlight-right {
  padding: 40px;
}

.feat-hl-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.feat-hl-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.feat-hl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feat-hl-dot.green { background: var(--green); box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.feat-hl-dot.orange { background: var(--orange); box-shadow: 0 0 6px rgba(255,122,0,0.5); }

.feat-hl-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.feat-hl-email {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 4px;
}

.feat-hl-from {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 4px;
}

.feat-hl-subject {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.feat-hl-meta {
  font-size: 10px;
  color: var(--muted2);
}

@media (max-width: 760px) {
  .feat-highlight-inner { grid-template-columns: 1fr; }
  .feat-highlight-left { padding: 32px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .feat-highlight-right { padding: 24px; }
}

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  z-index: 1001;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════ */

.about-page { padding-top: 80px; }
.about-page .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Hero */
.about-hero { padding: 80px 0 60px; text-align: center; }
.about-hero-inner { max-width: 720px; margin: 0 auto; }
.about-badge { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--orange); background: var(--orange-bg); border: 1px solid var(--orange-bd); padding: 5px 14px; border-radius: 20px; margin-bottom: 24px; }
.about-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px; }
.about-lead { font-size: 1.15rem; color: var(--muted); line-height: 1.65; }

/* Story */
.about-story { padding: 80px 0; border-top: 1px solid var(--border); }
.about-story-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.about-story-text h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 24px; letter-spacing: -.5px; }
.about-story-text p { color: var(--muted); line-height: 1.75; margin-bottom: 18px; font-size: 1.05rem; }
.about-story-text p:last-child { margin-bottom: 0; }
.about-stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; }
.about-stat-card:last-child { margin-bottom: 0; }
.about-stat-num { font-size: 2.5rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.about-stat-label { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media(max-width:900px) { .about-story-grid { grid-template-columns: 1fr; } }

/* Platforms */
.about-what { padding: 80px 0; background: var(--bg2); border-top: 1px solid var(--border); }
.about-what-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.about-what-header h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -.5px; }
.about-what-header p { color: var(--muted); line-height: 1.7; }
.about-platform-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.about-platform-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px; text-align: center; transition: border-color var(--transition), transform var(--transition); }
.about-platform-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.about-platform-card--more { opacity: .5; }
.about-platform-icon { margin-bottom: 10px; }
.about-platform-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.about-platform-note { font-size: 11px; color: var(--muted2); }
@media(max-width:900px) { .about-platform-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:500px) { .about-platform-grid { grid-template-columns: repeat(2,1fr); } }

/* Mission */
.about-mission { padding: 80px 0; border-top: 1px solid var(--border); }
.about-mission-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-mission-quote p { font-size: 1.4rem; font-weight: 700; line-height: 1.5; color: var(--text); margin-top: 16px; letter-spacing: -.3px; }
.about-value { display: flex; gap: 16px; margin-bottom: 28px; }
.about-value:last-child { margin-bottom: 0; }
.about-value-icon { font-size: 1.1rem; color: var(--orange); font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.about-value strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.about-value p { color: var(--muted); font-size: .95rem; line-height: 1.65; margin: 0; }
@media(max-width:800px) { .about-mission-inner { grid-template-columns: 1fr; gap: 40px; } }

/* Founder */
.about-founder { padding: 80px 0; background: var(--bg2); border-top: 1px solid var(--border); }
.about-founder-inner { display: flex; gap: 40px; align-items: flex-start; max-width: 720px; margin: 0 auto; }
.about-founder-avatar { flex-shrink: 0; }
.about-founder-initials { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), #ff3d00); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 900; color: #fff; }
.about-founder-name { font-size: 1.2rem; font-weight: 800; }
.about-founder-title { font-size: .9rem; color: var(--orange); margin-bottom: 16px; font-weight: 600; }
.about-founder-text p { color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.about-founder-cta { color: var(--orange); font-weight: 700; text-decoration: none; font-size: .95rem; }
.about-founder-cta:hover { text-decoration: underline; }
@media(max-width:600px) { .about-founder-inner { flex-direction: column; } }

/* Comparison Table */
.about-compare { padding: 80px 0; border-top: 1px solid var(--border); }
.about-compare h2 { font-size: 1.75rem; font-weight: 800; text-align: center; margin-bottom: 12px; letter-spacing: -.5px; }
.about-compare-sub { text-align: center; color: var(--muted); margin-bottom: 40px; }
.about-compare-table-wrap { overflow-x: auto; }
.about-compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.about-compare-table th { padding: 14px 20px; text-align: left; font-size: 13px; font-weight: 700; color: var(--muted); border-bottom: 1px solid var(--border); }
.about-compare-table th.highlight { color: var(--orange); }
.about-compare-table td { padding: 13px 20px; border-bottom: 1px solid var(--border); color: var(--muted); }
.about-compare-table td.highlight { color: var(--text); background: rgba(255,122,0,0.04); font-weight: 600; }
.about-compare-table tr:last-child td { border-bottom: none; }
.about-compare-table tr:hover td { background: var(--surface); }
.about-compare-table tr:hover td.highlight { background: rgba(255,122,0,0.07); }

/* CTA */
.about-cta { padding: 100px 0; background: var(--bg2); border-top: 1px solid var(--border); text-align: center; }
.about-cta-inner { max-width: 600px; margin: 0 auto; }
.about-cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -.5px; }
.about-cta p { color: var(--muted); margin-bottom: 32px; font-size: 1.05rem; }
.about-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.btn-ghost { padding: 12px 24px; border-radius: 10px; border: 1px solid var(--border2); color: var(--text); text-decoration: none; font-weight: 600; font-size: 15px; transition: border-color var(--transition), background var(--transition); }
.btn-ghost:hover { border-color: var(--orange-bd); background: var(--orange-bg); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.about-cta-note { font-size: 13px; color: var(--muted2); }
.about-cta-note a { color: var(--muted); text-decoration: underline; }

/* ── Mobile Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Dropdown ── */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: rgba(14,14,17,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
  padding: 8px 24px 20px;
  z-index: 898;
  flex-direction: column;
  gap: 0;
  animation: slideDown 0.2s ease both;
}

.nav-mobile.show { display: flex; }

.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
  display: block;
}

.nav-mobile a:last-child { border-bottom: none; padding-bottom: 0; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--text); }

.nav-mobile .mobile-cta {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #060c18 !important;
  border-radius: var(--radius);
  padding: 13px 24px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  border-bottom: none !important;
}

@media (max-width: 760px) {
  .nav-hamburger { display: flex; }
}

/* ── Nav active state ── */
.nav-links a.active { color: var(--text); }

/* ── Contact Page (new two-column form layout) ── */
.contact-page-wrap {
  padding: 120px 0 80px;
  min-height: 70vh;
}

.contact-page-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-page-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 12px;
}

.contact-page-sub {
  font-size: 16px;
  color: var(--muted);
}

/* Two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* ── Form column ── */
.contact-form-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* Success state */
.contact-success {
  text-align: center;
  padding: 24px 0;
}

.contact-success-icon {
  width: 56px;
  height: 56px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #4ade80;
}

.contact-success h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.contact-success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Error banner */
.contact-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: #f87171;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

/* Form elements */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.cf-row { display: grid; gap: 16px; }
.cf-row-2 { grid-template-columns: 1fr 1fr; }

.cf-group { display: flex; flex-direction: column; gap: 6px; }

.cf-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.cf-req { color: var(--orange); }

.cf-input {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.cf-input::placeholder { color: var(--muted2); }

.cf-input:focus {
  border-color: rgba(255,122,0,0.45);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.08);
}

.cf-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b8c9e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.cf-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.cf-submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 15px;
}

/* ── Info column ── */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.contact-info-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted2);
  margin-bottom: 16px;
}

/* Response time badges */
.contact-resp-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-resp-badge {
  flex: 1;
  min-width: 80px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-resp-time {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.contact-resp-label {
  font-size: 10px;
  color: var(--muted2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Direct email link */
.contact-direct-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.contact-direct-email:hover { color: var(--orange2); }

.contact-direct-note {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.55;
}

/* Mini topic links */
.contact-topics-mini {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ct-mini-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.ct-mini-link:last-child { border-bottom: none; }
.ct-mini-link:hover { color: var(--orange); }
.ct-mini-link svg { flex-shrink: 0; color: var(--muted2); }

/* Mobile */
@media (max-width: 760px) {
  .contact-page-wrap { padding: 100px 0 60px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-col { order: -1; }
  .cf-row-2 { grid-template-columns: 1fr; }
  .contact-form-col { padding: 24px; }
}

/* Legacy contact classes kept for any old links */
.contact-primary { display: none; }
.contact-topics  { display: none; }

/* ── Pricing toggle ── */
.pricing-toggle-wrap { display:flex; align-items:center; justify-content:center; gap:14px; margin:0 0 36px; }
.pricing-toggle { display:flex; background:var(--surface); border:1px solid var(--border2); border-radius:10px; padding:4px; gap:4px; }
.pt-btn { background:transparent; border:none; border-radius:7px; padding:9px 20px; font-size:13px; font-weight:600; color:var(--muted); cursor:pointer; transition:.2s; white-space:nowrap; }
.pt-btn.active { background:var(--orange); color:#fff; }
.pt-btn:hover:not(.active) { color:var(--text); }
.pt-save { font-size:12px; color:var(--orange); font-weight:600; }

/* ── PayPal modal ── */
.pp-modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.75); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center; z-index:9000; opacity:0; pointer-events:none; transition:opacity .25s; padding:20px; }
.pp-modal-overlay.show { opacity:1; pointer-events:all; }
.pp-modal-box { background:var(--surface); border:1px solid var(--border2); border-radius:20px; padding:36px 32px 28px; max-width:420px; width:100%; position:relative; box-shadow:0 32px 80px rgba(0,0,0,0.6); }
.pp-modal-close { position:absolute; top:16px; right:16px; background:rgba(255,255,255,0.06); border:none; border-radius:8px; width:32px; height:32px; display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--muted); transition:.2s; }
.pp-modal-close:hover { background:rgba(255,255,255,0.12); color:var(--text); }
.pp-modal-header { display:flex; align-items:center; gap:10px; margin-bottom:20px; }
.pp-modal-brand { font-size:16px; font-weight:800; color:var(--text); letter-spacing:-.3px; }
.pp-modal-title { font-size:20px; font-weight:800; color:var(--text); margin-bottom:6px; letter-spacing:-.4px; }
.pp-modal-price { font-size:36px; font-weight:900; color:var(--orange); letter-spacing:-1px; margin-bottom:4px; }
.pp-modal-sub { font-size:13px; color:var(--muted); margin-bottom:24px; }
.pp-buttons-wrap { min-height:50px; }
.pp-modal-guarantee { display:flex; align-items:center; gap:7px; font-size:12px; color:var(--muted2); margin-top:16px; }
.pp-plan-msg { text-align:center; }
.pp-plan-msg p { color:var(--text); font-size:15px; margin-bottom:8px; }

/* ── PayPal success overlay ── */
.pp-success-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.88); display:flex; align-items:center; justify-content:center; z-index:9500; padding:20px; }
.pp-success-box { background:var(--surface); border:1px solid var(--border2); border-radius:20px; padding:44px 36px; max-width:420px; width:100%; text-align:center; }
.pp-success-icon { width:60px; height:60px; border-radius:50%; background:rgba(74,222,128,.12); border:1px solid rgba(74,222,128,.2); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
.pp-success-box h2 { color:var(--text); font-size:22px; font-weight:800; margin:0 0 12px; }
.pp-success-box p { color:var(--muted); font-size:15px; line-height:1.6; margin:0 0 8px; }
.pp-success-sub { font-size:13px; color:var(--muted2); margin-bottom:28px !important; }
.pp-success-sub a { color:var(--orange); }
.pp-success-box button { background:var(--orange); color:#fff; border:none; border-radius:10px; padding:13px 32px; font-size:15px; font-weight:700; cursor:pointer; }

@media (max-width:480px) {
  .pp-modal-box { padding:28px 20px 22px; }
  .pp-modal-price { font-size:28px; }
  .pricing-toggle-wrap { flex-direction:column; gap:8px; }
}
