/* ============================================================
   KANA SYSTEM DESIGN — CORE STYLESHEET (LIGHT THEME SYSTEM)
   Supports 100% dynamic re-skinning via --color-accent
   ============================================================ */

@import url('https://fonts.cdnfonts.com/css/tasa-orbiter-display');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Core Brand Colors (Dark Sections) */
  --color-white: #ffffff;
  --color-black: #15171a;
  --color-midnight-blue: #082249;
  --color-dark-slate-gray: #193a4d;

  /* Premium Light Theme Variables - Rich Ice Blues, Floral Whites & Silvers */
  --color-bg-light: #f4f7fb;       /* Primary page light background */
  --color-bg-card: #ffffff;        /* Pure white for card elevation */
  --color-bg-alt: #fffbf5;         /* Dynamic secondary linen/floral background */
  --color-text-dark: #091e3a;      /* Deep midnight blue for premium legibility */
  --color-text-muted: #4e6178;     /* Slate gray for secondary body copy */
  --color-border-light: rgba(8, 34, 73, 0.08);

  /* Neutrals / Tints */
  --color-floral-white: #fffbf5;
  --color-linen: #f3e2d3;
  --color-white-smoke: #f1f3ec;
  --color-light-gray: #d8d6d4;

  /* Accent Palette */
  --color-coral-2: #ff7a59;        /* CPG (default) */
  --color-teal: #0f666b;           /* Retail & E-Commerce */
  --color-royal-blue: #1762d3;     /* Financial Services */
  --color-medium-purple: #7f63c5;  /* Media & Advertisers */
  --color-cadet-blue: #3fa673;     /* Pharma */

  /* Per-Industry Dynamic Accent (defaults to CPG coral) */
  --color-accent: var(--color-coral-2);
  --color-accent-rgb: 255, 122, 89;

  /* Gradient Radial for Hero/CTA */
  --gradient-radial: radial-gradient(circle at center, #1b3a4b 0%, #062b40 100%);
  
  /* Shared Timing */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-out;

  /* Typography fallback */
  --font-sans: 'TASA Orbiter Display', 'TASA Orbiter', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* OKLCH Gradient Interpolation Fallback */
:root {
  --in-oklch: ;
  --in-oklab: ;
}
@supports (linear-gradient(in oklch, white, black)) {
  :root {
    --in-oklch: in oklch;
    --in-oklab: in oklab;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Sticky nav offset */
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-color: var(--color-bg-light);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* ============================================================
   TYPE SYSTEM CLASSES
   ============================================================ */
.type-h1 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.0;
  letter-spacing: -2.16px;
}

.type-h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -1.92px;
}

.type-large-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.72px;
}

.type-heading {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.48px;
}

.type-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.0;
  letter-spacing: -0.24px;
}

.type-subheading {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.type-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.32px;
}

.type-small-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.14px;
}

/* ============================================================
   LAYOUT CONTAINER UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: clamp(60px, 8vw, 100px) 0;
}

/* ============================================================
   PREMIUM GLASSMORPHISM & CORE DESIGN ELEMENTS
   ============================================================ */
.glass {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  box-shadow: 0 8px 30px rgba(9, 30, 58, 0.04);
}

.dark-glass {
  background: rgba(21, 23, 26, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glow-hover {
  position: relative;
  overflow: hidden;
}

.glow-hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right var(--in-oklch),
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  transform: skewX(-25deg) translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.glow-hover:hover::after {
  transform: skewX(-25deg) translateX(100%);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 1px solid var(--color-accent);
  box-shadow: 0 4px 15px rgba(var(--color-accent-rgb), 0.3);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-accent);
  box-shadow: 0 6px 20px rgba(var(--color-accent-rgb), 0.4);
  transform: translateY(-2px);
}

/* In dark blocks, button outline hover returns white text */
.dark-section .btn-primary:hover, 
#hero .btn-primary:hover,
#cta .btn-primary:hover,
.sticky-header .btn-primary:hover {
  color: var(--color-white);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-secondary-dark {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary-dark:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ============================================================
   KANA CUSTOM BUBBLE BUTTON SHAPE (GET STARTED SHAPE)
   ============================================================ */
.kana-bubble-btn {
  display: inline-flex;
  align-items: stretch;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.kana-bubble-btn .btn-body {
  background-color: var(--color-white);
  color: #0e3245; /* Solid brand background color */
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 36px;
  border-radius: 24px 24px 0 24px; /* Curved three sides, sharp bottom-right */
  box-shadow: 0 10px 30px rgba(14, 50, 69, 0.3);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.kana-bubble-btn .btn-leaf {
  width: 24px;
  background-color: #fca397; /* Brand peach coral */
  border-radius: 0 24px 24px 0; /* Flat left, rounded right */
  transition: var(--transition-smooth);
}

.kana-bubble-btn:hover {
  transform: translateY(-2px);
}

.kana-bubble-btn:hover .btn-body {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 15px 35px rgba(var(--color-accent-rgb), 0.4);
}

.kana-bubble-btn:hover .btn-leaf {
  background-color: var(--color-white);
}

/* Compact version for navigation header */
.kana-bubble-btn.compact .btn-body {
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 12px 12px 0 12px;
}

.kana-bubble-btn.compact .btn-leaf {
  width: 12px;
  border-radius: 0 12px 12px 0;
}

/* Dark body version of bubble button (e.g. for light headers/backgrounds) */
.kana-bubble-btn.dark-body .btn-body {
  background-color: #0e3245; /* Brand dark navy color */
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(14, 50, 69, 0.15);
}

.kana-bubble-btn.dark-body:hover .btn-body {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 10px 25px rgba(var(--color-accent-rgb), 0.3);
}

.kana-bubble-btn.dark-body:hover .btn-leaf {
  background-color: var(--color-white);
}

/* Centered Hero Layout styles */
.hero-content.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  width: 100%;
}

.hero-center-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 900px;
}

.hero-ctas.centered {
  justify-content: center;
  margin-top: 12px;
}

.hero-visual-center {
  width: 100%;
  max-width: 1060px; /* Made larger to fit more of the screen! */
  margin: 0 auto;
}

.hero-img-wrapper.large-screen {
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(var(--color-accent-rgb), 0.2);
}

/* ============================================================
   1. STICKY NAV SYSTEM
   ============================================================ */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border-light);
  background: rgba(255, 251, 245, 0.9); /* Premium translucent linen/white background */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  color: var(--color-text-dark);
}

.sticky-header.scrolled {
  background: rgba(255, 251, 245, 0.96);
  height: 72px;
  box-shadow: 0 4px 20px rgba(9, 30, 58, 0.02);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  max-width: 1440px;
  margin: 0 auto;
}

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

.logo-img {
  height: 44px;
  width: auto;
}

/* Center Nav Dropdown */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin-left: auto;
  margin-right: 32px;
}

.nav-item {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: var(--color-text-dark);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.dropdown-toggle:hover {
  color: var(--color-accent);
}

.dropdown-toggle svg {
  transition: transform 0.25s ease;
  fill: currentColor;
}

.dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(9, 30, 58, 0.06);
  width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 8px 0;
  z-index: 1100;
  backdrop-filter: blur(20px);
}

.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  text-align: left;
}

.dropdown-item:hover, .dropdown-item.active {
  color: var(--color-text-dark);
  background: rgba(8, 34, 73, 0.04);
}

.dropdown-item.active {
  border-left: 3px solid var(--color-accent);
  padding-left: 17px;
  color: var(--color-accent);
  font-weight: 600;
}

/* ============================================================
   2. HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #f4f7fb; /* Light ice-blue background from the Pain Points section! */
  color: #091e3a; /* Dark navy text */
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Soft light gradient blending */
  background: linear-gradient(
    to bottom var(--in-oklab),
    rgba(244, 247, 251, 0.4) 0%,
    #f4f7fb 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-headline {
  color: #082249; /* Deep midnight blue */
  font-size: clamp(48px, 6.5vw, 84px); /* Larger text! */
  line-height: 1.05;
  letter-spacing: -2.4px;
  text-shadow: none;
}

/* Make accent words inside titles pop with a bright glowing green/teal */
.hero-headline em, .hero-headline span.accent-glow {
  font-style: normal;
  color: var(--color-accent); /* Dynamic vertical accent color (e.g. coral #ff7a59) */
  text-shadow: none;
}

.hero-subheadline {
  color: #4e6178; /* Slate gray text */
  max-width: 650px;
  font-size: clamp(16px, 2.2vw, 20px); /* Larger subheadline! */
  font-weight: 400;
  line-height: 1.45;
}

@media (max-width: 991px) {
  .hero-subheadline {
    margin: 0 auto;
  }
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .hero-ctas {
    justify-content: center;
  }
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(8, 34, 73, 0.08);
  box-shadow: 0 15px 35px rgba(9, 30, 58, 0.08);
  max-width: 380px; /* Made smaller as requested */
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.hero-img-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(9, 30, 58, 0.15);
  border-color: rgba(8, 34, 73, 0.15);
}

.hero-img {
  width: 100%;
  object-fit: cover;
}

/* ============================================================
   3. PAIN POINTS SECTION (LIGHT THEME WITH ICE-BLUE BACKGROUNDS)
   ============================================================ */
.pain-section {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

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

.section-title {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  color: var(--color-midnight-blue);
}

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

@media (max-width: 991px) {
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.pain-card {
  padding: 32px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  height: 100%;
  transition: var(--transition-smooth);
}

.pain-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(8, 34, 73, 0.08), 0 0 20px rgba(var(--color-accent-rgb), 0.15);
}

.pain-card-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-title {
  color: var(--color-midnight-blue);
  font-size: clamp(24px, 3.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.6px;
}

.pain-desc {
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 1.55;
}

/* ============================================================
   4. SOLUTIONS SECTION (ALTERNATING ROWS, ICE-BLUE BG)
   ============================================================ */
.solutions-section {
  position: relative;
  background-color: var(--color-bg-alt);
  overflow: hidden;
  color: var(--color-text-dark);
}

.solution-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--color-border-light);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(9, 30, 58, 0.03);
}

.solution-row::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Light overlay that lets the background JPG texture show through cleanly */
  background: linear-gradient(
    135deg var(--in-oklab),
    rgba(255, 255, 255, 0.94) 0%,
    rgba(244, 247, 251, 0.97) 100%
  );
  z-index: 1;
}

.solution-row:last-child {
  margin-bottom: 0;
}

.solution-row:nth-child(even) {
  direction: rtl;
}

.solution-row:nth-child(even) .solution-text-block {
  direction: ltr; /* Reset text direction */
}

.solution-row:nth-child(even) .solution-visual-block {
  direction: ltr; /* Reset visual block direction */
}

@media (max-width: 991px) {
  .solution-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 24px;
  }
  
  .solution-row:nth-child(even) {
    direction: ltr;
  }
}

.solution-text-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(var(--color-accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
}

.solution-icon {
  width: 28px;
  height: 28px;
  fill: var(--color-accent);
}

.solution-label {
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--color-accent);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.solution-title {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-midnight-blue);
}

.solution-desc {
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 1.55;
}

.solution-visual-block {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 15px 45px rgba(9, 30, 58, 0.08);
  aspect-ratio: 16 / 10;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   5. STATS BAR SECTION (PREMIUM LIGHT ICE-BLUE/CREAM BAND)
   ============================================================ */
.stats-bar {
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg-alt) 100%);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 56px 0;
  color: var(--color-text-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

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

.stat-number {
  color: var(--color-accent);
  text-shadow: none;
}

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

/* ============================================================
   6. SOCIAL PROOF & TESTIMONIAL
   ============================================================ */
.social-proof-section {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  border-bottom: 1px solid var(--color-border-light);
}

.logo-strip-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(9, 30, 58, 0.5);
  margin-bottom: 40px;
}

.logo-strip-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

.logo-strip {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .logo-strip {
    gap: 40px;
  }
}

/* Partner Logos made significantly larger as requested */
.partner-logo {
  height: 64px; /* Increased from 48px */
  width: auto;
  max-width: 220px; /* Increased from 180px */
  filter: brightness(0.2) opacity(0.5);
  transition: var(--transition-smooth);
}

.partner-logo:hover {
  filter: brightness(0) opacity(1);
}

/* Testimonial Box */
.testimonial-block {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.testimonial-card {
  max-width: 850px;
  width: 100%;
  background: radial-gradient(circle at 80% 20%, #ebf5fa 0%, #ffffff 70%);
  border-radius: 24px; /* Premium larger curves */
  padding: 56px;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 20px 50px rgba(9, 30, 58, 0.03);
  text-align: left; /* Aligned to left as in Petsmart example */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Stacks content left */
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.testimonial-brand-logo {
  height: 96px; /* Doubled from 48px as requested */
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.testimonial-quote {
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.45;
  font-weight: 500;
  font-style: normal; /* Straight geometric type as in example */
  color: var(--color-midnight-blue);
  text-align: left;
}

.testimonial-quote strong {
  font-weight: 700;
  color: var(--color-text-dark);
}

.testimonial-author {
  display: flex;
  flex-direction: row; /* Horizontal alignment */
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.author-name {
  font-weight: 700;
  color: var(--color-text-dark);
}

.author-name::after {
  content: ','; /* Commas separate metadata horizontally */
}

.author-title {
  color: var(--color-text-muted);
}

.btn-testimonial-story {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #15171a; /* Sleek black pill button */
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
  margin-top: 8px;
}

.btn-testimonial-story:hover {
  background-color: var(--color-accent);
  color: #ffffff;
  transform: translateY(-1px);
}

/* ============================================================
   7. FAQ ACCORDION SECTION (ICE-BLUE THEME)
   ============================================================ */
.faq-section {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  background: #ffffff;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(9, 30, 58, 0.01);
}

.faq-item:hover {
  border-color: rgba(8, 34, 73, 0.2);
  box-shadow: 0 4px 15px rgba(9, 30, 58, 0.03);
}

.faq-item.active {
  border-color: rgba(var(--color-accent-rgb), 0.3);
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(9, 30, 58, 0.05);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  color: var(--color-text-dark);
  cursor: pointer;
  gap: 16px;
}

.faq-question {
  flex-grow: 1;
  color: var(--color-midnight-blue);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  fill: var(--color-text-muted);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  fill: var(--color-accent);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-panel {
  max-height: 500px; /* Safe upper bound */
}

.faq-answer {
  padding: 0 24px 24px 24px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================================
   8. FINAL CTA BAND SECTION (PREMIUM LIGHT TRANSITIONAL)
   ============================================================ */
.final-cta-band {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--color-text-dark);
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  /* Premium light ice-blue/linen gradient overlay to keep background texture visible */
  background: linear-gradient(
    135deg var(--in-oklab),
    rgba(255, 255, 255, 0.95) 0%,
    rgba(244, 247, 251, 0.96) 100%
  );
  z-index: 1;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.soc2-badge-wrapper {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
}

@media (max-width: 767px) {
  .soc2-badge-wrapper {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 40px;
  }
}

.soc2-badge-img {
  height: 54px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(1) brightness(0.2); /* Slick professional dark branding for light background */
  transition: var(--transition-fast);
}

.soc2-badge-img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

/* ============================================================
   9. FOOTER SECTION (DARK HIGH-CONTRAST)
   ============================================================ */
.footer-section {
  background-color: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 60px 0 30px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 44px;
  width: auto;
  align-self: flex-start;
}

.footer-motto {
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav-title {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-white);
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer-nav-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   PLACEHOLDER DISPLAY
   ============================================================ */
.asset-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: repeating-conic-gradient(rgba(9, 30, 58, 0.01) 0 25%, rgba(9, 30, 58, 0.03) 0 50%) 0 / 20px 20px;
  border: 1px dashed rgba(9, 30, 58, 0.15);
  border-radius: 8px;
  color: var(--color-text-muted);
  padding: 20px;
  text-align: center;
  font-family: monospace;
  font-size: 12px;
  width: 100%;
  height: 100%;
  min-height: 120px;
  gap: 8px;
}

.asset-placeholder::before {
  content: '⚠️';
  font-size: 24px;
}

/* Copy Placeholder visually high-end callouts */
.copy-placeholder-box {
  background: rgba(9, 30, 58, 0.01) !important;
  border: 1px dashed rgba(var(--color-accent-rgb), 0.25) !important;
  box-shadow: none !important;
}

.copy-placeholder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(var(--color-accent-rgb), 0.1);
  border: 1px solid rgba(var(--color-accent-rgb), 0.3);
  color: var(--color-accent);
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  align-self: center;
  margin-bottom: 8px;
}

/* ============================================================
   KANA CLONED MEGAMENU & DROPDOWN STYLING
   ============================================================ */
.nav-links-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-link-item {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  padding: 8px 16px;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.nav-link-item:hover {
  color: var(--color-accent);
}

.dropdown-menu.megamenu {
  width: auto;
  min-width: 600px;
  padding: 0;
  overflow: visible;
}

.solutions-megamenu {
  width: 1120px; /* Fits 3 suite columns + industries column */
  right: -200px;
  left: auto;
  transform: translateY(10px);
}

.dropdown-toggle[aria-expanded="true"] + .dropdown-menu.solutions-megamenu {
  transform: translateY(4px);
}

.resources-megamenu {
  width: 820px; /* Made slightly wider to fit larger text */
  right: -100px;
  left: auto;
  transform: translateY(10px);
}

.dropdown-toggle[aria-expanded="true"] + .dropdown-menu.resources-megamenu {
  transform: translateY(4px);
}

.company-dropdown {
  width: 260px;
  right: 0;
  left: auto;
  transform: translateY(10px);
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.dropdown-toggle[aria-expanded="true"] + .dropdown-menu.company-dropdown {
  transform: translateY(4px);
}

.megamenu-header-band {
  background: #fdfaf5; /* Light warm cream */
  border-bottom: 1px solid var(--color-border-light);
  padding: 18px 36px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.all-solutions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px; /* Larger text */
  color: var(--color-text-dark);
}

.all-solutions-link:hover {
  color: var(--color-accent);
}

.megamenu-columns {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1.15fr 1fr; /* Left: 3 suite columns, right: Industry */
  gap: 32px;
  padding: 36px;
}

.megamenu-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.megamenu-col-title {
  font-size: 14px; /* Larger column header */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.megamenu-link {
  display: flex;
  align-items: center; /* Centered icons vertically */
  gap: 16px; /* Larger gap */
  padding: 10px; /* Larger padding */
  border-radius: 8px;
  transition: var(--transition-fast);
}

.megamenu-link:hover {
  background: rgba(8, 34, 73, 0.03);
}

.megamenu-icon {
  width: 32px; /* Larger icons */
  height: 32px; /* Larger icons */
  object-fit: contain;
  flex-shrink: 0;
}

.megamenu-link-name {
  font-weight: 600;
  font-size: 18px; /* Larger text */
  color: var(--color-text-dark);
}

/* Industries Menu Column special accent styling (now rightmost) */
.industries-col {
  background: rgba(var(--color-accent-rgb), 0.03);
  border-left: 1px solid var(--color-border-light);
  border-right: none;
  padding-left: 24px;
  padding-right: 12px;
  margin: -16px 0;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* Suite group labels inside the industries column */
.industries-group-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text-muted);
  opacity: 0.7;
  margin: 10px 12px 2px;
}

.industries-menu-list .industries-group-label:first-child {
  margin-top: 0;
}

.industries-menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industries-menu-list a {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 16px; /* Larger text */
  font-weight: 600;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.industries-menu-list a:hover, .industries-menu-list a.active {
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.08);
}

/* Resources Megamenu specifics */
.resources__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding: 32px;
}

.resources__coll {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.resources-item-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resources-block-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.resources-block-title:hover {
  color: var(--color-accent);
}

.resources-block-title .icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.1);
}

.featured-article-card {
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(9, 30, 58, 0.02);
  transition: var(--transition-smooth);
}

.featured-article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(9, 30, 58, 0.05);
  border-color: rgba(var(--color-accent-rgb), 0.2);
}

.article-card-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.08);
  padding: 6px 16px;
  letter-spacing: 0.5px;
}

.article-card-link {
  display: flex;
  flex-direction: column;
}

.article-card-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.article-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.article-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.article-card-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.read-more-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 4px;
}

.resources-content-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 38px;
}

.content-nav-sublink {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.content-nav-sublink:hover {
  color: var(--color-accent);
}

/* Substack bottom bar in resources */
.megamenu-substack-footer {
  background: #fdfaf5;
  border-top: 1px solid var(--color-border-light);
  padding: 16px 32px;
  display: flex;
  gap: 32px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.substack-footer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-dark);
}

.substack-footer-link:hover {
  color: var(--color-accent);
}

.substack-footer-link img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/* Company Dropdown Link styling */
.company-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.company-dropdown-link:hover {
  background: rgba(8, 34, 73, 0.03);
  color: var(--color-accent);
}

.company-link-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  background: rgba(8, 34, 73, 0.04);
  transition: var(--transition-fast);
}

.company-dropdown-link:hover .company-link-icon {
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.1);
}

/* ============================================================
   PERSONA STRIP & ROLE CHIP STYLING
   ============================================================ */

/* Solution Role Chip */
.solution-role-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.08);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  align-self: flex-start;
  margin-top: -8px;
  margin-bottom: 4px;
}

/* Persona Strip Section */
.persona-section {
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border-light);
}

.persona-subtext {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.persona-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.persona-tab {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.persona-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-text-dark);
}

.persona-tab.active {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 4px 15px rgba(var(--color-accent-rgb), 0.25);
}

.persona-panel-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 991px) {
  .persona-panel-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.persona-pains-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.persona-pain-item {
  display: flex;
  gap: 16px;
}

.persona-pain-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.persona-pain-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.persona-pain-text {
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text-dark);
  line-height: 1.5;
}

.persona-solution-card {
  padding: 36px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition-smooth);
}

.persona-solution-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(8, 34, 73, 0.08), 0 0 20px rgba(var(--color-accent-rgb), 0.15);
}

.persona-sol-badge {
  background: rgba(var(--color-accent-rgb), 0.08);
  color: var(--color-accent);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.persona-sol-name {
  color: var(--color-midnight-blue);
}

.persona-sol-desc {
  color: var(--color-text-muted);
  line-height: 1.55;
  font-size: 16.5px;
}

.persona-sol-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-accent);
  transition: var(--transition-fast);
}

.persona-sol-link:hover {
  color: var(--color-text-dark);
}

.persona-sol-chevron {
  transition: transform 0.2s ease;
}

.persona-sol-link:hover .persona-sol-chevron {
  transform: translateX(4px);
}

/* Inline Blog Backlinks */
.pain-blog-link, .solution-blog-link {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9em;
  font-style: italic;
  transition: var(--transition-fast);
  border-bottom: 1px dashed rgba(var(--color-accent-rgb), 0.4);
  text-decoration: none;
}

.pain-blog-link {
  margin-left: 0;
}

.solution-blog-link {
  margin-left: 6px;
}

.pain-blog-link:hover, .solution-blog-link:hover {
  color: var(--color-text-dark);
  border-bottom-color: var(--color-text-dark);
}

/* ============================================================
   SCROLL REVEAL ANIMATION SYSTEM
   ============================================================ */
.reveal,
.reveal-left,
.reveal-right {
  transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.18s; }
[data-delay="3"] { transition-delay: 0.28s; }
[data-delay="4"] { transition-delay: 0.38s; }

/* ============================================================
   LOGO MARQUEE
   ============================================================ */
.logo-strip-wrapper {
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-strip {
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: max-content;
  animation: logo-marquee 42s linear infinite;
}

.logo-strip:hover {
  animation-play-state: paused;
}

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HERO IMAGE — FLOATING ANIMATION & LARGER SIZE
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-img-wrapper {
  max-width: 520px;
  animation: float 7s ease-in-out infinite;
}

.hero-img-wrapper:hover {
  transform: none;
  animation-play-state: paused;
  box-shadow: 0 30px 60px rgba(9, 30, 58, 0.18), 0 0 30px rgba(var(--color-accent-rgb), 0.12);
  border-color: rgba(8, 34, 73, 0.15);
}

/* ============================================================
   GRADIENT EM TEXT IN HERO HEADLINES
   ============================================================ */
.hero-headline em {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    color-mix(in oklch, var(--color-accent) 55%, #c026d3) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* ============================================================
   NUMBERED PAIN CARDS
   ============================================================ */
.pain-grid {
  counter-reset: pain-counter;
}

.pain-card {
  counter-increment: pain-counter;
  overflow: hidden;
  position: relative;
}

.pain-card::before {
  content: counter(pain-counter, decimal-leading-zero);
  position: absolute;
  top: -12px;
  right: 12px;
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  font-family: var(--font-sans);
  color: rgba(var(--color-accent-rgb), 0.07);
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
  transition: color 0.3s ease;
}

.pain-card:hover::before {
  color: rgba(var(--color-accent-rgb), 0.13);
}

/* ============================================================
   DOT GRID BACKGROUND TEXTURE
   ============================================================ */
.dot-grid-bg {
  background-image: radial-gradient(circle, rgba(9, 30, 58, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ============================================================
   STAT NUMBERS — GRADIENT TREATMENT
   ============================================================ */
.stat-number {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    color-mix(in oklch, var(--color-accent) 70%, white) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   GHOST BUTTON (HERO SECONDARY CTA)
   ============================================================ */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text-dark);
  border: 1px solid rgba(9, 30, 58, 0.14);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: var(--transition-smooth);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(8, 34, 73, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(9, 30, 58, 0.07);
}

/* ============================================================
   FINAL CTA SUB-LABEL
   ============================================================ */
.final-cta-sublabel {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: -12px;
  letter-spacing: 0.01em;
}

/* ============================================================
   INTERACTIVE SHOWCASE SECTION (DARK MODE ACCENT POP)
   ============================================================ */
.showcase-section {
  background: linear-gradient(180deg, #030C08 0%, #061A12 100%);
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: clamp(45px, 6vw, 75px);
  padding-bottom: clamp(30px, 4vw, 55px);
}

.showcase-headline {
  text-align: center;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-family: var(--font-sans);
}

.showcase-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}

@media (max-width: 991px) {
  .showcase-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.showcase-steppers-col {
  display: flex;
  position: relative;
  align-self: stretch;
}

.showcase-triggers-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex-grow: 1;
}

.showcase-visual-card {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(var(--color-accent-rgb, "16, 185, 129"), 0.12);
  overflow: hidden;
  position: relative;
}

.showcase-panels-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 8px;
}

.showcase-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.showcase-panel.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  position: relative;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.showcase-trigger {
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 16px 24px;
  position: relative;
  transition: opacity 0.4s ease;
  opacity: 0.4;
  width: 100%;
}

/* Vertical track border on the left of each trigger */
.showcase-trigger::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 1.5px;
  transition: background-color 0.3s ease;
}

.showcase-trigger:hover {
  opacity: 0.85;
}

.showcase-trigger:hover::before {
  background-color: rgba(255, 255, 255, 0.15);
}

.showcase-trigger.active {
  opacity: 1;
}

.showcase-trigger.active::before {
  background-color: rgba(255, 255, 255, 0.12);
}

/* Vertical progress indicator that fills height */
.showcase-trigger::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0%;
  width: 3px;
  background-color: var(--color-accent, #10B981);
  box-shadow: 0 0 10px rgba(var(--color-accent-rgb, "16, 185, 129"), 0.8);
  border-radius: 1.5px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.showcase-trigger.active::after {
  opacity: 1;
  animation: showcaseVerticalProgress 12s linear forwards;
}

@keyframes showcaseVerticalProgress {
  from { height: 0%; }
  to { height: 100%; }
}

.showcase-col-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
}

.showcase-col-desc {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.5;
  font-family: var(--font-sans);
  font-weight: 400;
}

.showcase-col-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
  padding-top: 8px;
  transition: var(--transition-fast);
  text-decoration: none;
}

.showcase-col-link:hover {
  color: #10B981;
}

.showcase-arrow-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #030C08;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.showcase-trigger:hover .showcase-arrow-btn {
  transform: translateX(4px);
}

.showcase-trigger.active .showcase-arrow-btn {
  background-color: #10B981;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* ============================================================
   STACK SHOWCASE SECTION (DARK MODE INTERACTIVE ACCORDIONS)
   ============================================================ */
.stack-showcase-section {
  background: linear-gradient(180deg, #061A12 0%, #0E121B 100%);
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: clamp(20px, 3vw, 35px);
  padding-bottom: clamp(100px, 12vw, 160px);
}

.stack-headline {
  text-align: center;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-family: var(--font-sans);
}

.stack-subtitle {
  text-align: center;
  font-size: 16px;
  color: #9CA3AF;
  max-width: 720px;
  margin: 16px auto 56px auto;
  line-height: 1.5;
  font-family: var(--font-sans);
}

.stack-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .stack-showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.stack-showcase-left {
  display: flex;
  justify-content: center;
}

.stack-visual-card {
  width: 100%;
  max-width: 580px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 45px rgba(var(--color-accent-rgb), 0.08);
  overflow: hidden;
}

.stack-panels-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 8px;
}

.stack-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stack-panel.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  position: relative;
}

.stack-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Stack cards list styles */
.stack-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stack-card-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0.55;
}

.stack-card-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  opacity: 0.85;
}

.stack-card-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-accent, #10B981);
  box-shadow: 0 0 24px rgba(var(--color-accent-rgb), 0.12);
  opacity: 1;
}

.stack-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  font-family: var(--font-sans);
}

.stack-card-desc {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.5;
  font-family: var(--font-sans);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease, margin-top 0.4s ease;
  margin: 0;
}

.stack-card-item.active .stack-card-desc {
  max-height: 150px;
  opacity: 0.85;
  margin-top: 12px;
}

/* Color definitions for database rotations */
.color-snowflake {
  color: #29B5E8;
  text-shadow: 0 0 15px rgba(41, 181, 232, 0.2);
}

.color-databricks {
  color: #ED3C2C;
  text-shadow: 0 0 15px rgba(237, 60, 44, 0.25);
}

.color-bigquery {
  color: #669DF6;
  text-shadow: 0 0 15px rgba(102, 157, 246, 0.2);
}

.color-salesforce {
  color: #00A1E0;
  text-shadow: 0 0 15px rgba(0, 161, 224, 0.2);
}

.color-marketo {
  color: #9258E2;
  text-shadow: 0 0 15px rgba(146, 88, 226, 0.25);
}

.color-kana {
  color: #10B981;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
}

.color-gam {
  color: #4285F4;
  text-shadow: 0 0 15px rgba(66, 133, 244, 0.2);
}

.color-ganalytics {
  color: #F9AB00;
  text-shadow: 0 0 15px rgba(249, 171, 0, 0.25);
}

.color-cloudflare {
  color: #F6821F;
  text-shadow: 0 0 15px rgba(246, 130, 31, 0.25);
}

.color-shopify {
  color: #96BF48;
  text-shadow: 0 0 15px rgba(150, 191, 72, 0.25);
}

.color-klaviyo {
  color: #D2FF28;
  text-shadow: 0 0 15px rgba(210, 255, 40, 0.2);
}

.color-toast {
  color: #FF4C00;
  text-shadow: 0 0 15px rgba(255, 76, 0, 0.25);
}

.color-punchh {
  color: #E4002B;
  text-shadow: 0 0 15px rgba(228, 0, 43, 0.25);
}

.color-olo {
  color: #0073E6;
  text-shadow: 0 0 15px rgba(0, 115, 230, 0.2);
}

.color-braze {
  color: #B03DF2;
  text-shadow: 0 0 15px rgba(176, 61, 242, 0.25);
}

.color-adobe {
  color: #FA0F00;
  text-shadow: 0 0 15px rgba(250, 15, 0, 0.25);
}

.color-opera {
  color: #C74634;
  text-shadow: 0 0 15px rgba(199, 70, 52, 0.25);
}

.color-duetto {
  color: #00BFB3;
  text-shadow: 0 0 15px rgba(0, 191, 179, 0.25);
}

.color-amplitude {
  color: #2D7FF9;
  text-shadow: 0 0 15px rgba(45, 127, 249, 0.2);
}

.color-epic {
  color: #CE0E2D;
  text-shadow: 0 0 15px rgba(206, 14, 45, 0.25);
}

.color-criteo {
  color: #F26722;
  text-shadow: 0 0 15px rgba(242, 103, 34, 0.25);
}

.color-ttd {
  color: #0099FA;
  text-shadow: 0 0 15px rgba(0, 153, 250, 0.2);
}

.color-megaphone {
  color: #8A6CFF;
  text-shadow: 0 0 15px rgba(138, 108, 255, 0.25);
}

.color-piano {
  color: #3B4CCA;
  text-shadow: 0 0 15px rgba(59, 76, 202, 0.25);
}

.color-freewheel {
  color: #4D8FD6;
  text-shadow: 0 0 15px rgba(77, 143, 214, 0.25);
}

/* ============================================================
   FEATURED CONTENT BAND
   Narrow, light band that sits between the two dark showcase
   sections — a deliberate dark → light → dark contrast break.
   Holds one piece: blog, white paper, webcast, or case study.
   ============================================================ */
.featured-content-section {
  background-color: var(--color-bg-alt);
  padding: clamp(40px, 5vw, 68px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--color-border-light);
}

.featured-content-card {
  max-width: 820px; /* centered on the page */
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 36px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: 18px;
  padding: 44px;
  box-shadow: 0 20px 45px rgba(8, 34, 73, 0.08);
}

.featured-content-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.featured-content-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.featured-content-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background-color: var(--color-white-smoke);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.featured-content-title {
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.featured-content-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 22px;
}

.featured-content-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.featured-content-link:hover {
  gap: 4px;
}

.featured-content-media {
  flex: 0 0 240px;
  border-radius: 12px;
  overflow: hidden;
}

.featured-content-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 760px) {
  .featured-content-card {
    flex-direction: column-reverse;
    padding: 28px;
  }
  .featured-content-media {
    flex-basis: auto;
    height: 180px;
  }
}




