/* ═══════════════════════════════════════════════════════════
   researchers.css — /researchers page
   Colours from landing_page.css vars:
     --color-light-blue:  #a6eaff
     --color-light-teal:  #075a7f
     --color-dark-teal:   #002b3e
═══════════════════════════════════════════════════════════ */

/* ─── Layout ─────────────────────────────────────────────── */
.res-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.res-section {
  padding: 96px 0;
}

/* ─── Shared atoms ────────────────────────────────────────── */
.res-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(166, 234, 255, 0.2);
  border: 1px solid rgba(166, 234, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-light-teal);
  margin-bottom: 20px;
}

.res-badge-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-light-blue);
}

.res-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  box-sizing: border-box;
  background: var(--color-light-teal);
  color: white;
  font-family: var(--font-outfit);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(7, 90, 127, 0.3);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.res-btn-primary:hover {
  background: var(--color-dark-teal);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -5px rgba(7, 90, 127, 0.4);
}

.res-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  box-sizing: border-box;
  background: transparent;
  color: var(--color-light-teal);
  font-family: var(--font-outfit);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid rgba(7, 90, 127, 0.25);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.res-btn-outline:hover {
  border-color: var(--color-light-teal);
  background: rgba(7, 90, 127, 0.05);
  transform: translateY(-2px);
}

.res-btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.res-gradient-text {
  background: linear-gradient(to right, var(--color-light-teal), var(--color-light-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.res-section-header { margin-bottom: 56px; }
.res-section-header-left { text-align: left; }
.res-section-header-center { text-align: center; }

.res-section-h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-dark-teal);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 20px;
}
.res-section-h2-light { color: white; }

.res-section-sub {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.75;
  max-width: 640px;
}
.res-section-header-center .res-section-sub { margin: 0 auto; }

/* Override global partner-banner pull-up for this page */
.res-hero + .partner-banner {
  margin-top: 48px;
}

/* ─── HERO ────────────────────────────────────────────────── */
.res-hero {
  padding: 140px 0 80px;
  background: linear-gradient(to bottom, rgba(166, 234, 255, 0.25), white 70%);
  overflow: hidden;
}

.res-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.res-hero-content { display: flex; flex-direction: column; gap: 0; }

.res-hero-h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-dark-teal);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 20px;
}

.res-hero-sub {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 0 32px;
}

.res-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.res-hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.res-stat-item { display: flex; flex-direction: column; gap: 4px; }

.res-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-light-teal);
}

.res-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.res-stat-divider {
  width: 1px;
  height: 40px;
  background: #e5e7eb;
}

/* Hero visual */
.res-hero-visual { position: relative; }

.res-hero-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(166, 234, 255, 0.3), transparent 65%);
  z-index: 0;
  border-radius: 50%;
}

.res-mockup {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 32px 64px -16px rgba(7, 90, 127, 0.18);
  border: 1px solid #e5e7eb;
}

.res-mockup-chrome {
  background: white;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #f3f4f6;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.res-chrome-dots { display: flex; gap: 6px; }
.res-chrome-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e5e7eb;
}

.res-chrome-bar {
  width: 128px; height: 8px;
  border-radius: 4px;
  background: #f3f4f6;
}

.res-chrome-circle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #f3f4f6;
}

.res-mockup-body {
  background: #f9fafb;
  border-radius: 0 0 12px 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.res-mock-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.res-mock-card {
  background: white;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding: 16px;
}

.res-mock-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.res-mock-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-light-teal);
  margin-bottom: 10px;
}

.res-mock-bar {
  width: 100%;
  height: 6px;
  background: #f3f4f6;
  border-radius: 3px;
  overflow: hidden;
}
.res-mock-bar-fill {
  height: 100%;
  background: var(--color-light-blue);
  border-radius: 3px;
}

.res-mock-bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  margin-top: 8px;
}
.res-mock-bars span {
  flex: 1;
  background: var(--color-light-teal);
  border-radius: 2px 2px 0 0;
}

.res-mock-chart-card { }

.res-mock-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.res-mock-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: #f0fdf4;
  color: #16a34a;
  padding: 2px 8px;
  border-radius: 999px;
}

.res-mock-bars-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}
.res-mock-bars-chart span {
  flex: 1;
  background: #e5e7eb;
  border-radius: 3px 3px 0 0;
}

.res-hero-chip {
  position: absolute;
  bottom: -24px;
  left: -32px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px -8px rgba(7, 90, 127, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.res-chip-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-teal);
  flex-shrink: 0;
}
.res-chip-icon svg { width: 18px; height: 18px; }

.res-chip-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-light-teal);
}

.res-chip-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-dark-teal);
}

/* ─── FEATURES ────────────────────────────────────────────── */
.res-features { background: white; }

.res-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.res-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.res-feature-card:hover {
  border-color: rgba(166, 234, 255, 0.6);
  box-shadow: 0 24px 48px -16px rgba(7, 90, 127, 0.12);
  transform: translateY(-3px);
}

.res-feature-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(166, 234, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light-teal);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.res-feature-icon svg { width: 24px; height: 24px; }

.res-feature-card:hover .res-feature-icon {
  background: var(--color-light-teal);
  color: white;
  transform: scale(1.1);
}

.res-feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark-teal);
  margin: 0 0 10px;
}

.res-feature-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* ─── STATS ───────────────────────────────────────────────── */
.res-stats-section {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(135deg, var(--color-light-teal), var(--color-dark-teal));
  overflow: hidden;
}

.res-stats-glow {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--color-light-blue);
  opacity: 0.08;
  filter: blur(80px);
  pointer-events: none;
}
.res-stats-glow-tl { top: -80px; left: 25%; }
.res-stats-glow-br { bottom: -80px; right: 25%; }

.res-stats-inner { position: relative; z-index: 1; }

.res-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.res-stat-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 32px;
  transition: background 0.2s ease;
}
.res-stat-card:hover { background: rgba(255,255,255,0.1); }

.res-stat-big {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.res-stat-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-light-blue);
  margin-bottom: 10px;
}

.res-stat-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

/* ─── CAPABILITIES ────────────────────────────────────────── */
.res-capabilities { background: white; }

.res-cap-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}

.res-cap-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.res-cap-icon-card {
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.res-cap-icon {
  width: 24px; height: 24px;
  color: var(--color-light-teal);
  margin-bottom: 10px;
}

.res-cap-icon-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark-teal);
  line-height: 1.3;
}

.res-cap-icon-sub {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 4px;
}

.res-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.res-benefit-card {
  background: linear-gradient(135deg, white, rgba(166, 234, 255, 0.08));
  border: 1px solid rgba(166, 234, 255, 0.35);
  border-radius: 20px;
  padding: 32px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.res-benefit-card:hover {
  box-shadow: 0 24px 48px -16px rgba(7, 90, 127, 0.15);
  transform: translateY(-4px);
}

.res-benefit-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--color-light-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}
.res-benefit-icon svg { width: 22px; height: 22px; }

.res-benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark-teal);
  margin: 0 0 20px;
}

.res-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.res-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
}

.res-benefit-list li svg {
  width: 18px; height: 18px;
  color: var(--color-light-teal);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── STAKEHOLDERS ────────────────────────────────────────── */
.res-stakeholders {
  background: linear-gradient(to bottom, rgba(166, 234, 255, 0.08), white);
}

.res-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.res-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-outfit);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #e5e7eb;
  background: white;
  color: var(--color-light-teal);
  transition: all 0.2s ease;
}
.res-tab-btn:hover {
  border-color: var(--color-light-blue);
  background: rgba(166, 234, 255, 0.1);
}
.res-tab-btn.active {
  background: var(--color-light-teal);
  color: white;
  border-color: var(--color-light-teal);
  box-shadow: 0 8px 20px -6px rgba(7, 90, 127, 0.4);
}

.res-tab-icon { width: 16px; height: 16px; }

.res-stack-area {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Vertical nav */
.res-stack-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.res-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(166, 234, 255, 0.5);
  color: var(--color-light-teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}
.res-nav-btn:hover {
  background: var(--color-light-teal);
  color: white;
  border-color: var(--color-light-teal);
}
.res-nav-btn svg { width: 18px; height: 18px; }

.res-pips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 0;
}

.res-pip {
  width: 6px;
  height: 8px;
  border-radius: 3px;
  background: rgba(166, 234, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.res-pip.active {
  height: 24px;
  background: var(--color-light-teal);
}

/* Stack wrapper */
.res-stack-wrapper {
  position: relative;
  flex: 1;
  min-height: 480px;
}

.res-stack-hint-1,
.res-stack-hint-2 {
  position: absolute;
  background: white;
  border: 1px solid rgba(166, 234, 255, 0.3);
  border-radius: 24px;
  pointer-events: none;
}
.res-stack-hint-1 {
  inset: 0;
  top: 12px;
  left: 24px;
  right: 24px;
  z-index: 0;
  opacity: 0.6;
}
.res-stack-hint-2 {
  inset: 0;
  top: 24px;
  left: 48px;
  right: 48px;
  z-index: -1;
  opacity: 0.35;
}

/* Stakeholder groups */
.res-sgroup { display: none; position: relative; z-index: 1; }
.res-sgroup.active { display: block; }

/* Individual cards */
.res-scard {
  display: none;
  background: white;
  border: 1px solid rgba(166, 234, 255, 0.35);
  border-radius: 24px;
  padding: 40px 48px;
  box-shadow: 0 24px 48px -16px rgba(7, 90, 127, 0.12);
}
.res-scard.active { display: block; }

/* Card header row */
.res-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 24px;
}

.res-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-light-teal);
  background: rgba(166, 234, 255, 0.15);
  border-radius: 999px;
  padding: 4px 12px;
}

.res-eyebrow-icon { width: 12px; height: 12px; }

.res-card-counter {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.res-card-h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-dark-teal);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 16px;
}

.res-card-body {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.75;
  margin: 0 0 20px;
}

.res-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.res-card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}
.res-card-bullets li svg {
  width: 18px; height: 18px;
  color: var(--color-light-teal);
  flex-shrink: 0;
  margin-top: 1px;
}

.res-card-cta { align-self: flex-start; }

/* Metrics grid */
.res-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.res-metric-tile {
  background: linear-gradient(135deg, var(--color-light-teal), var(--color-dark-teal));
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.res-metric-tile::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(166, 234, 255, 0.15);
}

.res-metric-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
}

.res-metric-label {
  font-size: 0.8rem;
  color: rgba(166, 234, 255, 0.9);
  line-height: 1.4;
}

/* Capabilities grid (inside cards) */
.res-caps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.res-cap-tile {
  background: linear-gradient(135deg, white, rgba(166, 234, 255, 0.08));
  border: 1px solid rgba(166, 234, 255, 0.35);
  border-radius: 14px;
  padding: 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.res-cap-tile:hover {
  border-color: var(--color-light-blue);
  box-shadow: 0 4px 16px rgba(7, 90, 127, 0.08);
}

.res-cap-tile-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--color-light-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: white;
}
.res-cap-tile-icon svg { width: 18px; height: 18px; }

.res-cap-tile-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark-teal);
  line-height: 1.3;
}

.res-cap-tile-sub {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 3px;
}

/* ─── TESTIMONIAL ─────────────────────────────────────────── */
.res-testimonial {
  position: relative;
  background: linear-gradient(135deg, var(--color-light-teal), var(--color-dark-teal));
  border-radius: 28px;
  padding: 64px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.res-testimonial-glow {
  position: absolute;
  top: 0; right: 0;
  width: 256px; height: 256px;
  border-radius: 50%;
  background: rgba(166, 234, 255, 0.1);
  filter: blur(60px);
}

.res-quote-icon {
  width: 56px; height: 56px;
  color: rgba(166, 234, 255, 0.4);
  margin-bottom: 24px;
  position: relative;
}

.res-quote-text {
  font-size: 1.3rem;
  color: white;
  font-weight: 500;
  line-height: 1.7;
  font-style: normal;
  margin: 0 0 32px;
  position: relative;
}

.res-quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.res-author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(166, 234, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.res-author-name {
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
}

.res-author-role {
  font-size: 0.85rem;
  color: var(--color-light-blue);
  margin-top: 2px;
}

/* ─── CTA ─────────────────────────────────────────────────── */
.res-cta-wrap { background: white; padding-bottom: 96px; }

.res-cta-card {
  position: relative;
  background: white;
  border: 2px solid rgba(166, 234, 255, 0.5);
  border-radius: 28px;
  padding: 64px;
  overflow: hidden;
  box-shadow: 0 32px 64px -16px rgba(7, 90, 127, 0.12);
}

.res-cta-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(166, 234, 255, 0.3);
  filter: blur(60px);
}

.res-cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.res-cta-h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-dark-teal);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 16px;
}

.res-cta-sub {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.res-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.res-cta-fine {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  width: 100%;
  margin: 0;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .res-container { padding: 0 32px; }
  .res-hero-grid { gap: 40px; }
  .res-cap-top-grid { gap: 40px; }
  .res-cta-grid { gap: 32px; }
}

@media (max-width: 768px) {
  .res-container { padding: 0 20px; }
  .res-section { padding: 64px 0; }

  .res-hero { padding: 120px 0 64px; }
  .res-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .res-hero-h1 { font-size: 2.5rem; }
  .res-hero-visual { display: none; }

  .res-features-grid { grid-template-columns: 1fr; }
  .res-stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .res-cap-top-grid { grid-template-columns: 1fr; }
  .res-benefits-grid { grid-template-columns: 1fr; }

  .res-section-h2 { font-size: 1.9rem; }

  .res-stack-area { flex-direction: column; }
  .res-stack-nav { flex-direction: row; order: 2; }
  .res-pips { flex-direction: row; }
  .res-pip { width: 8px; height: 6px; }
  .res-pip.active { width: 24px; height: 6px; }

  .res-scard { padding: 28px 24px; }
  .res-card-h3 { font-size: 1.35rem; }
  .res-metrics-grid { grid-template-columns: 1fr; }
  .res-caps-grid { grid-template-columns: 1fr; }
  .res-card-cta { width: 100%; box-sizing: border-box; justify-content: center; }

  .res-testimonial { padding: 40px 28px; }
  .res-quote-text { font-size: 1.05rem; }

  .res-cta-card { padding: 40px 28px; }
  .res-cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .res-cta-buttons { width: 100%; }
  .res-btn-primary, .res-btn-outline { width: 100%; justify-content: center; }
}
