/* ===== THEME VARIABLES & GLOBAL (unchanged) ===== */
html {
  --color-bg-primary: #000000;
  --color-bg-secondary: #0f0f0f;
  --color-bg-tertiary: #1a1a1a;
  --color-text-primary: #ffffff;
  --color-text-secondary: #b0b0b0;
  --color-accent-primary: #00c884;
  --color-accent-secondary: #00e8a3;
  --color-accent-gold: #00c884;
  --color-accent-green: #00c884;
  --color-border: #1a1a1a;
  --transition-speed: 0.3s;
  scroll-behavior: smooth;
}

html[data-theme='light'],
[data-theme='light'] {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f5f5f5;
  --color-bg-tertiary: #eeeeee;
  --color-text-primary: #000000;
  --color-text-secondary: #333333;
  --color-accent-primary: #00b876;
  --color-accent-secondary: #00d699;
  --color-accent-gold: #00b876;
  --color-accent-green: #00b876;
  --color-border: #e0e0e0;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
    sans-serif;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  transition: background-color var(--transition-speed),
    color var(--transition-speed);
}
/* ===== SECTION BASE STYLES ===== */

.section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== HEADER & NAVIGATION (DESKTOP + MOBILE) ===== */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
  background-color: rgba(10, 14, 39, 0.95);
  transition: all var(--transition-speed);
}

[data-theme='light'] header {
  background-color: rgba(255, 255, 255, 0.95);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  height: 60px;
  text-decoration: none;
}

.logo-img {
  height: 100%;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  background: none;
}

/* Desktop layout: nav links + right buttons inline */
.mobile-menu {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  margin: 0;
}

.nav-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-speed);
  font-size: 0.95rem;
}

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

/* Right side: theme toggle + buttons */
.nav-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all var(--transition-speed);
  font-size: 0.9rem;
  white-space: nowrap;
}

.theme-toggle:hover {
  background-color: var(--color-bg-secondary);
}

/* Primary button (original gradient) */
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-accent-primary),
    var(--color-accent-secondary)
  );
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

/* Secondary button (unchanged) */
.btn-secondary {
  background-color: transparent;
  color: var(--color-accent-primary);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-accent-primary);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-speed);
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: var(--color-accent-primary);
  color: white;
}

/* Hamburger button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 5px;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--color-text-primary);
  border-radius: 2px;
  transition: all 300ms ease;
  display: block;
}

.hamburger-menu[aria-expanded='true'] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu[aria-expanded='true'] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== RESPONSIVE NAV (MOBILE) ===== */

@media (max-width: 768px) {
  nav {
    padding: 1rem 1rem;
    gap: 0.5rem;
  }

  .logo-img {
    height: 40px;
  }

  .hamburger-menu {
    display: flex;
  }

  /* Collapsible wrapper */
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms ease;
    z-index: 999;
  }

  .mobile-menu.mobile-menu-expanded {
    max-height: 700px; /* enough for links + buttons */
  }

  /* Links at top */
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem 0.5rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links li {
    padding: 0.25rem 0;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.5rem 0;
    display: block;
  }

  /* Buttons below */
  .nav-right {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem 1.25rem;
  }

  .nav-right button,
  .nav-right a {
    width: 100%;
    text-align: center;
  }

  .nav-right .theme-toggle {
    padding: 0.65rem 1rem;
  }

  .nav-right .btn-primary {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0;
  }

  nav {
    padding: 0.75rem 1rem;
  }

  .logo-img {
    height: 36px;
  }

  .hamburger-menu span {
    width: 22px;
    height: 2.5px;
  }

  .mobile-menu.mobile-menu-expanded {
    max-height: 750px;
  }

  .nav-links {
    padding: 0.75rem 1rem 0.5rem;
  }

  .nav-right {
    padding: 0.75rem 1rem 1.25rem;
  }

  .nav-right .theme-toggle {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .nav-right .btn-primary {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
}

/* Base hero tweaks (desktop + mobile) */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* slight bias for text */
  gap: 3rem;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.15;
}

.hero-content p {
  max-width: 36rem;
}

/* Ensure image is fluid */
.hero-animation-container {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 2rem auto;
  max-width: 1100px;
}

.hero-animation-container:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
  transform: translateY(-4px);
}

.process-flow-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  max-width: 100%;
}

/* ===== Tablets & small laptops ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }

  .hero-content {
    order: 1;
    text-align: left;
  }

  .hero-animation-container {
    order: 2;
    margin: 0 auto 1.5rem;
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }
}

/* ===== Mobile (iPhone portrait and similar) ===== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.25rem 2rem;
    gap: 2rem;
  }

  .hero-content {
    align-items: flex-start;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

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

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-animation-container {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border-radius: 16px;
  }

  .process-flow-image {
    border-radius: 12px;
  }
}

/* ===== Extra small (≤ 480px) ===== */
@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem 1.75rem;
    gap: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-animation-container {
    padding: 0.6rem;
  }
}
/* ===== PRODUCT VIDEO SECTION ===== */

/* Container wrapper - centered max-width box */
.style-0 {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Main heading */
.style-1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
}

/* Subtitle */
.style-2 {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
}

/* Video wrapper container - with gradient background */
.style-3 {
  position: relative;
  background: radial-gradient(
    circle at top,
    #1a2733 0%,
    #05070d 55%,
    #020308 100%
  );
  border-radius: 24px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

/* Inner card container */
.style-4 {
  background: #05070d;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
}

/* Video inner wrapper */
.style-5 {
  position: relative;
  width: 100%;
  background: #020308;
}

/* Video element itself - responsive */
.style-6 {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Animated bottom bar/indicator */
.style-7 {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.05)
  );
}

/* ===== RESPONSIVE VIDEO SECTION ===== */

/* Tablets & medium screens */
@media (max-width: 1024px) {
  .style-0 {
    max-width: 100%;
    padding: 0 1.5rem;
  }

  .style-1 {
    font-size: 2rem;
  }

  .style-2 {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .style-3 {
    padding: 1.25rem;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  }

  .style-4 {
    border-radius: 16px;
  }
}

/* Mobile landscape & small tablets */
@media (max-width: 768px) {
  .style-0 {
    padding: 0 1rem;
  }

  .style-1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .style-2 {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .style-3 {
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  }

  .style-4 {
    border-radius: 14px;
  }

  .style-5 {
    border-radius: 12px;
    overflow: hidden;
  }

  .style-6 {
    aspect-ratio: 16 / 9;
  }
}

/* Extra small (iPhone portrait & similar) */
@media (max-width: 480px) {
  .style-0 {
    padding: 0 0.75rem;
  }

  .style-1 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }

  .style-2 {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .style-3 {
    padding: 0.75rem;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }

  .style-4 {
    border-radius: 12px;
  }

  .style-5 {
    border-radius: 10px;
  }

  .style-6 {
    aspect-ratio: 16 / 9;
  }

  .style-7 {
    bottom: 8px;
    width: 35px;
  }
}
/* ===== PLATFORM/DASHBOARD SECTION (Updated) ===== */

#platform {
  padding: 5rem 2rem 4rem;
}

/* Top centered header wrapper */
.style-35 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

/* Main section heading */
.style-36 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

/* Subtitle text */
.style-37 {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Two-column grid layout: text left, image right */
.style-38 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 4rem;
  align-items: flex-start;
}

/* Left column: subheading */
.style-39 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  color: var(--color-text-primary);
}

/* Left column: description paragraph */
.style-40 {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Feature list container */
.style-41 {
  margin-bottom: 2.5rem;
}

/* Individual feature item */
.style-42 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

/* Feature checkmark */
.style-43 {
  color: var(--color-accent-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

/* Feature text */
.style-44 {
  font-size: 1rem;
  color: var(--color-text-primary);
}

/* Last feature item (alternative styling if needed) */
.style-45 {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

/* Right column: image wrapper */
.style-46 {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

/* Image container card */
.style-47 {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

/* Image itself - responsive */
.style-48 {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

/* ===== RESPONSIVE PLATFORM SECTION ===== */

/* Tablets & medium screens */
@media (max-width: 1024px) {
  #platform {
    padding: 4rem 1.5rem 3rem;
  }

  .style-35 {
    margin-bottom: 3.5rem;
  }

  .style-36 {
    font-size: 2.5rem;
  }

  .style-37 {
    font-size: 1rem;
  }

  .style-38 {
    gap: 3rem;
  }

  .style-39 {
    font-size: 1.8rem;
  }

  .style-40 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .style-47 {
    max-width: 100%;
    padding: 1rem;
  }
}

/* Mobile landscape & small tablets */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1.25rem;
  }

  #platform {
    padding: 3rem 1.25rem 2.5rem;
  }

  .style-35 {
    margin-bottom: 2.5rem;
  }

  .style-36 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .style-37 {
    font-size: 0.95rem;
  }

  /* STACK VERTICALLY: image below text */
  .style-38 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
  }

  .style-39 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .style-40 {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .style-42 {
    margin-bottom: 0.75rem;
  }

  .style-43 {
    font-size: 1rem;
    margin-right: 0.5rem;
  }

  .style-44 {
    font-size: 0.95rem;
  }

  .style-41 {
    margin-bottom: 2rem;
  }

  .style-47 {
    margin-left: 0;
    padding: 0.75rem;
    border-radius: 16px;
  }

  .style-48 {
    border-radius: 12px;
  }
}

/* Extra small (iPhone portrait & similar) */
@media (max-width: 480px) {
  .section {
    padding: 2.5rem 1rem;
  }

  #platform {
    padding: 2.5rem 1rem 2rem;
  }

  .style-35 {
    margin-bottom: 2rem;
  }

  .style-36 {
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
  }

  .style-37 {
    font-size: 0.9rem;
  }

  .style-38 {
    gap: 2rem;
  }

  .style-39 {
    font-size: 1.3rem;
  }

  .style-40 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .style-42 {
    margin-bottom: 0.65rem;
    gap: 0.5rem;
  }

  .style-43 {
    font-size: 0.95rem;
  }

  .style-44 {
    font-size: 0.9rem;
  }

  .style-41 {
    margin-bottom: 1.5rem;
  }

  .style-47 {
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }

  .style-48 {
    border-radius: 10px;
  }
}
/* ===== PET FRAMEWORK / QUALITY & PRIVACY SCORES SECTION ===== */

/* Main two-column grid wrapper */
.style-49 {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 4rem;
  align-items: center;
}

/* Left: Quality & Privacy Card Container */
.style-50 {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Card heading */
.style-51 {
  margin: 0 0 1.25rem 0;
  font-size: 1rem;
  color: var(--color-text-primary);
}

/* Top metrics grid (3 columns) */
.style-52 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Standard metric card */
.style-53 {
  background-color: var(--color-bg-secondary);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 90px;
}

/* Metric label */
.style-54 {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

/* Metric value (large number) */
.style-55 {
  font-size: 1.6rem;
  font-weight: 700;
}

/* Percent symbol */
.style-56 {
  font-size: 1rem;
  font-weight: 600;
}

/* Highlighted metric card (Quality) */
.style-57 {
  background-color: var(--color-bg-secondary);
  border-radius: 14px;
  border: 1px solid var(--color-accent-primary);
  box-shadow: 0 0 0 1px rgba(0, 200, 132, 0.25);
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 90px;
}

/* Bottom metrics grid (2 columns) */
.style-58 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

/* Right: Main heading */
.style-59 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--color-text-primary);
}

/* Right: Description paragraph */
.style-60 {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 34rem;
}

/* Feature list container */
.style-61 {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Individual feature item */
.style-62 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

/* Checkmark */
.style-63 {
  color: var(--color-accent-primary);
  margin-top: 0.1rem;
}

/* Feature text */
.style-64 {
  font-size: 0.98rem;
  color: var(--color-text-primary);
}

/* ===== RESPONSIVE PET FRAMEWORK ===== */

/* Tablets & medium screens */
@media (max-width: 1024px) {
  .style-49 {
    gap: 3rem;
  }

  .style-50 {
    padding: 1.75rem 1.75rem;
  }

  .style-59 {
    font-size: 2.4rem;
  }

  .style-60 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .style-52,
  .style-58 {
    gap: 0.75rem;
  }

  .style-53,
  .style-57 {
    padding: 1rem 1.1rem;
    min-height: 85px;
  }

  .style-54 {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .style-55 {
    font-size: 1.45rem;
  }
}

/* Mobile landscape & small tablets */
@media (max-width: 768px) {
  /* STACK VERTICALLY: Card above text */
  .style-49 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: stretch;
  }

  .style-50 {
    padding: 1.5rem 1.75rem;
    order: 1;
  }

  .style-59 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .style-60 {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .style-62 {
    gap: 0.65rem;
  }

  .style-63 {
    font-size: 0.95rem;
  }

  .style-64 {
    font-size: 0.9rem;
  }

  .style-52,
  .style-58 {
    gap: 0.75rem;
  }

  .style-53,
  .style-57 {
    padding: 1rem 1.1rem;
    min-height: auto;
    border-radius: 12px;
  }

  .style-54 {
    font-size: 0.8rem;
  }

  .style-55 {
    font-size: 1.35rem;
  }

  .style-51 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
}

/* Extra small (iPhone portrait & similar) */
@media (max-width: 480px) {
  .style-49 {
    gap: 2rem;
  }

  .style-50 {
    padding: 1.25rem 1.5rem;
  }

  .style-51 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .style-52,
  .style-58 {
    gap: 0.65rem;
  }

  .style-53,
  .style-57 {
    padding: 0.9rem 1rem;
    border-radius: 10px;
  }

  .style-54 {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
  }

  .style-55 {
    font-size: 1.25rem;
  }

  .style-56 {
    font-size: 0.85rem;
  }

  .style-59 {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
  }

  .style-60 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .style-61 {
    gap: 0.75rem;
  }

  .style-62 {
    gap: 0.5rem;
  }

  .style-63 {
    font-size: 0.9rem;
    margin-top: 0.05rem;
  }

  .style-64 {
    font-size: 0.85rem;
  }
}
/* ===== ACTIVE GENERATION JOBS SECTION ===== */

/* Main two-column grid wrapper */
.style-65 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 4rem;
  align-items: center;
}

/* Left side: heading */
.style-66 {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
}

/* Left side: description paragraph */
.style-67 {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

/* Feature list */
.style-68 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: var(--color-text-secondary);
}

/* Individual list item */
.style-69 {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

/* Checkmark icon */
.style-70 {
  color: var(--color-accent-primary);
  margin-top: 0.15rem;
}

/* Right side: Job card container */
.style-71 {
  background-color: var(--color-bg-tertiary);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 2rem 2.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

/* Card heading */
.style-72 {
  margin: 0 0 1.5rem 0;
  font-size: 1rem;
  color: var(--color-text-primary);
}

/* Jobs list container */
.style-73 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

/* Individual job row */
.style-74 {
  background-color: var(--color-bg-secondary);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  padding: 1rem 1.25rem 1.1rem;
}

/* Job header: name + status info */
.style-75 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

/* Job ID label */
.style-76 {
  font-weight: 700;
}

/* Job name */
.style-77 {
  margin-left: 0.35rem;
  color: var(--color-text-secondary);
}

/* Job meta row: rows, status, time */
.style-78 {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* Status badge: RUNNING */
.style-79 {
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 200, 132, 0.12);
  color: var(--color-accent-primary);
  font-weight: 600;
  font-size: 0.8rem;
}

/* Progress bar wrapper */
.style-80 {
  margin-top: 0.4rem;
}

/* Progress bar background */
.style-81 {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

/* Progress bar fill: RUNNING (95%) */
.style-82 {
  width: 95%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-accent-primary),
    var(--color-accent-secondary)
  );
}

/* Progress label */
.style-83 {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  display: flex;
  justify-content: space-between;
}

/* Status badge: COMPLETED */
.style-84 {
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.18);
  color: #16a34a;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Progress bar fill: COMPLETED (100%) */
.style-85 {
  width: 85%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-accent-primary),
    var(--color-accent-secondary)
  );
}

/* Status badge: FAILED */
.style-86 {
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.16);
  color: #ef4444;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Progress bar fill: FAILED (45%) */
.style-87 {
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-accent-primary),
    var(--color-accent-secondary)
  );
}

/* ===== RESPONSIVE ACTIVE GENERATION JOBS ===== */

/* Tablets & medium screens */
@media (max-width: 1024px) {
  .style-65 {
    gap: 3rem;
  }

  .style-66 {
    font-size: 2.5rem;
  }

  .style-67 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .style-71 {
    padding: 1.75rem 1.75rem;
  }

  .style-74 {
    padding: 0.9rem 1.1rem 1rem;
  }
}

/* Mobile landscape & small tablets */
@media (max-width: 768px) {
  /* STACK VERTICALLY: text above card */
  .style-65 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: stretch;
  }

  .style-66 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .style-67 {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .style-68 {
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .style-69 {
    gap: 0.5rem;
  }

  .style-70 {
    margin-top: 0.1rem;
  }

  .style-71 {
    padding: 1.5rem 1.75rem;
    order: 2;
  }

  .style-72 {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .style-73 {
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .style-74 {
    padding: 0.8rem 1rem 0.9rem;
    border-radius: 12px;
  }

  .style-75 {
    margin-bottom: 0.3rem;
  }

  .style-78 {
    gap: 0.7rem;
    font-size: 0.8rem;
  }

  .style-83 {
    font-size: 0.75rem;
    margin-top: 0.3rem;
  }

  .style-81 {
    height: 5px;
  }
}

/* Extra small (iPhone portrait & similar) */
@media (max-width: 480px) {
  .style-65 {
    gap: 2rem;
  }

  .style-66 {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
  }

  .style-67 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .style-68 {
    gap: 0.4rem;
    font-size: 0.85rem;
  }

  .style-69 {
    gap: 0.4rem;
  }

  .style-70 {
    font-size: 0.9rem;
    margin-top: 0.05rem;
  }

  .style-71 {
    padding: 1.25rem 1.5rem;
  }

  .style-72 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .style-73 {
    gap: 0.65rem;
    font-size: 0.8rem;
  }

  .style-74 {
    padding: 0.75rem 1rem 0.85rem;
    border-radius: 10px;
  }

  .style-75 {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.25rem;
    gap: 0.3rem;
  }

  .style-76 {
    font-size: 0.9rem;
  }

  .style-77 {
    font-size: 0.85rem;
    margin-left: 0.2rem;
  }

  .style-78 {
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .style-79,
  .style-84,
  .style-86 {
    font-size: 0.7rem;
    padding: 0.1rem 0.6rem;
  }

  .style-81 {
    height: 4px;
  }

  .style-83 {
    font-size: 0.7rem;
    margin-top: 0.2rem;
  }
}
/* ===== AI GOVERNANCE / ACTIVITY FEED SECTION ===== */

/* Main two-column grid wrapper */
.style-49 {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 4rem;
  align-items: center;
}

/* Left side: Console card container */
.style-88 {
  background-color: var(--color-bg-tertiary);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 2rem 2.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono,
    Courier New, monospace;
}

/* Console header */
.style-89 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

/* Console title */
.style-90 {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-primary);
}

/* Log lines container */
.style-92 {
  background: #050711;
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  overflow: hidden;
}

/* Log grid: time | action | description | time | action | description... */
.style-93 {
  display: grid;
  grid-template-columns: auto auto 1fr;
  column-gap: 1.5rem;
  row-gap: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Timestamp cells */
.style-94 {
  color: #60a5fa;
}

/* Action labels (Create, Update, Generate, etc) */
.style-95 {
  color: #22c55e;
}

/* Description text */
.style-96 {
  color: #e5e7eb;
}

/* Highlighted value (dataset names, counts) */
.style-97 {
  color: #38bdf8;
}

/* Yellow highlight (progress, metrics) */
.style-98 {
  color: #eab308;
}

/* Right side: Main heading */
.style-99 {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--color-text-primary);
}

/* Right side: Description paragraph */
.style-100 {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 38rem;
}

/* Feature list container */
.style-101 {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

/* ===== RESPONSIVE AI GOVERNANCE ===== */

/* Tablets & medium screens */
@media (max-width: 1024px) {
  .style-49 {
    gap: 3rem;
  }

  .style-88 {
    padding: 1.75rem 1.75rem;
  }

  .style-92 {
    padding: 1.25rem 1.5rem;
  }

  .style-93 {
    column-gap: 1rem;
    font-size: 0.85rem;
  }

  .style-99 {
    font-size: 2.5rem;
  }

  .style-100 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

/* Mobile landscape & small tablets */
@media (max-width: 768px) {
  /* STACK VERTICALLY: console above text */
  .style-49 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: stretch;
  }

  .style-88 {
    order: 1;
    padding: 1.5rem 1.75rem;
  }

  .style-90 {
    font-size: 0.95rem;
  }

  .style-92 {
    padding: 1rem 1.25rem;
    max-height: 300px;
    overflow-y: auto;
  }

  .style-93 {
    column-gap: 1rem;
    row-gap: 0.3rem;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .style-94 {
    font-size: 0.75rem;
  }

  .style-99 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .style-100 {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .style-101 {
    gap: 0.75rem;
  }
}

/* Extra small (iPhone portrait & similar) */
@media (max-width: 480px) {
  .style-49 {
    gap: 2rem;
  }

  .style-88 {
    padding: 1.25rem 1.5rem;
  }

  .style-90 {
    font-size: 0.9rem;
  }

  .style-92 {
    padding: 1rem 1.25rem;
    max-height: 250px;
    overflow-y: auto;
  }

  .style-93 {
    grid-template-columns: auto 1fr;
    column-gap: 0.75rem;
    row-gap: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .style-94 {
    font-size: 0.7rem;
  }

  .style-95 {
    font-size: 0.7rem;
  }

  .style-96 {
    font-size: 0.75rem;
  }

  .style-99 {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
  }

  .style-100 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .style-101 {
    gap: 0.65rem;
  }
}
/* ===== USE CASES SECTION - COMPLETE ===== */

/* Header */
.use-cases-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.use-cases-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.use-cases-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Carousel Wrapper */
.flip-carousel-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto 4rem;
  padding: 0;
}

/* Carousel Track - Grid Layout */
.flip-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Card Container */
.flip-card-container {
  perspective: 1000px;
  cursor: pointer;
  height: 500px;
}

/* Flip Card */
.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card-container.flipped .flip-card {
  transform: rotateY(180deg);
}

/* Card Faces */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Front Face */
.flip-card-front {
  background-color: var(--color-bg-secondary);
  z-index: 2;
}

[data-theme='light'] .flip-card-front {
  background-color: var(--color-bg-tertiary);
}

.flip-card-front:hover {
  background-color: rgba(0, 200, 132, 0.05);
  border-color: var(--color-accent-primary);
}

/* Back Face */
.flip-card-back {
  background-color: var(--color-bg-secondary);
  transform: rotateY(180deg);
  text-align: left;
  justify-content: flex-start;
  overflow-y: auto;
}

[data-theme='light'] .flip-card-back {
  background-color: var(--color-bg-tertiary);
}

/* Badge */
.flip-card-badge {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-accent-primary);
}

.flip-card-badge--healthcare {
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
  color: #3b82f6;
}

.flip-card-badge--banking {
  filter: drop-shadow(0 2px 4px rgba(34, 197, 94, 0.3));
  color: #22c55e;
}

.flip-card-badge--insurance {
  filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
  color: #f59e0b;
}

.flip-card-badge--it {
  filter: drop-shadow(0 2px 4px rgba(139, 92, 246, 0.3));
  color: #8b5ce6;
}

.flip-card-badge--ecommerce {
  filter: drop-shadow(0 2px 4px rgba(236, 72, 153, 0.3));
  color: #ec4899;
}

/* Front Face Typography */
.flip-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--color-text-primary);
}

.flip-card-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0 0 2rem 0;
  font-weight: 500;
}

.flip-card-cta {
  font-size: 0.85rem;
  color: var(--color-accent-primary);
  margin: 0;
  font-weight: 600;
  animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Back Face Typography */
.flip-card-back-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  color: var(--color-text-primary);
}

.flip-card-section {
  margin-bottom: 1.5rem;
}

.flip-card-section:last-of-type {
  margin-bottom: 1rem;
}

.flip-card-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent-primary);
  margin: 0 0 0.75rem 0;
}

.flip-card-text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.flip-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flip-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

.flip-card-list li:last-child {
  margin-bottom: 0;
}

.flip-check {
  color: var(--color-accent-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.flip-card-tagline {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  font-style: italic;
  margin: 0;
  margin-top: auto;
}

/* CTA Section */
.use-cases-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background-color: var(--color-bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

[data-theme='light'] .use-cases-cta {
  background-color: var(--color-bg-tertiary);
}

.use-cases-cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--color-text-primary);
}

.use-cases-cta-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin: 0 auto 2rem auto;
  max-width: 600px;
  line-height: 1.6;
}

.use-cases-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== RESPONSIVE USE CASES ===== */

/* Tablets: 2 cards per row */
@media (max-width: 1024px) {
  .use-cases-title {
    font-size: 2.2rem;
  }

  .flip-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .flip-card-container {
    height: 480px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 1.75rem;
  }

  .use-cases-cta {
    padding: 2.5rem 1.75rem;
  }

  .use-cases-cta-title {
    font-size: 1.6rem;
  }
}

/* Small Tablets & Landscape: 1 card per row */
@media (max-width: 768px) {
  .use-cases-header {
    margin-bottom: 3rem;
  }

  .use-cases-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .use-cases-subtitle {
    font-size: 1rem;
  }

  .flip-carousel-wrapper {
    padding: 0 1rem;
    margin-bottom: 3rem;
  }

  .flip-carousel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .flip-card-container {
    height: 450px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 1.5rem;
  }

  .flip-card-badge {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
  }

  .flip-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }

  .flip-card-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .flip-card-back-title {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
  }

  .flip-card-section {
    margin-bottom: 1.25rem;
  }

  .flip-card-text {
    font-size: 0.85rem;
  }

  .flip-card-list li {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }

  .flip-card-tagline {
    font-size: 0.8rem;
    margin-top: 0.75rem;
  }

  .use-cases-cta {
    margin-top: 3rem;
    padding: 2.5rem 1.5rem;
  }

  .use-cases-cta-title {
    font-size: 1.5rem;
  }

  .use-cases-cta-subtitle {
    font-size: 1rem;
  }

  .use-cases-cta-actions {
    gap: 0.75rem;
  }

  .use-cases-cta-actions .btn-primary,
  .use-cases-cta-actions .btn-secondary {
    flex: 1;
    min-width: 140px;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .use-cases-header {
    margin-bottom: 2.5rem;
  }

  .use-cases-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .use-cases-subtitle {
    font-size: 0.95rem;
  }

  .flip-carousel-wrapper {
    padding: 0 0.5rem;
    margin-bottom: 2.5rem;
  }

  .flip-carousel {
    gap: 1rem;
  }

  .flip-card-container {
    height: 420px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 1.25rem;
  }

  .flip-card-badge {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .flip-card-title {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
  }

  .flip-card-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .flip-card-cta {
    font-size: 0.8rem;
  }

  .flip-card-back-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .flip-card-section {
    margin-bottom: 1rem;
  }

  .flip-card-section:last-of-type {
    margin-bottom: 0.75rem;
  }

  .flip-card-label {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .flip-card-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .flip-card-list li {
    font-size: 0.8rem;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .flip-check {
    font-size: 0.9rem;
  }

  .flip-card-tagline {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }

  .use-cases-cta {
    margin-top: 2.5rem;
    padding: 2rem 1rem;
    border-radius: 10px;
  }

  .use-cases-cta-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  .use-cases-cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .use-cases-cta-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .use-cases-cta-actions .btn-primary,
  .use-cases-cta-actions .btn-secondary {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .use-cases-title {
    font-size: 1.5rem;
  }

  .flip-card-container {
    height: 380px;
  }

  .flip-card-badge {
    font-size: 2rem;
  }

  .flip-card-title {
    font-size: 1rem;
  }
}

/* Wrapper: title + paragraph */
.style-119 {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.style-1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
}

.style-120 {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Badges grid */
.style-121 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Individual badge card */
.style-122 {
  background: var(--color-bg-tertiary);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Badge image */
.style-123 {
  max-width: 110px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
}

/* Badge title */
.style-124 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

/* Badge description */
.style-125 {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

/* ===== RESPONSIVE COMPLIANCE GRID ===== */

/* Tablet: 2 badges per row */
@media (max-width: 1024px) {
  .style-121 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .style-1 {
    font-size: 2.1rem;
  }
}

/* Mobile: 1 badge per row */
@media (max-width: 768px) {
  .style-119 {
    margin-bottom: 2.5rem;
  }

  .style-1 {
    font-size: 1.9rem;
  }

  .style-120 {
    font-size: 0.98rem;
  }

  .style-121 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .style-122 {
    padding: 1.25rem 1.5rem;
  }
}

/* Small mobile tweaks */
@media (max-width: 480px) {
  .style-1 {
    font-size: 1.7rem;
  }

  .style-120 {
    font-size: 0.95rem;
  }

  .style-123 {
    max-width: 95px;
    margin-bottom: 0.85rem;
  }

  .style-124 {
    font-size: 0.95rem;
  }

  .style-125 {
    font-size: 0.85rem;
  }
}
/* Pricing Section */
.style-102 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.style-103 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.style-104 {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
}
/* Grid of plans */
.style-105 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

/* Regular plan card (Free, Professional, Enterprise) */
.style-106 {
  background: var(--color-bg-tertiary);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* “Most Popular” wrapper */
.style-114 {
  position: relative;
}

/* Most Popular pill */
.style-115 {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  background: var(--color-bg-primary);
  border-radius: 999px;
  border: 1px solid var(--color-border);
  padding: 0.3rem 1.25rem;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

/* Highlighted plan card */
.style-116 {
  background: var(--color-bg-tertiary);
  border-radius: 20px;
  border: 1px solid var(--color-accent-primary);
  padding: 2.5rem 2.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Plan name */
.style-107 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

/* Price row */
.style-108 {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
}

/* Price value */
.style-109,
.style-117 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

/* “/month” */
.style-32 {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

/* Features list */
.style-110 {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.style-111 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Check icon */
.style-112 {
  color: var(--color-accent-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* CTA buttons in cards */
.style-113 {
  width: 100%;
  text-align: center;
  display: inline-block;
}
.style-118 {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-top: 2.5rem;
}
/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .style-105 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .style-103 {
    font-size: 2.4rem;
  }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
  .style-105 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .style-103 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .style-104 {
    font-size: 0.98rem;
  }

  .style-106,
  .style-116 {
    padding: 2rem 2.25rem;
  }

  .style-118 {
    font-size: 0.85rem;
    margin-top: 2rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .style-103 {
    font-size: 1.75rem;
  }

  .style-106,
  .style-116 {
    padding: 1.75rem 1.75rem;
    border-radius: 16px;
  }

  .style-109,
  .style-117 {
    font-size: 2.4rem;
  }

  .style-110 {
    font-size: 0.9rem;
  }
}
/* ========================================
   FAQ SECTION - HYBRID GRID LAYOUT
   ======================================== */

   .faq-search-wrapper {
    margin-bottom: 2rem;
}

.faq-search-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
    transition: all var(--transition-speed);
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 200, 132, 0.1);
}

.faq-search-input::placeholder {
    color: var(--color-text-secondary);
}

/* Horizontal Filter Buttons */
.faq-filter-wrapper {
    margin-bottom: 2rem;
}

.faq-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.faq-filter-item {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-speed);
}

.faq-filter-item:hover {
    border-color: var(--color-accent-primary);
    background-color: var(--color-bg-tertiary);
}

.faq-filter-checkbox {
    display: none;
}

.faq-filter-checkbox:checked + .filter-label {
    color: #000000;
}

.faq-filter-item:has(.faq-filter-checkbox:checked) {
    background-color: var(--color-accent-primary);
    color: #000000;
    border-color: var(--color-accent-primary);
}

.filter-label {
    font-size: 0.9rem;
    color: var(--color-text-primary);
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}

.faq-filter-clear {
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid var(--color-accent-primary);
    border-radius: 999px;
    color: var(--color-accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.faq-filter-clear:hover {
    background-color: rgba(0, 200, 132, 0.1);
}

/* Results Info */
.faq-results-info {
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background-color: rgba(0, 200, 132, 0.08);
    border-left: 3px solid var(--color-accent-primary);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

#resultsCount {
    color: var(--color-accent-primary);
    font-weight: 600;
}

/* FAQ Container - Grid Layout */
.faq-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* FAQ Card Item */
.faq-item {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--color-accent-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* FAQ Card Header (Question + Category) */
.faq-question {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    user-select: none;
}

.faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.faq-tag {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background-color: rgba(0, 200, 132, 0.12);
    color: var(--color-accent-primary);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-question-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.4;
}

/* FAQ Answer (Hidden by default, expands inline) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease-out;
    background-color: var(--color-bg-tertiary);
    border-top: 1px solid var(--color-border);
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer-content {
    padding: 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.faq-answer-content p {
    margin-bottom: 0.75rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong,
.faq-answer-content b {
    color: var(--color-text-primary);
    font-weight: 600;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 0.75rem 0 0.75rem 1.25rem;
    padding: 0;
}

.faq-answer-content li {
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

/* Loading Indicator */
.faq-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    color: var(--color-text-secondary);
    grid-column: 1 / -1;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* No Results */
.faq-no-results {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--color-text-secondary);
    background-color: var(--color-bg-secondary);
    border-radius: 8px;
    border: 1px dashed var(--color-border);
    grid-column: 1 / -1;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .faq-search-input {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .faq-filters {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .faq-filter-item {
        padding: 0.45rem 0.85rem;
        font-size: 0.85rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-answer-content {
        padding: 1rem;
    }

    .faq-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Extra Small */
@media (max-width: 480px) {
    .faq-search-input {
        padding: 0.65rem 0.9rem;
        font-size: 0.9rem;
    }

    .faq-filter-item {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }

    .faq-answer-content {
        padding: 0.85rem;
        font-size: 0.85rem;
    }
}

  
/* Footer */
footer {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: var(--color-accent-gold);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-speed);
}

.footer-column ul li a:hover {
  color: var(--color-accent-primary);
}
/* Tagline under LagrangeData.AI */
.style-128 {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-bg-tertiary);
  color: var(--color-accent-primary);
  text-decoration: none;
  transition: all var(--transition-speed);
}

.footer-social a:hover {
  background-color: var(--color-accent-primary);
  color: white;
}

/* “More info” copy under contact if used */
.style-129 {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* Bottom line */
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

/* Reuse accent link style for Privacy/Terms */
.style-112 {
  color: var(--color-accent-primary);
  text-decoration: none;
}

.style-112:hover {
  text-decoration: underline;
}
/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--color-accent-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-speed);
  z-index: 999;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

/* When JS adds .show, button appears */
.back-to-top.show {
  display: flex;
}
