/* =============================================
   RESET & BASE STYLES
============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --bg-gradient-start: #1a1a1a;
  --bg-gradient-end: #000000;
  --bg-gradient: linear-gradient(135deg, #2a2a2a 0%, #111111 50%, #000000 100%);

  --accent-red: #ff0000;
  --accent-red-hover: #cc0000;

  --text-white: #ffffff;
  --text-light: #d0d0d0;
  --text-muted: #9ca3af;

  --card-bg: #1e2235;
  --card-border: rgba(255, 255, 255, 0.08);

  --input-bg: #ffffff;
  --input-border: #d1d5db;
  --input-focus: #ff0000;

  --badge-bg: rgba(255, 255, 255, 0.08);
  --badge-border: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-primary: 'Inter', 'Segoe UI', Arial, sans-serif;

  /* Spacing */
  --nav-height: 68px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-gradient);
  color: var(--text-white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =============================================
   HEADER / NAV
============================================= */
.site-header {
  width: 100%;
  background: linear-gradient(90deg, #1a1a1a 0%, #0d0d0d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  padding: 10px 0px 5px;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  color: var(--accent-red);
  font-size: 14px;
  letter-spacing: 1px;
}

.rating-score {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
}

.rating-text {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--accent-red);
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.3);
}

.btn-nav-cta:hover {
  background: var(--accent-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.45);
}

/* =============================================
   HERO / BANNER SECTION
============================================= */
.hero-section {
  width: 100%;
  background: var(--bg-gradient);
  padding: 60px 24px 70px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

/* ---- LEFT COLUMN ---- */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
  backdrop-filter: blur(6px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

/* Headline */
.hero-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.hero-headline-accent {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--accent-red);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

/* Sub-description */
.hero-desc {
  margin-bottom: 32px;
}

/* Footer Banner Overrides */
.footer-banner {
  padding: 80px 24px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 40px;
}

.footer-banner .hero-headline {
  font-size: clamp(28px, 3.5vw, 40px);
}

.footer-banner .hero-headline-accent {
  font-size: clamp(26px, 3.2vw, 38px);
  margin-bottom: 15px;
}


/* Checklist */
.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 44px;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.5;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.12);
  border: 1.5px solid var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--accent-red);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Trust Badges Row */
.trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  min-width: 80px;
  transition: border-color 0.2s ease;
}

.trust-badge:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.trust-badge-label {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-badge-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  white-space: nowrap;
}

.trust-badge-sub {
  font-size: 10px;
  color: var(--text-muted);
}

.trust-badge-stars {
  color: var(--accent-red);
  font-size: 11px;
  letter-spacing: 1px;
}

/* Logo image variants — equal frame for all badges */
.trust-badge-img {
  width: 110px;
  height: 80px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-sizing: border-box;
}

.trust-logo {
  width: 100%;
  height: 36px;
  object-fit: contain;
  display: block;
}

/* Invert dark logos to white so they show on dark bg */
.trust-logo-filter {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.trust-logo-icon {
  width: 50px;
  height: 90px;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

/* ---- RIGHT COLUMN — FORM CARD ---- */
.hero-form-card {
  background: #1e2235;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.form-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.form-card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.5;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.form-label .required {
  color: var(--accent-red);
  margin-left: 2px;
}

.form-label .optional {
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
  margin-left: 4px;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #111;
  font-family: var(--font-primary);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.12);
}

/* Phone row */
.phone-row {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--input-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-row:focus-within {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.12);
}

.phone-country {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 12px;
  background: #f9fafb;
  border-right: 1px solid var(--input-border);
  font-size: 13px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.country-flag {
  font-size: 16px;
}

.phone-number {
  flex: 1;
  padding: 11px 14px;
  background: white;
  border: none;
  font-size: 14px;
  color: #111;
  font-family: var(--font-primary);
  outline: none;
  min-width: 0;
}

.phone-number::placeholder {
  color: #9ca3af;
}

/* Textarea */
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #111;
  font-family: var(--font-primary);
  outline: none;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-textarea::placeholder {
  color: #9ca3af;
}

.form-textarea:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.12);
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--accent-red);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.35);
  letter-spacing: 0.2px;
}

.btn-submit:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 0, 0, 0.5);
}

.btn-submit svg {
  stroke: white;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Form Footer */
.form-footer {
  text-align: center;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-footer-line {
  font-size: 11.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.form-footer-line a {
  color: var(--accent-red);
  text-decoration: none;
}

.form-footer-line a:hover {
  text-decoration: underline;
}

.lock-icon {
  font-size: 12px;
  opacity: 0.7;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 900px)
============================================= */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-form-card {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-desc {
    max-width: 100%;
  }

  .nav-rating {
    display: none;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 600px)
============================================= */
@media (max-width: 600px) {
  :root {
    --nav-height: 60px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .logo-brand {
    font-size: 17px;
  }

  .logo-tag {
    display: none;
  }

  .btn-nav-cta {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero-section {
    padding: 40px 16px 52px;
  }

  .hero-container {
    gap: 32px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 6px 12px;
  }

  .hero-headline {
    font-size: clamp(26px, 8vw, 38px);
  }

  .hero-headline-accent {
    font-size: clamp(24px, 7.5vw, 36px);
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-checklist li {
    font-size: 13.5px;
  }

  .trust-row {
    gap: 12px;
  }

  .trust-badge {
    padding: 8px 12px;
    min-width: 70px;
  }

  .hero-form-card {
    padding: 20px 16px 18px;
    border-radius: var(--radius-md);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: 1;
  }

  .form-card-title {
    font-size: 16px;
  }

  .form-card-subtitle {
    font-size: 12.5px;
    margin-bottom: 18px;
  }

  .btn-submit {
    font-size: 15px;
    padding: 14px 20px;
  }
}

@media (max-width: 380px) {
  .trust-row {
    justify-content: center;
  }
}

/* =============================================
   LOGO SLIDER SECTION
============================================= */
.logo-slider-section {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 30px 0 40px;
  overflow: hidden;
}

/* Latest Ticker */
.latest-ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.latest-ticker-track {
  display: flex;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}

.latest-ticker-track:hover {
  animation-play-state: paused;
}

.latest-item {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.latest-item span {
  color: #111111;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 6px;
}

.logo-slider-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.slider-title {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slider-track-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Fade edges for smooth entry/exit */
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll-left 25s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

.slider-group {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
  /* Gap between group 1 and 2 */
}

.slider-item {
  flex-shrink: 0;
}

.client-logo-img {
  max-width: 140px;
  height: 50px;
  object-fit: contain;
  transition: all 0.3s ease;
  cursor: pointer;
}

.client-logo-img:hover {
  transform: scale(1.05);
}

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

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .logo-slider-section {
    padding: 20px 0 30px;
  }

  .latest-ticker-wrap {
    margin-bottom: 24px;
    padding-bottom: 8px;
  }

  .slider-title {
    font-size: 11px;
  }

  .slider-group {
    gap: 40px;
    padding-right: 40px;
  }

  .logo-placeholder {
    width: 120px;
    height: 44px;
    font-size: 11px;
  }

  .slider-track-wrap {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }
}

/* =============================================
   HIRING PROBLEM SECTION
============================================= */
.hiring-problem-section {
  background: #ffffff;
  padding: 80px 24px;
}

.hiring-container {
  max-width: 1480px;
  width: 92%;
  margin: 0 auto;
}

/* Header Text */
.section-top-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.hiring-headline {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: #111122;
  /* Very dark text */
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  max-width: 900px;
}

.hiring-headline-accent {
  color: var(--accent-red);
}

.hiring-subheadline {
  font-size: 17px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
  max-width: 760px;
  margin-bottom: 30px;
}

/* 2-Column Main Layout Grid */
.hiring-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.hiring-split-left {
  display: flex;
  flex-direction: column;
}

/* LEFT SIDE: Features */
.hiring-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  margin-top: 12px;
}

.feature-col {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  border-right: 1px dashed #e5e7eb;
}

.feature-col:last-child {
  border-right: none;
}

.feature-number {
  font-size: 64px;
  font-weight: 800;
  color: #f3f4f6;
  line-height: 1;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #111122;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-text {
  font-size: 14px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
}

/* RIGHT SIDE: Stats Card */
.hiring-stats-card {
  background: var(--bg-gradient);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 100px;
  /* Offset from header */
}

/* Card Header */
.stats-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.dot-green {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
}

.stats-header-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: 0.5px;
}

/* Stats Bars */
.stats-bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.stat-row {
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  align-items: center;
  gap: 12px;
}

.stat-label {
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.3;
}

.stat-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  border-radius: 4px;
}

.fill-red {
  background: #ef4444;
}

.fill-accent {
  background: var(--accent-red);
}

.fill-green {
  background: #10b981;
}

.stat-percent {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  text-align: right;
}

/* Stats Desc & Checklist */
.stats-card-desc {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 24px;
}

.stats-card-desc strong {
  color: var(--text-white);
  font-weight: 600;
}

.stats-card-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats-card-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.5;
}

.green-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.green-check-icon svg {
  width: 10px;
  height: 10px;
  stroke: #10b981;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive - Hiring Section */
@media (max-width: 900px) {
  .hiring-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hiring-features {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-col {
    padding-bottom: 24px;
    border-bottom: 1px dashed #e5e7eb;
  }

  .feature-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 600px) {
  .hiring-problem-section {
    padding: 60px 16px;
  }

  .hiring-headline {
    font-size: clamp(28px, 6vw, 32px);
  }

  .hiring-subheadline {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .hiring-stats-card {
    padding: 28px 20px;
  }

  .stat-row {
    grid-template-columns: 1fr 40px;
  }

  .stat-label {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }
}

/* =============================================
   IMPACT SNAPSHOT SECTION
============================================= */
.impact-section {
  width: 100%;
  /* Light grey to light black linear gradient */
  background: linear-gradient(135deg, #e5e7eb 0%, #374151 100%);
  padding: 80px 24px;
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.impact-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-top: 4px solid transparent;
  /* assigned securely per card */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.impact-stat {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -1px;
}

.impact-title {
  font-size: 15px;
  font-weight: 700;
  color: #111122;
  /* sleek professional dark color */
  line-height: 1.4;
  margin-bottom: 32px;
}

.impact-source {
  font-size: 11.5px;
  font-weight: 400;
  color: #6b7280;
  margin-top: auto;
  /* Auto-pushes source correctly down */
}

/* Base Top-Border & Text Accent Colors from SS */
.border-orange {
  border-top-color: #ea580c;
}

.color-orange {
  color: #ea580c;
}

.border-blue {
  border-top-color: #2563eb;
}

.color-blue {
  color: #2563eb;
}

.border-green {
  border-top-color: #65a30d;
}

.color-green {
  color: #65a30d;
}

.border-purple {
  border-top-color: #7c3aed;
}

.color-purple {
  color: #7c3aed;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .impact-section {
    padding: 60px 16px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-card {
    padding: 28px 20px 24px;
  }
}

/* =============================================
   ROLES SECTION
============================================= */
.roles-section {
  background: #ffffff;
  /* pure white background matching UI request */
  padding: 100px 24px;
}

.roles-container {
  max-width: 1200px;
  margin: 0 auto;
}

.roles-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.roles-top-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.roles-headline {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #111122;
  margin-bottom: 24px;
  line-height: 1.3;
}

.roles-accent {
  color: var(--accent-red);
}

.roles-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

/* Grid */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.role-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #f3f4f6;
  padding: 40px 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.role-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 0, 0, 0.15);
  /* Red border fade in on hover */
}

.role-icon-wrap {
  width: 44px;
  height: 44px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #111122;
  /* standard dark blue/black icon color */
  transition: all 0.3s ease;
}

.role-card:hover .role-icon-wrap {
  background: var(--accent-red);
  /* Icon background turns red on hover */
  border-color: var(--accent-red);
  color: #ffffff;
}

.role-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-red);
  background: rgba(255, 0, 0, 0.05);
  /* very faint red bg */
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.role-title {
  font-size: 20px;
  font-weight: 700;
  color: #111122;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.role-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .roles-section {
    padding: 60px 16px;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .role-card {
    padding: 30px 24px;
  }
}

/* =============================================
   PROCESS TIMELINE SECTION
============================================= */
.process-section {
  background: #f3f4f6;
  /* requested grey background */
  padding: 100px 24px;
  background-image: radial-gradient(#d1d5db 1px, transparent 1px);
  background-size: 24px 24px;
  /* Subtle dot matrix similar to screenshot */
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
}

.process-top-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.process-headline {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #111122;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.process-accent {
  color: var(--accent-red);
}

.process-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Dashed connecting line container */
.timeline-line {
  position: absolute;
  top: 70px;
  /* Aligned visually with center of circular numbers */
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 2px dashed rgba(255, 0, 0, 0.25);
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  /* Keep nodes above dashed line */
}

.step-time {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-left: 32px;
  /* Align visually with card inner content */
}

.step-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  flex: 1;
  /* Stretch all cards to same height */
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--accent-red);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 0 0 8px #ffffff;
  /* Cut-out aesthetic masking the timeline dash */
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #111122;
  margin-bottom: 12px;
}

.step-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .timeline-line {
    display: none;
    /* remove line on wrapped grid */
  }
}

@media (max-width: 600px) {
  .process-section {
    padding: 60px 16px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .step-time {
    padding-left: 24px;
  }
}

/* =============================================
   WHAT YOU GET SECTION
============================================= */
.wyget-section {
  background: #ffffff;
  padding: 100px 24px;
}

.wyget-container {
  max-width: 1200px;
  margin: 0 auto;
}

.wyget-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.wyget-top-label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 16px;
}

.wyget-headline {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: #111122;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.wyget-accent {
  color: var(--accent-red);
}

/* Stats Strip */
.wyget-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 80px;
}

.wyget-stat-col {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid #e5e7eb;
}

.wyget-stat-col.border-none {
  border-right: none;
}

.wyget-stat-val {
  font-size: 38px;
  font-weight: 800;
  color: #111122;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.wyget-stat-desc {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 4px;
}

.wyget-stat-sub {
  font-size: 11px;
  color: #9ca3af;
}

/* 3-Column Grid */
.wyget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wyget-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #f3f4f6;
  padding: 40px 32px;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.wyget-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 0, 0, 0.1);
}

.wyget-bg-num {
  position: absolute;
  top: 10px;
  right: -10px;
  font-size: 120px;
  font-weight: 800;
  color: #f3f4f6;
  /* super faint background grey */
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  transition: color 0.3s ease;
}

.wyget-card:hover .wyget-bg-num {
  color: rgba(255, 0, 0, 0.04);
  /* turns faintest red on hover */
}

.wyget-card-content {
  position: relative;
  z-index: 2;
}

.wyget-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111122;
  margin-bottom: 16px;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

.wyget-card-text {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .wyget-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .wyget-stat-col:nth-child(2) {
    border-right: none;
  }

  .wyget-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wyget-section {
    padding: 60px 16px;
  }

  .wyget-stats-strip {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .wyget-stat-col {
    border-right: none;
    padding: 0;
  }

  .wyget-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wyget-bg-num {
    font-size: 100px;
    top: 20px;
    right: -5px;
  }
}

/* =============================================
   RESULTS SECTION
============================================= */
.results-section {
  background: #f3f4f6;
  /* dotted grey matching earlier sections */
  padding: 100px 24px;
  background-image: radial-gradient(#d1d5db 1px, transparent 1px);
  background-size: 24px 24px;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
}

.results-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.results-top-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.results-headline {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: #111122;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.results-accent {
  color: var(--accent-red);
  /* Replace yellow per spec */
}

.results-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.result-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.result-card-top {
  /* Replaces original blue dynamically using requested grey/black linear-gradient mapping */
  background: linear-gradient(135deg, #4b5563 0%, #111111 100%);
  padding: 20px 32px 30px;
  color: #ffffff;
}

.result-kicker {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #9ca3af;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.result-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}

.result-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-red);
  background: rgba(255, 0, 0, 0.1);
  /* Soft red background to highlight border */
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.result-card-stats {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  padding: 24px 32px;
  border-bottom: 1px solid #f3f4f6;
  background: #ffffff;
}

.rstat {
  display: flex;
  flex-direction: column;
}

.rval {
  font-size: 20px;
  font-weight: 800;
  color: #111122;
  margin-bottom: 4px;
}

.rdesc {
  font-size: 11px;
  color: #6b7280;
}

.result-card-body {
  padding: 24px 32px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.result-card-body p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 40px;
}

.read-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 800;
  color: #111122;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.read-link:hover {
  color: var(--accent-red);
}

/* Responsive */
@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .results-section {
    padding: 60px 16px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   WHY US / STRUCTURE SECTION
============================================= */
.structure-section {
  background: #f9fafb;
  /* User specified grey background */
  padding: 100px 24px;
}

.structure-container {
  max-width: 1200px;
  margin: 0 auto;
}

.structure-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.structure-top-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.structure-headline {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: #111122;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.structure-accent {
  color: var(--accent-red);
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.structure-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #f3f4f6;
  border-left: 4px solid var(--accent-red);
  /* The red left border replacing yellow */
  padding: 40px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.structure-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.structure-sub {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.structure-title {
  font-size: 22px;
  font-weight: 700;
  color: #111122;
  margin-bottom: 16px;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

.structure-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .structure-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .structure-section {
    padding: 60px 16px;
  }

  .structure-card {
    padding: 30px 24px;
  }
}

/* =============================================
   ENGAGEMENT MODELS SECTION
============================================= */
.models-section {
  background: #f9fafb;
  /* Requested grey background */
  padding: 100px 24px;
}

.models-container {
  max-width: 1200px;
  margin: 0 auto;
}

.models-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.models-top-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.models-headline {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: #111122;
  margin-bottom: 24px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.models-accent {
  color: var(--accent-red);
}

.models-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

/* Models Grid */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  /* Center-align varying heights to lift active card */
  margin-top: 40px;
}

.model-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #f3f4f6;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.model-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.model-sub {
  font-size: 10px;
  font-weight: 800;
  color: #9ca3af;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.model-title {
  font-size: 24px;
  font-weight: 800;
  color: #111122;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.model-small {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
}

.model-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 32px;
  min-height: 80px;
}

/* Features List */
.model-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.model-features li {
  font-size: 13px;
  color: #111122;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f9fafb;
}

.model-features li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.model-features li svg {
  color: var(--accent-red);
  /* Replacement for yellow checkmarks */
  flex-shrink: 0;
  margin-top: 2px;
}

/* Button variants */
.model-btn-outline {
  display: inline-block;
  text-align: center;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  /* Dark Blue Replacement rule: linear gradient of grey and black */
  background: linear-gradient(135deg, #4b5563 0%, #111111 100%);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.model-btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.model-btn-solid {
  display: inline-block;
  text-align: center;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  background: var(--accent-red);
  /* Replace yellow button */
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.model-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

/* Active Center Card Variant */
.model-card.active-card {
  /* Replace dark blue center background with gradient of grey and black */
  background: linear-gradient(135deg, #374151 0%, #000000 100%);
  color: #ffffff;
  transform: scale(1.05);
  /* Protrude outwards slightly */
  border: 1px solid #000000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  border-top: 4px solid var(--accent-red);
  /* Top red accent replaces yellow */
  z-index: 2;
}

.model-card.active-card:hover {
  transform: scale(1.05) translateY(-4px);
}

.most-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-red);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.model-card.active-card .model-title {
  color: #ffffff;
}

.model-card.active-card .model-sub,
.model-card.active-card .model-text {
  color: #d1d5db;
}

.model-card.active-card .model-features li {
  color: #f3f4f6;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Responsive constraints */
@media (max-width: 1024px) {
  .models-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .model-card.active-card {
    transform: scale(1);
    grid-column: 1 / -1;
  }

  .model-card.active-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .models-section {
    padding: 60px 16px;
  }

  .models-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .model-card.active-card {
    grid-column: 1;
  }
}

/* =============================================
   FAQ SECTION
============================================= */
.faq-section {
  background: #f3f4f6;
  padding: 100px 24px;
  background-image: radial-gradient(#d1d5db 1px, transparent 1px);
  background-size: 24px 24px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-top-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-red);
  /* Replacement for yellow */
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.faq-headline {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: #111122;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.faq-accent {
  color: var(--accent-red);
  /* Replacement for yellow */
}

/* Accordion details/summary styles */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  /* Mimics subtle bottom border separating accordion elements */
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 700;
  color: #111122;
  cursor: pointer;
  list-style: none;
  /* Hide default browser triangle */
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
  /* WebKit specific hide triangle */
}

.faq-question:hover {
  color: var(--accent-red);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #4b5563;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-item[open] .faq-question {
  color: var(--accent-red);
}

.faq-answer {
  padding: 0 0 24px 0;
  animation: faq-slide-down 0.3s ease-out;
}

.faq-answer p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  padding-right: 40px;
}

@keyframes faq-slide-down {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .faq-section {
    padding: 60px 16px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer p {
    padding-right: 0;
  }
}

/* =============================================
   TESTIMONIALS SECTION
============================================= */
.testimonial-section {
  background: linear-gradient(135deg, #4b5563 0%, #111111 100%);
  padding: 100px 24px;
}

.testimonial-container {
  max-width: 100%;
  margin: 0 auto;
}

.testimonial-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.testimonial-top-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.testimonial-headline {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.testimonial-accent {
  color: var(--accent-red);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.test-text {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  font-style: italic;
  margin-bottom: 32px;
  flex-grow: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111122;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.test-info h4 {
  font-size: 16px;
  font-weight: 800;
  color: #111122;
  margin-bottom: 4px;
}

.test-info span {
  font-size: 13px;
  color: #6b7280;
}

/* Responsive constraints */
@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 16px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   SITE FOOTER
============================================= */
.site-footer {
  width: 100%;
  background: var(--bg-gradient)
    /* Match footer-banner as requested */
    padding: 80px 24px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-addresses {
  max-width: 1200px;
  margin: 0 auto 5px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 50px;
}

.address-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.address-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.flag-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-icon img {
  width: 28px;
  height: auto;
  border-radius: 2px;
  display: block;
}


.address-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.address-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -1px;
}

.footer-copyright {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .footer-addresses {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-addresses {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .site-footer {
    padding: 60px 16px 40px;
  }
}

/* =============================================
   ACCELERATE SECTION
============================================= */
.accelerate-section {
  width: 100%;
  background: linear-gradient(90deg, #2a2a2a 0%, #111111 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accelerate-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accelerate-headline {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.accelerate-headline::after {
  display: none;
}

.accelerate-subheadline {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 8px 0;
  max-width: 100%;
  opacity: 1;
  text-align: center;
  padding: 30px 0;
}

.accelerate-ctas {
  display: inline-block;
  align-items: center;
  gap: 4px;
  padding: 16px 20px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.btn-accelerate {
  display: inline;
  padding: 0;
  border: none;
  background: transparent;
  color: #1c1c1c;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.btn-accelerate:hover {
  color: #0056b3;
  background: transparent;
  transform: none;
  box-shadow: none;
}

.accelerate-link {
  display: inline;
  font-size: 14px;
  color: #007bff;
  text-decoration: underline;
  padding: 0;
  border: none;
}

.accelerate-link:hover {
  color: #0056b3;
}

.accelerate-or {
  color: #007bff;
  font-size: 14px;
  text-decoration: underline;
}
/* =============================================
   THANK YOU PAGE
============================================= */
.thankyou-section {
    padding: 100px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.thankyou-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 60px 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.thankyou-icon {
    width: 64px;
    height: 64px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
}

.thankyou-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.thankyou-card h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.thankyou-subheadline {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.thankyou-message {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-back-home {
    display: inline-block;
    padding: 14px 40px;
    background: var(--accent-red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-back-home:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.45);
}

