:root {
  --bg: #f8f7f4;
  --bg-surface: #ffffff;
  --bg-elevated: #eeecea;
  --bg-dark: #0f1923;
  --bg-dark-surface: #162130;
  --fg: #0f1923;
  --fg-muted: #667080;
  --fg-on-dark: #e8eeeb;
  --fg-muted-on-dark: #8fa0b0;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.08);
  --accent-dark: #1d4ed8;
  --highlight: #10b981;
  --highlight-soft: rgba(16, 185, 129, 0.1);
  --font-display: 'Instrument Serif', serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
  --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===================== HERO ===================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--space-xl) + 64px) var(--space-md) var(--space-xl);
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 60% 30%, rgba(37,99,235,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(16,185,129,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: var(--space-md);
  background: var(--highlight-soft);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--fg-on-dark);
  margin-bottom: var(--space-md);
  max-width: 780px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted-on-dark);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--fg-muted-on-dark);
}

.hero-trust-item .tick {
  color: var(--highlight);
  font-size: 0.9rem;
}

/* ===================== TICKER ===================== */

.ticker-wrap {
  background: var(--accent);
  padding: 0.65rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-flex;
  animation: scroll 30s linear infinite;
}

.ticker-item {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 var(--space-lg);
}

.ticker-item .dot {
  color: rgba(255,255,255,0.4);
  margin-right: var(--space-sm);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================== SECTION LABELS ===================== */

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-top: var(--space-sm);
}

/* ===================== VALUE PROPS ===================== */

.value-props {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg);
}

.value-props-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.value-props-header {
  max-width: 680px;
  margin-bottom: var(--space-xl);
}

.value-props-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.value-props-header h2 em {
  font-style: italic;
  color: var(--accent);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.value-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-elevated);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.08);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.value-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===================== PRODUCTS (TEMPLATES) ===================== */

.products {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-dark);
}

.products-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.products-header {
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.products-header .section-label {
  color: var(--highlight);
}

.products-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg-on-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.product-card {
  background: var(--bg-dark-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.product-card--featured {
  border-color: var(--accent);
  position: relative;
}

.product-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.product-preview {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1a2840 0%, #0d1e33 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-preview--2 {
  background: linear-gradient(145deg, #1a2835 0%, #0f1f2e 100%);
}

.product-preview--3 {
  background: linear-gradient(145deg, #16253a 0%, #0d1e34 100%);
}

/* Fake resume preview illustration */
.resume-mock {
  width: 110px;
  height: 150px;
  background: #fff;
  border-radius: 3px;
  padding: 12px 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: rotate(-1.5deg);
}

.product-card--featured .resume-mock {
  transform: rotate(0deg);
  box-shadow: 0 12px 40px rgba(37,99,235,0.3);
}

.resume-mock-header {
  height: 18px;
  background: var(--bg-dark);
  border-radius: 2px;
  margin-bottom: 4px;
}

.resume-mock-line {
  height: 5px;
  background: #e0e0e0;
  border-radius: 2px;
}

.resume-mock-line--short { width: 65%; }
.resume-mock-line--med { width: 80%; }
.resume-mock-line--accent { background: var(--accent); width: 40%; }

.resume-mock-spacer { height: 8px; }

.product-info {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg-on-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--fg-muted-on-dark);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  flex: 1;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}

.product-features li {
  font-size: 0.82rem;
  color: var(--fg-muted-on-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-features li::before {
  content: '✓';
  color: var(--highlight);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.15);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--fg-on-dark);
  line-height: 1;
}

.product-price sup {
  font-size: 0.9rem;
  vertical-align: super;
  line-height: 1;
}

/* ===================== HOW IT WORKS ===================== */

.how-it-works {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg);
}

.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.how-inner > h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.666% + 28px);
  right: calc(16.666% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.2;
}

.how-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.how-step-num {
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.how-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
}

.how-step p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===================== AUDIENCE / WHO THIS IS FOR ===================== */

.audience {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-dark);
}

.audience-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.audience-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg-on-dark);
  margin-bottom: var(--space-xl);
  max-width: 640px;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.audience-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-dark-surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-on-dark);
  transition: border-color 0.2s ease;
}

.audience-item:hover {
  border-color: rgba(37,99,235,0.4);
}

.audience-item .marker {
  width: 7px;
  height: 7px;
  background: var(--highlight);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===================== CLOSING CTA ===================== */

.closing {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

.closing h2 em {
  font-style: italic;
  color: var(--accent);
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.closing-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== FOOTER ===================== */

footer {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--bg-elevated);
  background: var(--bg);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.footer-brand .footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.footer-brand .footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--fg);
}

.footer-bottom {
  border-top: 1px solid var(--bg-elevated);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ===================== BUTTONS ===================== */

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--fg-on-dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
}

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid var(--bg-elevated);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.82rem; }
.btn-full { width: 100%; text-align: center; display: block; }

/* ===================== NAV ===================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 25, 35, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--fg-on-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  color: var(--fg-muted-on-dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--fg-on-dark); }

.nav-cta {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-cta:hover { background: var(--accent-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-on-dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ===================== INNER HERO (pricing/contact) ===================== */

.inner-hero {
  padding: calc(var(--space-xl) + 64px) var(--space-md) var(--space-xl);
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.inner-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.inner-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fg-on-dark);
  margin-bottom: var(--space-sm);
}

.inner-hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.inner-hero .section-label {
  color: var(--highlight);
}

/* ===================== PRICING PAGE ===================== */

.pricing-section {
  padding: var(--space-xl) var(--space-md) var(--space-2xl);
  background: var(--bg);
}

.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
  margin-bottom: var(--space-xl);
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-elevated);
  border-radius: var(--radius);
  padding: var(--space-lg);
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(37,99,235,0.04) 0%, var(--bg-surface) 40%);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 48px rgba(37,99,235,0.1);
}

.pricing-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: var(--space-lg);
}

.plan-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: var(--space-xs);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--fg);
}

.price-amount sup {
  font-size: 1.4rem;
  vertical-align: super;
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.plan-tagline {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.plan-features {
  list-style: none;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--fg);
}

.check {
  color: var(--highlight);
  font-weight: 700;
  flex-shrink: 0;
}

.muted-feat {
  color: var(--bg-elevated);
  font-weight: 700;
  flex-shrink: 0;
}

.plan-features li:has(.muted-feat) {
  color: var(--fg-muted);
  opacity: 0.4;
}

.pricing-footer-note {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.link-accent {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.link-accent:hover { border-color: var(--accent); }

/* ===================== FAQ ===================== */

.faq-section {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg);
  border-top: 1px solid var(--bg-elevated);
}

.faq-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.faq-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  margin-bottom: var(--space-xl);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.faq-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: var(--space-xs);
  color: var(--fg);
}

.faq-item p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===================== CONTACT PAGE ===================== */

.contact-section {
  padding: var(--space-xl) var(--space-md) var(--space-2xl);
  background: var(--bg);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: var(--space-lg);
}

.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.info-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
}

.contact-promise {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--accent-soft);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

.contact-promise strong {
  color: var(--fg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

.required { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-surface);
  border: 1px solid var(--bg-elevated);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #c0bdb8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23667080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: var(--space-xl) var(--space-md);
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--highlight-soft);
  border: 2px solid var(--highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--highlight);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
}

.form-success p { color: var(--fg-muted); }

.form-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 6px;
  padding: var(--space-sm) var(--space-md);
  color: #ef4444;
  font-size: 0.9rem;
}

/* ===================== THANK YOU PAGE ===================== */

.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-xl) + 64px) var(--space-md) var(--space-xl);
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.thankyou-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(16,185,129,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.thankyou-inner {
  max-width: 580px;
  text-align: center;
  position: relative;
}

.thankyou-check {
  width: 80px;
  height: 80px;
  background: var(--highlight-soft);
  border: 2px solid var(--highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--highlight);
  margin: 0 auto var(--space-md);
}

.thankyou-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg-on-dark);
  margin-bottom: var(--space-sm);
}

.thankyou-inner p {
  color: var(--fg-muted-on-dark);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.thankyou-note {
  background: var(--bg-dark-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: left;
  margin-bottom: var(--space-lg);
}

.thankyou-note h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg-on-dark);
  margin-bottom: 0.5rem;
}

.thankyou-note p {
  font-size: 0.9rem;
  color: var(--fg-muted-on-dark);
  margin-bottom: 0;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 768px) {
  body { font-size: 16px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-md);
    gap: var(--space-sm);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }

  .hero { padding: var(--space-lg) var(--space-sm); min-height: 80vh; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }

  .value-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .audience-list { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .products-header { flex-direction: column; align-items: flex-start; }
  .inner-hero { padding: calc(var(--space-lg) + 64px) var(--space-sm) var(--space-lg); }
  .value-props, .how-it-works { padding: var(--space-xl) var(--space-sm); }
  .products, .audience { padding: var(--space-xl) var(--space-sm); }
  .closing { padding: var(--space-xl) var(--space-sm); }
  .closing-actions { flex-direction: column; align-items: center; }
  .pricing-section { padding: var(--space-lg) var(--space-sm) var(--space-xl); }
  .faq-section { padding: var(--space-xl) var(--space-sm); }
  .contact-section { padding: var(--space-lg) var(--space-sm) var(--space-xl); }

  .footer-top { flex-direction: column; }
  .footer-links { gap: var(--space-md); }
  .footer-bottom { flex-direction: column; text-align: center; }
}
