/*
 * Binary Networks - Cybersecurity Consulting
 * Modern Light Theme Stylesheet (2026)
 */

/* ===================================
   CSS CUSTOM PROPERTIES
   =================================== */
:root {
  /* Colors */
  --primary: #7B2FF2;
  --secondary: #00D4AA;
  --accent: #6366F1;
  --bg-white: #F0F0F8;
  --bg-light: #E8E8F4;
  --bg-hero: #0a0a1e;
  --card-bg: #EBEBF5;
  --card-border: transparent;
  --text-primary: #1A1A2E;
  --text-secondary: #313858;
  --text-muted: #5A5A7A;

  /* Claymorphism Shadows */
  --clay-shadow:
    8px 8px 16px rgba(123, 47, 242, 0.08),
    -4px -4px 12px rgba(255, 255, 255, 0.9),
    inset 2px 2px 4px rgba(255, 255, 255, 0.6),
    inset -1px -1px 3px rgba(123, 47, 242, 0.06);
  --clay-shadow-hover:
    12px 12px 24px rgba(123, 47, 242, 0.12),
    -6px -6px 16px rgba(255, 255, 255, 0.95),
    inset 2px 2px 6px rgba(255, 255, 255, 0.7),
    inset -2px -2px 4px rgba(123, 47, 242, 0.08);
  --clay-shadow-inset:
    inset 4px 4px 8px rgba(123, 47, 242, 0.08),
    inset -3px -3px 6px rgba(255, 255, 255, 0.7);
  --card-shadow: var(--clay-shadow);
  --card-shadow-hover: var(--clay-shadow-hover);

  /* Glows */
  --glow-purple: rgba(123, 47, 242, 0.15);
  --glow-cyan: rgba(0, 212, 170, 0.15);

  /* Gradients */
  --gradient: linear-gradient(135deg, #6366F1, #7B2FF2, #00D4AA);

  /* Border Radius — Claymorphism uses very rounded */
  --radius-lg: 24px;
  --radius-pill: 50px;
  --radius-sm: 14px;

  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-display: 'Inter', sans-serif;
}

/* ===================================
   SKIP LINK (Accessibility)
   =================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 12px;
}

/* ===================================
   NO-JS FALLBACK
   =================================== */
.fade-up,
.scale-in,
.fade-in {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

html.js-enabled .fade-up {
  opacity: 0;
  transform: translateY(30px);
}

html.js-enabled .scale-in {
  opacity: 0;
  transform: scale(0.9);
}

html.js-enabled .fade-in {
  opacity: 0;
}

/* ===================================
   PREFERS REDUCED MOTION (OS-level)
   =================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up,
  .scale-in,
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(235, 235, 245, 0.85);
  border-bottom: none;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(235, 235, 245, 0.92);
  box-shadow:
    0 8px 24px rgba(123, 47, 242, 0.06),
    inset 0 -1px 0 rgba(255, 255, 255, 0.5);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover {
  background: rgba(123, 47, 242, 0.08);
  color: var(--primary);
}

.nav-links a.active {
  position: relative;
  color: var(--primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.nav-cta {
  background: #00D4AA;
  color: #0a0a1e;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  box-shadow:
    4px 4px 10px rgba(0, 150, 120, 0.25),
    -2px -2px 8px rgba(255, 255, 255, 0.4),
    inset 1px 1px 3px rgba(255, 255, 255, 0.4),
    inset -1px -1px 2px rgba(0, 150, 120, 0.15);
}

.nav-cta:hover {
  background: #00E8BB;
  box-shadow:
    6px 6px 16px rgba(0, 150, 120, 0.3),
    -3px -3px 10px rgba(255, 255, 255, 0.5),
    inset 2px 2px 4px rgba(255, 255, 255, 0.5),
    inset -1px -1px 3px rgba(0, 150, 120, 0.2);
  transform: translateY(-2px);
  color: #0a0a1e;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--font-body);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active {
  background: rgba(123, 47, 242, 0.08);
  color: var(--primary);
}

.nav-dropdown-icon {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-icon,
.nav-dropdown-trigger[aria-expanded="true"] .nav-dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 8px 40px rgba(123, 47, 242, 0.12);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-dropdown-menu a i {
  font-size: 0.9rem;
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: rgba(123, 47, 242, 0.08);
  color: var(--primary);
}

/* Focus-visible styles for keyboard navigation */
.nav-links a:focus-visible,
.nav-dropdown-trigger:focus-visible,
.nav-dropdown-menu a:focus-visible,
.card-link:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  background: var(--bg-hero);
  color: #FFFFFF;
}

.hero canvas.vanta-canvas {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1 !important;
}

.hero .hero-badge {
  background: rgba(123, 47, 242, 0.2);
  border: 1px solid rgba(123, 47, 242, 0.5);
  color: #FFFFFF;
}

.hero .hero-title {
  color: #FFFFFF;
}

.hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.hero .btn-secondary {
  background: transparent;
  border: 2px solid rgba(200, 180, 255, 0.6);
  color: #FFFFFF;
}

.hero .btn-secondary:hover {
  background: rgba(123, 47, 242, 0.2);
  border-color: #B494FF;
}

/* ===================================
   TRUST BAR / SOCIAL PROOF
   =================================== */
.trust-bar {
  background: var(--bg-light);
  border-bottom: none;
  padding: 28px 0;
}

.trust-bar-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.trust-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-shield-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: none;
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default;
  box-shadow: var(--clay-shadow);
}

.trust-shield-icon {
  width: 48px;
  height: 52px;
  transform: perspective(500px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(123, 47, 242, 0.15));
}

.trust-shield-icon svg {
  width: 100%;
  height: 100%;
}

.trust-shield-badge:hover {
  box-shadow: var(--clay-shadow-hover);
  transform: translateY(-4px);
}

.trust-shield-badge:hover .trust-shield-icon {
  transform: perspective(500px) rotateY(0deg) rotateX(0deg) scale(1.1);
  filter: drop-shadow(0 6px 16px rgba(123, 47, 242, 0.25));
}

.trust-shield-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

canvas#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ===================================
   HERO — CYBER GRID + ORBS
   =================================== */

/* Perspective Grid Floor */
.hero-cyber-grid {
  position: absolute;
  bottom: 0;
  left: -20%;
  right: -20%;
  height: 50%;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(123, 47, 242, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 47, 242, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 80%);
  animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
  0% { background-position: 0 0; }
  100% { background-position: 0 60px; }
}

/* Ambient Glow Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(123, 47, 242, 0.18) 0%, transparent 65%);
  filter: blur(60px);
  animation: orbPulse1 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  bottom: 5%;
  left: -3%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.12) 0%, transparent 65%);
  filter: blur(50px);
  animation: orbPulse2 10s ease-in-out infinite;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 40%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 65%);
  filter: blur(40px);
  animation: orbPulse3 12s ease-in-out infinite;
}

@keyframes orbPulse1 {
  0%, 100% { opacity: 0.6; transform: scale(1) translate(0, 0); }
  50% { opacity: 0.9; transform: scale(1.1) translate(-20px, 10px); }
}

@keyframes orbPulse2 {
  0%, 100% { opacity: 0.5; transform: scale(1) translate(0, 0); }
  50% { opacity: 0.8; transform: scale(1.15) translate(15px, -10px); }
}

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

/* Scan Line Effect */
.hero-scanline {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 49%,
    rgba(123, 47, 242, 0.03) 50%,
    transparent 51%,
    transparent 100%
  );
  background-size: 100% 8px;
  opacity: 0.4;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-cyber-grid {
    background-size: 40px 40px;
    height: 40%;
  }

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

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

  .hero-orb-3 {
    display: none;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-cyber-grid,
  .hero-orb,
  .hero-scanline {
    animation: none !important;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 600;
  background: var(--bg-white);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  min-height: 48px;
}

.btn-primary {
  background: var(--gradient);
  color: #FFFFFF;
  box-shadow:
    6px 6px 14px rgba(123, 47, 242, 0.2),
    -3px -3px 10px rgba(255, 255, 255, 0.3),
    inset 2px 2px 4px rgba(255, 255, 255, 0.25),
    inset -1px -1px 3px rgba(80, 20, 160, 0.2);
}

.btn-primary:hover {
  box-shadow:
    8px 8px 20px rgba(123, 47, 242, 0.28),
    -4px -4px 12px rgba(255, 255, 255, 0.4),
    inset 2px 2px 6px rgba(255, 255, 255, 0.3),
    inset -2px -2px 4px rgba(80, 20, 160, 0.25);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--bg-white);
  border: none;
  color: var(--primary);
  box-shadow:
    5px 5px 12px rgba(123, 47, 242, 0.08),
    -3px -3px 8px rgba(255, 255, 255, 0.8),
    inset 1px 1px 3px rgba(255, 255, 255, 0.6),
    inset -1px -1px 2px rgba(123, 47, 242, 0.05);
}

.btn-secondary:hover {
  background: var(--bg-light);
  box-shadow:
    7px 7px 16px rgba(123, 47, 242, 0.1),
    -4px -4px 10px rgba(255, 255, 255, 0.9),
    inset 2px 2px 4px rgba(255, 255, 255, 0.7),
    inset -1px -1px 3px rgba(123, 47, 242, 0.08);
  transform: translateY(-2px);
}

/* ===================================
   PAGE HERO
   =================================== */
.page-hero {
  min-height: 400px;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #E8E0F8 0%, #E0F0F8 50%, #EBEBF5 100%);
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg-white), transparent);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 10;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.page-hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: 100px 0;
  position: relative;
  background: var(--bg-white);
}

.section-alt {
  background: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: var(--primary);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ===================================
   CARDS
   =================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  border: none;
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--clay-shadow);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  position: relative;
  box-shadow:
    4px 4px 10px rgba(123, 47, 242, 0.2),
    -2px -2px 8px rgba(255, 255, 255, 0.3),
    inset 2px 2px 4px rgba(255, 255, 255, 0.3),
    inset -2px -2px 4px rgba(80, 20, 160, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover .card-icon {
  transform: scale(1.08);
  box-shadow:
    6px 6px 16px rgba(123, 47, 242, 0.25),
    -3px -3px 10px rgba(255, 255, 255, 0.4),
    inset 3px 3px 6px rgba(255, 255, 255, 0.35),
    inset -2px -2px 5px rgba(80, 20, 160, 0.25);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===================================
   FEATURE LIST
   =================================== */
.features-list {
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--card-border);
  align-items: flex-start;
}

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

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  box-shadow:
    0 6px 20px rgba(123, 47, 242, 0.25),
    0 2px 4px rgba(123, 47, 242, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transform: perspective(400px) rotateY(-4deg) rotateX(4deg);
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: perspective(400px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.feature-icon-img {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 400px;
}

.feature-illust {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(123, 47, 242, 0.1));
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.feature-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===================================
   SERVICES GRID
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2rem;
  padding-left: calc(2rem + 4px);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

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

/* ===================================
   PROGRAMS SECTION
   =================================== */
.program-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.program-tab {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--card-border);
  background: var(--bg-white);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.program-tab:hover {
  border-color: var(--primary);
  background: rgba(123, 47, 242, 0.05);
}

.program-tab.active {
  background: var(--gradient);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 20px rgba(123, 47, 242, 0.2);
}

.program-content {
  display: none;
}

.program-content.active {
  display: block;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.package-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.package-card:hover {
  border-color: rgba(123, 47, 242, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-card .price {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.package-card ul {
  list-style: inside;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 1.5rem;
}

.package-card li {
  font-size: 0.95rem;
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-light);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--clay-shadow-inset);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  box-shadow:
    inset 4px 4px 8px rgba(123, 47, 242, 0.12),
    inset -3px -3px 6px rgba(255, 255, 255, 0.8),
    0 0 0 3px var(--glow-purple);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-required {
  color: #ef4444;
}

.form-consent {
  margin-top: 0.5rem;
}

.consent-error {
  display: block;
  margin-top: 0.5rem;
  color: #ef4444;
  font-size: 0.85rem;
  font-weight: 500;
  padding-left: 1.2em;
  position: relative;
}

.consent-error::before {
  content: "\2716";
  position: absolute;
  left: 0;
  font-size: 0.75rem;
}

.form-consent.error .form-checkbox-custom {
  border-color: #ff4444;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.form-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-secondary);
  border-radius: 4px;
  background: #fff;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.form-checkbox-label input[type="checkbox"]:checked + .form-checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.form-checkbox-label input[type="checkbox"]:checked + .form-checkbox-custom::after {
  content: '';
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  margin-top: -2px;
}

.form-checkbox-label input[type="checkbox"]:focus-visible + .form-checkbox-custom {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.form-checkbox-text a {
  color: var(--primary);
  text-decoration: underline;
}

.btn-submit {
  position: relative;
  min-width: 180px;
}

.btn-submit.loading .btn-text {
  opacity: 0;
}

.btn-submit.loading .btn-spinner {
  display: block;
}

.btn-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.form-input.error,
.form-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error {
  color: #ef4444;
  font-size: 0.82rem;
  margin-top: 4px;
  display: none;
  padding-left: 1.2em;
  position: relative;
}

.form-error::before {
  content: "\2716";
  position: absolute;
  left: 0;
  font-size: 0.75rem;
}

.form-error.visible {
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  box-shadow:
    4px 4px 10px rgba(123, 47, 242, 0.2),
    -2px -2px 6px rgba(255, 255, 255, 0.3),
    inset 2px 2px 3px rgba(255, 255, 255, 0.3),
    inset -1px -1px 2px rgba(80, 20, 160, 0.2);
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.info-content p,
.info-content a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--primary);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #1A1A2E;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
  color: #FFFFFF;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: 8px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  font-weight: 600;
}

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

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

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-col li i {
  margin-right: 8px;
  color: var(--secondary);
  width: 16px;
  display: inline-block;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #FFFFFF;
}

.social-links a:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* ===================================
   COOKIE BANNER
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  max-width: 500px;
  width: calc(100% - 4rem);
  background: var(--card-bg);
  border: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-shadow-hover);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.cookie-accept {
  background: var(--gradient);
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  min-height: 44px;
}

.cookie-accept:hover {
  box-shadow: 0 4px 20px rgba(123, 47, 242, 0.2);
  transform: scale(1.05);
}

.cookie-decline {
  background: transparent;
  color: var(--text-primary);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--card-border);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  min-height: 44px;
}

.cookie-decline:hover {
  border-color: var(--text-muted);
  background: rgba(123, 47, 242, 0.05);
}

/* ===================================
   ACCESSIBILITY WIDGET
   =================================== */
.accessibility-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    4px 4px 10px rgba(123, 47, 242, 0.25),
    -2px -2px 8px rgba(255, 255, 255, 0.3),
    inset 2px 2px 3px rgba(255, 255, 255, 0.3),
    inset -1px -1px 2px rgba(80, 20, 160, 0.2);
  transition: all 0.3s ease;
  border: none;
  font-size: 1.3rem;
  color: #FFFFFF;
}

.accessibility-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(123, 47, 242, 0.3);
}

.accessibility-panel {
  position: fixed;
  right: 2rem;
  bottom: 5rem;
  z-index: 998;
  background: var(--card-bg);
  border: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  min-width: 280px;
  display: none;
  box-shadow: var(--clay-shadow-hover);
}

.accessibility-panel.active {
  display: block;
}

.accessibility-panel h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.access-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--card-border);
}

.access-option:last-child {
  border-bottom: none;
}

.access-option label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.access-toggle {
  width: 48px;
  height: 26px;
  border-radius: var(--radius-pill);
  background: var(--card-border);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.access-toggle.active {
  background: var(--secondary);
}

.access-toggle::after {
  content: '';
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.access-toggle.active::after {
  left: 24px;
}

/* ===================================
   ROBOT IMAGES & SPLIT LAYOUTS
   =================================== */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
  text-align: left;
  padding: 0 2rem;
  z-index: 10;
  position: relative;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text > * {
  opacity: 1 !important;
  transform: none !important;
}

.hero-text .hero-subtitle {
  margin: 0 0 2rem 0;
}

.hero-text .hero-cta-group {
  justify-content: flex-start;
}

.hero-robot {
  flex: 0 0 380px;
  width: 380px;
  height: 380px;
  position: relative;
  perspective: 600px;
}

.hero-lottie {
  width: 380px;
  height: 380px;
  filter: drop-shadow(0 10px 30px rgba(123, 47, 242, 0.6)) drop-shadow(0 0 60px rgba(123, 47, 242, 0.3));
}

.about-split {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.about-text {
  flex: 1;
}

.about-text .section-intro {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.about-robot {
  flex: 0 0 260px;
  width: 260px;
  height: 260px;
  perspective: 500px;
}

.about-lottie {
  width: 260px;
  height: 260px;
}

.ai-platform-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.platform-lottie {
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.feature-lottie {
  width: 140px;
  height: 140px;
}

.section-lottie {
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

.philosophy-quote {
  margin-top: 3rem;
  padding: 2rem;
  border-left: 4px solid var(--primary);
  background: rgba(123, 47, 242, 0.03);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  color: var(--text-secondary);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-intro {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

/* ===================================
   SECTION ILLUSTRATIONS
   =================================== */
.section-illustration {
  text-align: center;
  margin-bottom: 2rem;
  perspective: 500px;
}

.section-illustration img {
  width: 320px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(123, 47, 242, 0.15));
}

@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-text .hero-cta-group {
    justify-content: center;
  }

  .about-split {
    flex-direction: column;
    text-align: center;
  }
}

/* On mobile and small tablets, skip decorative Lottie animations entirely
   to keep first paint and LCP fast. The lottie-player script is also
   skipped on these viewports (see base.njk). */
@media (max-width: 1024px) {
  lottie-player,
  .hero-robot,
  .about-robot,
  .ai-platform-intro,
  .section-illustration,
  .set-hero-visual,
  .set-cta-lottie-wrap {
    display: none !important;
  }
}

/* ===================================
   MOBILE GLASS SIDEBAR
   =================================== */
.mobile-sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 30, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-sidebar-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: rgba(20, 15, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(123, 47, 242, 0.2);
  z-index: 2000;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-sidebar.active {
  transform: translateX(0);
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(123, 47, 242, 0.15);
}

.mobile-sidebar-brand {
  display: flex;
  align-items: center;
}

.mobile-sidebar-logo {
  height: 48px;
  width: auto;
}

.mobile-sidebar-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-sidebar-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-sidebar-nav {
  list-style: none;
  padding: 1rem 0.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-sidebar-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 18px;
  min-height: 48px;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.mobile-sidebar-link i {
  font-size: 1.2rem;
  min-width: 28px;
  text-align: center;
  color: var(--secondary);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.mobile-sidebar-link:hover {
  background: rgba(123, 47, 242, 0.15);
  color: #fff;
}

.mobile-sidebar-link:hover i {
  opacity: 1;
}

.mobile-sidebar-link.active {
  background: linear-gradient(135deg, var(--primary), rgba(99, 102, 241, 0.9));
  color: #fff;
  box-shadow: 0 4px 20px rgba(123, 47, 242, 0.4);
}

.mobile-sidebar-link.active i {
  color: #fff;
  opacity: 1;
}

.mobile-sidebar-divider-label {
  padding: 12px 18px 4px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  list-style: none;
  margin-top: 4px;
  border-top: 1px solid rgba(123, 47, 242, 0.1);
}

.mobile-sidebar-footer {
  padding: 1rem 0.75rem 1.5rem;
  border-top: 1px solid rgba(123, 47, 242, 0.15);
}

.mobile-sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(123, 47, 242, 0.3);
}

.mobile-sidebar-cta:hover {
  box-shadow: 0 6px 25px rgba(123, 47, 242, 0.5);
  transform: translateY(-1px);
}

.mobile-sidebar-cta i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .mobile-sidebar {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-sidebar,
  .mobile-sidebar-overlay {
    display: none !important;
  }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes robotFloat {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-18px) rotate(1.5deg) scale(1.01);
  }
  50% {
    transform: translateY(-8px) rotate(0deg) scale(1.02);
  }
  75% {
    transform: translateY(-20px) rotate(-1.5deg) scale(1.01);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes robotGlow {
  0% {
    filter: drop-shadow(0 20px 40px rgba(123, 47, 242, 0.15));
  }
  33% {
    filter: drop-shadow(0 25px 50px rgba(0, 212, 170, 0.25));
  }
  66% {
    filter: drop-shadow(0 20px 45px rgba(99, 102, 241, 0.25));
  }
  100% {
    filter: drop-shadow(0 20px 40px rgba(123, 47, 242, 0.15));
  }
}

@keyframes heroRobotGlow {
  0% {
    filter: drop-shadow(0 10px 30px rgba(123, 47, 242, 0.6)) drop-shadow(0 0 60px rgba(123, 47, 242, 0.3));
  }
  33% {
    filter: drop-shadow(0 15px 40px rgba(0, 212, 170, 0.6)) drop-shadow(0 0 70px rgba(0, 212, 170, 0.3));
  }
  66% {
    filter: drop-shadow(0 10px 35px rgba(99, 102, 241, 0.6)) drop-shadow(0 0 65px rgba(99, 102, 241, 0.3));
  }
  100% {
    filter: drop-shadow(0 10px 30px rgba(123, 47, 242, 0.6)) drop-shadow(0 0 60px rgba(123, 47, 242, 0.3));
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 4px 20px rgba(123, 47, 242, 0.2);
  }
  50% {
    box-shadow: 0 4px 30px rgba(123, 47, 242, 0.3);
  }
  100% {
    box-shadow: 0 4px 20px rgba(123, 47, 242, 0.2);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.glow {
  box-shadow: 0 4px 30px rgba(123, 47, 242, 0.2);
}

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

/* ===================================
   ACCESSIBILITY STATES
   =================================== */
body.high-contrast {
  --card-bg: #FFFFFF;
  --card-border: rgba(123, 47, 242, 0.35);
  --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  --text-primary: #000000;
  --text-secondary: #1A1A3A;
  --text-muted: #3A3A5A;
}

body.high-contrast a {
  text-decoration: underline;
}

body.high-contrast .nav-links a,
body.high-contrast .btn,
body.high-contrast .nav-cta,
body.high-contrast .card-link {
  text-decoration: none;
}

body.high-contrast .gradient-text {
  -webkit-text-fill-color: var(--primary);
  background: none;
}

body.large-text {
  font-size: 18px;
}

body.large-text .hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
}

body.large-text .section-title {
  font-size: 3rem;
}

body.reduce-motion * {
  animation: none !important;
  transition: none !important;
}

/* ===================================
   AI PLATFORM — CARDS GRID
   =================================== */
.ai-platform-section {
  position: relative;
  overflow: hidden;
}

.ai-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.ai-card {
  position: relative;
  background: var(--card-bg);
  border: none;
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--clay-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ai-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--clay-shadow-hover);
}

/* Inner glow on hover */
.ai-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(123, 47, 242, 0.03) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ai-card:hover .ai-card-glow {
  opacity: 1;
}

/* Header with Lottie + Title side by side */
.ai-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ai-card-lottie {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: var(--card-bg);
  border: none;
  border-radius: 20px;
  padding: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow:
    4px 4px 10px rgba(123, 47, 242, 0.1),
    -2px -2px 8px rgba(255, 255, 255, 0.7),
    inset 2px 2px 4px rgba(255, 255, 255, 0.5),
    inset -1px -1px 3px rgba(123, 47, 242, 0.06);
}

.ai-card-lottie lottie-player {
  width: 100%;
  height: 100%;
  display: block;
}

.ai-card-lottie i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Reserve layout space for any lottie-player before its web component registers */
lottie-player {
  display: block;
}

.ai-card:hover .ai-card-lottie {
  transform: scale(1.08);
  box-shadow:
    6px 6px 14px rgba(123, 47, 242, 0.14),
    -3px -3px 10px rgba(255, 255, 255, 0.8),
    inset 3px 3px 5px rgba(255, 255, 255, 0.6),
    inset -2px -2px 4px rgba(123, 47, 242, 0.08);
}

.ai-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.ai-card-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}

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

  .ai-card-lottie {
    width: 60px;
    height: 60px;
  }
}

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

.testimonial-card {
  background: var(--card-bg);
  border: none;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--clay-shadow);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--clay-shadow-hover);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-stars i {
  color: #f59e0b;
  font-size: 0.85rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  border: none;
  margin: 0;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1rem;
  border-top: 1px solid var(--card-border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow:
    3px 3px 8px rgba(123, 47, 242, 0.2),
    -2px -2px 6px rgba(255, 255, 255, 0.3),
    inset 1px 1px 2px rgba(255, 255, 255, 0.3),
    inset -1px -1px 2px rgba(80, 20, 160, 0.2);
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.08);
}

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

.testimonial-role {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.thank-you-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px 80px;
}

.thank-you-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
}

.thank-you-checkmark {
  width: 96px;
  height: 96px;
}

.thank-you-checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke: var(--secondary);
  fill: none;
  animation: checkmark-circle 0.6s 0.3s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.thank-you-checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: var(--secondary);
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: checkmark-check 0.4s 0.8s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.thank-you-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.thank-you-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.thank-you-signature {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 40px;
}

.thank-you-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .thank-you-title {
    font-size: 1.5rem;
  }

  .thank-you-actions {
    flex-direction: column;
  }
}

/* ===================================
   SUCCESS POPUP MODAL
   =================================== */
.success-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 30, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: background 0.4s ease;
  backdrop-filter: blur(0px);
}

.success-popup-overlay.active {
  background: rgba(10, 10, 30, 0.75);
  backdrop-filter: blur(8px);
}

.success-popup-overlay.closing {
  background: rgba(10, 10, 30, 0);
  backdrop-filter: blur(0px);
}

.success-popup {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: scale(0.7) translateY(30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  box-shadow: 0 25px 80px rgba(123, 47, 242, 0.25), 0 0 0 1px rgba(123, 47, 242, 0.08);
}

.success-popup-overlay.active .success-popup {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.success-popup-overlay.closing .success-popup {
  transform: scale(0.9) translateY(10px);
  opacity: 0;
}

.success-popup-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}

.success-checkmark {
  width: 72px;
  height: 72px;
}

.success-checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke: var(--secondary);
  fill: none;
}

.success-popup-overlay.active .success-checkmark-circle {
  animation: checkmark-circle 0.6s 0.2s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: var(--secondary);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-popup-overlay.active .success-checkmark-check {
  animation: checkmark-check 0.4s 0.7s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

@keyframes checkmark-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes checkmark-check {
  to { stroke-dashoffset: 0; }
}

.success-popup-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.success-popup-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.success-popup-signature {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
}

.success-popup-close {
  min-width: 160px;
}

@media (max-width: 480px) {
  .success-popup {
    padding: 36px 24px 28px;
  }

  .success-popup-title {
    font-size: 1.2rem;
  }
}

/* ===================================
   SET SYSTEM PAGE — HERO VIDEO BG
   =================================== */
.set-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.set-hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 30, 0.4) 0%,
        rgba(10, 10, 30, 0.2) 40%,
        rgba(10, 10, 30, 0.6) 100%
    );
    opacity: 0;
    transition: opacity 1.5s ease;
    pointer-events: none;
}

/* ===================================
   SET SYSTEM PAGE — HERO
   =================================== */
.set-hero {
  min-height: 100vh;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  color: #FFFFFF;
}

.set-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123, 47, 242, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 47, 242, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

.set-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.set-hero-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123, 47, 242, 0.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.set-hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
}

.set-hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}

.set-hero-text {
  flex: 1;
  max-width: 640px;
}

.set-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.set-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.set-breadcrumb a:hover {
  color: var(--secondary);
}

.set-breadcrumb i {
  font-size: 0.65rem;
  opacity: 0.5;
}

.set-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(123, 47, 242, 0.2);
  border: 1px solid rgba(123, 47, 242, 0.5);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.set-hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.set-hero-acronym {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: 4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.set-hero-expansion {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
}

.set-hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
  margin: 0.5rem 0 0;
}

.set-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.set-hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 580px;
}

.set-btn-ghost {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.set-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
}

.set-hero-visual {
  flex: 0 0 400px;
  width: 400px;
  height: 400px;
}

.set-hero-lottie {
  width: 400px;
  height: 400px;
  filter:
    drop-shadow(0 10px 40px rgba(123, 47, 242, 0.6))
    drop-shadow(0 0 80px rgba(123, 47, 242, 0.25));
  animation: robotFloat 7s ease-in-out infinite;
}

/* ===================================
   SET SYSTEM PAGE — VALUE PROP STRIP
   =================================== */
.set-value-section {
  background: var(--bg-white);
}

.set-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.set-value-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.set-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.set-value-card:hover {
  border-color: rgba(123, 47, 242, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.set-value-card:hover::before {
  opacity: 1;
}

.set-value-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(123, 47, 242, 0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -2px;
}

.set-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
  box-shadow: 0 6px 20px rgba(123, 47, 242, 0.25);
  transform: perspective(400px) rotateY(-4deg) rotateX(4deg);
  transition: transform 0.3s ease;
}

.set-value-card:hover .set-value-icon {
  transform: perspective(400px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.set-value-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.set-value-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.set-value-text {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===================================
   SET SYSTEM PAGE — HOW IT WORKS
   =================================== */
.set-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 3rem auto;
  position: relative;
}

.set-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.set-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}

.set-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(123, 47, 242, 0.35);
  flex-shrink: 0;
  z-index: 1;
}

.set-step-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(123, 47, 242, 0.4), rgba(0, 212, 170, 0.2));
  margin: 4px 0;
}

.set-step-line--last {
  display: none;
}

.set-step-body {
  flex: 1;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.set-step-body:hover {
  border-color: rgba(123, 47, 242, 0.2);
  box-shadow: var(--card-shadow-hover);
  transform: translateX(4px);
}

.set-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(123, 47, 242, 0.08);
  border: 1px solid rgba(123, 47, 242, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.set-step-content {
  flex: 1;
}

.set-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.set-step-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.set-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.set-tag {
  display: inline-block;
  background: rgba(123, 47, 242, 0.08);
  border: 1px solid rgba(123, 47, 242, 0.18);
  color: var(--primary);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.set-step-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.75rem;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
}

.set-stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.set-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.set-onboarding-result {
  background: linear-gradient(135deg, rgba(123, 47, 242, 0.06), rgba(0, 212, 170, 0.06));
  border: 1px solid rgba(123, 47, 242, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 1rem 1.5rem;
  align-items: start;
}

.set-onboarding-result-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(123, 47, 242, 0.3);
  grid-row: 1;
}

.set-onboarding-result-content {
  grid-row: 1;
}

.set-onboarding-tagline {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
}

.set-result-items {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(123, 47, 242, 0.1);
}

.set-result-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.set-result-item i {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* ===================================
   SET SYSTEM PAGE — CAPABILITIES GRID
   =================================== */
.set-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.set-cap-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.set-cap-card:hover {
  border-color: rgba(123, 47, 242, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.set-cap-card--featured {
  background: linear-gradient(135deg, rgba(123, 47, 242, 0.04), rgba(99, 102, 241, 0.04));
  border-color: rgba(123, 47, 242, 0.2);
  grid-column: span 3;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.set-cap-card--featured .set-cap-header {
  min-width: 240px;
}

.set-cap-card--featured .set-cap-subtitle,
.set-cap-card--featured .set-cap-text {
  flex: 1;
  min-width: 280px;
}

.set-cap-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.set-cap-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(123, 47, 242, 0.25);
  transform: perspective(400px) rotateY(-4deg) rotateX(4deg);
  transition: transform 0.3s ease;
}

.set-cap-card:hover .set-cap-icon {
  transform: perspective(400px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.set-cap-icon--ai {
  background: linear-gradient(135deg, #7B2FF2, #00D4AA);
}

.set-cap-meta {
  flex: 1;
}

.set-cap-number {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
}

.set-cap-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.set-cap-subtitle {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.2px;
}

.set-cap-text {
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.7;
}

.set-cap-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  background: rgba(123, 47, 242, 0.06);
  border: 1px solid rgba(123, 47, 242, 0.15);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  margin-top: auto;
}

.set-cap-stat-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.set-cap-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.set-lifecycle-states {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.25rem;
}

.set-lifecycle-states i {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.set-state {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.set-state--detected {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.set-state--progress {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.set-state--remediated {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.set-state--verified {
  background: rgba(0, 212, 170, 0.1);
  color: #059669;
  border: 1px solid rgba(0, 212, 170, 0.3);
}

.set-sai-principles {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(123, 47, 242, 0.1);
  width: 100%;
}

.set-sai-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.set-sai-item i {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* ===================================
   SET SYSTEM PAGE — WHO IT'S FOR
   =================================== */
.set-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.set-audience-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.set-audience-card:hover {
  border-color: rgba(123, 47, 242, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.set-audience-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(123, 47, 242, 0.25);
  transform: perspective(500px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.set-audience-card:hover .set-audience-icon {
  transform: perspective(500px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.set-audience-content {
  flex: 1;
}

.set-audience-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.set-audience-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.set-audience-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.set-audience-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.set-audience-features li i {
  color: var(--secondary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ===================================
   SET SYSTEM PAGE — CISO AS A SERVICE
   =================================== */
.set-ciso-section {
  background: var(--bg-white);
}

.set-ciso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.set-ciso-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.set-ciso-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.set-ciso-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #fff;
}

.set-ciso-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.set-ciso-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .set-ciso-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===================================
   SET SYSTEM PAGE — TRUST SECTION
   =================================== */
.set-trust-section {
  background: var(--bg-white);
}

.set-trust-inner {
  max-width: 900px;
  margin: 0 auto;
}

.set-trust-header {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.set-trust-lottie-wrap {
  flex-shrink: 0;
}

.set-trust-lottie {
  width: 180px;
  height: 180px;
  filter: drop-shadow(0 8px 24px rgba(123, 47, 242, 0.2));
}

.set-trust-label {
  display: block;
  margin-bottom: 0.5rem;
}

.set-trust-title {
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.set-trust-intro {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
}

.set-trust-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}

.set-trust-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--card-border);
}

.set-trust-item:first-child {
  border-top: 1px solid var(--card-border);
}

.set-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(123, 47, 242, 0.2);
  transform: perspective(400px) rotateY(-4deg) rotateX(4deg);
  transition: transform 0.3s ease;
}

.set-trust-item:hover .set-trust-icon {
  transform: perspective(400px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.set-trust-content {
  flex: 1;
}

.set-trust-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.set-trust-item-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.set-trust-compliance {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.75rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
}

.set-trust-compliance-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.set-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.set-compliance-badge {
  display: inline-block;
  background: rgba(123, 47, 242, 0.08);
  border: 1px solid rgba(123, 47, 242, 0.2);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
}

/* ===================================
   SET SYSTEM PAGE — DEMO CAROUSEL
   =================================== */
.set-preview-section {
  background: var(--bg-hero);
  color: #fff;
  padding-bottom: 80px;
  overflow: hidden;
}

.set-preview-section .section-label {
  color: var(--secondary);
}

.set-preview-section .section-title {
  color: #fff;
}

.set-preview-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.set-carousel-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.set-demo-swiper {
  padding-bottom: 60px;
}

.set-demo-slide {
  width: 720px;
  max-width: 85vw;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.set-demo-slide-inner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(123, 47, 242, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide-active .set-demo-slide-inner {
  border-color: rgba(123, 47, 242, 0.5);
  box-shadow: 0 8px 60px rgba(123, 47, 242, 0.2), 0 0 30px rgba(0, 212, 170, 0.08);
}

.set-demo-slide-inner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.set-demo-caption {
  padding: 20px 24px 24px;
  position: relative;
}

.set-demo-step {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}

.set-demo-caption h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.set-demo-caption p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Swiper pagination dots */
.set-demo-swiper::part(pagination) {
  bottom: 0;
}

.set-demo-swiper::part(bullet) {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.set-demo-swiper::part(bullet-active) {
  background: var(--secondary);
  width: 28px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .set-demo-slide {
    width: 90vw;
    max-width: 90vw;
  }

  .set-demo-caption {
    padding: 16px 18px 20px;
  }

  .set-demo-caption h4 {
    font-size: 1.1rem;
  }

  .set-demo-caption p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .set-demo-slide {
    width: 92vw;
    max-width: 92vw;
  }
}

/* ===================================
   SET SYSTEM PAGE — CTA SECTION
   =================================== */
.set-cta-section {
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: #FFFFFF;
}

.set-cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123, 47, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 47, 242, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

.set-cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 47, 242, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.set-cta-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.set-cta-lottie-wrap {
  flex-shrink: 0;
}

.set-cta-lottie {
  width: 220px;
  height: 220px;
  filter: drop-shadow(0 8px 30px rgba(0, 212, 170, 0.35));
}

.set-cta-content {
  flex: 1;
}

.set-cta-label {
  color: var(--secondary);
}

.set-cta-title {
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.2;
}

.set-cta-body {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 560px;
}

.set-cta-actions {
  justify-content: flex-start;
}

.set-btn-ghost-dark {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.set-btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #FFFFFF !important;
}

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

/* Tablets and below */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile and below */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .accessibility-btn {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }

  .accessibility-panel {
    right: 1rem;
    bottom: 4rem;
    max-width: calc(100vw - 2rem);
  }

  .cookie-banner {
    bottom: 1rem;
    width: calc(100% - 2rem);
  }

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

  .trust-bar-logos {
    gap: 0.75rem;
  }

  .trust-shield-badge {
    padding: 12px 14px;
  }

  .trust-shield-icon {
    width: 36px;
    height: 40px;
  }

  .trust-shield-label {
    font-size: 0.72rem;
  }

  .nav-dropdown-menu {
    display: none !important;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .package-card {
    padding: 1.5rem;
  }

  .program-tabs {
    gap: 0.5rem;
  }

  .program-tab {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* ===================================
   SET PAGE — RESPONSIVE
   =================================== */

/* Tablet and below */
@media (max-width: 1024px) {
  .set-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .set-cap-card--featured {
    grid-column: span 2;
    flex-direction: column;
  }

  .set-hero-lottie {
    width: 300px;
    height: 300px;
  }

  .set-trust-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .set-trust-lottie {
    width: 140px;
    height: 140px;
  }
}

/* Mobile and below */
@media (max-width: 768px) {
  .set-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .set-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .set-breadcrumb {
    justify-content: center;
  }

  .set-hero-text {
    max-width: 100%;
  }

  .set-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .set-hero-lottie {
    width: 220px;
    height: 220px;
  }

  .set-hero-visual {
    order: -1;
  }

  .set-value-grid {
    grid-template-columns: 1fr;
  }

  .set-steps {
    margin: 2rem auto;
  }

  .set-step-body {
    flex-direction: column;
    gap: 1rem;
  }

  .set-onboarding-result {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .set-onboarding-result-icon {
    grid-row: auto;
  }

  .set-onboarding-result-content {
    grid-row: auto;
  }

  .set-capabilities-grid {
    grid-template-columns: 1fr;
  }

  .set-cap-card--featured {
    grid-column: span 1;
  }

  .set-lifecycle-states {
    gap: 0.3rem;
  }

  .set-sai-principles {
    flex-direction: column;
    gap: 0.75rem;
  }

  .set-audience-grid {
    grid-template-columns: 1fr;
  }

  .set-audience-card {
    flex-direction: column;
  }

  .set-trust-header {
    flex-direction: column;
    gap: 1.25rem;
  }

  .set-trust-compliance {
    flex-direction: column;
    align-items: flex-start;
  }

  .set-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .set-cta-lottie-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .set-cta-lottie {
    width: 160px;
    height: 160px;
  }

  .set-cta-body {
    max-width: 100%;
  }

  .set-cta-actions {
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .set-hero-acronym {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .set-hero-expansion {
    font-size: 1.2rem;
  }

  .set-hero-tagline {
    font-size: 1rem;
  }

  .set-hero-subtitle {
    font-size: 0.95rem;
  }

  .set-value-card {
    padding: 1.5rem 1.25rem;
  }

  .set-cap-card {
    padding: 1.25rem;
  }

  .set-audience-card {
    padding: 1.5rem;
  }

  .set-step-body {
    padding: 1.25rem;
  }

  .set-lifecycle-states {
    justify-content: flex-start;
  }

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

/* ===================================
   RTL (Hebrew) OVERRIDES
   =================================== */
.rtl-page {
  direction: rtl;
  text-align: right;
  font-family: 'Heebo', var(--font-body);
}

.rtl-page .hero-split {
  text-align: right;
}

.rtl-page .hero-text .hero-cta-group {
  justify-content: flex-start;
}

.rtl-page .nav-cta {
  margin-left: 0;
  margin-right: 8px;
}

.rtl-page .nav-links a.active::after {
  left: auto;
  right: 16px;
}

.rtl-page .breadcrumb-separator svg {
  transform: scaleX(-1);
}

.rtl-page .philosophy-quote {
  border-left: none;
  border-right: 4px solid var(--primary);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.rtl-page .card-link:hover {
  transform: translateX(-4px);
}

.rtl-page .info-item {
  flex-direction: row-reverse;
  text-align: right;
}

.rtl-page .footer-grid {
  direction: rtl;
}

.rtl-page .mobile-sidebar {
  left: auto;
  right: 0;
  transform: translateX(100%);
  border-right: none;
  border-left: 1px solid rgba(123, 47, 242, 0.2);
}

.rtl-page .mobile-sidebar.active {
  transform: translateX(0);
}

.rtl-page .accessibility-btn {
  right: auto;
  left: 2rem;
}

.rtl-page .accessibility-panel {
  right: auto;
  left: 2rem;
}

.rtl-page .skip-link {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}
