/* ── B2B Data Scouts — Shared Styles ── */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a1628;
  --navy-mid: #121f36;
  --navy-deep: #060d18;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --accent-glow: rgba(249, 115, 22, 0.15);
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --text: #0f172a;
  --text-light: #e2e8f0;
  --success: #22c55e;
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --max-w: 1120px;
  --section-pad: 96px;
  --section-pad-m: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  border: 1.5px solid rgba(249, 115, 22, 0.5);
  color: var(--accent);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}

.nav-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.nav-cta:hover svg { transform: translateX(3px); }

.nav-back {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-back:hover { color: var(--accent); }

.nav-back svg {
  width: 14px;
  height: 14px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 0 8px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.btn-primary:hover svg { transform: translateX(3px); }

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 120px 0 100px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
}

.hero-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
}

.hero-pulse circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 0.5;
  transform-origin: center;
  opacity: 0;
  animation: pulse-ring 4s ease-out infinite;
}

.hero-pulse circle:nth-child(2) { animation-delay: 1s; }
.hero-pulse circle:nth-child(3) { animation-delay: 2s; }

@keyframes pulse-ring {
  0% { r: 40; opacity: 0.25; stroke-width: 1; }
  100% { r: 280; opacity: 0; stroke-width: 0.2; }
}

.hero-scan {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0.02) 45%, rgba(249, 115, 22, 0.04) 50%, rgba(249, 115, 22, 0.02) 55%, transparent 100%);
  animation: scan-sweep 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scan-sweep {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.hero .wrap { position: relative; z-index: 2; }

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-label .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 60px);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: var(--gray-400);
  max-width: 620px;
  margin: 0 auto 40px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero-scroll {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.hero-scroll:hover { color: var(--accent); }

.hero-scroll .arrow-down {
  display: inline-block;
  animation: bobDown 2s ease-in-out infinite;
}

@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(249, 115, 22, 0.06);
  padding: 28px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.01em;
}

.trust-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.06);
  border-radius: 8px;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* ── SECTION SHARED ── */
.section { padding: var(--section-pad) 0; }
.section-light { background: #fff; }
.section-off { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--text-light); }

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-dark .section-head h2 { color: #fff; }

.section-head p {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.section-dark .section-head p { color: var(--gray-400); }

/* ── VALUE PROPS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vp-card {
  position: relative;
  padding: 40px 36px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  transition: all 0.35s ease;
  overflow: hidden;
}

.vp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.vp-card:hover {
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
  transform: translateY(-2px);
}

.vp-card:hover::before { transform: scaleX(1); }

.vp-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 12px;
  margin-bottom: 20px;
}

.vp-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.vp-card h3 {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.vp-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 14px);
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  background: #fff;
  border: 2px solid rgba(249, 115, 22, 0.2);
  z-index: 1;
  transition: all 0.35s ease;
}

.step:hover .step-num {
  border-color: var(--accent);
  box-shadow: 0 0 0 8px var(--accent-glow);
}

.step h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 300px;
  margin: 0 auto;
}

/* ── SIGNAL TABLE ── */
.signal-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.signal-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
}

.signal-table thead th {
  text-align: left;
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

.signal-table tbody td {
  padding: 18px 20px;
  color: var(--gray-200);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: top;
}

.signal-table tbody tr {
  transition: background 0.2s ease;
}

.signal-table tbody tr:hover {
  background: rgba(249, 115, 22, 0.04);
}

.signal-type {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #fff;
}

.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: blink 3s ease-in-out infinite;
}

.signal-dot:nth-child(1) { animation-delay: 0s; }
.signal-table tbody tr:nth-child(2) .signal-dot { animation-delay: 0.5s; }
.signal-table tbody tr:nth-child(3) .signal-dot { animation-delay: 1s; }
.signal-table tbody tr:nth-child(4) .signal-dot { animation-delay: 1.5s; }
.signal-table tbody tr:nth-child(5) .signal-dot { animation-delay: 2s; }
.signal-table tbody tr:nth-child(6) .signal-dot { animation-delay: 2.5s; }

.signal-for {
  font-size: 13px;
  color: var(--gray-400);
}

.signal-footer {
  text-align: center;
  margin-top: 48px;
}

.signal-footer p {
  color: var(--gray-400);
  font-size: 16px;
  margin-bottom: 24px;
}

/* ── COMPARISON ── */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

.compare-table thead th {
  padding: 20px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
}

.compare-table thead th:first-child {
  color: var(--gray-600);
}

.compare-table thead th:nth-child(2) {
  color: var(--gray-400);
  font-weight: 500;
}

.compare-table thead th:last-child {
  color: var(--accent);
  background: rgba(249, 115, 22, 0.04);
}

.compare-table tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.compare-table tbody td:nth-child(2) {
  color: var(--gray-400);
}

.compare-table tbody td:last-child {
  color: var(--text);
  font-weight: 600;
  background: rgba(249, 115, 22, 0.02);
}

.check-accent {
  color: var(--accent);
  margin-right: 8px;
  font-weight: 700;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── FAQ ── */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--accent); }

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--gray-600);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  background: var(--accent);
  border-color: var(--accent);
}

.faq-item.open .faq-toggle svg {
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
}

.faq-item.open .faq-a {
  max-height: 400px;
}

/* ── FINAL CTA ── */
.final-cta {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--navy);
  overflow: hidden;
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
}

.final-cta .wrap { position: relative; z-index: 2; }

.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.final-cta .accent-line {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--accent);
  font-style: italic;
  margin-bottom: 36px;
  display: block;
  line-height: 1.15;
}

.final-cta .sub-email {
  color: var(--gray-400);
  font-size: 15px;
  margin-top: 20px;
}

.final-cta .sub-email a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(249, 115, 22, 0.3);
  transition: border-color 0.2s;
}

.final-cta .sub-email a:hover {
  border-color: var(--accent);
}

/* ── CONTACT PAGE ── */
.contact-section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-text h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.contact-text h1 em {
  font-style: italic;
  color: var(--accent);
}

.contact-text p {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.contact-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.5;
}

.contact-benefits li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.form-card {
  background: var(--navy-mid);
  border: 1px solid rgba(249, 115, 22, 0.1);
  border-radius: 20px;
  padding: 48px 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  color: #fff;
  transition: all 0.25s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-600);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.04);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  width: 100%;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 0 0 8px var(--accent-glow);
}

.form-submit svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.form-submit:hover svg { transform: translateX(3px); }

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 40px;
}

.form-success.show { display: block; }
.form-success.show + form { display: none; }

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 28px;
  height: 28px;
  color: var(--success);
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ── BLOG ── */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--gray-400);
}

.breadcrumb a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb span { margin: 0 8px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  padding: 48px 0 96px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
  transform: translateY(-2px);
}

.blog-card-date {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.blog-card h2 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.blog-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(249, 115, 22, 0.06);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ── ARTICLE ── */
.article-header {
  padding: 64px 0 32px;
  max-width: 720px;
  margin: 0 auto;
}

.article-header h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0 64px;
}

.article-body h2 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

.article-body h3 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 12px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-600);
  margin: 0 0 20px 24px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(249, 115, 22, 0.03);
  border-radius: 0 8px 8px 0;
}

.article-body blockquote p {
  color: var(--text);
  font-style: italic;
  margin-bottom: 0;
}

.article-body code {
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}

.article-body pre {
  background: var(--navy);
  color: var(--gray-200);
  padding: 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 24px 0;
}

.article-body pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: 14px;
}

.article-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(249, 115, 22, 0.3);
  transition: border-color 0.2s;
}

.article-body a:hover {
  border-color: var(--accent);
}

.article-body strong {
  color: var(--text);
  font-weight: 600;
}

/* Article CTA */
.article-cta {
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 40px;
  background: var(--navy);
  border-radius: 16px;
  text-align: center;
}

.article-cta h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}

.article-cta p {
  font-size: 15px;
  color: var(--gray-400);
  margin-bottom: 24px;
  line-height: 1.65;
}

/* Related posts */
.related-posts {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0 96px;
}

.related-posts h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ── 404 PAGE ── */
.error-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: var(--navy);
}

.error-page h1 {
  font-family: var(--serif);
  font-size: 72px;
  color: var(--accent);
  margin-bottom: 16px;
}

.error-page p {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 32px;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-deep);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.footer .logo {
  font-size: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a,
.footer-email {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-email:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 13px;
  color: rgba(148, 163, 184, 0.5);
  line-height: 1.6;
}

.footer-bottom span { white-space: nowrap; }

.footer-right {
  font-size: 13px;
  color: rgba(148, 163, 184, 0.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section { padding: var(--section-pad-m) 0; }
  .section-head { margin-bottom: 40px; }

  .hero { padding: 80px 0 64px; }

  .trust-items { gap: 24px; }
  .trust-item { font-size: 13px; }

  .cards-grid { grid-template-columns: 1fr; }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps::before { display: none; }

  .step { text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .step-num {
    width: 56px;
    height: 56px;
    font-size: 22px;
    margin: 0;
    flex-shrink: 0;
  }
  .step p { margin: 0; }

  .signal-table { font-size: 14px; }
  .signal-table thead th,
  .signal-table tbody td { padding: 14px 16px; }

  .compare-table { font-size: 14px; }
  .compare-table thead th,
  .compare-table tbody td { padding: 14px 16px; }

  .final-cta { padding: var(--section-pad-m) 0; }

  .nav-links { display: none; }

  .contact-section { padding: 48px 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-text { text-align: center; }
  .contact-text p { margin-left: auto; margin-right: auto; }
  .contact-benefits { align-items: center; }
  .form-card { padding: 32px 24px; }

  .blog-grid { grid-template-columns: 1fr; }

  .article-header { padding: 32px 0 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}

/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.35s; }
