/* =============================================================================
   Rippleffekt Marketing Site — Brand CSS
   Mirrors AREC brand system (Inter font, navy/red/gray palette)
   ============================================================================= */

/* Google Fonts — loaded via <link> in HTML */

:root {
  /* Brand Identity — matches AREC palette */
  --re-blue:        #1A3668;   /* Primary headings / logo */
  --re-navy:        #253B8E;   /* Dark accents / nav bg */
  --re-cyan:        #29B8E6;   /* Logo "effekt" / ring highlights */
  --re-red:         #E32626;   /* Buttons / highlight accent */
  --re-gold:        #b3882f;   /* Divider accent / underline */

  /* Backgrounds */
  --re-bg-page:     #F4F7F9;
  --re-bg-card:     #FFFFFF;
  --re-bg-dark:     #0f1f3d;   /* Hero section */
  --re-bg-section:  #EEF3F8;

  /* Text */
  --re-text:        #111827;
  --re-text-muted:  #6B7280;
  --re-text-light:  #9CA3AF;

  /* Borders */
  --re-border:      #E5E7EB;

  /* Functional */
  --re-link:        #2B5CE7;
  --re-success:     #10B981;
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--re-bg-page);
  color: var(--re-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ── Navigation ── */
.re-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--re-border);
  box-shadow: 0 2px 12px rgba(26, 54, 104, 0.07);
}

.re-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.re-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.re-wordmark {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--re-blue);
}

.re-wordmark span {
  color: var(--re-cyan);
}

.re-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.re-nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--re-text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.re-nav__links a:hover {
  color: var(--re-blue);
  background: #EEF3F8;
}

.re-nav__links a.active {
  color: var(--re-red);
  background: transparent;
  position: relative;
}

.re-nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--re-red);
  border-radius: 2px;
}

.re-nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Mobile hamburger */
.re-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--re-text);
}

.re-nav__mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--re-border);
  padding: 1rem 1.5rem;
  gap: 0.25rem;
}

.re-nav__mobile.open { display: flex; }

.re-nav__mobile a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--re-text);
  padding: 0.625rem 0.75rem;
  border-radius: 6px;
  transition: background 0.15s;
}

.re-nav__mobile a:hover { background: var(--re-bg-section); }

@media (max-width: 768px) {
  .re-nav__links,
  .re-nav__cta { display: none; }
  .re-nav__hamburger { display: flex; }
}

/* ── Buttons ── */
.re-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.re-btn--primary {
  background: var(--re-red);
  color: #fff;
  border-color: var(--re-red);
}

.re-btn--primary:hover {
  background: #c41e1e;
  border-color: #c41e1e;
}

.re-btn--outline {
  background: transparent;
  color: var(--re-blue);
  border-color: var(--re-blue);
}

.re-btn--outline:hover {
  background: var(--re-blue);
  color: #fff;
}

.re-btn--secondary {
  background: var(--re-bg-section);
  color: var(--re-blue);
  border-color: var(--re-border);
}

.re-btn--secondary:hover {
  background: #dde6f0;
  border-color: #b8cde0;
  color: var(--re-blue);
}

.re-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.re-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.re-btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
}

.re-btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.re-btn--sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
}

.re-btn--lg {
  font-size: 1.0625rem;
  padding: 0.875rem 2rem;
}

/* ── Layout containers ── */
.re-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.re-section {
  padding: 5rem 0;
}

.re-section--sm {
  padding: 3.5rem 0;
}

.re-section--dark {
  background: var(--re-bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.re-section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1400'%3E%3Cg fill='none' stroke='white' stroke-width='1.5' stroke-opacity='0.1'%3E%3Cpath d='M 0,100 C 350,350 620,530 820,700 C 1000,850 1200,620 1440,430'/%3E%3Cpath d='M 0,280 C 320,430 590,560 820,700 C 1010,820 1200,720 1440,600'/%3E%3Cpath d='M 0,460 C 300,510 580,590 820,700 C 1010,800 1160,880 1440,790'/%3E%3Cpath d='M 0,640 C 290,630 570,650 820,700 C 1000,745 1120,840 1440,940'/%3E%3Cpath d='M 0,820 C 290,760 570,720 820,700 C 1000,685 1100,770 1440,880'/%3E%3Cpath d='M 0,1000 C 300,850 575,760 820,700 C 1020,648 1150,600 1440,600'/%3E%3Cpath d='M 0,1180 C 310,950 590,800 820,700 C 1040,612 1220,430 1440,350'/%3E%3Cpath d='M 0,1360 C 320,1080 590,870 820,700 C 1040,550 1300,310 1440,200'/%3E%3C/g%3E%3C/svg%3E") center top / cover no-repeat;
  pointer-events: none;
}

.re-section--dark > .re-container {
  position: relative;
  z-index: 1;
}

.re-section--alt {
  background: var(--re-bg-section);
}

.re-section--tinted {
  background: linear-gradient(160deg, #eef3f8 0%, #f4f7f9 60%);
}

/* ── Audience cards ── */
.re-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 960px) {
  .re-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .re-audience-grid {
    grid-template-columns: 1fr;
  }
}

.re-audience-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid var(--re-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.re-audience-card:hover {
  border-color: var(--re-blue);
  box-shadow: 0 8px 28px rgba(26, 54, 104, 0.12);
  transform: translateY(-3px);
}

.re-audience-card:hover .re-audience-card__accent {
  background: var(--re-red);
}

.re-audience-card:hover .re-audience-card__cta {
  color: var(--re-red);
}

.re-audience-card__accent {
  height: 4px;
  background: var(--re-border);
  transition: background 0.18s;
}

.re-audience-card__inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.re-audience-card__head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
}

.re-audience-card__head .re-card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
  color: #fff;
}

/* Per-card icon accent colors */
.re-audience-card:nth-child(1) .re-card__icon { background: #1A3668; }
.re-audience-card:nth-child(2) .re-card__icon { background: #166534; }
.re-audience-card:nth-child(3) .re-card__icon { background: #6d28d9; }
.re-audience-card:nth-child(4) .re-card__icon { background: #b45309; }
.re-audience-card:nth-child(5) .re-card__icon { background: #E32626; }

.re-audience-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--re-blue);
  line-height: 1.3;
}

.re-audience-card__body {
  font-size: 0.875rem;
  color: var(--re-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.re-audience-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.re-audience-card__list li {
  font-size: 0.8125rem;
  color: var(--re-text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.re-audience-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--re-red);
}

.re-audience-card__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--re-blue);
  transition: color 0.18s;
}

/* ── Section headers ── */
.re-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--re-red);
  margin-bottom: 0.75rem;
}

.re-section-title {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--re-blue);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.re-section-title--light {
  color: #fff;
}

.re-section-intro {
  font-size: 1.0625rem;
  color: var(--re-text-muted);
  max-width: 680px;
  line-height: 1.7;
}

.re-section-intro--light {
  color: rgba(255,255,255,0.75);
}

.re-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--re-red), var(--re-blue));
  border-radius: 999px;
  margin: 1rem 0 2rem;
}

.re-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero ── */
.re-hero {
  background: linear-gradient(150deg, var(--re-bg-dark) 0%, #1a2f5e 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.re-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1400'%3E%3Cg fill='none' stroke='white' stroke-width='1.5' stroke-opacity='0.1'%3E%3Cpath d='M 0,100 C 350,350 620,530 820,700 C 1000,850 1200,620 1440,430'/%3E%3Cpath d='M 0,280 C 320,430 590,560 820,700 C 1010,820 1200,720 1440,600'/%3E%3Cpath d='M 0,460 C 300,510 580,590 820,700 C 1010,800 1160,880 1440,790'/%3E%3Cpath d='M 0,640 C 290,630 570,650 820,700 C 1000,745 1120,840 1440,940'/%3E%3Cpath d='M 0,820 C 290,760 570,720 820,700 C 1000,685 1100,770 1440,880'/%3E%3Cpath d='M 0,1000 C 300,850 575,760 820,700 C 1020,648 1150,600 1440,600'/%3E%3Cpath d='M 0,1180 C 310,950 590,800 820,700 C 1040,612 1220,430 1440,350'/%3E%3Cpath d='M 0,1360 C 320,1080 590,870 820,700 C 1040,550 1300,310 1440,200'/%3E%3C/g%3E%3C/svg%3E") center top / cover no-repeat;
  pointer-events: none;
}

.re-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.re-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.re-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.re-hero__visual {
  position: relative;
  z-index: 1;
}

.re-hero__visual img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
  .re-hero__grid { grid-template-columns: 1fr; }
  .re-hero__visual { display: none; }
}

.re-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(227,38,38,0.15);
  border: 1px solid rgba(227,38,38,0.35);
  color: #fca5a5;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.re-hero__headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #fff;
}

.re-hero__headline em {
  font-style: normal;
  color: #fca5a5;
}

.re-hero__sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 620px;
}

.re-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3rem;
}

.re-hero__trust {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  line-height: 1.6;
  max-width: 560px;
}

/* ── Value cards ── */
.re-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.re-cards--3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.re-card {
  background: var(--re-bg-card);
  border: 1px solid var(--re-border);
  border-radius: 12px;
  padding: 1.625rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.re-card:hover {
  box-shadow: 0 8px 24px rgba(26, 54, 104, 0.1);
  transform: translateY(-2px);
}

.re-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #EEF3F8, #dce6f0);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--re-blue);
  flex-shrink: 0;
}

.re-card__icon svg {
  width: 22px;
  height: 22px;
}

.re-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--re-blue);
  margin-bottom: 0.5rem;
}

.re-card__body {
  font-size: 0.9375rem;
  color: var(--re-text-muted);
  line-height: 1.65;
}

/* ── Feature Explorer ── */
.re-feat-explorer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Left column — feature item list */
.re-feat-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.re-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  border-radius: 12px;
  border: 1.5px solid transparent;
  background: var(--re-bg-card);
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  outline: none;
}

.re-feat-item:hover {
  border-color: var(--re-blue);
  box-shadow: 0 4px 16px rgba(26, 54, 104, 0.1);
}

.re-feat-item:focus-visible {
  border-color: var(--re-blue);
  box-shadow: 0 0 0 3px rgba(26, 54, 104, 0.2);
}

.re-feat-item--active {
  border-color: var(--re-red);
  background: #fff;
  box-shadow: 0 4px 20px rgba(227, 38, 38, 0.1);
}

.re-feat-item--active .re-feat-item__icon {
  background: var(--re-blue);
  color: #fff;
}

.re-feat-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #EEF3F8, #dce6f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--re-blue);
  transition: background 0.18s, color 0.18s;
}

.re-feat-item__copy {
  flex: 1;
}

.re-feat-item__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--re-blue);
  margin-bottom: 0.2rem;
}

.re-feat-item__desc {
  font-size: 0.875rem;
  color: var(--re-text-muted);
  line-height: 1.55;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.re-feat-item--active .re-feat-item__desc {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  margin-bottom: 0.625rem;
}

.re-feat-item__bullets {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  gap: 0.3rem;
}

.re-feat-item--active .re-feat-item__bullets {
  display: flex;
}

.re-feat-item__bullets li {
  font-size: 0.8125rem;
  color: var(--re-text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.re-feat-item__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--re-red);
}

/* Right column — live preview panel */
.re-feat-preview {
  position: sticky;
  top: 5rem;
}

.re-feat-panel__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--re-red);
  margin-bottom: 0.25rem;
}

.re-feat-panel__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--re-blue);
  margin-bottom: 1rem;
}

.re-feat-panel__report {
  background: var(--re-blue);
  border-radius: 14px;
  padding: 1.25rem;
  color: #fff;
  font-size: 0.875rem;
}

/* Report subcomponents */
.re-rpt__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.re-rpt__address {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.re-rpt__meta {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
}

.re-rpt__badge {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  white-space: nowrap;
}

.re-rpt__badge--high  { background: rgba(227, 38, 38, 0.25); color: #ff8a8a; }
.re-rpt__badge--med   { background: rgba(179, 136, 47, 0.25); color: #f0c96f; }

.re-rpt__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.re-rpt__kpi {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 0.625rem 0.5rem;
  text-align: center;
}

.re-rpt__kpi-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.re-rpt__kpi-val {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}

.re-rpt__kpi-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}

.re-rpt__kpi-sub--warn { color: #ff8a8a; }
.re-rpt__kpi-sub--pos  { color: #6ee7b7; }

.re-rpt__signals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.re-rpt__sig-row {
  display: grid;
  grid-template-columns: 130px 1fr 32px;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
}

.re-rpt__bar {
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
}

.re-rpt__bar-fill {
  height: 100%;
  background: var(--re-red);
  border-radius: 999px;
}

.re-rpt__sig-val {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-align: right;
}

/* Lead list rows */
.re-rpt__lead-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.re-rpt__lead-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: center;
}

.re-rpt__lead-row:last-child { border-bottom: none; }

.re-rpt__lead-row--header {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.re-rpt__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 0.3rem;
}

.re-rpt__dot--high { background: #ff8a8a; }
.re-rpt__dot--med  { background: #f0c96f; }

.re-rpt__tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.re-rpt__tag--active {
  background: rgba(227, 38, 38, 0.25);
  color: #ff8a8a;
}

/* Responsive — stack on mobile */
@media (max-width: 900px) {
  .re-feat-explorer {
    grid-template-columns: 1fr;
  }
  .re-feat-preview {
    position: static;
  }
  .re-rpt__kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  .re-rpt__sig-row {
    grid-template-columns: 110px 1fr 28px;
  }
}

@media (max-width: 500px) {
  .re-rpt__lead-row {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .re-rpt__lead-row > span:last-child {
    display: none;
  }
}

/* ── Why bullets ── */
.re-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.re-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--re-text);
  line-height: 1.6;
}

.re-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--re-red);
  margin-top: 0.6rem;
}

/* ── Billing toggle ── */
.re-billing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  background: var(--re-bg-section);
  border: 1px solid var(--re-border);
  border-radius: 9999px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.re-billing-btn {
  padding: 0.5rem 1.375rem;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: var(--re-text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.re-billing-btn--active {
  background: var(--re-blue);
  color: #fff;
}
.re-billing-badge {
  background: rgba(255,255,255,0.25);
  color: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.1rem 0.5rem;
  border-radius: 9999px;
}
.re-billing-btn:not(.re-billing-btn--active) .re-billing-badge {
  background: var(--re-blue);
  color: #fff;
}

/* ── Pricing cards ── */
.re-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.re-pricing-card {
  background: var(--re-bg-card);
  border: 1px solid var(--re-border);
  border-radius: 14px;
  padding: 1.875rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s;
}

.re-pricing-card:hover {
  box-shadow: 0 8px 28px rgba(26, 54, 104, 0.12);
}

.re-pricing-card--featured {
  position: relative;
  padding-top: 2.25rem;
}

.re-pricing-card--selected {
  border-color: var(--re-red);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(227, 38, 38, 0.14);
}

.re-pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--re-blue);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
  white-space: nowrap;
}

.re-pricing-card__tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--re-red);
}

.re-pricing-card__name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--re-blue);
  line-height: 1;
}

.re-pricing-card__tagline {
  font-size: 0.875rem;
  color: var(--re-text-muted);
}

.re-pricing-card__price {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--re-text);
}

.re-pricing-card__divider {
  height: 1px;
  background: var(--re-border);
}

.re-pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.re-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--re-text);
  line-height: 1.5;
}

.re-pricing-card__features li::before {
  content: '✓';
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--re-success);
  margin-top: 0.125rem;
}

/* ── Use cases / split sections ── */
.re-usecase {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--re-border);
}

.re-usecase:last-child { border-bottom: none; }

.re-usecase__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--re-text-light);
  padding-top: 0.25rem;
}

.re-usecase__title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--re-blue);
  margin-bottom: 0.625rem;
}

.re-usecase__body {
  font-size: 0.9375rem;
  color: var(--re-text-muted);
  line-height: 1.7;
}

.re-usecase__img {
  width: 100%;
  border-radius: 10px;
  margin-top: 1.25rem;
  display: block;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.re-usecase__img:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .re-usecase {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* ── Wave gradient section (use-cases dark background with flowing lines) ── */
.re-section--wave {
  position: relative;
  overflow: hidden;
  background: linear-gradient(148deg, #091629 0%, #131040 38%, #2a0b18 68%, #180a2e 100%);
  color: #fff;
}

.re-section--wave::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1400'%3E%3Cg fill='none' stroke='white' stroke-width='1.5' stroke-opacity='0.14'%3E%3Cpath d='M 0,100 C 350,350 620,530 820,700 C 1000,850 1200,620 1440,430'/%3E%3Cpath d='M 0,280 C 320,430 590,560 820,700 C 1010,820 1200,720 1440,600'/%3E%3Cpath d='M 0,460 C 300,510 580,590 820,700 C 1010,800 1160,880 1440,790'/%3E%3Cpath d='M 0,640 C 290,630 570,650 820,700 C 1000,745 1120,840 1440,940'/%3E%3Cpath d='M 0,820 C 290,760 570,720 820,700 C 1000,685 1100,770 1440,880'/%3E%3Cpath d='M 0,1000 C 300,850 575,760 820,700 C 1020,648 1150,600 1440,600'/%3E%3Cpath d='M 0,1180 C 310,950 590,800 820,700 C 1040,612 1220,430 1440,350'/%3E%3Cpath d='M 0,1360 C 320,1080 590,870 820,700 C 1040,550 1300,310 1440,200'/%3E%3Cpath d='M 200,1400 C 380,1100 590,880 820,700 C 1050,535 1280,280 1440,130'/%3E%3Cpath d='M 500,1400 C 610,1150 690,920 820,700 C 950,490 1140,220 1440,80'/%3E%3Cpath d='M 800,1400 C 810,1200 815,950 820,700 C 825,460 1000,180 1440,40'/%3E%3C/g%3E%3C/svg%3E") center top / cover no-repeat;
  pointer-events: none;
}

.re-section--wave > .re-container {
  position: relative;
  z-index: 1;
}

.re-section--wave .re-usecase {
  border-bottom-color: rgba(255,255,255,0.1);
}

.re-section--wave .re-usecase__label,
.re-section--wave .re-usecase__type {
  color: rgba(255,255,255,0.45);
}

.re-section--wave .re-usecase__title {
  color: #93c5fd;
}

.re-section--wave .re-usecase__body {
  color: rgba(255,255,255,0.72);
}

.re-section--wave .re-usecase__img {
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

/* ── Wave section: text & component overrides ── */
.re-section--wave .re-section-label { color: #fca5a5; }
.re-section--wave .re-section-title  { color: #fff; }
.re-section--wave .re-section-intro  { color: rgba(255,255,255,0.72); }
.re-section--wave .re-divider        { background: rgba(255,255,255,0.22); }

/* FAQ on wave bg */
.re-section--wave .re-faq                     { border-top-color: rgba(255,255,255,0.12); }
.re-section--wave .re-faq__item               { border-bottom-color: rgba(255,255,255,0.12); }
.re-section--wave .re-faq__q                  { color: rgba(255,255,255,0.9); }
.re-section--wave .re-faq__q:hover,
.re-section--wave .re-faq__q[aria-expanded="true"] { color: #93c5fd; }
.re-section--wave .re-faq__chevron            { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.55); }
.re-section--wave .re-faq__a                  { color: rgba(255,255,255,0.72); }

/* Outline button on wave bg */
.re-section--wave .re-btn--outline       { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.45); }
.re-section--wave .re-btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* ── CTA banner ── */
.re-cta-banner {
  background: linear-gradient(135deg, var(--re-blue) 0%, var(--re-navy) 100%);
  border-radius: 16px;
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.re-cta-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.re-cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.re-cta-banner__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

.re-cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* ── Form ── */
.re-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.re-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 580px) {
  .re-form__row { grid-template-columns: 1fr; }
}

.re-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.re-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--re-text);
}

.re-form__input,
.re-form__select,
.re-form__textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--re-text);
  background: #fff;
  border: 1px solid var(--re-border);
  border-radius: 8px;
  padding: 0.625rem 0.875rem;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.re-form__input:focus,
.re-form__select:focus,
.re-form__textarea:focus {
  border-color: var(--re-blue);
  box-shadow: 0 0 0 3px rgba(26, 54, 104, 0.1);
}

.re-form__textarea { resize: vertical; min-height: 120px; }

/* ── FAQ ── */
.re-faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--re-border);
}

.re-faq__item {
  border-bottom: 1px solid var(--re-border);
}

.re-faq__q {
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  color: var(--re-text);
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  user-select: none;
  background: none;
  border: none;
  transition: color 0.15s;
}

.re-faq__q:hover { color: var(--re-blue); }

.re-faq__q[aria-expanded="true"] { color: var(--re-blue); }

.re-faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--re-bg-section);
  border: 1px solid var(--re-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.15s, border-color 0.15s;
  color: var(--re-text-muted);
  padding: 3px;
}

.re-faq__q[aria-expanded="true"] .re-faq__chevron {
  transform: rotate(180deg);
  background: var(--re-blue);
  border-color: var(--re-blue);
  color: #fff;
}

.re-faq__a {
  font-size: 0.9375rem;
  color: var(--re-text-muted);
  line-height: 1.75;
  padding: 0 2rem 1.25rem 0;
  display: none;
}

.re-faq__a.open { display: block; }

/* ── Footer ── */
.re-footer {
  background: var(--re-bg-dark);
  color: rgba(255,255,255,0.70);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.re-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .re-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .re-footer__inner {
    grid-template-columns: 1fr;
  }
}

.re-footer__brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-top: 0;
  color: rgba(255,255,255,0.5);
}

.re-footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.875rem;
}

.re-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.re-footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}

.re-footer__links a:hover { color: #fff; }

.re-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.re-footer__bottom a {
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}

.re-footer__bottom a:hover { color: rgba(255,255,255,0.8); }

/* ── Page hero (inner pages) ── */
.re-page-hero {
  background: linear-gradient(150deg, var(--re-bg-dark) 0%, #1a2f5e 100%);
  padding: 4rem 0 3.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.re-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1400'%3E%3Cg fill='none' stroke='white' stroke-width='1.5' stroke-opacity='0.1'%3E%3Cpath d='M 0,100 C 350,350 620,530 820,700 C 1000,850 1200,620 1440,430'/%3E%3Cpath d='M 0,280 C 320,430 590,560 820,700 C 1010,820 1200,720 1440,600'/%3E%3Cpath d='M 0,460 C 300,510 580,590 820,700 C 1010,800 1160,880 1440,790'/%3E%3Cpath d='M 0,640 C 290,630 570,650 820,700 C 1000,745 1120,840 1440,940'/%3E%3Cpath d='M 0,820 C 290,760 570,720 820,700 C 1000,685 1100,770 1440,880'/%3E%3Cpath d='M 0,1000 C 300,850 575,760 820,700 C 1020,648 1150,600 1440,600'/%3E%3Cpath d='M 0,1180 C 310,950 590,800 820,700 C 1040,612 1220,430 1440,350'/%3E%3Cpath d='M 0,1360 C 320,1080 590,870 820,700 C 1040,550 1300,310 1440,200'/%3E%3C/g%3E%3C/svg%3E") center top / cover no-repeat;
  pointer-events: none;
}

.re-page-hero > .re-container {
  position: relative;
  z-index: 1;
}

.re-page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 0.75rem;
}

.re-page-hero__title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.re-page-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Page hero stat strip ── */
.re-hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.re-hero-stat__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
}

.re-hero-stat__val {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.re-hero-stat__label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ── Principles section scoped icon colors ── */
.re-principles .re-card:nth-child(1) .re-card__icon { background: var(--re-blue);    color: #fff; }
.re-principles .re-card:nth-child(2) .re-card__icon { background: var(--re-red);     color: #fff; }
.re-principles .re-card:nth-child(3) .re-card__icon { background: #166534;           color: #fff; }
.re-principles .re-card:nth-child(4) .re-card__icon { background: #6d28d9;           color: #fff; }

/* ── Capabilities grid ── */
.re-capab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.re-capab-item {
  background: #fff;
  border: 1px solid var(--re-border);
  border-radius: 10px;
  padding: 1.25rem 1.375rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.re-capab-item:hover {
  border-color: var(--re-blue);
  box-shadow: 0 4px 14px rgba(26, 54, 104, 0.09);
}

.re-capab-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}

/* Per-item icon colors */
.re-capab-item:nth-child(1) .re-capab-item__icon { background: #0f766e; }
.re-capab-item:nth-child(2) .re-capab-item__icon { background: var(--re-blue); }
.re-capab-item:nth-child(3) .re-capab-item__icon { background: #b45309; }
.re-capab-item:nth-child(4) .re-capab-item__icon { background: #6d28d9; }
.re-capab-item:nth-child(5) .re-capab-item__icon { background: #166534; }
.re-capab-item:nth-child(6) .re-capab-item__icon { background: #334155; }
.re-capab-item:nth-child(7) .re-capab-item__icon { background: var(--re-red); }
.re-capab-item:nth-child(8) .re-capab-item__icon { background: #c2410c; }

.re-capab-item__title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--re-blue);
  margin-bottom: 0.25rem;
}

.re-capab-item__body {
  font-size: 0.875rem;
  color: var(--re-text-muted);
  line-height: 1.6;
}

/* ── Team grid ── */
.re-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.re-team-card {
  background: #fff;
  border: 1.5px solid var(--re-border);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.re-team-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.re-team-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--re-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.re-team-card__name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--re-blue);
  margin-bottom: 0.2rem;
}

.re-team-card__role {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--re-red);
}

.re-team-card__bio {
  font-size: 0.875rem;
  color: var(--re-text-muted);
  line-height: 1.7;
}

.re-team-card--open {
  background: var(--re-bg-section);
  border: 1px dashed var(--re-border);
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 170px;
  gap: 0.75rem;
}

.re-team-card__open-label {
  font-size: 0.875rem;
  color: var(--re-text-light);
}

.re-team-card__open-link {
  font-size: 0.8125rem;
  color: var(--re-red);
  font-weight: 600;
  text-decoration: none;
}

.re-team-card__open-link:hover {
  text-decoration: underline;
}

/* ── Use-case type label ── */
.re-usecase__type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--re-text-light);
  margin-top: 0.5rem;
}

/* ── Use-cases capability cards colored icons ── */
.re-uc-caps .re-card:nth-child(1) .re-card__icon { background: var(--re-blue);  color: #fff; }
.re-uc-caps .re-card:nth-child(2) .re-card__icon { background: #166534;         color: #fff; }
.re-uc-caps .re-card:nth-child(3) .re-card__icon { background: var(--re-red);   color: #fff; }

/* ── Info banner (pricing guidance note) ── */
.re-info-banner {
  background: var(--re-bg-section);
  border: 1px solid var(--re-border);
  border-radius: 10px;
  padding: 1rem 1.375rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.re-info-banner__icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.re-info-banner__text {
  font-size: 0.875rem;
  color: var(--re-text-muted);
  line-height: 1.6;
}

/* ── Feature row list (pricing scales section) ── */
.re-feat-row-header {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--re-text-muted);
  margin-bottom: 1.25rem;
}

.re-feat-row-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.re-feat-row-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid var(--re-border);
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.re-feat-row-item:hover {
  border-color: var(--re-blue);
  box-shadow: 0 2px 8px rgba(26, 54, 104, 0.07);
}

.re-feat-row-item__icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Per-row icon colors */
.re-feat-row-item:nth-child(1) .re-feat-row-item__icon { background: rgba(26,54,104,0.08); }
.re-feat-row-item:nth-child(2) .re-feat-row-item__icon { background: rgba(109,40,217,0.08); }
.re-feat-row-item:nth-child(3) .re-feat-row-item__icon { background: rgba(227,38,38,0.08); }
.re-feat-row-item:nth-child(4) .re-feat-row-item__icon { background: rgba(196,66,12,0.08); }
.re-feat-row-item:nth-child(5) .re-feat-row-item__icon { background: rgba(22,101,52,0.08); }
.re-feat-row-item:nth-child(6) .re-feat-row-item__icon { background: rgba(15,118,110,0.08); }

.re-feat-row-item__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--re-text);
}

/* ── Feature group tooltip ── */
.re-feat-row-item {
  position: relative;
}

.re-feat-row-tooltip {
  display: none;
  position: absolute;
  left: 105%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  width: 260px;
  background: var(--re-bg-dark);
  color: rgba(255,255,255,0.88);
  font-size: 0.8125rem;
  line-height: 1.65;
  padding: 0.875rem 1rem;
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  pointer-events: none;
}

.re-feat-row-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--re-bg-dark);
}

.re-feat-row-tooltip__title {
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 0.375rem;
  display: block;
}

.re-feat-row-item:hover .re-feat-row-tooltip {
  display: block;
}

@media (max-width: 1100px) {
  .re-feat-row-tooltip {
    left: auto;
    right: 0;
    top: calc(100% + 10px);
    transform: none;
    width: 240px;
  }
  .re-feat-row-tooltip::before {
    right: auto;
    left: 1.25rem;
    top: -12px;
    transform: none;
    border: 6px solid transparent;
    border-bottom-color: var(--re-bg-dark);
    border-right-color: transparent;
  }
}

/* ── Contact page layout ── */
.re-contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 860px) {
  .re-contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.re-form-panel {
  background: #fff;
  border: 1px solid var(--re-border);
  border-radius: 14px;
  padding: 2.25rem;
}

.re-form-panel__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--re-blue);
  margin-bottom: 0.375rem;
}

.re-form-panel__sub {
  font-size: 0.875rem;
  color: var(--re-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.re-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 84px;
}

.re-sidebar-card {
  background: var(--re-bg-section);
  border: 1px solid var(--re-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.re-sidebar-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--re-text-muted);
  margin-bottom: 1rem;
}

.re-sidebar-card__body {
  font-size: 0.875rem;
  color: var(--re-text-muted);
  line-height: 1.65;
}

.re-sidebar-card--dark {
  background: var(--re-blue);
  border-color: transparent;
}

.re-sidebar-card--dark .re-sidebar-card__body {
  color: rgba(255,255,255,0.82);
  margin-bottom: 1rem;
}

.re-sidebar-card__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

/* ── Util ── */
.re-text-center { text-align: center; }
.re-text-center .re-section-intro { margin-left: auto; margin-right: auto; }
.re-text-center .re-divider { margin-left: auto; margin-right: auto; }

.re-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .re-two-col { grid-template-columns: 1fr; gap: 2rem; }
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--re-blue);
  outline-offset: 2px;
}

/* ── Scroll-reveal animations ── */
.re-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.re-reveal--visible {
  opacity: 1;
  transform: none;
}

.re-reveal--delay-1 { transition-delay: 0.08s; }
.re-reveal--delay-2 { transition-delay: 0.16s; }
.re-reveal--delay-3 { transition-delay: 0.24s; }
.re-reveal--delay-4 { transition-delay: 0.32s; }
