/* ═══════════════════════════════════════════════════════════════════════
   LANDING PAGE — Premium Design v2
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  padding: var(--space-9) 0 var(--space-8);
  position: relative;
  overflow: hidden;
}

/* Animated gradient mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: var(--gradient-mesh);
  animation: meshRotate 30s linear infinite;
  pointer-events: none;
  opacity: 0.8;
}
@keyframes meshRotate {
  to { transform: rotate(360deg); }
}

.hero-glow {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: var(--gradient-glow);
  pointer-events: none;
  animation: glowFloat 10s ease-in-out infinite;
  filter: blur(40px);
}

/* Second glow orb */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(47,107,79,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: glowFloat 12s ease-in-out infinite reverse;
  filter: blur(30px);
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -15px) scale(0.95); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Eyebrow Badge ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-600);
  background: var(--brass-50);
  border: 1px solid rgba(194, 149, 43, 0.25);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-glow-sm);
}

.eyebrow .dot {
  display: none;
}

/* ── Hero Headlines ── */
.hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  max-width: 14ch;
  color: var(--ink-900);
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  color: var(--ink-700);
  text-decoration: underline;
  text-decoration-color: var(--brass-500);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  transition: text-decoration-color 0.3s ease;
}
.hero h1 em:hover {
  text-decoration-color: var(--brass-400);
}

.hero-sub {
  font-size: 1.12rem;
  max-width: 46ch;
  color: var(--ink-700);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.hero-note {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  gap: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--rule);
  margin-top: var(--space-5);
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink-900);
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-700);
}

/* ── Hero Visual: Premium Ledger Card ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.ledger-card {
  width: 100%;
  max-width: 420px;
  background: var(--paper-50);
  border: 1px solid rgba(15, 23, 21, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-pop), 0 0 80px -20px rgba(194, 149, 43, 0.12);
  padding: var(--space-6);
  position: relative;
  transform: rotate(-1.5deg) translateZ(0);
  animation: cardFloat 7s ease-in-out infinite;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}
.ledger-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: var(--shadow-pop), var(--shadow-glow);
}

@keyframes cardFloat {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50% { transform: rotate(-1.5deg) translateY(-10px); }
}

.ledger-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(15, 23, 21, 0.06);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.ledger-card .lc-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

.ledger-card .lc-role {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--brass-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-5);
}

.lc-row {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.lc-line {
  height: 8px;
  border-radius: 4px;
  background: var(--paper-200);
}
.lc-bar-lg { width: 100%; }
.lc-bar-md { width: 78%; }
.lc-bar-sm { width: 52%; }

.lc-section-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-700);
  margin: var(--space-5) 0 var(--space-2);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 6px;
}

.lc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lc-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  background: var(--paper-200);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: var(--ink-800);
  border: 1px solid var(--rule);
}

/* ── Seal Stamp ── */
.seal-stamp {
  position: absolute;
  top: -20px;
  right: -24px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  box-shadow: var(--shadow-glow), 0 8px 24px -4px rgba(194, 149, 43, 0.4);
  transform: rotate(8deg);
  animation: stamp-in 0.6s var(--ease-spring) 0.3s both;
  border: 2px dashed rgba(15, 23, 21, 0.25);
}

@keyframes stamp-in {
  0% { transform: scale(1.8) rotate(8deg); opacity: 0; }
  100% { transform: scale(1) rotate(8deg); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════════════
   TRUST STRIP — Animated Marquee
   ═══════════════════════════════════════════════════════════════════════ */
.trust-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--space-5) 0;
  overflow: hidden;
  position: relative;
}

.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-600);
}
.trust-strip .container span {
  transition: color 0.3s ease;
}
.trust-strip .container span:first-child {
  font-weight: 700;
  color: var(--ink-800);
}
.trust-strip .container span:hover {
  color: var(--ink-900);
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION SHELL
   ═══════════════════════════════════════════════════════════════════════ */
.section {
  padding: var(--space-9) 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-7);
}

.section-head .eyebrow {
  margin-bottom: var(--space-4);
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--ink-700);
}

.section-tight {
  padding: var(--space-8) 0;
}

.section-alt {
  background: var(--paper-50);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* ═══════════════════════════════════════════════════════════════════════
   FEATURE GRID — Premium Cards
   ═══════════════════════════════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.feature-card {
  background: var(--paper-50);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform 0.3s var(--ease-spring),
              box-shadow 0.3s var(--ease-spring),
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-spring);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(194, 149, 43, 0.2);
}
.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card .fi {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  color: var(--paper-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.3s ease;
  box-shadow: var(--shadow-xs);
}

.feature-card:hover .fi {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 16px -4px rgba(15, 23, 21, 0.25);
}

.feature-card .fi svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-size: 1.12rem;
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.feature-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
  color: var(--ink-700);
  line-height: 1.6;
}

.feature-card .f-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--brass-600);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════
   PROCESS — Timeline Steps
   ═══════════════════════════════════════════════════════════════════════ */
.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
  position: relative;
}

.process-item {
  display: grid;
  grid-template-columns: 90px 1fr 1.1fr;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: background 0.3s ease;
}
.process-item:hover {
  background: rgba(194, 149, 43, 0.02);
}

.process-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 2px;
}

.process-item h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
}

.process-item p {
  margin: 0;
  color: var(--ink-700);
}

.process-visual {
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--paper-50);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--ink-800);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.process-item:hover .process-visual {
  border-color: rgba(194, 149, 43, 0.3);
  box-shadow: var(--shadow-glow-sm);
}

.pv-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brass-600);
}

/* ═══════════════════════════════════════════════════════════════════════
   TEMPLATE GALLERY — Premium Cards
   ═══════════════════════════════════════════════════════════════════════ */
.template-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.tpl-tab {
  background: var(--paper-50);
  border: 1px solid var(--rule-strong);
  color: var(--ink-800);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}

.tpl-tab:hover {
  background: var(--paper-200);
  border-color: var(--brass-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-sm);
}

.tpl-tab.active {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: var(--ink-800);
  box-shadow: 0 4px 16px -3px rgba(15, 23, 21, 0.35);
}

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

.template-card-v2 {
  background: var(--paper-50);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: all 0.4s var(--ease-spring);
  position: relative;
}

.template-card-v2:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-pop), 0 0 0 1px rgba(194, 149, 43, 0.3);
}

.tpl-poster-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f1ebd9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tpl-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease-spring);
}

.template-card-v2:hover .tpl-poster-img {
  transform: scale(1.08);
}

.tpl-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
@supports (backdrop-filter: blur(1px)) {
  .tpl-badge { backdrop-filter: blur(12px); }
}

.ats-badge     { background: rgba(47, 107, 79, 0.9); color: #ffffff; }
.popular-badge { background: rgba(15, 23, 21, 0.85); color: #ffffff; }
.exec-badge    { background: rgba(194, 149, 43, 0.92); color: #ffffff; }
.modern-badge  { background: rgba(15, 23, 42, 0.88); color: #ffffff; }
.photo-badge   { background: rgba(99, 102, 241, 0.88); color: #ffffff; }

.tpl-overlay-cta {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 21, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}
@supports (backdrop-filter: blur(1px)) {
  .tpl-overlay-cta { backdrop-filter: blur(6px); }
}

.template-card-v2:hover .tpl-overlay-cta {
  opacity: 1;
}

.tpl-card-body {
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.tpl-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tpl-card-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink-900);
}

.tpl-rating {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--brass-600);
  font-weight: 600;
}

.tpl-card-desc {
  font-size: 0.84rem;
  color: var(--ink-700);
  line-height: 1.45;
  margin: 0;
}

.tpl-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.tpl-tags .tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  background: var(--paper-200);
  color: var(--ink-800);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--rule);
}

/* ── SVG Mockup Card Posters ── */
.tpl-poster-signal { background: linear-gradient(135deg, #14211b, #0f172a); }
.svg-mockup-signal {
  width: 75%;
  height: 85%;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  display: flex;
  overflow: hidden;
}
.svg-mockup-signal .mock-sidebar {
  width: 32%;
  background: #14211b;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svg-mockup-signal .mock-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.svg-mockup-signal .mock-line {
  height: 4px;
  background: rgba(255,255,255,0.22);
  border-radius: 2px;
}
.svg-mockup-signal .mock-line.w80 { width: 80%; }
.svg-mockup-signal .mock-line.w60 { width: 60%; }
.svg-mockup-signal .mock-line.w50 { width: 50%; }
.svg-mockup-signal .mock-line.w70 { width: 70%; }
.svg-mockup-signal .mock-main {
  width: 68%; padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
  background: #faf9f6;
}
.svg-mockup-signal .mock-header { height: 12px; width: 60%; background: #14211b; border-radius: 2px; }
.svg-mockup-signal .mock-block { height: 35px; background: #ece7d8; border-radius: 4px; }

.tpl-poster-executive { background: linear-gradient(135deg, #241c13, #382c1b); }
.svg-mockup-exec {
  width: 75%; height: 85%;
  background: #fbfaf5; border-radius: 8px;
  position: relative; padding: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  display: flex; flex-direction: column; gap: 8px; overflow: hidden;
}
.mock-gold-strip {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, #b08628, #f1e2bb, #8f6c1e);
}
.mock-exec-head { height: 16px; width: 70%; background: #1c2e26; border-radius: 2px; margin-top: 4px; }
.mock-exec-cols { display: flex; gap: 8px; flex-grow: 1; }
.mock-exec-cols .col-main { flex: 2; background: #eee7d5; border-radius: 4px; }
.mock-exec-cols .col-side { flex: 1; background: #e2dac6; border-radius: 4px; }

.tpl-poster-brief { background: linear-gradient(135deg, #334155, #1e293b); }
.svg-mockup-brief {
  width: 75%; height: 85%;
  background: #ffffff; border-radius: 8px; padding: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.mock-title-center { width: 50%; height: 10px; background: #0f172a; border-radius: 2px; }
.mock-rule-line { width: 100%; height: 1px; background: #cbd5e1; margin: 4px 0; }
.mock-full-text { width: 100%; height: 36px; background: #f1f5f9; border-radius: 4px; }

.tpl-poster-modern { background: linear-gradient(135deg, #0f172a, #1e1b4b); }
.svg-mockup-modern {
  width: 75%; height: 85%;
  background: #ffffff; border-radius: 8px; padding: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  display: flex; flex-direction: column; gap: 8px;
}
.mock-modern-banner { width: 100%; height: 28px; background: #1e1b4b; border-radius: 4px; }
.mock-modern-grid { display: flex; gap: 6px; flex-grow: 1; }
.mock-modern-grid .m-card { flex: 1; background: #e0e7ff; border-radius: 4px; }

.tpl-poster-avatar { background: linear-gradient(135deg, #312e81, #4338ca); }
.svg-mockup-avatar {
  width: 75%; height: 85%;
  background: #ffffff; border-radius: 8px; padding: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  display: flex; gap: 10px;
}
.mock-photo-circle { width: 32px; height: 32px; border-radius: 50%; background: #4338ca; flex-shrink: 0; }
.mock-photo-lines { flex-grow: 1; background: #e0e7ff; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════════════════
   PRICING — Modern Premium Redesign
   ═══════════════════════════════════════════════════════════════════════ */

/* Section wrapper */
.pricing-section {
  position: relative;
  overflow: hidden;
}

/* Floating background glow orbs */
.pricing-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 149, 43, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  top: -80px;
  right: -120px;
  animation: pricingFloat 14s ease-in-out infinite;
}
.pricing-bg-glow--2 {
  top: auto;
  right: auto;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(47, 107, 79, 0.08) 0%, transparent 70%);
  animation: pricingFloat 18s ease-in-out infinite reverse;
}
@keyframes pricingFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ── Section Heading — Modern Subheading Style ── */
.pricing-head {
  max-width: 680px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.pricing-title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.pricing-title-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-subtitle {
  font-size: 1.1rem !important;
  color: var(--ink-600) !important;
  max-width: 540px;
  margin: var(--space-3) auto 0;
  line-height: 1.65;
}

/* ── Grid ── */
.pricing-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 820px;
  margin: 0 auto;
  align-items: start;
}

/* ── Card (shared) ── */
.pricing-card-modern {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 2px;               /* border thickness via background trick */
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}
.pricing-card-modern:hover {
  transform: translateY(-8px);
}

.pricing-card-inner {
  background: var(--paper-50);
  border-radius: calc(var(--radius-xl) - 2px);
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* ── Featured Card (Free) — Animated Gradient Border ── */
.pricing-card-featured {
  background: linear-gradient(135deg, var(--brass-500), var(--brass-400), var(--success), var(--brass-500));
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
  box-shadow: 0 8px 32px -8px rgba(194, 149, 43, 0.25), 0 0 0 0 rgba(194, 149, 43, 0);
}
.pricing-card-featured:hover {
  box-shadow: 0 16px 48px -8px rgba(194, 149, 43, 0.35), 0 0 60px -12px rgba(194, 149, 43, 0.2);
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Inner glow for featured card */
.pricing-card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 30% 0%, rgba(194, 149, 43, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Pro Card — Subtle Border ── */
.pricing-card-pro {
  background: var(--rule);
  box-shadow: var(--shadow-card);
}
.pricing-card-pro:hover {
  box-shadow: var(--shadow-elevated);
}
.pricing-card-pro .pricing-card-inner {
  background: linear-gradient(180deg, var(--paper-50) 0%, var(--paper-100) 100%);
}

/* ── Badge ── */
.pricing-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gradient-accent);
  color: var(--ink-900);
  box-shadow: var(--shadow-glow-sm);
  margin-bottom: var(--space-4);
}
.pricing-card-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.pricing-card-badge--pro {
  background: linear-gradient(135deg, var(--ink-700) 0%, var(--ink-500) 100%);
  color: var(--paper-100);
  box-shadow: none;
}

/* ── Plan Header ── */
.pricing-plan-header {
  margin-bottom: var(--space-3);
}
.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: var(--ink-900);
}
.pricing-plan-tagline {
  font-size: 0.88rem;
  color: var(--ink-600);
  margin: 0;
  font-weight: 500;
}

/* ── Price Display ── */
.pricing-plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: var(--space-5);
}
.pricing-currency {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink-800);
  line-height: 1;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-amount--soon {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--ink-600) 0%, var(--ink-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-period {
  font-size: 0.92rem;
  color: var(--ink-600);
  font-weight: 500;
  margin-left: 4px;
}

/* ── CTA Button ── */
.pricing-cta {
  margin-bottom: var(--space-5);
  font-size: 0.95rem;
  padding: 14px 24px;
  gap: 8px;
}
.pricing-cta--notify {
  border-color: var(--rule-strong);
  color: var(--ink-700);
}
.pricing-cta--notify:hover {
  border-color: var(--ink-500);
  color: var(--ink-900);
  background: var(--paper-100);
}

/* ── Divider ── */
.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--rule-strong) 50%, transparent 100%);
  margin-bottom: var(--space-4);
}

/* ── Features Label ── */
.pricing-features-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-600);
  font-weight: 600;
  margin: 0 0 var(--space-3);
}

/* ── Feature List ── */
.pricing-features-modern {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pricing-features-modern li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-800);
  font-weight: 500;
  transition: transform 0.2s ease;
}
.pricing-features-modern li:hover {
  transform: translateX(4px);
}
.pricing-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--success-bg);
  flex-shrink: 0;
}
.pricing-check svg {
  width: 13px;
  height: 13px;
  color: var(--success);
}
.pricing-check--pro {
  background: linear-gradient(135deg, rgba(15,23,21,0.08) 0%, rgba(61,107,90,0.12) 100%);
}
.pricing-check--pro svg {
  color: var(--ink-600);
}
.pricing-features-pro li {
  color: var(--ink-600);
}

/* ── Trust Strip ── */
.pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-7);
  flex-wrap: wrap;
}
.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-600);
}
.pricing-trust-item svg {
  color: var(--success);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   FAQ — Smooth Accordion
   ═══════════════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item:first-child {
  border-top: 1px solid var(--rule);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink-900);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: var(--ink-700);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-spring);
  color: var(--ink-700);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--brass-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-spring), padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: var(--space-5);
  font-size: 0.95rem;
  color: var(--ink-700);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   CTA BAND & TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--gradient-primary);
  color: var(--paper-100);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-6);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(194,149,43,0.12) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(47,107,79,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-band h2 {
  color: var(--paper-50);
  max-width: 16ch;
  position: relative;
}

.cta-band p {
  color: rgba(246, 243, 234, 0.7);
  max-width: 42ch;
  position: relative;
}

.cta-band .btn-brass {
  align-self: start;
  position: relative;
}

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

.quote-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  background: var(--paper-50);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, border-color 0.3s ease;
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(194, 149, 43, 0.15);
}

.quote-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-900);
  margin-bottom: var(--space-4);
  line-height: 1.6;
  font-style: italic;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: var(--shadow-glow-sm);
}

.quote-name {
  font-weight: 700;
  font-size: 0.88rem;
}

.quote-role {
  font-size: 0.76rem;
  color: var(--ink-700);
  font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════════════════════════════════
   ATS SCORE CHECKER — Premium Glass Panels
   ═══════════════════════════════════════════════════════════════════════ */
.ats-checker-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

.ats-form-panel {
  background: var(--paper-50);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}

.ats-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--rule);
}
.ats-form-header svg {
  width: 20px; height: 20px;
  color: var(--brass-500);
}

/* Tabs */
.ats-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-5);
  background: var(--paper-200);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--rule);
}
.ats-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-700);
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
}
.ats-tab.active {
  background: var(--paper-50);
  color: var(--ink-900);
  box-shadow: var(--shadow-xs);
}
.ats-tab:hover:not(.active) {
  color: var(--ink-900);
}

.ats-tab-content { display: none; }
.ats-tab-content.active { display: block; }

/* Drag & Drop Zone */
.ats-dropzone {
  border: 2px dashed rgba(194, 149, 43, 0.4);
  border-radius: var(--radius-lg);
  background: rgba(194, 149, 43, 0.03);
  padding: var(--space-7) var(--space-5);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  margin-bottom: var(--space-5);
}
.ats-dropzone:hover,
.ats-dropzone.dragover {
  background: rgba(194, 149, 43, 0.08);
  border-color: var(--brass-500);
  transform: scale(1.01);
  box-shadow: var(--shadow-glow-sm);
}
.ats-drop-icon {
  width: 60px; height: 60px;
  margin: 0 auto var(--space-3);
  border-radius: 50%;
  background: var(--brass-50);
  color: var(--brass-600);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-sm);
}
.ats-drop-icon svg { width: 28px; height: 28px; }
.ats-drop-text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 4px;
}
.ats-drop-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-700);
}

/* File Preview Card */
.ats-file-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px var(--space-4);
  background: var(--paper-200);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}
.ats-file-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: var(--paper-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ats-file-icon svg { width: 20px; height: 20px; }
.ats-file-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.ats-file-name {
  font-weight: 600; font-size: 0.9rem; color: var(--ink-900);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ats-file-size { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-700); }
.ats-file-remove {
  background: none; border: none; color: var(--danger);
  padding: 6px; border-radius: var(--radius-sm); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.ats-file-remove:hover { background: var(--danger-bg); }
.ats-file-remove svg { width: 18px; height: 18px; }

/* Progress Bar */
.ats-progress { margin-bottom: var(--space-5); }
.ats-progress-bar {
  height: 6px; background: var(--paper-200);
  border-radius: 3px; overflow: hidden; margin-bottom: 6px;
}
.ats-progress-fill {
  height: 100%; width: 0%;
  background: var(--gradient-accent);
  border-radius: 3px;
  transition: width 0.4s var(--ease-spring);
}
.ats-progress-text { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-700); }

/* Error */
.ats-error {
  padding: 10px 14px;
  background: var(--danger-bg);
  border: 1px solid rgba(163,57,43,0.25);
  border-radius: var(--radius-sm);
  color: var(--danger);
  font-size: 0.85rem;
  margin-bottom: var(--space-4);
}

/* Form Fields */
.ats-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.ats-field-full { grid-column: 1 / -1; }

.ats-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.ats-hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink-600);
}

.ats-field input,
.ats-field textarea,
.ats-field select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-sm);
  background: var(--paper-100);
  font-size: 0.92rem;
  color: var(--ink-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ats-field input:focus,
.ats-field textarea:focus,
.ats-field select:focus {
  outline: none;
  border-color: var(--brass-500);
  box-shadow: 0 0 0 3px rgba(194, 149, 43, 0.12);
}
.ats-field textarea { resize: vertical; min-height: 60px; }
.ats-field select { cursor: pointer; }

.ats-char-count {
  display: block; text-align: right;
  font-family: var(--font-mono); font-size: 0.68rem;
  color: var(--ink-700); margin-top: 4px;
}

.ats-check-btn {
  margin-top: var(--space-2);
  padding: 14px 24px;
  font-size: 1rem;
  gap: 10px;
}

/* Results Panel */
.ats-results-panel {
  background: var(--paper-50);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: sticky;
  top: 90px;
  min-height: 400px;
  box-shadow: var(--shadow-card);
}

.ats-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 340px;
  gap: var(--space-3);
}
.ats-placeholder-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--paper-200);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-3);
}
.ats-placeholder-icon svg { width: 36px; height: 36px; color: var(--ink-700); opacity: 0.4; }
.ats-placeholder p { font-size: 1rem; color: var(--ink-700); max-width: 28ch; margin: 0; }
.ats-placeholder-sub {
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--ink-600); text-transform: uppercase; letter-spacing: 0.04em;
}

/* Gauge */
.ats-gauge-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-5); margin-bottom: var(--space-6);
  padding-bottom: var(--space-5); border-bottom: 1px solid var(--rule);
}
.ats-gauge { position: relative; width: 120px; height: 120px; }
.ats-gauge-svg { transform: rotate(-90deg); width: 120px; height: 120px; }
.ats-gauge-track { fill: none; stroke: var(--paper-200); stroke-width: 8; }
.ats-gauge-fill {
  fill: none; stroke: var(--brass-500);
  stroke-width: 8; stroke-linecap: round;
  transition: stroke-dasharray 1.2s var(--ease-spring), stroke 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(194,149,43,0.3));
}
.ats-gauge-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.ats-gauge-score {
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 800;
  color: var(--ink-900); line-height: 1;
}
.ats-gauge-unit { font-family: var(--font-mono); font-size: 0.68rem; color: var(--ink-700); }

.ats-grade-badge {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  color: var(--ink-900);
  background: var(--brass-100);
  border: 2px solid var(--brass-500);
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow-sm);
  animation: grade-pop 0.5s var(--ease-spring);
}
@keyframes grade-pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.ats-job-type {
  display: inline-block; margin-top: 8px;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: var(--radius-full);
  background: var(--paper-200); color: var(--ink-800); border: 1px solid var(--rule);
}

.ats-ml-badge {
  display: inline-block; margin-top: 4px;
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500;
  padding: 2px 8px; border-radius: var(--radius-full);
  background: #eef2ff; color: #3730a3; border: 1px solid #c7d2fe;
}

.ats-gauge-fill.score-high { stroke: var(--success); filter: drop-shadow(0 0 6px rgba(47,107,79,0.3)); }
.ats-gauge-fill.score-mid  { stroke: var(--brass-500); }
.ats-gauge-fill.score-low  { stroke: var(--danger); filter: drop-shadow(0 0 6px rgba(163,57,43,0.3)); }

.ats-grade-badge.grade-high { border-color: var(--success); background: var(--success-bg); color: var(--success); }
.ats-grade-badge.grade-mid  { border-color: var(--brass-500); background: var(--brass-100); color: var(--brass-600); }
.ats-grade-badge.grade-low  { border-color: var(--danger); background: var(--danger-bg); color: var(--danger); }

/* Categories */
.ats-categories {
  display: grid; gap: 12px;
  margin-bottom: var(--space-5); padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--rule);
}
.ats-cat-row { display: grid; grid-template-columns: 90px 1fr 50px; gap: 12px; align-items: center; }
.ats-cat-label {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-700);
}
.ats-cat-bar { height: 8px; background: var(--paper-200); border-radius: 4px; overflow: hidden; }
.ats-cat-bar-fill {
  height: 100%; border-radius: 4px; background: var(--brass-500);
  transition: width 1s var(--ease-spring);
}
.ats-cat-bar-fill.bar-high { background: var(--success); }
.ats-cat-bar-fill.bar-mid  { background: var(--brass-500); }
.ats-cat-bar-fill.bar-low  { background: var(--danger); }
.ats-cat-score {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600;
  color: var(--ink-800); text-align: right;
}

/* Checklist */
.ats-checklist-wrap { margin-bottom: var(--space-5); }
.ats-checklist-wrap h4,
.ats-tips-wrap h4 {
  font-family: var(--font-mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-700); margin-bottom: var(--space-3);
}
.ats-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ats-checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--ink-800);
  padding: 6px 0; border-bottom: 1px solid rgba(15,23,21,0.05);
}
.ats-checklist li:last-child { border-bottom: none; }
.ats-check-icon { width: 18px; height: 18px; flex-shrink: 0; }
.ats-check-icon.pass { color: var(--success); }
.ats-check-icon.fail { color: var(--danger); opacity: 0.6; }

/* Tips */
.ats-tips-wrap {
  background: var(--paper-200); border-radius: var(--radius-md);
  padding: var(--space-4); margin-bottom: var(--space-5);
}
.ats-tips { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ats-tips li {
  font-size: 0.85rem; color: var(--ink-800);
  padding-left: 18px; position: relative; line-height: 1.5;
}
.ats-tips li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--brass-600); font-weight: 700;
}

/* Extracted text preview */
.ats-text-preview {
  margin-bottom: var(--space-5);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--paper-100);
  padding: 8px 12px;
}
.ats-text-preview summary {
  font-family: var(--font-mono); font-size: 0.74rem;
  color: var(--ink-700); cursor: pointer; user-select: none;
}
.ats-text-preview pre {
  margin-top: 8px;
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--ink-800); white-space: pre-wrap;
  word-break: break-word; max-height: 150px; overflow-y: auto;
}

.ats-results-cta { margin-top: var(--space-2); }

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero { padding: var(--space-7) 0 var(--space-6); }
  .hero .container { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero-visual { order: -1; }
  .hero h1 { font-size: clamp(2rem, 7vw, 3.2rem); max-width: 100%; }
  .feature-grid,
  .template-gallery,
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 1fr; }
  .pricing-grid-modern { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .ats-checker-layout { grid-template-columns: 1fr; }
  .ats-results-panel { position: static; }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .feature-grid,
  .template-gallery,
  .quote-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: var(--space-4); flex-wrap: wrap; justify-content: space-between; }
  .ats-form-grid { grid-template-columns: 1fr; }
  .ledger-card { max-width: 100%; transform: none; animation: none; }
}