/* ========================================
   ContainAI Landing Page - styles.css
   ======================================== */

/* --- CSS Custom Properties (Theme Tokens) --- */
:root {
  /* Dark mode (default) */
  --bg: #0F1117;
  --card-bg: #161B22;
  --text-primary: #E6EEF1;
  --text-secondary: #8B95A5;
  --accent-blue: #00A8E8;
  --accent-teal: #13D6D6;
  --cta-orange: #F27A3A;
  --navy: #1A1A40;
  --border: rgba(255, 255, 255, 0.08);
  --nav-bg: rgba(15, 17, 23, 0.85);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --card-hover: #1C2330;
  --code-bg: #1E2433;
}

[data-theme="light"] {
  --bg: #FFFFFF;
  --card-bg: #F5F7FA;
  --text-primary: #1A1A2E;
  --text-secondary: #4A5568;
  --border: rgba(0, 0, 0, 0.08);
  --nav-bg: rgba(255, 255, 255, 0.85);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --card-hover: #EDF0F5;
  --code-bg: #E8ECF2;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-teal);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  color: var(--text-secondary);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 48px;
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--cta-orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(242, 122, 58, 0.3);
}

.btn-primary:hover {
  background: #e06a2a;
  color: #fff;
  box-shadow: 0 6px 24px rgba(242, 122, 58, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   1. NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.nav--scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mobile-nav a:hover {
  color: var(--accent-blue);
}

/* ========================================
   2. HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: var(--accent-blue);
  top: -5%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 500px;
  height: 500px;
  background: var(--accent-teal);
  top: 40%;
  left: -10%;
  animation-delay: -3s;
}

.hero-orb--3 {
  width: 400px;
  height: 400px;
  background: var(--cta-orange);
  bottom: 5%;
  right: 10%;
  opacity: 0.12;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

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

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

.hero-center .hero-title {
  max-width: none;
  white-space: nowrap;
}

.hero-center .hero-subtitle {
  max-width: 640px;
}

.hero-center .hero-ctas {
  justify-content: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0, 168, 232, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(0, 168, 232, 0.2);
}

.badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-title {
  max-width: 800px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-compliance-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  opacity: 0.7;
  letter-spacing: 0.3px;
}

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

/* ========================================
   2b. PROCESS TIMELINE
   ======================================== */
.tl-steps {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.tl-step {
  display: flex;
  gap: 24px;
}

.tl-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.tl-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.tl-node svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.tl-node--blue {
  background: var(--accent-blue);
  box-shadow: 0 0 20px rgba(0, 168, 232, 0.3);
}

.tl-node--teal {
  background: var(--accent-teal);
  box-shadow: 0 0 20px rgba(19, 214, 214, 0.3);
}

.tl-node--orange {
  background: var(--cta-orange);
  box-shadow: 0 0 20px rgba(242, 122, 58, 0.3);
}

.tl-node--green {
  background: #10b981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.tl-line {
  width: 2px;
  flex-grow: 1;
  background: linear-gradient(to bottom, var(--border), var(--border));
  margin: 4px 0;
}

.tl-content {
  padding-bottom: 36px;
  flex: 1;
}

.tl-step:last-child .tl-content {
  padding-bottom: 0;
}

.tl-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.tl-day {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 4px;
}

.tl-day--green {
  color: #10b981;
}

.tl-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
}

.tl-content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.tl-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.tl-badge--blue {
  background: rgba(0, 168, 232, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(0, 168, 232, 0.2);
}

.tl-badge--teal {
  background: rgba(19, 214, 214, 0.1);
  color: var(--accent-teal);
  border: 1px solid rgba(19, 214, 214, 0.2);
}

.tl-badge--orange {
  background: rgba(242, 122, 58, 0.1);
  color: var(--cta-orange);
  border: 1px solid rgba(242, 122, 58, 0.2);
}

.tl-badge--green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.tl-guarantee {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid rgba(0, 168, 232, 0.2);
}

.tl-guarantee-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-guarantee-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.tl-guarantee-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tl-guarantee-copy strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
}

.tl-guarantee-copy span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   VIDEO TESTIMONIAL
   ======================================== */
.vt-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: #000;
}

.vt-video {
  position: absolute;
  inset: 0;
}

.vt-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 40%, rgba(0, 0, 0, 0.7) 65%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 48px;
}

.vt-content {
  max-width: 380px;
}

.vt-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 24px;
}

.vt-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.vt-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0A66C2;
  flex-shrink: 0;
}

.vt-linkedin svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.vt-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.vt-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.vt-more:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .vt-wrapper {
    aspect-ratio: auto;
    min-height: 420px;
  }

  .vt-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 50%, transparent 100%);
    align-items: flex-end;
    justify-content: flex-start;
    padding: 28px;
  }

  .vt-content {
    max-width: 100%;
  }

  .vt-quote {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .vt-overlay {
    padding: 20px;
  }

  .vt-quote {
    font-size: 0.9rem;
  }
}

/* ========================================
   VIDEO TESTIMONIAL (SPLIT)
   ======================================== */
.vts-wrapper {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
}

.vts-video {
  flex: 1;
  position: relative;
  background: #000;
}

.vts-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vts-panel {
  width: 380px;
  flex-shrink: 0;
  background: var(--card-bg);
  border-left: 1px solid var(--border);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vts-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.vts-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.vts-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0A66C2;
  flex-shrink: 0;
}

.vts-linkedin svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.vts-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.vts-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: transparent;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  font-family: 'Inter', sans-serif;
  align-self: flex-start;
}

.vts-more:hover {
  border-color: var(--accent-blue);
  background: rgba(0, 168, 232, 0.08);
}

@media (max-width: 768px) {
  .vts-wrapper {
    flex-direction: column;
    aspect-ratio: auto;
  }

  .vts-video {
    flex: none;
    width: 100%;
    height: 220px;
    overflow: hidden;
  }

  .vts-video video {
    object-position: center 40%;
  }

  .vts-panel {
    width: 100%;
    padding: 28px 24px;
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .vts-quote {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .vts-panel {
    padding: 24px 16px;
  }

  .vts-quote {
    font-size: 0.9rem;
  }
}

/* ========================================
   VIDEO TESTIMONIAL (VERTICAL)
   ======================================== */
.vtv-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 520px;
}

.vtv-bg {
  position: absolute;
  inset: -20px;
  z-index: 0;
}

.vtv-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(30px) brightness(0.4);
  transform: scale(1.1);
}

.vtv-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px 48px;
  height: 100%;
  min-height: 520px;
}

.vtv-video {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.vtv-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vtv-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vtv-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 28px;
  min-height: 6.5em;
}

.vtv-quote::after {
  content: '|';
  animation: blink-cursor 0.7s step-end infinite;
  font-weight: 300;
  margin-left: 2px;
  color: var(--accent-teal);
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.vtv-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.vtv-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0A66C2;
  flex-shrink: 0;
}

.vtv-linkedin svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.vtv-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.vtv-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  font-family: 'Inter', sans-serif;
  align-self: flex-start;
}

.vtv-more:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .vtv-inner {
    flex-direction: column;
    padding: 32px 24px;
    min-height: auto;
  }

  .vtv-wrapper {
    min-height: auto;
  }

  .vtv-video {
    width: 200px;
  }

  .vtv-quote {
    font-size: 1.05rem;
    text-align: center;
  }

  .vtv-author {
    justify-content: center;
  }

  .vtv-more {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .vtv-inner {
    padding: 24px 16px;
  }

  .vtv-video {
    width: 160px;
  }

  .vtv-quote {
    font-size: 0.95rem;
  }
}

/* ========================================
   2c. INTEGRATIONS + COMPLIANCE
   ======================================== */

/* Showcase card */
.integ-showcase {
  background: linear-gradient(160deg, var(--card-bg) 0%, rgba(0, 168, 232, 0.06) 50%, var(--card-bg) 100%);
  border: 1px solid rgba(0, 168, 232, 0.15);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Center text block */
.integ-text {
  padding: 2.5rem 3rem;
  text-align: center;
}

.integ-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.integ-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Marquee */
.integ-marquee-wrap {
  padding: 1.25rem 0;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.integ-marquee-wrap--bottom {
  padding: 0.75rem 0 1.5rem;
}

.marquee-row {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0.6rem;
  width: max-content;
  animation: marqueeLeft var(--marquee-speed, 28s) linear infinite;
}

.marquee-row--reverse .marquee-track {
  animation: marqueeRight var(--marquee-speed, 22s) linear infinite;
}

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

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

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

.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(0, 168, 232, 0.04);
  border: 1px solid rgba(0, 168, 232, 0.15);
  border-radius: 50px;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
  cursor: default;
}

.marquee-pill:hover {
  border-color: rgba(0, 168, 232, 0.5);
  color: var(--text-primary);
  background: rgba(0, 168, 232, 0.1);
  box-shadow: 0 0 12px rgba(0, 168, 232, 0.15);
}

.marquee-pill i {
  font-size: 0.95rem;
  flex-shrink: 0;
}

[data-theme="light"] .marquee-pill {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .marquee-pill:hover {
  box-shadow: 0 4px 16px rgba(0, 168, 232, 0.14);
}

/* Bottom cards row */
.integ-bottom-row {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
  margin-top: 24px;
  align-items: stretch;
}

/* Shared card */
.integ-card {
  background: linear-gradient(160deg, var(--card-bg) 0%, rgba(0, 168, 232, 0.05) 100%);
  border: 1px solid rgba(0, 168, 232, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.integ-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

/* Compliance card */
.integ-card--compliance {
  padding: 0;
}

.integ-card--compliance::before {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
}

.integ-card-text {
  padding: 2.25rem 2.25rem 1.25rem;
}

.integ-card-text h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.integ-card-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.integ-badges-image {
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.integ-badges-image img {
  width: 100%;
  display: block;
  margin-top: -18%;
  margin-bottom: -18%;
}

[data-theme="light"] .integ-badges-image img {
  filter: invert(1);
}

/* Deploy card */
.integ-card--deploy {
  padding: 2.25rem;
}

.integ-card--deploy::before {
  background: linear-gradient(90deg, var(--accent-teal), var(--cta-orange));
}

.integ-card--deploy h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--text-primary), var(--cta-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.integ-card--deploy > p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.integ-providers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.integ-provider-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.06) 0%, rgba(19, 214, 214, 0.08) 100%);
  border: 1px solid rgba(0, 168, 232, 0.15);
  transition: all 0.3s ease;
  cursor: default;
}

.integ-provider-tile:hover {
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.12) 0%, rgba(19, 214, 214, 0.16) 100%);
  border-color: rgba(0, 168, 232, 0.35);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 168, 232, 0.1);
}

.integ-provider-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.integ-provider-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.integ-provider-info strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.integ-provider-info span {
  font-size: 0.72rem;
  color: var(--text-secondary);
  opacity: 0.7;
  line-height: 1.2;
}

.integ-provider-check {
  width: 18px;
  height: 18px;
  fill: var(--accent-teal);
  opacity: 0.7;
  flex-shrink: 0;
}

.integ-provider-tile:hover .integ-provider-check {
  opacity: 1;
}

.integ-deploy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.integ-deploy-note svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-blue);
  flex-shrink: 0;
}

/* ========================================
   3. PAIN POINTS
   ======================================== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--cta-orange);
}

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(242, 122, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--cta-orange);
}

.pain-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.pain-card h3 {
  margin-bottom: 12px;
  font-size: 1.125rem;
}

.pain-card p {
  font-size: 0.95rem;
}

/* ========================================
   4. SOLUTION OVERVIEW
   ======================================== */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.solution-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.solution-check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(19, 214, 214, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  margin-top: 2px;
}

.solution-check svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.solution-item h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.solution-item p {
  font-size: 0.95rem;
}

.solution-visual {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.solution-visual-inner {
  text-align: center;
  color: var(--text-secondary);
}

.solution-visual-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-visual-icon svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

/* ========================================
   5. LIVE DEMOS
   ======================================== */
.demos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.demo-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-blue);
}

.demo-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.demo-tag {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.demo-tag--lang {
  background: rgba(0, 168, 232, 0.1);
  color: var(--accent-blue);
}

.demo-tag--type {
  background: rgba(19, 214, 214, 0.1);
  color: var(--accent-teal);
}

.demo-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.demo-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.demo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-blue);
}

.demo-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.demo-link:hover svg {
  transform: translateX(4px);
}

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

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  transition: background 0.3s ease, color 0.3s ease;
}

.process-step:hover .process-number {
  background: var(--accent-blue);
  color: #fff;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  max-width: 220px;
  margin: 0 auto;
}

/* ========================================
   7. USE CASES
   ======================================== */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.usecase-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-teal);
}

.usecase-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 168, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-blue);
}

.usecase-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.usecase-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.usecase-card p {
  font-size: 0.9rem;
}

/* ========================================
   PRICING
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card--popular {
  border: 2px solid var(--accent-blue);
}

.pricing-card--popular::before {
  display: none;
}

.pricing-card--free {
  border: 1px solid var(--border);
}

.pricing-card--free::before {
  display: none;
}

.pricing-badge--free {
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
}

.pricing-card--custom {
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.pricing-card-header {
  margin-bottom: 24px;
}

.pricing-card-header h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-starting {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-right: 4px;
}

.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-detail {
  font-size: 0.85rem;
  color: var(--accent-teal);
  font-weight: 500;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  fill: var(--accent-teal);
}

.pricing-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-card-body-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--accent-blue);
  background: rgba(0, 168, 232, 0.08);
}

/* ========================================
   LEADERSHIP
   ======================================== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.leadership-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.leadership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.12);
}

.leadership-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.leadership-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.leadership-photo:hover img {
  transform: scale(1.05);
}

.leadership-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.leadership-role-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
}

.leadership-role {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.leadership-role-sep {
  color: var(--text-secondary);
  opacity: 0.5;
}

.leadership-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.leadership-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.leadership-controls {
  display: none;
}

.leadership-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: auto;
}

.leadership-linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  box-shadow: 0 0 15px rgba(10, 102, 194, 0.5);
}

.leadership-linkedin svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
  transition: fill 0.3s ease;
}

.leadership-linkedin:hover svg {
  fill: #fff;
}

/* ========================================
   8. DEPLOYMENT OPTIONS
   ======================================== */
.deploy-toggle {
  display: none;
}

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

.deploy-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.deploy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.deploy-card--cloud::before {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
}

.deploy-card--onprem::before {
  background: linear-gradient(90deg, var(--accent-teal), var(--cta-orange));
}

.deploy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.deploy-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.deploy-card > p {
  margin-bottom: 24px;
}

.deploy-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deploy-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.deploy-feature svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  fill: var(--accent-teal);
}

/* ========================================
   9. TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--accent-blue);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ========================================
   10. FAQ
   ======================================== */
.faq-list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

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

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-blue);
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   11. FINAL CTA
   ======================================== */
.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-glow {
  display: inline-flex;
  position: relative;
}

.cta-glow .btn {
  position: relative;
  z-index: 1;
}

.cta-glow::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  background: var(--cta-orange);
  opacity: 0.4;
  filter: blur(16px);
  animation: pulseGlow 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

/* ========================================
   12. FOOTER
   ======================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-email {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-email:hover {
  color: var(--accent-blue);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1200px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 120px;
    padding-bottom: 64px;
  }

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

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

  .solution-visual {
    height: 280px;
  }

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

  .tl-content p {
    display: none;
  }

  .tl-content {
    padding-bottom: 24px;
  }

  .tl-node {
    width: 40px;
    height: 40px;
  }

  .tl-node svg {
    width: 18px;
    height: 18px;
  }

  .tl-track {
    min-width: 40px;
  }

  .tl-step {
    gap: 16px;
  }

  .tl-row {
    flex-direction: column;
    gap: 6px;
  }

  .tl-guarantee {
    flex-direction: column;
    text-align: center;
    margin-top: 32px;
    padding: 20px;
  }

  .tl-guarantee-copy span {
    font-size: 0.85rem;
  }

  .integ-text {
    padding: 1.5rem 1.25rem;
  }

  .integ-text h3 {
    font-size: 1.25rem;
  }

  .integ-bottom-row {
    grid-template-columns: 1fr;
  }

  .integ-card-text {
    padding: 1.75rem 1.5rem 1rem;
  }

  .integ-card-text h3 {
    font-size: 1.2rem;
  }

  .integ-card--deploy {
    padding: 1.75rem 1.5rem;
  }

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

  .process-timeline::before {
    display: none;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .pricing-card {
    border-radius: 0;
    padding: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
  }

  .pricing-card:last-child {
    border-bottom: none;
  }

  .pricing-card:hover {
    transform: none;
    box-shadow: none;
  }

  .pricing-card--popular,
  .pricing-card--free,
  .pricing-card--custom {
    border: none;
    border-bottom: 1px solid var(--border);
  }

  .pricing-card--popular:last-child,
  .pricing-card--free:last-child,
  .pricing-card--custom:last-child {
    border-bottom: none;
  }

  .pricing-card--popular::before,
  .pricing-card--free::before {
    display: none;
  }

  /* Hide badges in accordion header */
  .pricing-badge {
    display: none;
  }

  .pricing-card-header {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 0;
    gap: 0;
  }

  .pricing-card-header h3 {
    margin-bottom: 0;
    font-size: 1rem;
    flex: 1;
    min-width: 0;
  }

  .pricing-price {
    margin-bottom: 0;
    margin-left: auto;
    flex-shrink: 0;
  }

  .pricing-amount {
    font-size: 1.1rem;
  }

  .pricing-starting {
    font-size: 0.75rem;
  }

  .pricing-desc {
    display: none;
  }

  .pricing-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .pricing-card-body-inner {
    padding: 0 20px 20px;
  }

  .pricing-card.is-open .pricing-card-body {
    max-height: 600px;
  }

  .pricing-card-header::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-left: 16px;
    flex-shrink: 0;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
  }

  .pricing-card.is-open .pricing-card-header::after {
    content: '\2212';
  }

  .pricing-features {
    margin-bottom: 16px;
  }

  .pricing-cta {
    margin-bottom: 0;
  }

  .leadership-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 360px;
    overflow: hidden;
    touch-action: pan-y;
    max-width: 100%;
  }

  .leadership-card {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px 16px;
    width: 210px;
    will-change: transform, opacity;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: none;
  }

  .leadership-card:hover {
    transform: none;
    box-shadow: none;
  }

  .leadership-card[data-pos="0"] {
    transform: translateX(0) scale(1.05);
    opacity: 1;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  .leadership-card[data-pos="-1"] {
    transform: translateX(-155px) scale(0.78);
    opacity: 0.4;
    z-index: 1;
    filter: blur(1px);
  }

  .leadership-card[data-pos="1"] {
    transform: translateX(155px) scale(0.78);
    opacity: 0.4;
    z-index: 1;
    filter: blur(1px);
  }

  .leadership-photo {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }

  .leadership-card h3 {
    font-size: 0.95rem;
  }

  .leadership-role-row {
    font-size: 0.78rem;
    margin-bottom: 8px;
  }

  .leadership-role {
    font-size: 0.78rem;
  }

  .leadership-title {
    font-size: 0.78rem;
  }

  .leadership-desc {
    display: none;
  }

  .leadership-card[data-pos="0"] .leadership-desc {
    display: block;
    font-size: 0.78rem;
    margin-bottom: 16px;
  }

  .leadership-linkedin {
    width: 32px;
    height: 32px;
  }

  .leadership-linkedin svg {
    width: 14px;
    height: 14px;
  }

  .leadership-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
  }

  .leadership-ctrl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .leadership-ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .leadership-dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .leadership-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
  }

  .leadership-dot.is-active {
    width: 24px;
    border-radius: 3px;
    background: var(--accent-blue);
  }

  .deploy-grid {
    display: block;
  }

  .deploy-toggle {
    display: flex;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 16px;
  }

  .deploy-toggle-btn {
    flex: 1;
    padding: 10px 0;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .deploy-toggle-btn.is-active {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
    color: #fff;
  }

  .deploy-card {
    display: none;
    padding: 24px 20px;
    border-radius: 12px;
    animation: deployFadeIn 0.3s ease;
  }

  .deploy-card.is-visible {
    display: block;
  }

  .deploy-card::before {
    display: none;
  }

  .deploy-card:hover {
    transform: none;
    box-shadow: none;
  }

  @keyframes deployFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

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

  .footer-simple {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-email {
    order: 3;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-center .hero-title {
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .deploy-card h3 {
    font-size: 1.25rem;
  }

  .final-cta .btn-primary {
    font-size: 1rem !important;
    padding: 16px 28px !important;
  }

  .integ-badges-image img {
    margin-top: -10%;
    margin-bottom: -10%;
  }

  .integ-provider-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .integ-provider-tile {
    padding: 10px 12px;
    gap: 10px;
  }

  .hero-orb--1 {
    width: 300px;
    height: 300px;
  }

  .hero-orb--2 {
    width: 250px;
    height: 250px;
  }

  .hero-orb--3 {
    width: 200px;
    height: 200px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .integ-text {
    padding: 1.25rem 1rem;
  }

  .integ-text h3 {
    font-size: 1.1rem;
  }

  .integ-text p {
    font-size: 0.85rem;
  }

  .integ-card-text {
    padding: 1.5rem 1.25rem 0.75rem;
  }

  .integ-card--deploy {
    padding: 1.5rem 1.25rem;
  }

  .integ-card--deploy h3 {
    font-size: 1.1rem;
  }

  .deploy-card {
    padding: 24px 16px;
  }

  .tl-guarantee {
    padding: 16px;
  }

  .tl-guarantee-copy strong {
    font-size: 0.9rem;
  }

  .tl-guarantee-copy span {
    font-size: 0.8rem;
  }

  .footer {
    padding: 28px 0;
  }
}

/* Large screens */
@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }
}
