@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:          #0A0F1E;
  --navy-mid:      #111827;
  --electric:      #2D6EFF;
  --electric-light:#4F8EFF;
  --white:         #F0F4FF;
  --off-white:     #F8F9FC;
  --body-text:     #1A1F36;
  --muted:         #6B7A99;
  --border:        #E2E8F0;
}

html { scroll-behavior: smooth; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ─────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-mid);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.nav-logo { display: flex; align-items: center; }

.logo-light { filter: brightness(0) invert(1); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0 auto;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(240, 244, 255, 0.8);
  transition: opacity 0.15s;
}
.nav-link:hover { color: var(--white); }
.nav-link.nav-active { color: var(--electric); opacity: 1; }

.btn-nav {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--electric);
  border: 1px solid var(--electric);
  background: transparent;
  border-radius: 6px;
  padding: 10px 20px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.btn-nav:hover { background: var(--electric); color: #fff; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
}

.nav-mobile {
  display: none;
  background: var(--navy-mid);
  padding: 16px 24px 24px;
}
.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nav-mobile-links .nav-link { font-size: 16px; }
.nav.nav-open .nav-mobile { display: block; }

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: var(--navy-mid);
  padding: 48px 0 0;
  border-top: 1px solid rgba(45, 110, 255, 0.3);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(240, 244, 255, 0.7);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
}
.footer-email {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(240, 244, 255, 0.7);
  transition: color 0.15s;
}
.footer-email:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
}

/* ─── HERO ───────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(240,244,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--electric);
  margin-bottom: 20px;
}

.hero-h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  max-width: 560px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(240, 244, 255, 0.7);
  margin-top: 20px;
  max-width: 480px;
}

.btn-primary {
  display: inline-block;
  margin-top: 36px;
  background: var(--electric);
  color: #fff;
  border-radius: 6px;
  padding: 14px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--electric-light); }

.hero-disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* Signal card */
.signal-card {
  background: #151C2E;
  border: 1px solid rgba(45, 110, 255, 0.2);
  border-radius: 12px;
  padding: 28px;
}

.signal-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--electric);
  margin-bottom: 20px;
}

.signal-rows { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.signal-row {
  display: grid;
  grid-template-columns: 10px 1fr 1fr auto;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}

.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-green { background: #22C55E; }
.dot-amber { background: #F59E0B; }

.signal-company { color: var(--white); font-weight: 500; }
.signal-type { color: var(--muted); }
.signal-time { color: var(--muted); font-size: 11px; white-space: nowrap; }

.signal-footer { margin-top: 20px; }
.signal-divider { border: none; border-top: 1px solid rgba(45, 110, 255, 0.4); margin-bottom: 12px; }

.signal-enriching {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--electric);
  animation: pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ─── SOCIAL PROOF STRIP ─────────────────── */
.proof-strip {
  background: var(--off-white);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  flex: 1;
  justify-content: space-between;
}

.proof-logos span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(107, 122, 153, 0.6);
}

/* ─── HOW IT WORKS ───────────────────────── */
.how-it-works {
  background: #fff;
  padding: 96px 0;
}

.eyebrow-dark {
  color: var(--electric);
}

.section-h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--body-text);
  margin-top: 12px;
  margin-bottom: 56px;
}

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

.step-top-border {
  height: 1px;
  background: var(--electric);
  margin-bottom: 24px;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--electric);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--body-text);
  margin-bottom: 12px;
}

.step-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── WHY OQY ────────────────────────────── */
.why-oqy {
  background: var(--off-white);
  padding: 96px 0;
}

.why-h2 {
  text-align: center;
  margin-bottom: 16px;
}

.why-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 56px;
  text-align: center;
}

.table-scroll { overflow-x: auto; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}

.comparison-table thead th {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--body-text);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:nth-child(odd) { background: #fff; }
.comparison-table tbody tr:nth-child(even) { background: var(--off-white); }

.comparison-table tbody td {
  padding: 14px 20px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.comparison-table .col-oqy {
  color: var(--electric);
  font-weight: 600;
}

/* ─── CTA SECTION ────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
}

.cta-inner { display: flex; flex-direction: column; align-items: center; }

.cta-h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  max-width: 640px;
}

.cta-sub {
  font-size: 17px;
  color: rgba(240, 244, 255, 0.7);
  max-width: 520px;
  margin: 20px auto 0;
}

.cta-section .btn-primary { margin-top: 36px; }

.cta-disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* ─── FAQ ────────────────────────────────── */
.faq-section {
  background: #fff;
  padding: 96px 0;
}

.faq-inner { max-width: 700px; margin: 0 auto; }

.faq-h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--body-text);
  margin-bottom: 40px;
}

.faq-list { display: flex; flex-direction: column; }

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--body-text);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 20px;
  color: var(--electric);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.faq-open .faq-answer { display: block; }
.faq-item.faq-open .faq-icon { transform: rotate(45deg); }

/* ─── PAGE HERO (About, Case Studies, Contact) ── */
.page-hero {
  background: #F5F0E8;
  padding: 80px 0;
}

.page-hero-h1 {
  font-size: 48px;
  font-weight: 700;
  color: #0A0F1E;
  max-width: 640px;
}

.page-hero-sub {
  font-size: 18px;
  color: #0A0F1E;
  max-width: 560px;
  margin-top: 20px;
}

/* ─── ABOUT STORY ─────────────────────────── */
.about-story {
  background: #fff;
  padding: 96px 0;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-pullquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--electric);
  line-height: 1.4;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── HOW WE WORK ─────────────────────────── */
.how-we-work {
  background: var(--off-white);
  padding: 96px 0;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.work-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}

.work-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--body-text);
  margin-bottom: 10px;
}

.work-card-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CASE STUDIES ───────────────────────── */
.case-studies-section {
  background: #fff;
  padding: 96px 0;
}

.cs-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--electric);
  background: rgba(45, 110, 255, 0.1);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 20px;
}

.cs-tag-muted {
  color: var(--muted);
  background: var(--off-white);
}

.cs-featured {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px;
  margin-bottom: 32px;
}

.cs-featured-h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  max-width: 600px;
  margin-bottom: 32px;
}

.cs-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
}

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

.cs-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--electric);
}

.cs-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
}

.cs-featured-body {
  font-size: 16px;
  color: rgba(240, 244, 255, 0.7);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cs-placeholders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cs-placeholder {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  text-align: center;
}

.cs-placeholder-company {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}

.cs-placeholder-text {
  font-size: 14px;
  color: var(--muted);
}

/* ─── CONTACT ─────────────────────────────── */
.contact-body {
  background: #fff;
  padding: 96px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--body-text);
}

.form-input {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--body-text);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--electric); }

.form-textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  background: var(--electric);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 15px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--electric-light); }

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.form-thankyou {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--electric);
  padding: 40px 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.contact-info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 18px;
  color: var(--electric);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--body-text);
  margin-bottom: 6px;
}

.contact-info-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── MOBILE RESPONSIVENESS ───────────────── */
@media (max-width: 768px) {

  /* Nav */
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: block; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .hero-h1 { font-size: 36px; }
  .hero-right { display: none; }

  /* Sections padding */
  .how-it-works,
  .why-oqy,
  .cta-section,
  .faq-section,
  .about-story,
  .how-we-work,
  .case-studies-section,
  .contact-body { padding: 56px 0; }

  /* How It Works */
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Why OQY table */
  .table-scroll { overflow-x: auto; }

  /* About story */
  .about-story-inner { grid-template-columns: 1fr; gap: 32px; }

  /* How We Work grid */
  .work-grid { grid-template-columns: 1fr; }

  /* Case Studies placeholders */
  .cs-placeholders { grid-template-columns: 1fr; }
  .cs-stats { flex-direction: column; gap: 16px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  /* Proof strip */
  .proof-inner { flex-direction: column; gap: 16px; }
  .proof-logos { justify-content: flex-start; gap: 20px; }

  /* Page hero */
  .page-hero-h1 { font-size: 36px; }
}

/* ─── HERO (phone/Slack animation) ──────── */
.hero {
  background: var(--navy);
  padding: 80px 0 96px;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--electric);
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  max-width: 680px;
}

.hero-sub {
  font-size: 18px;
  color: var(--white);
  opacity: 0.65;
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.hero-footnote {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.hero-cta {
  margin-top: 40px;
  display: inline-block;
}

.phone-mockup {
  position: relative;
  width: 300px;
  margin: 0 auto;
}

.phone-frame {
  background: #0d1117;
  border-radius: 44px;
  border: 2px solid rgba(45, 110, 255, 0.35);
  padding: 18px 12px 24px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 0 1px rgba(255,255,255,0.03);
  position: relative;
}

.phone-notch {
  width: 80px;
  height: 6px;
  background: #1a2233;
  border-radius: 4px;
  margin: 0 auto 14px;
}

.phone-screen {
  background: #1a1d21;
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.slack-header {
  background: #1a1d21;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.slack-avatar {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--electric);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slack-name {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.slack-status {
  color: #22c55e;
  font-size: 10px;
  margin-top: 1px;
}

.slack-messages {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  overflow: hidden;
}

.slack-msg {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.slack-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

.slack-msg-bubble {
  display: inline-block;
  max-width: 85%;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 12px;
  line-height: 1.5;
}

.slack-msg.user {
  text-align: right;
}

.slack-msg.user .slack-msg-bubble {
  background: var(--electric);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.slack-msg.bot {
  text-align: left;
}

.slack-msg.bot .slack-msg-bubble {
  background: #2a2d31;
  color: #e0e0e0;
  border-bottom-left-radius: 4px;
}

.slack-msg-label {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
  padding: 0 2px;
}

.slack-typing {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 9px 13px;
  background: #2a2d31;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}

.slack-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--muted);
  animation: typingDot 1.2s infinite;
}

.slack-typing span:nth-child(2) { animation-delay: 0.2s; }
.slack-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: scale(1); }
  30% { opacity: 1; transform: scale(1.2); }
}

@media (max-width: 768px) {
  .hero-headline { font-size: 34px; }
  .hero-sub { font-size: 16px; }
  .phone-mockup { width: 260px; }
}

/* ─── HERO PHONE SCROLL ───────────────────── */
.hero-phone {
  position: relative;
  height: 600vh;
  background: #F5F0E8;
}

.hp-phone-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: #0A0F1E;
}

.hp-iphone {
  position: absolute;
  background: #1c1c1e;
  border-radius: 52px;
  border: 8px solid #2e2e2e;
  box-shadow: inset 0 0 0 1px #3a3a3a, 0 0 0 1px #111;
  overflow: hidden;

  width: 520px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);

  transition: width 1s cubic-bezier(0.4,0,0.2,1),
              top 1s cubic-bezier(0.4,0,0.2,1),
              transform 1s cubic-bezier(0.4,0,0.2,1),
              border-radius 1s cubic-bezier(0.4,0,0.2,1);
}

.hp-iphone.zoomed-out {
  width: 260px;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 52px;
}

.hp-vol1 { position: absolute; left: -11px; top: 72px; width: 4px; height: 30px; background: #2e2e2e; border-radius: 3px 0 0 3px; }
.hp-vol2 { position: absolute; left: -11px; top: 114px; width: 4px; height: 52px; background: #2e2e2e; border-radius: 3px 0 0 3px; }
.hp-pwr  { position: absolute; right: -11px; top: 100px; width: 4px; height: 64px; background: #2e2e2e; border-radius: 0 3px 3px 0; }

.hp-screen {
  background: #111318;
  border-radius: 44px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 740px;
}

.hp-sbar {
  padding: 14px 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.hp-time { color: #fff; font-size: 13px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }
.hp-icons { color: rgba(255,255,255,0.8); font-size: 11px; }

.hp-di {
  width: 120px; height: 32px;
  background: #000; border-radius: 20px;
  margin: 0 auto 10px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.hp-di-cam { width: 10px; height: 10px; background: #1a1a1a; border-radius: 50%; border: 1px solid #333; }
.hp-di-dot { width: 5px; height: 5px; background: #2D6EFF; border-radius: 50%; }

.hp-apphdr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 18px 10px;
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.hp-appic {
  width: 32px; height: 32px; border-radius: 8px;
  background: #2D6EFF;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.hp-appnm { color: #fff; font-size: 13px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }
.hp-appst { color: #22c55e; font-size: 10px; }

.hp-body {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hp-hero-text {
  position: absolute; inset: 0;
  padding: 32px 28px;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.hp-hero-text.hidden { opacity: 0; pointer-events: none; }

.hp-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px; font-weight: 700;
  color: #0A0F1E; line-height: 1.08;
}
.hp-headline em { color: #2D6EFF; font-style: normal; }

.hp-sub {
  font-size: 15px;
  color: #555;
  margin-top: 16px;
  line-height: 1.6;
}
.hp-cue {
  margin-top: 24px;
  color: #2D6EFF;
  font-size: 12px;
  animation: hpPulse 2s infinite;
}
@keyframes hpPulse { 0%,100%{opacity:0.2} 50%{opacity:0.6} }

.hp-exchange {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 20px 16px;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.hp-exchange.show { opacity: 1; pointer-events: auto; }

.hp-msg { display: flex; flex-direction: column; }
.hp-user { align-items: flex-end; }
.hp-bot  { align-items: flex-start; }
.hp-lbl { font-size: 9px; color: #6B7A99; margin-bottom: 3px; padding: 0 3px; }
.hp-bubble {
  display: inline-block; max-width: 85%;
  padding: 9px 13px; border-radius: 16px;
  font-size: 12px; line-height: 1.5;
}
.hp-user .hp-bubble { background: #2D6EFF; color: #fff; border-bottom-right-radius: 3px; }
.hp-bot  .hp-bubble { background: #2a2d31; color: #e0e0e0; border-bottom-left-radius: 3px; }

.hp-ibar {
  background: #F5F0E8;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.hp-ipill {
  flex: 1; background: #E8E3DB; border-radius: 18px;
  padding: 8px 12px; font-size: 11px;
  color: #0A0F1E;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s;
}
.hp-isend {
  width: 28px; height: 28px; background: #2D6EFF; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; flex-shrink: 0;
}
.hp-hbar { height: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hp-hbar-line { width: 80px; height: 4px; background: #0A0F1E; border-radius: 2px; }

@media (max-width: 768px) {
  .hp-iphone { width: 100vw; border-radius: 0; border-left: none; border-right: none; }
  .hp-iphone.zoomed-out { width: 280px; border-radius: 52px; border: 8px solid #2e2e2e; }
  .hp-headline { font-size: 32px; }
}

/* ── Hero Phone Section ── */

.hero-phone {
  position: relative;
  height: 600vh;
  background: #F5F0E8;
}

.hp-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #F5F0E8;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hp-iphone {
  position: absolute;
  left: 50%;
  background: #1a1a1a;
  overflow: hidden;
  transition: width 1s cubic-bezier(0.4,0,0.2,1),
              top 1s cubic-bezier(0.4,0,0.2,1),
              transform 1s cubic-bezier(0.4,0,0.2,1),
              border-radius 1s cubic-bezier(0.4,0,0.2,1),
              border 1s cubic-bezier(0.4,0,0.2,1);
  width: 100%;
  top: 0;
  transform: translateX(-50%);
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.hp-iphone.hp-small {
  width: 280px;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 44px;
  border: 8px solid #2e2e2e;
  box-shadow: inset 0 0 0 1px #3a3a3a, 0 0 0 1px #111;
}

.hp-b1, .hp-b2, .hp-b3 {
  position: absolute;
  background: #2e2e2e;
  opacity: 0;
  transition: opacity 1s;
}
.hp-b1 { left: -10px; top: 75px; width: 4px; height: 28px; border-radius: 3px 0 0 3px; }
.hp-b2 { left: -10px; top: 114px; width: 4px; height: 46px; border-radius: 3px 0 0 3px; }
.hp-b3 { right: -10px; top: 100px; width: 4px; height: 58px; border-radius: 0 3px 3px 0; }
.hp-iphone.hp-small .hp-b1,
.hp-iphone.hp-small .hp-b2,
.hp-iphone.hp-small .hp-b3 { opacity: 1; }

.hp-scr {
  background: #1a1a1a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-radius 1s cubic-bezier(0.4,0,0.2,1),
              height 1s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0;
  height: 700px;
}
.hp-iphone.hp-small .hp-scr {
  border-radius: 36px;
  height: 500px;
}

.hp-sb {
  padding: 14px 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  background: #1a1a1a;
}
.hp-sbt { color: #fff; font-size: 13px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }
.hp-sbi { color: rgba(255,255,255,0.75); font-size: 11px; }

.hp-di {
  width: 110px; height: 30px;
  background: #000; border-radius: 16px;
  margin: 0 auto; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.hp-dic { width: 9px; height: 9px; background: #1a1a1a; border-radius: 50%; border: 1px solid #333; }
.hp-did { width: 4px; height: 4px; background: #611f69; border-radius: 50%; }

.hp-slack-logo-row {
  background: #3f0e40;
  padding: 6px 14px 8px;
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hp-slack-icon { width: 22px; height: 22px; flex-shrink: 0; }
.hp-workspace { color: rgba(255,255,255,0.8); font-size: 11px; font-weight: 500; }

.hp-slack-top {
  background: #3f0e40;
  padding: 8px 14px 10px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.hp-slack-channel { display: flex; align-items: center; gap: 5px; }
.hp-slack-hash { color: rgba(255,255,255,0.6); font-size: 15px; font-weight: 600; }
.hp-slack-cname { color: #fff; font-size: 13px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }
.hp-slack-icons { display: flex; gap: 10px; color: rgba(255,255,255,0.5); font-size: 13px; }

.hp-body { flex: 1; position: relative; overflow: hidden; background: #F5F0E8; }

.hp-hv {
  position: absolute; inset: 0;
  padding: 32px 28px;
  background: #F5F0E8;
  opacity: 1; transition: opacity 0.5s;
}
.hp-hv.hp-gone { opacity: 0; pointer-events: none; }

.hp-hh {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px; font-weight: 700;
  color: #0A0F1E; line-height: 1.05;
}
.hp-hh em { color: #2D6EFF; font-style: normal; }
.hp-hs { font-size: 15px; color: #555; margin-top: 14px; line-height: 1.6; }
.hp-hc { margin-top: 20px; color: rgba(240,244,255,0.2); font-size: 12px; animation: hpPulse 2s infinite; }
@keyframes hpPulse { 0%,100%{opacity:0.2} 50%{opacity:0.6} }

.hp-ex {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 16px 14px;
  opacity: 0; transition: opacity 0.5s;
  display: flex; flex-direction: column; gap: 12px;
  pointer-events: none;
}
.hp-ex.hp-show { opacity: 1; pointer-events: auto; }

.hp-smsg { display: flex; gap: 8px; align-items: flex-start; }
.hp-right { flex-direction: row-reverse; }

.hp-avatar {
  width: 28px; height: 28px; border-radius: 6px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.hp-you { background: #2D6EFF; color: #fff; }
.hp-bot { background: #611f69; color: #fff; }

.hp-mcol { display: flex; flex-direction: column; gap: 2px; max-width: 78%; }
.hp-mname { font-size: 10px; font-weight: 600; }
.hp-youname { color: #7ab4ff; text-align: right; }
.hp-botname { color: #d39fe7; }

.hp-bubble {
  display: inline-block; max-width: 100%;
  padding: 8px 11px; border-radius: 8px;
  font-size: 11px; line-height: 1.55; word-break: break-word;
}
.hp-byou { background: #1164a3; color: #fff; border-bottom-right-radius: 2px; }
.hp-bbot { background: #2d2d2d; color: #d1d2d3; border-bottom-left-radius: 2px; }

.hp-ib {
  background: #222529;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 12px; flex-shrink: 0;
}
.hp-ib-inner {
  background: #2d2d2d; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 10px;
  display: flex; align-items: center; gap: 8px;
}
.hp-ip {
  flex: 1; font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
  transition: color 0.3s;
}
.hp-is {
  width: 24px; height: 24px; background: #611f69;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; flex-shrink: 0;
}

.hp-hb { height: 16px; background: #222529; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hp-hbl { width: 76px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px; }

@media (max-width: 768px) {
  .hp-iphone.hp-small { width: 240px; }
  .hp-hh { font-size: 36px; }
}


/* ── Social Proof Section ── */

.social-proof {
  background: #fff;
  padding: 96px 0;
  text-align: center;
}

.sp-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--electric);
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.sp-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--body-text);
  margin-bottom: 48px;
}

.sp-testimonial {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  min-height: 340px;
}

.sp-slide {
  display: none;
  flex-direction: column;
  gap: 24px;
  background: var(--off-white);
  border-radius: 16px;
  padding: 40px 48px;
  border: 1px solid var(--border);
  text-align: left;
}
.sp-slide.active { display: flex; }

.sp-logo-pill {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--body-text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 16px;
  width: fit-content;
}

.sp-quote {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body-text);
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
}

.sp-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.sp-author-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--body-text);
}

.sp-author-role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.sp-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

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

.sp-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--electric);
}

.sp-stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.sp-dots {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  justify-content: center;
  align-items: center;
}

.sp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.sp-dot.active {
  background: var(--electric);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .sp-slide { padding: 28px 24px; }
  .sp-stats { flex-direction: column; gap: 16px; }
  .sp-heading { font-size: 28px; }
  .sp-quote { font-size: 15px; }
}

.product-diagram {
  background: var(--off-white);
  padding: 96px 0;
  text-align: center;
}

.pd-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--electric);
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.pd-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--body-text);
  margin-bottom: 12px;
}

.pd-subheading {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 56px;
}

.pd-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  min-height: 320px;
}

.pd-center-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  width: 200px;
  flex-shrink: 0;
  z-index: 2;
  border: 0.5px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.pd-card-header {
  background: #3f0e40;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.pd-card-avatar {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--electric);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.pd-card-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
}

.pd-card-body {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-card-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pd-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.pd-card-text {
  font-size: 11px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}

.pd-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.pd-nodes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
  margin-left: 120px;
}

.pd-node {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 220px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  text-align: left;
}

.pd-node-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pd-node-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--body-text);
  font-family: 'Inter', sans-serif;
}

.pd-node-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
  .pd-wrap { flex-direction: column; gap: 32px; }
  .pd-nodes { margin-left: 0; }
  .pd-svg { display: none; }
  .pd-heading { font-size: 28px; }
}

/* ── Feature Tabs Section ── */
.feature-tabs-section {
  background: #fff;
  padding: 96px 0;
}

.ft-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--electric);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ft-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--body-text);
  margin-bottom: 10px;
}

.ft-subheading {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
}

.ft-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  overflow-x: auto;
}

.ft-tab {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.ft-tab.active {
  color: var(--electric);
  border-bottom-color: var(--electric);
}

.ft-tab:hover { color: var(--body-text); }

.ft-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.ft-panel.active { display: grid; }

/* Slack UI */
.slack-ui {
  background: #1a1d21;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.slack-topbar {
  background: #3f0e40;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slack-logo-sm { width: 20px; height: 20px; flex-shrink: 0; }

.slack-ws-name {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}

.slack-chbar {
  background: #19171d;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.slack-hash { color: rgba(255,255,255,0.45); font-size: 15px; }
.slack-chname { color: #fff; font-size: 13px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }

.slack-msgs {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

.slack-msg {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  opacity: 1 !important;
  transform: none !important;
}

.slack-av {
  width: 28px; height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.slack-av-you { background: var(--electric); color: #fff; }
.slack-av-bot { background: #611f69; color: #fff; }

.slack-msg-col { display: flex; flex-direction: column; gap: 3px; }

.slack-mname { font-size: 12px; font-weight: 600; }
.slack-mname-you { color: #7ab4ff; }
.slack-mname-bot { color: #d39fe7; }

.slack-mtext {
  color: #d1d2d3;
  font-size: 13px;
  line-height: 1.55;
}

.slack-mtext code {
  background: rgba(255,255,255,0.1);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: monospace;
  color: #79c0ff;
  font-size: 12px;
}

.slack-mtext strong { color: #fff; }

.slack-input-bar {
  background: #222529;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px 14px;
}

.slack-input-pill {
  background: #2d2d2d;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 12px;
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
}

/* Right panel */
.ft-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.ft-right-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--body-text);
  line-height: 1.2;
}

.ft-right-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.ft-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
}

.ft-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--body-text);
  margin-bottom: 14px;
}

.ft-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.ft-table th {
  color: var(--muted);
  font-weight: 500;
  text-align: left;
  padding: 5px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}

.ft-table td {
  padding: 8px 8px;
  color: var(--body-text);
  border-bottom: 1px solid #f0f0f0;
}

.ft-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

.ft-hot { background: #fef2f2; color: #dc2626; }
.ft-warm { background: #fffbeb; color: #d97706; }

.ft-online { font-size: 11px; color: #22c55e; font-weight: 600; }

.ft-sig-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.ft-sig-row:last-child { border-bottom: none; }

.ft-sig-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}

.ft-sig-label { font-size: 13px; font-weight: 600; color: var(--body-text); }
.ft-sig-val { font-size: 12px; color: var(--muted); margin-top: 2px; }

.ft-email-from { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.ft-email-subject { font-size: 14px; font-weight: 600; color: var(--body-text); margin-bottom: 12px; }
.ft-email-body { font-size: 13px; color: #4a5568; line-height: 1.7; }
.ft-email-body mark { background: #fef9c3; padding: 1px 2px; border-radius: 2px; }

.ft-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ft-stat-box {
  background: var(--off-white);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  border: 1px solid var(--border);
}

.ft-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--electric);
}

.ft-stat-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .ft-panel.active { grid-template-columns: 1fr; }
  .ft-heading { font-size: 28px; }
  .ft-right-heading { font-size: 22px; }
  .ft-tabs { gap: 0; }
  .ft-tab { padding: 10px 14px; font-size: 13px; }
}

.hp-for {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
}

.hp-cta-pill {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--electric);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  white-space: nowrap;
  text-decoration: none;
  z-index: 10;
  transition: background 0.2s;
}

.hp-cta-pill:hover {
  background: var(--electric-light);
}

/* ── Testimonial ─────────────────────────────── */
.testimonial {
  padding: 100px 0;
  background: #ffffff;
}

.testimonial-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--electric);
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  text-transform: uppercase;
  display: none;
}

.testimonial-heading {
  font-size: 36px;
  font-weight: 600;
  color: var(--body-text);
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.2;
}

.testimonial-card {
  background: #F8F9FC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-quote-mark {
  font-size: 64px;
  color: var(--electric);
  line-height: 0.6;
  margin-bottom: 20px;
  font-family: Georgia, serif;
  opacity: 0.6;
}

.testimonial-quote {
  font-size: 17px;
  color: #1A1F36;
  line-height: 1.75;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-divider {
  width: 40px;
  height: 2px;
  background: var(--electric);
  margin-bottom: 24px;
  border-radius: 2px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--electric);
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.testimonial-avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--electric);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  font-family: 'Space Grotesk', sans-serif;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--body-text);
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-linkedin {
  color: var(--electric);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.8;
}

.testimonial-linkedin:hover {
  opacity: 1;
}

.testimonial-title {
  font-size: 13px;
  color: #6B7A99;
  margin-top: 2px;
}

.testimonial-logo-wrap {
  margin-left: auto;
}

.testimonial-logo-bg {
  background: #4a4a52;
  border-radius: 8px;
  padding: 8px 14px;
}

.testimonial-logo {
  font-size: 22px;
  font-weight: 700;
  font-family: Georgia, serif;
  line-height: 1;
}

.logo-red {
  color: #e05c5c;
}

.logo-white {
  color: #f0f0f0;
}

.testimonial-logo-link {
  text-decoration: none;
  margin-left: auto;
}

.testimonial-logo-link:hover .testimonial-logo-bg {
  opacity: 0.8;
}

/* ── Case Study ─────────────────────────────── */
.cs { font-family: 'Inter', sans-serif; color: #1A1F36; background: #fff; }

.cs-top { display: grid; grid-template-columns: 280px 1fr; padding: 56px 48px; border-bottom: 1px solid #E2E8F0; align-items: start; }

.cs-logo-name { font-size: 26px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; color: #0A0F1E; margin-bottom: 20px; }

.cs-about { font-size: 13px; color: #6B7A99; line-height: 1.75; margin-bottom: 32px; }

.cs-meta-row { margin-bottom: 20px; }

.cs-meta-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: #2D6EFF; text-transform: uppercase; margin-bottom: 4px; }

.cs-meta-value { font-size: 14px; color: #1A1F36; }

.cs-cards { padding-left: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-content: start; position: relative; }

.cs-tag { border: 1px solid #E2E8F0; padding: 28px; position: relative; }

.cs-tag:first-child { border-radius: 12px 0 0 12px; border-right: none; }

.cs-tag:last-child { border-radius: 0 12px 12px 0; }

.cs-connector { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 32px; height: 32px; background: #fff; border: 1px solid #E2E8F0; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; }

.cs-connector-arrow { font-size: 14px; color: #2D6EFF; }

.cs-tag-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: #2D6EFF; text-transform: uppercase; margin-bottom: 12px; }

.cs-tag-text { font-size: 13px; color: #1A1F36; line-height: 1.7; }

.cs-challenges { display: grid; grid-template-columns: 280px 1fr; padding: 56px 48px; border-bottom: 1px solid #E2E8F0; }

.cs-section-title { font-size: 26px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; color: #0A0F1E; }

.cs-challenge-content { padding-left: 40px; }

.cs-ch-title { font-size: 17px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; color: #0A0F1E; margin-bottom: 6px; margin-top: 28px; }

.cs-ch-title:first-child { margin-top: 0; }

.cs-ch-text { font-size: 13px; color: #6B7A99; line-height: 1.6; }

.cs-results { padding: 56px 48px; border-bottom: 1px solid #E2E8F0; }

.cs-results-title { font-size: 26px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; color: #0A0F1E; margin-bottom: 32px; }

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

.cs-result { border: 1px solid #E2E8F0; border-radius: 12px; padding: 28px 24px; }

.cs-result-cat { font-size: 13px; color: #6B7A99; margin-bottom: 10px; }

.cs-result-num { font-size: 40px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; color: #2D6EFF; margin-bottom: 8px; }

.cs-result-desc { font-size: 13px; color: #6B7A99; line-height: 1.55; }

.cs-quote { display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; }

.cs-quote-left { background: #EEF2FF; padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; gap: 20px; }

.cs-quote-logo { font-size: 22px; font-weight: 700; font-family: Georgia, serif; }

.logo-r { color: #e05c5c; }

.logo-d { color: #0A0F1E; }

.cs-quote-text { font-size: 17px; color: #0A0F1E; line-height: 1.7; font-style: italic; }

.cs-quote-author { font-size: 13px; color: #2D6EFF; font-weight: 500; }

.cs-quote-right { background: #1A1F36; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }

.cs-quote-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ── Case Study ─────────────────────────────── */
.cs { font-family: 'Inter', sans-serif; color: #1A1F36; background: #fff; }

.cs-top { display: grid; grid-template-columns: 240px 1fr; gap: 48px; padding: 48px; border-bottom: 1px solid #E2E8F0; align-items: start; }

.cs-logo { font-size: 28px; font-weight: 700; font-family: Georgia, serif; margin-bottom: 16px; }

.cs-logo-r { color: #e05c5c; }

.cs-logo-d { color: #0A0F1E; }

.cs-about { font-size: 13px; color: #6B7A99; line-height: 1.75; margin-bottom: 28px; }

.cs-meta-row { margin-bottom: 16px; }

.cs-meta-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: #2D6EFF; text-transform: uppercase; margin-bottom: 3px; }

.cs-meta-value { font-size: 13px; color: #1A1F36; }

.cs-right { display: flex; flex-direction: column; }

.cs-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: visible;
  position: relative;
}

.cs-tag {
  padding: 32px 28px 80px 28px;
  min-height: 300px;
  position: relative;
}

.cs-tag:first-child {
  border-right: 1px solid #E2E8F0;
}

.cs-tag-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #2D6EFF;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cs-tag-text {
  font-size: 13px;
  color: #1A1F36;
  line-height: 1.7;
}

.cs-center-connector {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
}

.cs-conn-line {
  width: 1px;
  flex: 1;
  background: #E2E8F0;
}

.cs-conn-badge {
  width: 28px;
  height: 28px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-conn-badge::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #2D6EFF;
  border-radius: 50%;
}

.cs-challenges { display: grid; grid-template-columns: 240px 1fr; gap: 48px; padding: 48px; border-bottom: 1px solid #E2E8F0; }

.cs-section-title { font-size: 24px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; color: #0A0F1E; }

.cs-ch-title { font-size: 16px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; color: #0A0F1E; margin-bottom: 5px; margin-top: 24px; }

.cs-ch-title:first-child { margin-top: 0; }

.cs-ch-text { font-size: 13px; color: #6B7A99; line-height: 1.65; }

.cs-results { padding: 48px; border-bottom: 1px solid #E2E8F0; }

.cs-results-title { font-size: 24px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; color: #0A0F1E; margin-bottom: 28px; }

.cs-results-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #E2E8F0; border-radius: 12px; overflow: hidden; }

.cs-result { padding: 28px 24px; border-right: 1px solid #E2E8F0; }

.cs-result:last-child { border-right: none; }

.cs-result-cat { font-size: 12px; color: #6B7A99; margin-bottom: 10px; }

.cs-result-num { font-size: 38px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; color: #2D6EFF; margin-bottom: 6px; }

.cs-result-desc { font-size: 12px; color: #6B7A99; line-height: 1.55; }

.cs-quote { display: grid; grid-template-columns: 1fr 1fr; min-height: 340px; }

.cs-quote-left { background: #EEF2FF; padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }

.cs-quote-logo { font-size: 20px; font-weight: 700; font-family: Georgia, serif; }

.cs-quote-text { font-size: 16px; color: #0A0F1E; line-height: 1.7; font-style: italic; }

.cs-quote-author { font-size: 13px; color: #2D6EFF; font-weight: 500; }

.cs-quote-right { background: #1A1F36; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }

.cs-avatar-initials { width: 160px; height: 200px; background: #2D3A5A; border-radius: 10px 10px 0 0; display: flex; align-items: center; justify-content: center; font-size: 40px; font-weight: 700; color: #2D6EFF; font-family: 'Space Grotesk', sans-serif; }

/* ============================================
   NEUBRUTALISM SKIN — appended overrides
   Do not edit anything above this line
   ============================================ */

/* Global */
body {
  background: #F5F0E8;
}

/* Nav */
.nav {
  background: #F5F0E8 !important;
  border-bottom: 2.5px solid #0A0F1E !important;
}

.nav-link {
  color: #0A0F1E !important;
  font-weight: 600 !important;
}

.btn-nav {
  background: #0A0F1E !important;
  color: #F5F0E8 !important;
  border: 2px solid #0A0F1E !important;
  box-shadow: 3px 3px 0 #2D6EFF !important;
  border-radius: 0 !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}

.btn-nav:hover {
  box-shadow: 5px 5px 0 #2D6EFF !important;
  transform: translate(-1px, -1px);
}

/* Hero background stays dark — do not override */

/* Feature tabs section */
.feature-tabs-section {
  background: #F5F0E8 !important;
  border-bottom: 2.5px solid #0A0F1E !important;
}

.ft-eyebrow {
  display: inline-block !important;
  background: #F5F0E8 !important;
  color: #0A0F1E !important;
  padding: 4px 10px !important;
  border: 2px solid #0A0F1E !important;
  box-shadow: 2px 2px 0 #2D6EFF !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
}

.ft-heading {
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.5px !important;
  color: #0A0F1E !important;
}

.ft-subheading {
  color: #555 !important;
}

.ft-tabs {
  gap: 0 !important;
  border-radius: 0 !important;
  border: 2.5px solid #0A0F1E !important;
  width: fit-content !important;
}

.ft-tab {
  border-radius: 0 !important;
  border: none !important;
  border-right: 2.5px solid #0A0F1E !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  background: #F5F0E8 !important;
  color: #0A0F1E !important;
}

.ft-tab:last-child {
  border-right: none !important;
}

.ft-tab.active {
  background: #0A0F1E !important;
  color: #F5F0E8 !important;
}

.ft-tab:hover:not(.active) {
  background: #e8e3db !important;
}

.ft-left {
  border: 2.5px solid #0A0F1E !important;
  box-shadow: 6px 6px 0 #2D6EFF !important;
  border-radius: 0 !important;
}

.ft-right-title {
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: #0A0F1E !important;
}

/* Testimonial */
.testimonial {
  background: #fff !important;
  border-bottom: 2.5px solid #0A0F1E !important;
}

.testimonial-card {
  border: 2.5px solid #0A0F1E !important;
  box-shadow: 6px 6px 0 #0A0F1E !important;
  border-radius: 0 !important;
  background: #F5F0E8 !important;
}

.testimonial-quote-mark {
  opacity: 1 !important;
}

.testimonial-divider {
  height: 3px !important;
}

.testimonial-avatar {
  border-radius: 0 !important;
  border: 2.5px solid #0A0F1E !important;
  box-shadow: 2px 2px 0 #0A0F1E !important;
}

.testimonial-name {
  font-weight: 800 !important;
  color: #0A0F1E !important;
}

.testimonial-title {
  color: #555 !important;
}

.testimonial-linkedin {
  color: #2D6EFF !important;
  font-weight: 700 !important;
}

.testimonial-logo-bg {
  border: 2px solid #0A0F1E !important;
  box-shadow: 2px 2px 0 #0A0F1E !important;
  border-radius: 0 !important;
}

/* Case study page */
.cs {
  background: #F5F0E8 !important;
}

.cs-top {
  border-bottom: 2.5px solid #0A0F1E !important;
}

.cs-cards {
  border: 2.5px solid #0A0F1E !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 #2D6EFF !important;
}

.cs-tag:first-child {
  border-right: 2.5px solid #0A0F1E !important;
}

.cs-challenges {
  border-bottom: 2.5px solid #0A0F1E !important;
}

.cs-section-title {
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

.cs-ch-title {
  font-weight: 800 !important;
}

.cs-results {
  border-bottom: 2.5px solid #0A0F1E !important;
}

.cs-results-title {
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

.cs-results-grid {
  border: 2.5px solid #0A0F1E !important;
  border-radius: 0 !important;
}

.cs-result {
  border-right: 2.5px solid #0A0F1E !important;
}

.cs-result:last-child {
  border-right: none !important;
}

.cs-result-num {
  font-weight: 800 !important;
}

.cs-quote-left {
  background: #F5F0E8 !important;
}

.cs-quote-logo {
  font-weight: 800 !important;
}

/* Buttons sitewide */
.btn-primary, .cta-btn, .contact-submit {
  background: #2D6EFF !important;
  color: #fff !important;
  border: 2.5px solid #0A0F1E !important;
  box-shadow: 4px 4px 0 #0A0F1E !important;
  border-radius: 0 !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}

.btn-primary:hover, .cta-btn:hover, .contact-submit:hover {
  box-shadow: 6px 6px 0 #0A0F1E !important;
  transform: translate(-1px, -1px);
}

/* Section borders */
section {
  border-bottom: 2.5px solid #0A0F1E;
}

/* Footer */
footer {
  background: #0A0F1E !important;
  border-top: 2.5px solid #2D6EFF !important;
}

/* General headings */
h2 {
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

/* ============================================
   NEUBRUTALISM SKIN — append only, do not edit above
   ============================================ */

/* Global */
body {
  background: #F5F0E8 !important;
}

/* Nav */
.nav {
  background: #F5F0E8 !important;
  border-bottom: 2.5px solid #0A0F1E !important;
}

.nav-link {
  color: #0A0F1E !important;
  font-weight: 600 !important;
}

.nav-link:hover {
  color: #2D6EFF !important;
}

.nav-active {
  color: #2D6EFF !important;
}

.btn-nav {
  background: #0A0F1E !important;
  color: #F5F0E8 !important;
  border: 2px solid #0A0F1E !important;
  box-shadow: 3px 3px 0 #2D6EFF !important;
  border-radius: 0 !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}

.btn-nav:hover {
  box-shadow: 5px 5px 0 #2D6EFF !important;
  transform: translate(-1px, -1px) !important;
}

/* Feature tabs section */
.feature-tabs-section {
  background: #F5F0E8 !important;
  border-bottom: 2.5px solid #0A0F1E !important;
}

.ft-eyebrow {
  display: inline-block !important;
  background: #F5F0E8 !important;
  color: #0A0F1E !important;
  padding: 4px 10px !important;
  border: 2px solid #0A0F1E !important;
  box-shadow: 2px 2px 0 #2D6EFF !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
}

.ft-heading {
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: #0A0F1E !important;
}

.ft-subheading {
  color: #555 !important;
}

.ft-tabs {
  gap: 0 !important;
  border-radius: 0 !important;
  border: 2.5px solid #0A0F1E !important;
  width: fit-content !important;
}

.ft-tab {
  border-radius: 0 !important;
  border: none !important;
  border-right: 2.5px solid #0A0F1E !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  background: #F5F0E8 !important;
  color: #0A0F1E !important;
}

.ft-tab:last-child {
  border-right: none !important;
}

.ft-tab.active {
  background: #0A0F1E !important;
  color: #F5F0E8 !important;
}

.ft-tab:hover:not(.active) {
  background: #e8e3db !important;
}

.ft-left {
  border: 2.5px solid #0A0F1E !important;
  box-shadow: 6px 6px 0 #2D6EFF !important;
  border-radius: 0 !important;
}

.ft-right-title {
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: #0A0F1E !important;
}

.ft-right-desc {
  color: #555 !important;
}

/* Testimonial */
.testimonial {
  background: #fff !important;
  border-bottom: 2.5px solid #0A0F1E !important;
}

.testimonial-eyebrow {
  display: inline-block !important;
  background: #fff !important;
  color: #0A0F1E !important;
  padding: 4px 10px !important;
  border: 2px solid #0A0F1E !important;
  box-shadow: 2px 2px 0 #2D6EFF !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
}

.testimonial-heading {
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: #0A0F1E !important;
}

.testimonial-card {
  border: 2.5px solid #0A0F1E !important;
  box-shadow: 6px 6px 0 #0A0F1E !important;
  border-radius: 0 !important;
  background: #F5F0E8 !important;
}

.testimonial-avatar {
  border-radius: 0 !important;
  border: 2.5px solid #0A0F1E !important;
  box-shadow: 2px 2px 0 #0A0F1E !important;
}

.testimonial-name {
  font-weight: 800 !important;
  color: #0A0F1E !important;
}

.testimonial-title {
  color: #555 !important;
}

.testimonial-linkedin {
  color: #2D6EFF !important;
  font-weight: 700 !important;
}

.testimonial-logo-bg {
  border: 2px solid #0A0F1E !important;
  box-shadow: 2px 2px 0 #0A0F1E !important;
  border-radius: 0 !important;
}

/* Why OQY */
.why-oqy {
  background: #F5F0E8 !important;
  border-bottom: 2.5px solid #0A0F1E !important;
}

.why-h2 {
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: #0A0F1E !important;
}

.why-sub {
  color: #555 !important;
}

.comparison-table {
  border-collapse: collapse !important;
  border: 2.5px solid #0A0F1E !important;
  width: 100% !important;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #0A0F1E !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
}

.comparison-table thead th {
  background: #0A0F1E !important;
  color: #F5F0E8 !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
}

.comparison-table .col-oqy {
  background: #2D6EFF !important;
  color: #fff !important;
}

.comparison-table tbody .col-oqy {
  background: #EEF3FF !important;
  color: #2D6EFF !important;
  font-weight: 700 !important;
}

/* CTA section */
.cta-section {
  background: #0A0F1E !important;
  border-bottom: 2.5px solid #2D6EFF !important;
}

.cta-h2 {
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: #F5F0E8 !important;
}

.cta-sub {
  color: rgba(255,255,255,0.45) !important;
}

.btn-primary {
  background: #2D6EFF !important;
  color: #fff !important;
  border: 2.5px solid #F5F0E8 !important;
  box-shadow: 4px 4px 0 #F5F0E8 !important;
  border-radius: 0 !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}

.btn-primary:hover {
  box-shadow: 6px 6px 0 #F5F0E8 !important;
  transform: translate(-1px, -1px) !important;
}

.cta-disclaimer {
  color: rgba(255,255,255,0.25) !important;
}

/* FAQ */
.faq-section {
  background: #F5F0E8 !important;
  border-bottom: 2.5px solid #0A0F1E !important;
}

.faq-h2 {
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: #0A0F1E !important;
}

.faq-item {
  border: 2.5px solid #0A0F1E !important;
  border-radius: 0 !important;
  margin-bottom: -2.5px !important;
  background: #fff !important;
}

.faq-question {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  color: #0A0F1E !important;
  background: #fff !important;
}

.faq-icon {
  color: #2D6EFF !important;
  font-weight: 700 !important;
}

.faq-answer {
  color: #555 !important;
  background: #F5F0E8 !important;
  border-top: 1px solid #0A0F1E !important;
}

/* Footer */
footer {
  background: #0A0F1E !important;
  border-top: 2.5px solid #2D6EFF !important;
}

.footer-logo-text,
.footer-copy,
.footer-link {
  color: rgba(255,255,255,0.4) !important;
}

.footer-logo-text {
  color: #F5F0E8 !important;
}

/* Case study page */
.cs {
  background: #F5F0E8 !important;
}

.cs-top {
  border-bottom: 2.5px solid #0A0F1E !important;
}

.cs-cards {
  border: 2.5px solid #0A0F1E !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 #2D6EFF !important;
}

.cs-tag:first-child {
  border-right: 2.5px solid #0A0F1E !important;
}

.cs-tag-label {
  color: #2D6EFF !important;
  font-weight: 700 !important;
}

.cs-challenges {
  border-bottom: 2.5px solid #0A0F1E !important;
}

.cs-section-title {
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

.cs-ch-title {
  font-weight: 800 !important;
}

.cs-results {
  border-bottom: 2.5px solid #0A0F1E !important;
}

.cs-results-title {
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

.cs-results-grid {
  border: 2.5px solid #0A0F1E !important;
  border-radius: 0 !important;
}

.cs-result {
  border-right: 2.5px solid #0A0F1E !important;
}

.cs-result:last-child {
  border-right: none !important;
}

.cs-result-num {
  font-weight: 800 !important;
}

.cs-quote-left {
  background: #F5F0E8 !important;
}

/* General sections */
section {
  border-bottom: 2.5px solid #0A0F1E !important;
}

/* ── Hero + Nav background consistency fix ── */

.hero-phone {
  background: #F5F0E8 !important;
}

.hp-sticky {
  background: #F5F0E8 !important;
}

.nav {
  background: #F5F0E8 !important;
  border-bottom: 2.5px solid #0A0F1E !important;
}

.nav-link {
  color: #0A0F1E !important;
}

.logo-light {
  filter: invert(1) !important;
}

/* ── Frame 1 background + text colour fix only ── */

.hero-phone {
  background: #F5F0E8 !important;
}

.hp-sticky {
  background: #F5F0E8 !important;
}

.hp-headline {
  color: #0A0F1E !important;
}

.hp-headline em {
  color: #2D6EFF !important;
}

.hp-sub {
  color: #555 !important;
}

.hp-cue {
  color: #2D6EFF !important;
}

/* ── Frame 1 cream fix — high specificity ── */

body .hero-phone {
  background: #F5F0E8 !important;
}

body .hp-sticky {
  background: #F5F0E8 !important;
}

body .hp-headline {
  color: #0A0F1E !important;
}

body .hp-headline em {
  color: #2D6EFF !important;
}

body .hp-sub {
  color: #555 !important;
}

body .hp-cue {
  color: rgba(45,110,255,0.5) !important;
}

/* ── Case study page fixes ── */

.cs-tag-text {
  text-transform: none !important;
}

.cs-tag-label {
  text-transform: uppercase !important;
}

.cs-quote-right {
  background: #F5F0E8 !important;
}

.cs-avatar-initials {
  background: #0A0F1E !important;
  color: #F5F0E8 !important;
  border: 2.5px solid #0A0F1E !important;
  box-shadow: 3px 3px 0 #2D6EFF !important;
  border-radius: 0 !important;
}

/* ── Case study card fixes ── */

.cs-cards {
  background: #fff !important;
}

.cs-tag {
  background: #fff !important;
  min-height: 400px !important;
}

.cs-conn-badge {
  display: none !important;
}

.cs-conn-line {
  display: none !important;
}

.cs-center-connector {
  display: none !important;
}

.cs-top {
  max-width: 900px !important;
}

/* ── Case study card position fix ── */

.cs-right {
  padding-left: 24px !important;
}

/* ── Move case study cards right ── */

.cs-top {
  grid-template-columns: 340px 1fr !important;
}

/* ── Case study compact layout ── */

.cs-top {
  grid-template-columns: 240px 1fr !important;
  gap: 32px !important;
  padding: 40px 48px !important;
  max-width: 900px !important;
}

.cs-cards {
  max-width: 500px !important;
  padding-left: 0 !important;
}

.cs-tag {
  min-height: 280px !important;
  padding: 24px !important;
}

.cs-challenges {
  max-width: 900px !important;
  padding: 40px 48px !important;
}

.cs-results {
  max-width: 900px !important;
  padding: 40px 48px !important;
}

.cs-tag-text {
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.cs-tag-label {
  font-size: 10px !important;
  margin-bottom: 10px !important;
}

/* ── Remove excess whitespace from cs cards ── */

.cs-tag {
  min-height: 0 !important;
  padding: 20px 20px !important;
}

/* ── Case study full width layout fix ── */

.cs-top {
  grid-template-columns: 280px 1fr !important;
  gap: 0 !important;
  padding: 48px 48px !important;
  align-items: start !important;
  max-width: 100% !important;
}

.cs-right {
  padding-left: 48px !important;
  margin-top: -8px !important;
}

.cs-cards {
  max-width: 100% !important;
  width: 100% !important;
}

.cs-challenges {
  display: grid !important;
  grid-template-columns: 280px 1fr !important;
  gap: 0 !important;
  padding: 48px 48px !important;
  max-width: 100% !important;
}

.cs-challenge-content {
  padding-left: 48px !important;
}

.cs-results {
  padding: 48px 48px !important;
  max-width: 100% !important;
}

.cs-results-grid {
  width: 100% !important;
}

/* ── Challenges inside right column ── */

.cs-top {
  grid-template-columns: 220px 1fr !important;
  align-items: start !important;
  gap: 40px !important;
  padding: 48px !important;
  max-width: 100% !important;
}

.cs-right {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.cs-challenges {
  display: block !important;
  padding: 0 !important;
  border-bottom: none !important;
  margin-top: 24px !important;
}

.cs-challenge-content {
  padding-left: 0 !important;
}

.cs-section-title {
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 16px !important;
  color: #0A0F1E !important;
}

.cs-ch-title {
  font-size: 13px !important;
}

.cs-ch-text {
  font-size: 12px !important;
}

.cs-ch-title:first-child {
  margin-top: 0 !important;
}

/* ── Contact page form Neubrutalism fixes ── */

.contact-form input,
.contact-form textarea,
.contact-form select,
input[type="text"],
input[type="email"],
textarea {
  background: #fff !important;
  border: 2px solid #0A0F1E !important;
  border-radius: 0 !important;
  color: #0A0F1E !important;
  font-family: 'Inter', sans-serif !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none !important;
  border-color: #2D6EFF !important;
  box-shadow: 3px 3px 0 #2D6EFF !important;
}

.contact-submit,
button[type="submit"],
.form-submit {
  background: #2D6EFF !important;
  color: #fff !important;
  border: 2.5px solid #0A0F1E !important;
  box-shadow: 4px 4px 0 #0A0F1E !important;
  border-radius: 0 !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}

.contact-section,
.contact-wrap,
.contact-page {
  background: #F5F0E8 !important;
}

.footer {
  background: #0A0F1E !important;
  border-top: 2.5px solid #2D6EFF !important;
}

/* ── Logo visible on cream background ── */

.logo-light {
  filter: brightness(0) !important;
}

/* System dropdown nav */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0A0F1E;
  cursor: pointer;
  white-space: nowrap;
}

.nav-item-label:hover { color: #2D6EFF; }

.nav-chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s;
}

.nav-item-dropdown:hover .nav-chevron {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  background: #F5F0E8;
  border: 2.5px solid #0A0F1E;
  box-shadow: 4px 4px 0 #2D6EFF;
  min-width: 340px;
  z-index: 200;
}

.nav-item-dropdown:hover .nav-dropdown { display: block; }

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1.5px solid #0A0F1E;
  text-decoration: none;
  transition: background 0.1s;
}

.nav-dropdown-item:last-child { border-bottom: none; }

.nav-dropdown-item:hover { background: #0A0F1E; }

.nav-dropdown-item:hover .nav-di-title { color: #F5F0E8; }

.nav-dropdown-item:hover .nav-di-desc { color: rgba(245,240,232,0.6); }

.nav-dropdown-item:hover .nav-di-icon {
  background: #2D6EFF;
  color: #fff;
}

.nav-di-icon {
  width: 36px;
  height: 36px;
  background: #0A0F1E;
  color: #F5F0E8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.nav-di-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-di-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0A0F1E;
  line-height: 1.2;
}

.nav-di-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}

.nav-mobile-section {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #2D6EFF;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 4px;
}

/* Feature pages */
.fp-hero { padding: 72px 64px 64px; border-bottom: 2.5px solid #0A0F1E; max-width: 860px; }
.fp-pill { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #2D6EFF; border: 1.5px solid #2D6EFF; padding: 4px 12px; margin-bottom: 20px; }
.fp-h1 { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 700; line-height: 1.08; color: #0A0F1E; margin-bottom: 16px; }
.fp-lead { font-size: 16px; color: #555; line-height: 1.65; margin-bottom: 32px; max-width: 580px; }
.fp-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.fp-btn-primary { display: inline-block; background: #0A0F1E; color: #F5F0E8; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; padding: 13px 28px; border: 2px solid #0A0F1E; box-shadow: 4px 4px 0 #2D6EFF; text-decoration: none; }
.fp-btn-primary:hover { box-shadow: 6px 6px 0 #2D6EFF; transform: translate(-1px,-1px); }
.fp-btn-ghost { display: inline-block; background: transparent; color: #0A0F1E; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; padding: 13px 28px; border: 2px solid #0A0F1E; text-decoration: none; }
.fp-btn-ghost:hover { background: #0A0F1E; color: #F5F0E8; }

.fp-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 2.5px solid #0A0F1E; }
.fp-metric { padding: 36px 48px; border-right: 2.5px solid #0A0F1E; }
.fp-metric:last-child { border-right: none; }
.fp-metric-num { font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 700; color: #2D6EFF; line-height: 1; margin-bottom: 8px; }
.fp-metric-label { font-size: 14px; color: #555; line-height: 1.5; }

.fp-feature-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 2.5px solid #0A0F1E; min-height: 380px; }
.fp-flip { direction: rtl; }
.fp-flip > * { direction: ltr; }
.fp-feat-text { padding: 56px 64px; border-right: 2.5px solid #0A0F1E; display: flex; flex-direction: column; justify-content: center; }
.fp-flip .fp-feat-text { border-right: none; border-left: 2.5px solid #0A0F1E; }
.fp-feat-h2 { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; color: #0A0F1E; margin-bottom: 14px; line-height: 1.2; }
.fp-feat-p { font-size: 15px; color: #555; line-height: 1.65; margin-bottom: 18px; }
.fp-feat-link { font-size: 14px; font-weight: 700; color: #2D6EFF; text-decoration: underline; }
.fp-feat-visual { background: #0A0F1E; display: flex; align-items: center; justify-content: center; padding: 40px; }

.fp-cta-dark { background: #0A0F1E; padding: 80px 64px; text-align: center; }
.fp-cta-h2 { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; color: #F5F0E8; margin-bottom: 10px; }
.fp-cta-p { font-size: 15px; color: rgba(245,240,232,0.6); margin-bottom: 32px; }
.fp-cta-btn { display: inline-block; background: #F5F0E8; color: #0A0F1E; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; padding: 15px 36px; border: 2px solid #F5F0E8; box-shadow: 4px 4px 0 #2D6EFF; text-decoration: none; }
.fp-cta-btn:hover { box-shadow: 6px 6px 0 #2D6EFF; transform: translate(-1px,-1px); }

/* Slack window component */
.fp-slack-window { background: #1a1d21; border: 1px solid #3a3a3a; width: 100%; max-width: 320px; font-family: 'Inter', sans-serif; }
.fp-slack-topbar { background: #19171d; border-bottom: 1px solid #3a3a3a; padding: 10px 14px; }
.fp-slack-ws { font-size: 12px; font-weight: 700; color: #fff; }
.fp-slack-ch { font-size: 10px; color: #aaa; margin-top: 1px; }
.fp-slack-body { padding: 16px 14px; display: flex; flex-direction: column; gap: 16px; }
.fp-msg-row { display: flex; gap: 9px; align-items: flex-start; }
.fp-msg-av { width: 30px; height: 30px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 800; color: #fff; flex-shrink: 0; margin-top: 1px; }
.fp-av-user { background: #4A154B; }
.fp-av-bot { background: #2D6EFF; }
.fp-msg-content { flex: 1; min-width: 0; }
.fp-msg-name { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.fp-ts { font-size: 9px; font-weight: 400; color: #555; margin-left: 5px; }
.fp-msg-text { font-size: 11px; color: #ccc; line-height: 1.5; }
.fp-msg-cmd { color: #2D6EFF; font-family: monospace; font-weight: 700; }
.fp-bot-card { background: #222529; border: 1px solid #3a3a3a; border-left: 3px solid #2D6EFF; padding: 8px 10px; margin-top: 6px; }
.fp-bc-title { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.fp-bc-row { font-size: 10px; color: #aaa; line-height: 1.8; }
.fp-bc-muted { color: #555; margin-top: 3px; }
.fp-g { color: #2ea44f; font-weight: 700; }
.fp-b { color: #58a6ff; font-weight: 700; }
.fp-slack-input { border-top: 1px solid #3a3a3a; padding: 10px 14px; }
.fp-input-box { background: #2a2d31; border: 1px solid #4a4a4a; border-radius: 3px; padding: 7px 10px; font-size: 10px; color: #555; width: 100%; }

/* HubSpot card component */
.fp-hs-card { background: #fff; border: 1px solid #e0e0e0; width: 100%; max-width: 260px; }
.fp-hs-hdr { background: #f8f8f8; border-bottom: 1px solid #e0e0e0; padding: 10px 14px; display: flex; align-items: center; gap: 8px; }
.fp-hs-logo { font-size: 10px; font-weight: 800; color: #ff7a59; }
.fp-hs-sub { font-size: 10px; color: #888; }
.fp-hs-av { width: 40px; height: 40px; background: #2D6EFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; margin: 14px auto 8px; }
.fp-hs-name { font-size: 14px; font-weight: 700; color: #0A0F1E; text-align: center; }
.fp-hs-role { font-size: 10px; color: #888; text-align: center; margin-bottom: 10px; }
.fp-hs-div { border-top: 1px solid #eee; margin: 0 14px; }
.fp-hs-row { display: flex; justify-content: space-between; padding: 6px 14px; font-size: 10px; }
.fp-hs-k { color: #888; }
.fp-hs-v { color: #0A0F1E; font-weight: 600; }
.fp-hs-hot { background: #fde8e8; color: #c0392b; font-size: 9px; font-weight: 700; padding: 2px 6px; }
.fp-hs-email { color: #2D6EFF; }
.fp-hs-note { margin: 8px 14px 14px; background: #f0f7ff; border-left: 3px solid #2D6EFF; padding: 8px 10px; font-size: 10px; color: #444; line-height: 1.6; }

/* Lemlist card component */
.fp-ll-card { background: #1c1c2e; border: 1px solid #333; width: 100%; max-width: 280px; }
.fp-ll-hdr { background: #252540; border-bottom: 1px solid #333; padding: 8px 12px; display: flex; align-items: center; gap: 5px; }
.fp-ll-d { width: 7px; height: 7px; border-radius: 50%; }
.fp-ll-logo { font-size: 11px; font-weight: 800; color: #a78bfa; margin-left: 8px; }
.fp-ll-camp { padding: 10px 12px; border-bottom: 1px solid #333; }
.fp-ll-cname { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.fp-ll-stats { display: flex; gap: 16px; }
.fp-ll-sn { font-size: 15px; font-weight: 700; color: #a78bfa; }
.fp-ll-live { color: #2ea44f; }
.fp-ll-sl { font-size: 9px; color: #666; }
.fp-ll-steps { padding: 8px 12px; border-bottom: 1px solid #333; }
.fp-ll-step { display: flex; align-items: center; gap: 6px; padding: 4px 0; font-size: 10px; color: #666; }
.fp-ll-sdot { width: 6px; height: 6px; border-radius: 50%; background: #a78bfa; flex-shrink: 0; }
.fp-ll-sdot-off { background: #333; }
.fp-ll-active { color: #a78bfa; font-weight: 700; }
.fp-ll-email { margin: 10px 12px 12px; background: #252540; border: 1px solid #333; padding: 9px; }
.fp-ll-esub { font-size: 10px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.fp-ll-ebody { font-size: 9px; color: #bbb; line-height: 1.6; }
.fp-ll-hi { color: #a78bfa; font-weight: 700; }

/* Pipeline analytics card component */
.fp-pipe-card { background: #0d1117; border: 1px solid #30363d; width: 100%; max-width: 260px; padding: 16px; font-family: 'Inter', sans-serif; }
.fp-pipe-t { font-size: 10px; font-weight: 700; color: #8b949e; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.fp-pipe-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.fp-pipe-l { font-size: 11px; color: #c9d1d9; min-width: 52px; }
.fp-pipe-bw { flex: 1; height: 6px; background: #21262d; margin: 0 10px; }
.fp-pipe-b { height: 6px; background: #2D6EFF; }
.fp-pipe-a { background: #e3b341; }
.fp-pipe-g { background: #2ea44f; }
.fp-pipe-v { font-size: 11px; color: #58a6ff; font-weight: 700; min-width: 30px; text-align: right; }
.fp-amber { color: #e3b341; }
.fp-green { color: #2ea44f; }
.fp-pipe-div { border-top: 1px solid #30363d; margin: 12px 0; }
.fp-pipe-m { display: flex; justify-content: space-between; font-size: 10px; margin-bottom: 6px; }
.fp-pipe-ml { color: #8b949e; }
.fp-pipe-mv { color: #2ea44f; font-weight: 700; }

/* Feature page fixes */
.fp-feat-h2 {
  text-transform: none !important;
  letter-spacing: normal !important;
}

.fp-h1 {
  text-transform: none !important;
  letter-spacing: normal !important;
}

.fp-feature-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  direction: ltr !important;
}

.fp-feature-row .fp-feat-text {
  order: 1;
  border-right: 2.5px solid #0A0F1E !important;
  border-left: none !important;
}

.fp-feature-row .fp-feat-visual {
  order: 2;
}

.fp-feature-row.fp-flip .fp-feat-text {
  order: 2;
  border-right: none !important;
  border-left: 2.5px solid #0A0F1E !important;
}

.fp-feature-row.fp-flip .fp-feat-visual {
  order: 1;
}

.fp-feature-row.fp-flip {
  direction: ltr !important;
}

.cs-avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.cs-quote {
  align-items: center !important;
  min-height: unset !important;
}

.cs-quote-right {
  max-height: 500px !important;
  overflow: hidden !important;
}

.cs-avatar-photo {
  width: 100% !important;
  height: 500px !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.cs-avatar-photo {
  object-fit: contain !important;
  object-position: center center !important;
  background: #F5F0E8 !important;
}

.footer-policies {
  border: 2px solid var(--electric);
  border-radius: 4px;
  padding: 14px 16px;
}

.footer-policies-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
  margin: 0 0 2px;
}
