@import url("https://fonts.cdnfonts.com/css/inria-sans");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Font loading optimization */
@font-face {
  font-family: "Inter-fallback";
  size-adjust: 100.06%;
  ascent-override: 90%;
  src: local("BlinkMacSystemFont"), local("Segoe UI"), local("Roboto"),
    local("Helvetica Neue"), local("Arial");
}

body {
  font-family: "Inter", "Inter-fallback", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  font-size: 16px;
  overflow-x: hidden;
  /* Prevent font loading flicker */
  font-display: swap;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
}

.full-width {
  width: 100%;
  padding: 0;
}

/* Color Variables */
:root {
  --primary-coral: #ff6b3d;
  --primary-orange: #ff8a5b;
  --secondary-purple: #8b5cf6;
  --accent-blue: #3b82f6;
  --success-green: #10b981;
  --warning-amber: #f59e0b;
  --error-red: #ef4444;
  --neutral-900: #111827;
  --neutral-800: #1f2937;
  --neutral-700: #374151;
  --neutral-600: #4b5563;
  --neutral-500: #6b7280;
  --neutral-400: #9ca3af;
  --neutral-300: #d1d5db;
  --neutral-200: #e5e7eb;
  --neutral-100: #f3f4f6;
  --neutral-50: #f9fafb;
  --white: #ffffff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: #4b5563;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: transparent;

  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

  /* button background */
  background-origin: border-box;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #00cfff, #ff00d4);

  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);

  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #00cfff, #ff00d4);
  background-size: 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  /* background: rgba(255, 255, 255, 0.2); */
  border: 2px solid transparent;
}

.btn-primary:hover::before {
  opacity: 1;
  animation: gradientRotate 1s ease;
}

@keyframes gradientRotate {
  0%,
  100% {
    background: linear-gradient(135deg, #00cfff, #ff00d4);
  }

  7% {
    background: linear-gradient(155deg, #00cfff, #ff00d4);
  }

  13% {
    background: linear-gradient(180deg, #00cfff, #ff00d4);
  }

  20% {
    background: linear-gradient(205deg, #00cfff, #ff00d4);
  }

  25% {
    background: linear-gradient(225deg, #00cfff, #ff00d4);
  }

  25% {
    background: linear-gradient(255deg, #00cfff, #ff00d4);
  }

  38% {
    background: linear-gradient(270deg, #00cfff, #ff00d4);
  }

  38% {
    background: linear-gradient(290deg, #00cfff, #ff00d4);
  }

  50% {
    background: linear-gradient(315deg, #00cfff, #ff00d4);
  }

  50% {
    background: linear-gradient(335deg, #00cfff, #ff00d4);
  }

  63% {
    background: linear-gradient(360deg, #00cfff, #ff00d4);
  }

  63% {
    background: linear-gradient(20deg, #00cfff, #ff00d4);
  }

  75% {
    background: linear-gradient(45deg, #00cfff, #ff00d4);
  }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: var(--neutral-700);
  background: var(--white);
  border: 2px solid var(--neutral-200);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--neutral-50);
  border-color: var(--neutral-300);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: var(--neutral-700);
  background: transparent;
  border: 2px solid var(--neutral-300);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--neutral-900);
  color: white;
  border-color: var(--neutral-900);
  transform: translateY(-1px);
}

.btn-large {
  padding: 15px 48px;
  font-size: 18px;
  min-width: 180px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  /* Remove background and backdrop-filter from parent */
}

/* Navbar Header - Separate backdrop-filter */
.navbar-header {
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.navbar.navbar-scrolled .navbar-header {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
  /* Prevent layout shifts during state changes */
  transform: translateZ(0);
  will-change: opacity;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-logo:visited {
  color: #1a1a1a;
}

.nav-logo:active {
  opacity: 0.6;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  /* Prevent layout shifts */
  white-space: nowrap;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  /* Optimized font stack for consistent rendering */
  font-family: "Inter", "Inter-fallback", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-display: swap;
  /* Prevent font swap flickering */
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  transition: all 0.3s ease;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
}

/* Mobile Navigation - Separate element with its own backdrop-filter */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 16px 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
  /* Force hardware acceleration */
  transform: translateZ(0);
  will-change: opacity, transform;
}

.mobile-nav.mobile-open {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  animation: mobileMenuSlideIn 0.3s ease-out;
}

/* Enhanced backdrop-filter when navbar is scrolled */
.navbar.navbar-scrolled .mobile-nav {
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
  .mobile-nav {
    background: rgba(255, 255, 255, 0.95) !important;
  }

  .navbar.navbar-scrolled .mobile-nav {
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .navbar.navbar-scrolled .navbar-header {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}

@keyframes mobileMenuSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-family: "Inria Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: #6366f1;
}

.nav-dropdown {
  position: relative;
  margin-left: 32px;
}

.language-hint {
  font-size: 14px;
  color: #6b7280;
  text-align: center;
  margin-bottom: 0px;
  margin-right: -70px;
  opacity: 0.8;
}

/* Language Selector Styles */
.language-selector {
  position: relative;
  cursor: pointer;
}

.flag-container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  width: 120px;
  justify-content: flex-start;
}

.flag-container:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.flag-icon {
  transition: transform 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.language-text {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
}

.flag-container:hover .language-text,
.nav-dropdown:hover .language-text,
.language-selector.open .language-text {
  opacity: 1;
  transform: translateX(0);
  width: auto;
  padding-left: 4px;
}

.flag-container:hover .flag-icon,
.nav-dropdown:hover .flag-icon {
  transform: scale(1.1);
}

.flag-container:hover,
.nav-dropdown:hover .flag-container {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.language-dropdown {
  min-width: 140px;
  top: 100%;
  right: 0;
  margin-top: 0px !important;
  padding-top: 8px;
}

/* Add invisible bridge to prevent gap issues */
.language-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.language-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}

.language-dropdown .dropdown-item.active {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.flag-mini {
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 8px;
}

.nav-dropdown:hover .dropdown-content,
.language-selector.open .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: #f3f4f6;
  color: #6366f1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #374151;
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* Hero Section */
.hero {
  padding: 140px 0 200px;
  position: relative;
  overflow: hidden;
  /* Allow blobs to extend beyond hero section */
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 150px);
  /* Extend background to cover interactive-demo overlap */
  z-index: 1;
  overflow: visible;
  /* Allow blobs to extend beyond hero section */
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  mix-blend-mode: screen;
  filter: blur(100px);
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
}

.hero-blob:nth-child(1) {
  background: radial-gradient(
    circle,
    rgb(224, 134, 241),
    rgb(222, 101, 247, 0.9),
    rgba(255, 255, 255, 0.3)
  );
  animation: heroMove1 10s ease-in-out infinite alternate;
  min-width: 330px;
  width: 25%;
  height: 250px;
  left: 25%;
  top: 25%;
}

.hero-blob:nth-child(2) {
  background: radial-gradient(
    circle,
    rgba(150, 255, 150),
    rgba(150, 255, 150, 0.4),
    rgba(255, 255, 255, 0.2)
  );
  animation: heroMove2 8s ease-in-out infinite alternate;
  border-radius: 50% 50% 45% 55% / 60% 50% 40% 60%;
  min-width: 300px;
  width: 20%;
  height: 240px;
  left: 12%;
  top: 35%;
}

.hero-blob:nth-child(3) {
  background: radial-gradient(
    circle,
    rgba(24, 120, 220, 0.7),
    rgba(24, 120, 220, 0.9),
    rgba(255, 255, 255, 0.3)
  );
  animation: heroMove3 9s ease-in-out infinite alternate;
  border-radius: 60% 40% 45% 55% / 45% 60% 40% 55%;
  min-width: 280px;
  width: 22%;
  height: 240px;
  left: 55%;
  top: 50%;
}

.hero-blob:nth-child(4) {
  background: radial-gradient(
    circle,
    rgba(255, 165, 100, 0.7),
    rgba(255, 165, 100, 0.5),
    rgba(255, 255, 255, 0.3)
  );
  animation: heroMove4 12s ease-in-out infinite alternate;
  border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%;
  min-width: 240px;
  width: 20%;
  height: 240px;
  left: 65%;
  top: 30%;
  filter: blur(110px);
}

.hero-blob:nth-child(5) {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.8)
  );
  animation: heroMove5 8s ease-in-out infinite alternate;
  min-width: 100px;
  width: 10%;
  height: 100px;
  left: 50%;
  top: 45%;
  filter: blur(45px);
}

.hero-blob:nth-child(6) {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.8)
  );
  animation: heroMove6 12s ease-in-out infinite alternate;
  min-width: 80px;
  width: 8%;
  height: 80px;
  left: 25%;
  top: 40%;
  filter: blur(50px);
  border-radius: 50%;
}

.hero-blob:nth-child(7) {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.7)
  );
  animation: heroMove7 15s ease-in-out infinite alternate;
  min-width: 90px;
  width: 9%;
  height: 60px;
  left: 66%;
  top: 50%;
  filter: blur(40px);
  border-radius: 50%;
}

@keyframes heroMove1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(100px, -80px) scale(1.8) rotate(25deg);
  }
}

@keyframes heroMove2 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    transform: translate(-100px, 60px) rotate(360deg) scale(1.5);
  }
}

@keyframes heroMove3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-120px, 90px) scale(1.6) rotate(35deg);
  }
}

@keyframes heroMove4 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }

  100% {
    transform: translate(80px, -60px) rotate(360deg) scale(1.4);
  }
}

@keyframes heroMove5 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    transform: translate(40px, -40px) rotate(360deg) scale(1.5);
  }
}

@keyframes heroMove6 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    transform: translate(-30px, 30px) rotate(360deg) scale(1.4);
  }
}

@keyframes heroMove7 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    transform: translate(25px, -25px) rotate(360deg) scale(1.5);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 1500px;
  margin: 0 auto;
}

.hero-title {
  font-size: 70px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 2px;
  color: #1a1a1a;
  text-wrap: balance;
}

.hero-subtitle {
  color: #1a1a1a;
  font-size: 70px;
  font-weight: 350;
  display: block;
  text-wrap: balance;
}

.hero-description {
  font-size: 25px;
  line-height: 1.6;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

/* Interactive Demo Section */
.interactive-demo {
  padding: 0 0;
  position: relative;
  overflow: hidden;
  color: #1a1a1a;
  background: transparent;
  margin-top: -50px;
  /* Overlap with hero section to show blobs */
}

/* Main Demo Area */
.demo-main {
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.demo-showcase {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated Background Placeholder */
.demo-background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 20px;
  /* border: 2px dashed #cbd5e1; */
  border: none;
  transition: background 0.4s ease;
}

.animation-placeholder {
  text-align: center;
  color: #64748b;
}

.placeholder-text {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.placeholder-subtitle {
  font-size: 16px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* 3D Carousel Container */
.demo-screenshots {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
}

.carousel-container {
  position: relative;
  width: 400px;
  height: 400px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.screenshot-card {
  position: absolute;
  width: 400px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid #e2e8f0;
  text-wrap: balance;

  /* Center positioning */
  top: 50%;
  left: 45%;
  margin-top: -120px;
  margin-left: -50%;
}

.card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  backface-visibility: hidden;
}

.screenshot-header {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.screenshot-body {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.agent-description .carousel-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
  width: 100%;
  height: 0;
}

.carousel-nav-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #373d47d7;
  transition: all 0.3s ease;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.carousel-nav-btn:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px) scale(1.05);
  color: #6366f1;
}

.carousel-nav-btn:active {
  transform: translateY(0) scale(0.98);
}

.carousel-nav-btn:focus {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
}

.carousel-nav-btn.prev {
  left: -92%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-nav-btn.next {
  right: -92%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-nav-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}

.carousel-nav-btn.prev::before {
  border-right: 8px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-right: 2px;
}

.carousel-nav-btn.next::before {
  border-left: 8px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
}

@media (max-width: 768px) {
  .carousel-navigation {
    display: block !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    width: 100%;
    height: 0;
  }

  .carousel-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .carousel-nav-btn:hover,
  .carousel-nav-btn:active {
    background: rgba(255, 255, 255, 1);
    transform: scale(0.95);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  }

  .carousel-nav-btn.prev {
    left: -25%;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-nav-btn.next {
    right: -25%;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-nav-btn.prev::before {
    border-right: 7px solid currentColor;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-right: 1px;
  }

  .carousel-nav-btn.next::before {
    border-left: 7px solid currentColor;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 1px;
  }
}

@media (max-width: 480px) {
  .carousel-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .carousel-nav-btn.prev {
    left: -15%;
  }

  .carousel-nav-btn.next {
    right: -15%;
  }

  .carousel-nav-btn.prev::before {
    border-right: 6px solid currentColor;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }

  .carousel-nav-btn.next::before {
    border-left: 6px solid currentColor;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }
}

@media (max-width: 320px) {
  .carousel-nav-btn.prev {
    left: -15%;
  }

  .carousel-nav-btn.next {
    right: -15%;
  }
}

/* Agent Selector Buttons - Keep original styles */
.agent-selector {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

.agent-buttons {
  display: flex;
  align-items: flex-end;
  width: 100%;
  position: relative;
}

.agent-btn {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  height: 200px;
  border-color: transparent;
}

.agent-btn-rounded-container {
  width: 25%;
  filter: url(#rounded) drop-shadow(0 16px 24px rgba(214, 202, 220, 0.3));
}

/* Staggered positioning for alternative effect */
.agent-btn-rounded-container:nth-child(1) .agent-btn {
  border-radius: 16px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.agent-btn-rounded-container:nth-child(2) .agent-btn {
  clip-path: polygon(100% 0, 0 0, 10% 100%, 90% 100%);
}

.agent-btn-rounded-container:nth-child(3) .agent-btn {
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
}

.agent-btn-rounded-container:nth-child(4) .agent-btn {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 16px 8px;
}

.btn-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.btn-icon .agent-icon {
  width: 70px;
}

.btn-text {
  isolation: isolate;
  font-size: 20px;
  font-weight: 600;
  color: #374151;
  text-align: center;
  line-height: 1.2;
}

.agent-description {
  font-size: 15px;
  font-weight: 400;
  color: #374151;
  margin-top: 2px;
}

.agent-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.agent-btn:not(.active)#targetiq-btn:hover .btn-text,
.agent-btn:not(.active)#targetiq-btn:hover .agent-description {
  color: rgba(52, 171, 245);
}

.agent-btn:not(.active)#innovia-btn:hover .btn-text,
.agent-btn:not(.active)#innovia-btn:hover .agent-description {
  color: rgba(11, 169, 53);
}

.agent-btn:not(.active)#copycraft-btn:hover .btn-text,
.agent-btn:not(.active)#copycraft-btn:hover .agent-description {
  color: rgba(150, 10, 144);
}

.agent-btn:not(.active)#retailpilot-btn:hover .btn-text,
.agent-btn:not(.active)#retailpilot-btn:hover .agent-description {
  color: rgba(252, 52, 118);
}

.agent-btn.active {
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.agent-btn#targetiq-btn.active {
  background: rgba(52, 171, 245, 0.6);
}

.agent-btn#innovia-btn.active {
  background: rgba(11, 169, 53, 0.6);
}

.agent-btn#copycraft-btn.active {
  background: rgba(150, 10, 144, 0.6);
}

.agent-btn#retailpilot-btn.active {
  background: rgba(252, 52, 118, 0.6);
}

.agent-btn.active .btn-text {
  color: white;
  font-weight: 700;
}

.agent-btn.active .agent-description {
  color: white;
}

.agent-btn.active .btn-icon {
  filter: brightness(1.2);
}

.agent-btn.active:hover {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
}

/* 3D Carousel Card Specific Styles */
.screenshot-card[data-agent="targetiq"].active {
  border-left: 4px solid rgba(52, 171, 245, 0.8);
}

.screenshot-card[data-agent="targetiq"].active .screenshot-header {
  color: rgba(52, 171, 245, 0.9);
}

.screenshot-card[data-agent="innovia"].active {
  border-left: 4px solid rgba(11, 169, 53, 0.8);
}

.screenshot-card[data-agent="innovia"].active .screenshot-header {
  color: rgba(11, 169, 53, 0.9);
}

.screenshot-card[data-agent="copycraft"].active {
  border-left: 4px solid rgba(150, 10, 144, 0.8);
}

.screenshot-card[data-agent="copycraft"].active .screenshot-header {
  color: rgba(150, 10, 144, 0.9);
}

.screenshot-card[data-agent="retailpilot"].active {
  border-left: 4px solid rgba(252, 52, 118, 0.8);
}

.screenshot-card[data-agent="retailpilot"].active .screenshot-header {
  color: rgba(252, 52, 118, 0.9);
}

/* Background Animation Effects */
.demo-background-animation.targetiq-active {
  background: linear-gradient(
    135deg,
    rgba(52, 171, 245, 0.1) 0%,
    rgba(52, 171, 245, 0.05) 100%
  );
}

.demo-background-animation.innovia-active {
  background: linear-gradient(
    135deg,
    rgba(11, 169, 53, 0.1) 0%,
    rgba(11, 169, 53, 0.05) 100%
  );
}

.demo-background-animation.copycraft-active {
  background: linear-gradient(
    135deg,
    rgba(150, 10, 144, 0.1) 0%,
    rgba(150, 10, 144, 0.05) 100%
  );
}

.demo-background-animation.retailpilot-active {
  background: linear-gradient(
    135deg,
    rgba(252, 52, 118, 0.1) 0%,
    rgba(252, 52, 118, 0.05) 100%
  );
}

/* Responsive Design */
@media (max-width: 768px) {
  .demo-screenshots {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 40px auto;
    width: 100%;
    justify-content: center;
  }

  .carousel-container {
    width: 280px;
    height: 280px;
  }

  .screenshot-card {
    width: 280px;
    height: 200px;
    margin-top: -100px;
    margin-left: -140px;
  }

  .card-content {
    padding: 20px;
  }

  .screenshot-header {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .screenshot-body {
    font-size: 13px;
  }

  .interactive-demo {
    padding: 0 0;
  }

  .demo-showcase {
    min-height: 400px;
  }

  .placeholder-text {
    font-size: 20px;
  }

  .placeholder-subtitle {
    font-size: 14px;
  }

  .agent-description {
    justify-content: center;
  }
}

.hero,
.interactive-demo,
.hero-value-prop,
.why-ai-jar,
.footer {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  * {
    max-width: 100vw;
  }

  .hero-background {
    left: 0;
    transform: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .btn-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
  }

  .agent-description {
    font-size: 8px;
    margin-top: 4px;
    text-align: center;
  }

  .btn-content {
    padding: 12px 4px;
  }

  .agent-btn {
    height: 120px;
  }

  .btn-icon .agent-icon {
    width: 48px;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .carousel-container {
    width: 280px; /* Further reduced for mobile */
    height: 280px;
  }

  .screenshot-card {
    width: 220px; /* Further reduced for mobile */
    height: 160px;
    margin-top: -80px; /* Half of 160px */
    margin-left: -110px; /* Half of 220px */
  }

  .card-content {
    padding: 16px;
  }

  .screenshot-header {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .screenshot-body {
    font-size: 11px;
  }

  /* Mobile navigation positioning */
  .carousel-nav-btn.prev {
    left: -35%;
  }

  .carousel-nav-btn.next {
    right: -35%;
  }
}

@media (max-width: 480px) {
  .demo-screenshots {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .carousel-container {
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }

  .screenshot-card {
    width: 180px;
    height: 170px;
    margin-top: -70px;
    margin-left: -90px;
    top: 50%;
    left: 50%;
    transform: translateX(0);
  }

  .card-content {
    padding: 12px;
  }

  .screenshot-header {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .screenshot-body {
    font-size: 10px;
    line-height: 1.3;
  }

  .carousel-nav-btn.prev {
    left: -20%;
  }

  .carousel-nav-btn.next {
    right: -20%;
  }
}

/* Hero-value-prop Section */
.hero-value-prop {
  padding: 400px 0 150px;
  position: relative;
  overflow: visible;
  width: 100%;
  min-height: 25vh;
  display: flex;
  align-items: center;
  text-align: center;
  text-wrap: balance;
}

.hero-value-prop .container {
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25),
    0 0 20px rgba(255, 255, 255, 0.05);
}

.value-prop-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.value-prop-description {
  font-size: 21px;
  line-height: 1.6;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.value-prop-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.btn-explore-agent {
}

.about-aijar-background {
  position: relative;
  isolation: isolate;
}
.hero-value-background {
  position: absolute;
  width: 100%;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}

.btn-explore-agent-v1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-explore-agent-v1:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
  .btn-explore-agent-v1 {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.65);
    height: 40px;
    padding: 14px 32px;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  }
}

.hero-value-background .gradient-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.99;
  transform: translate(-50%, -50%) translate(var(--dx, 0), var(--dy, 0))
    scale(1);
  animation: floatOrb 6s ease-in-out infinite;
}
@keyframes floatOrb {
  0%,
  100% {
    transform: translate(-50%, -50%) translate(var(--dx, 0), var(--dy, 0))
      scale(0.9);
  }
  50% {
    transform: translate(-50%, -50%) translate(var(--dx, 0), var(--dy, 0))
      translateY(-28px) scale(1.2);
  }
}
.orb-1 {
  --dx: -160px;
  --dy: 60px;
  --dur: 6s;
  --amp: 36px;
  --scaleMax: 1.2;
  animation-delay: -0.3s;
}
.orb-2 {
  --dx: -60px;
  --dy: -20px;
  --dur: 7.5s;
  --amp: 32px;
  --scaleMax: 1.18;
  animation-delay: -0.9s;
}
.orb-3 {
  --dx: 80px;
  --dy: 20px;
  --dur: 8.5s;
  --amp: 40px;
  --scaleMax: 1.22;
  animation-delay: -0.6s;
}

.gradient-orb {
  animation: floatOrb var(--dur, 7s) ease-in-out infinite;
}

.hero-value-background .orb-1 {
  --dx: -180px;
  --dy: 560px;
  background: radial-gradient(
    circle,
    rgba(217, 0, 255, 0.8) 0%,
    rgba(213, 118, 230, 0.4) 80%
  );
}
.hero-value-background .orb-2 {
  --dx: 100px;
  --dy: 550px;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.8) 0%,
    rgba(0, 188, 212, 0.4) 100%
  );
}
.hero-value-background .orb-3 {
  --dx: 20px;
  --dy: 580px;
  background: radial-gradient(
    circle,
    rgba(43, 91, 233, 0.8) 0%,
    rgba(133, 146, 231, 0.4) 100%
  );
}

@media (max-width: 480px) {
  .hero-value-prop {
    padding: 130px 0 100px;
  }

  .hero-value-prop .container {
    padding: 0 16px;
  }

  .value-prop-description {
    margin-bottom: 30px;
  }
}

/* Value Slide */
.t-slider-container {
  width: 80vw;
  max-width: 1352px;
  position: relative;
  padding-top: 58px;
  padding-bottom: 40px;
  z-index: 2;
}

.t-slider {
  position: relative;
  display: flex;
  justify-content: center;

  --pad: 100px; /* Desktop padding (reduced on mobile) */
  --cut: 110px; /* Trapezoid diagonal depth */
  --radius: 24px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --stroke: rgba(118, 75, 162, 0.35);

  /* Morphing / transition parameters */
  --morph-time: 2000ms;
  --morph-ease: cubic-bezier(0.22, 0.8, 0.2, 1);

  --overlap: -90px; /* Right card overlaps left (negative for overlap) */
  --rect-gap: 30px; /* Gap between rectangles in initial state */

  padding: var(--pad) var(--pad);
  margin-top: 0px;
  margin-bottom: 30px;
}

.t-viewport {
  width: 100%;
  position: relative;
}
.t-track {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
}

.t-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr; /* Left text / right image ratio (slightly left-heavy) */
  align-items: stretch;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  filter: url(#t-rounded) drop-shadow(0 16px 24px rgba(202, 169, 217, 0.2));
}
.t-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.t-card-l {
  position: relative;
  z-index: 4; /* Above right card to hide hairline seam */
  border-radius: var(--radius) 0 0 var(--radius);
  padding: clamp(28px, 3vw, 48px);
  background: rgb(249, 247, 255);
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% 100%, 0 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.t-card-r {
  position: relative;
  z-index: 3;
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-left: var(--overlap);
}

.t-media,
.t-media img {
  width: 100%;
  height: 100%;
  display: block;
}
.t-media img {
  object-fit: cover;
}

.t-clip-left {
  clip-path: polygon(0 0, 100% 0, 100% 100%, var(--cut) 100%);
}

.t-slide .t-card-l,
.t-slide .t-card-r,
.t-slide .t-clip-left {
  will-change: clip-path, transform, margin-left;
  transition: clip-path var(--morph-time) var(--morph-ease),
    transform 2000ms var(--morph-ease), margin-left 600ms var(--morph-ease);
  border-top: solid 0.5px rgba(199, 197, 204, 0.5);
  border-bottom: solid 0.5px rgba(199, 197, 204, 0.5);
}

.t-slide.is-rect {
  grid-template-columns: 2fr 1fr;
}
.t-slide.is-rect .t-card-l {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border-radius: var(--radius);
}
.t-slide.is-rect .t-clip-left,
.t-slide.is-rect .t-card-r {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.t-slide.is-rect .t-card-r {
  margin-left: var(--rect-gap);
}

.t-slide.anim-shift .t-card-r {
  transform: translateX(32px);
}

.t-quote {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 18px;
}
.t-author {
  font-size: clamp(14px, 1.6vw, 18px);
  color: #374151;
  text-wrap: balance;
  padding-right: 20px;
}

.t-arrows {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 12px;
  z-index: 20;
}

.t-arrows button {
  --btn-size: 44px;
  width: var(--btn-size);
  height: var(--btn-size);
  border-radius: 9999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  user-select: none;
  line-height: 1;
  font-size: 18px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.t-arrows button:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}
.t-arrows button:active {
  transform: translateY(0);
}
.t-arrows button:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
}
.t-arrows button:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.t-pager {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: clamp(260px, 42vw, 560px);
  height: 16px;
  z-index: 12;
}

.t-pager .t-rail {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(15, 23, 42, 0.18);
  border-radius: 999px;
  overflow: visible;
}
.t-pager .t-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.28);
  transition: width 0.35s ease;
  pointer-events: none;
}
.t-pager .t-cursor {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7a73, #8a4fff 60%, #4f83ff);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, width 0.35s ease;
  pointer-events: none;
}

.t-pager .t-hit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
  cursor: pointer;
}
.t-pager .t-hit:hover ~ .t-rail {
  filter: brightness(1.03);
}

@media (max-width: 900px) {
  .t-slider-container {
    width: 100%;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
  }

  .t-slider {
    --pad: 16px; /* Reduced padding on small screens */
    display: block;
    padding: 20px 16px 22px;
  }

  .t-track {
    height: auto; /* Auto height */
  }

  .t-slide {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
    padding: 0;
    filter: none;
    opacity: 1;
    transform: none;
    position: static;
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .t-slide:not(.is-active) {
    display: none;
  }

  .t-card-l {
    clip-path: none;
    border-radius: var(--radius);
    margin: 0;
    padding: 20px;
    margin: 0 0 12px 0;
    padding: 20px;
    box-shadow: var(--shadow);
  }

  .t-card-r {
    border-radius: var(--radius);
    margin-left: 0;
    transform: none;
    height: auto;
    box-shadow: var(--shadow);
  }

  .t-clip-left {
    clip-path: none;
  }

  .t-slide.is-rect .t-card-l,
  .t-slide.is-rect .t-clip-left,
  .t-slide.anim-shift .t-card-r {
    clip-path: none;
    transform: none;
    margin-left: 0;
  }
  .t-quote {
    font-size: 25px;
    font-weight: 300px;
    text-align: center;
  }
  .t-author {
    text-align: center;
  }

  .t-media {
    width: 100%;
    height: auto;
  }

  .t-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
  }

  .t-arrows {
    top: auto;
    bottom: 0px;
    left: calc(50% - 32px);
    gap: 8px;
    z-index: 20;
  }

  .t-arrows button {
    --btn-size: 36px;
    font-size: 16px;
  }

  .t-pager {
    transform: none;
    width: 100%;
    margin: 14px 0 35px 0;
    position: relative;
    left: 6px;
    bottom: auto;
    transform: none;
    z-index: 1;
  }

  .t-pager .t-rail {
    height: 6px;
  }
}

/* Why AI JAR Section */
.why-ai-jar {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  text-wrap: balance;
}

.why-ai-jar-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-ai-jar-text {
  max-width: 500px;
}

.why-ai-jar-title {
  font-size: 45px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  line-height: 1.1;
}

.why-ai-jar-description {
  margin-bottom: 40px;
}

.description-text {
  font-size: 18px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 20px;
}

.why-ai-jar-quote {
  background: rgba(139, 92, 246, 0.05);
  border-left: 4px solid #8b5cf6;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quote-text {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  font-style: italic;
  margin: 0;
}

.why-ai-jar-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-container {
  width: 400px;
  height: 400px;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8b5cf6 100%);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-visualization {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.network-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(139, 92, 246, 0.4);
  animation: pulse 2s infinite ease-in-out;
}

.network-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.1)
  );
  transform-origin: left center;
  animation: glow 3s infinite ease-in-out;
  box-shadow: 0 0 2px rgba(139, 92, 246, 0.3);
}

@media (max-width: 768px) {
  .why-ai-jar {
    padding: 80px 0;
  }

  .why-ai-jar .container {
    padding: 0 24px;
  }

  .why-ai-jar-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .why-ai-jar-text {
    max-width: 100%;
  }

  .why-ai-jar-title {
    font-size: 25px;
    font-weight: 400px;
    margin-bottom: 30px;
  }

  .description-text {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .why-ai-jar-quote {
    padding: 20px;
    margin-bottom: 20px;
  }

  .quote-text {
    font-size: 18px;
  }

  .visual-container {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .why-ai-jar {
    padding: 60px 0;
  }

  .why-ai-jar .container {
    padding: 0 16px;
  }

  .why-ai-jar-content {
    gap: 40px;
  }

  .why-ai-jar-title {
    font-size: 25px;
    margin-bottom: 25px;
    line-height: 1.2;
  }

  .description-text {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .why-ai-jar-quote {
    padding: 16px;
  }

  .quote-text {
    font-size: 16px;
    line-height: 1.3;
  }

  .visual-container {
    width: 250px;
    height: 250px;
  }
}

/* Network node positions */
.node-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}
.node-2 {
  top: 30%;
  left: 80%;
  animation-delay: 0.5s;
}
.node-3 {
  top: 70%;
  left: 20%;
  animation-delay: 1s;
}
.node-4 {
  top: 80%;
  left: 75%;
  animation-delay: 1.5s;
}
.node-5 {
  top: 15%;
  left: 60%;
  animation-delay: 2s;
}
.node-6 {
  top: 85%;
  left: 45%;
  animation-delay: 0.3s;
}
.node-7 {
  top: 45%;
  left: 10%;
  animation-delay: 0.8s;
}
.node-8 {
  top: 25%;
  left: 90%;
  animation-delay: 1.3s;
}

/* Network line positions */
.line-1 {
  top: 25%;
  left: 20%;
  width: 180px;
  transform: rotate(25deg);
  animation-delay: 0s;
}
.line-2 {
  top: 45%;
  left: 15%;
  width: 200px;
  transform: rotate(-15deg);
  animation-delay: 1s;
}
.line-3 {
  top: 35%;
  left: 60%;
  width: 120px;
  transform: rotate(65deg);
  animation-delay: 0.5s;
}
.line-4 {
  top: 75%;
  left: 25%;
  width: 150px;
  transform: rotate(-45deg);
  animation-delay: 1.5s;
}
.line-5 {
  top: 20%;
  left: 55%;
  width: 100px;
  transform: rotate(-25deg);
  animation-delay: 2s;
}
.line-6 {
  top: 80%;
  left: 50%;
  width: 130px;
  transform: rotate(15deg);
  animation-delay: 0.7s;
}

.central-sphere {
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 50%;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  animation: rotate 20s linear infinite;
}

.sphere-highlight {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(8px);
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Footer */
/* Minimal Newsletter Footer */
.footer {
  background: #000000;
  color: white;
  padding: 0;
  margin: 0;
}

.footer-newsletter-minimal {
  background: #000000;
  color: white;
  padding: 30px 0 30px 0;
  width: 100%;
}

.newsletter-content-minimal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}

.newsletter-left-minimal {
  flex: 1;
  max-width: 600px;
}

.newsletter-title-minimal {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
  font-family: inherit;
}

.newsletter-form-minimal {
  margin-bottom: 30px;
}

.newsletter-input-group-minimal {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  transition: border-color 0.3s ease;
}

.newsletter-input-group-minimal:focus-within {
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.newsletter-input-minimal {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  padding: 10px 0;
  outline: none;
  font-family: inherit;
}

.newsletter-input-minimal::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.newsletter-btn-minimal {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 24px;
  padding: 10px 20px 10px 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.newsletter-btn-minimal:hover:not(:disabled) {
  color: #0099ff;
  transform: translateX(5px);
}

.newsletter-btn-minimal:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.consent-minimal {
  margin-bottom: 25px;
}

.consent-label-minimal {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  line-height: 1.5;
  font-family: inherit;
}

.consent-checkbox-minimal {
  margin-top: 3px;
  accent-color: white;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.newsletter-feedback-minimal {
  padding: 0px 0;
  font-size: 14px;
  font-family: inherit;
}

.newsletter-feedback-minimal.success .feedback-message-minimal {
  color: #22c55e;
}

.newsletter-feedback-minimal.error .feedback-message-minimal {
  color: #ef4444;
}

.footer-contact-minimal {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-family: inherit;
}

.footer-contact-minimal a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-minimal a:hover {
  color: #0099ff;
}

.newsletter-right-minimal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  text-align: right;
}

.brand-logo-minimal {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.brand-logo-minimal img {
  border-radius: 4px;
}

.brand-name-minimal {
  font-size: 20px;
  font-weight: bold;
  color: white;
  font-family: inherit;
}

.copyright-minimal {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  font-family: inherit;
}

/* Loading animation */
@keyframes loadingDots {
  0%,
  20% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0.3;
  }
}

.btn-loading-minimal {
  animation: loadingDots 1.5s infinite;
}

/* Responsive Design */
@media (max-width: 968px) {
  .newsletter-content-minimal {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding: 0 30px;
  }

  .newsletter-right-minimal {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .newsletter-title-minimal {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .footer-newsletter-minimal {
    padding: 40px 0 30px 0;
  }

  .newsletter-content-minimal {
    padding: 0 20px;
    gap: 30px;
  }

  .newsletter-title-minimal {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .newsletter-input-group-minimal {
    margin-bottom: 15px;
  }

  .newsletter-btn-minimal {
    font-size: 20px;
    padding: 8px 15px 8px 8px;
  }
}

@media (max-width: 480px) {
  .newsletter-content-minimal {
    padding: 0 15px;
  }

  .newsletter-title-minimal {
    font-size: 20px;
  }

  .brand-name-minimal {
    font-size: 20px;
  }
}

/* Hide any existing footer sections */
.footer-content,
.footer-bottom,
.footer-newsletter,
.footer-newsletter-simple {
  display: none;
}

/* Animations */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes growUp {
  0% {
    height: 0;
  }

  100% {
    height: var(--height);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* AOS Animation Classes */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .section-title {
    font-size: 44px;
  }

  .hero-content,
  .benefits-content,
  .testimonial-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card {
    width: 100%;
    max-width: 450px;
  }

  .nav-container {
    padding: 0 32px;
    width: 100%;
  }

  .nav-dropdown {
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  /* Hide desktop navigation */
  .desktop-nav {
    display: none !important;
  }

  /* Mobile navigation is already styled above as .mobile-nav */
  .mobile-nav .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
  }

  .mobile-nav .nav-link {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .mobile-nav .nav-link:hover {
    color: #6366f1;
    padding-left: 8px;
  }

  .mobile-nav .nav-dropdown {
    margin-left: 0;
    width: 100%;
  }

  .mobile-nav .flag-container {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 0;
  }

  .mobile-nav .flag-container .language-text {
    opacity: 1 !important;
    transform: translateX(0) !important;
    width: auto !important;
    padding-left: 4px;
  }

  .mobile-nav .language-dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    margin-top: 10px;
    box-shadow: none;
    border: none;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding: 12px;
    min-width: auto;
    width: 100%;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: none;
  }

  .mobile-nav .language-dropdown.mobile-open {
    opacity: 1;
    display: block;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav .language-dropdown::before {
    display: none;
  }

  .mobile-nav .dropdown-item {
    padding: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .flag-container .language-text {
    opacity: 1 !important;
    transform: translateX(0) !important;
    width: auto !important;
    padding-left: 4px;
  }

  .language-dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    margin-top: 10px;
    box-shadow: none;
    border: none;
    padding: 12px 0;
    min-width: auto;
    width: 100%;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: none;
  }

  .language-dropdown.mobile-open {
    opacity: 1;
    display: block;
    visibility: visible;
    transform: translateY(0);
  }

  .language-dropdown::before {
    display: none;
  }

  .dropdown-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1002;
    /* Improve touch targets on mobile */
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  .mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .mobile-menu-toggle:active {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #374151;
    transition: all 0.3s ease;
    border-radius: 1px;
    display: block;
    transform-origin: center;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: 40vh;
  }

  .hero-title {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
  }

  .hero-subtitle {
    font-size: 60px;
    text-align: center;
  }

  .hero-description {
    font-size: 18px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 22px;
  }

  .testimonial-quote {
    font-size: 20px;
  }

  .cta-title {
    font-size: 40px;
  }

  .cta-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showcase-item.large {
    grid-row: span 1;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .container {
    padding: 0 24px;
  }

  .nav-container {
    padding: 0 24px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 28px;
    font-weight: 700;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .btn-large {
    padding: 12px 28px;
    font-size: 14px;
    min-width: 100px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 70%;
    padding: 8px 16px;
    font-size: 12px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-quote {
    font-size: 18px;
  }

  .cta-title {
    font-size: 28px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .btn-secondary-style {
    padding: 10px 16px;
    font-size: 13px;
  }

  .btn-secondary-style.btn-large {
    padding: 12px 20px;
    font-size: 14px;
    min-width: auto;
  }

  .hero-actions .btn-secondary-style {
    padding: 10px 20px;
    font-size: 13px;
    max-width: 120px;
    min-width: auto;
  }

  /* High DPI and Retina Display Support */
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-card,
    .feature-card,
    .solution-card {
      border-width: 0.5px;
    }
  }

  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
    /* This can be expanded for dark mode support if needed */
  }

  /* Reduced Motion Support */
  @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;
    }
  }

  /* Print Styles */
  @media print {
    .navbar,
    .hero-visual,
    .cta-visual,
    .footer {
      display: none;
    }

    body {
      color: black;
      background: white;
    }

    .hero,
    .features,
    .benefits,
    .solutions,
    .testimonial {
      padding: 20px 0;
    }
  }

  /* === Responsive Typography (override) === */
  .hero-title,
  .hero-subtitle {
    font-size: clamp(28px, 7vw, 70px);
    line-height: 1.4;
  }
  .hero-description {
    font-size: clamp(16px, 3vw, 28px);
  }

  .section-title {
    font-size: clamp(28px, 4.2vw, 52px);
  }
  .section-subtitle {
    font-size: clamp(16px, 2.5vw, 28px);
  }

  .value-prop-title {
    font-size: clamp(28px, 5.5vw, 48px);
  }
  .value-prop-description {
    font-size: clamp(16px, 2.4vw, 24px);
  }

  .innovation-title {
    font-size: clamp(24px, 3.6vw, 48px);
  }
  .innovation-subtitle {
    font-size: clamp(16px, 2.4vw, 20px);
  }

  .btn-text {
    font-size: clamp(16px, 2.8vw, 20px);
  }
  .agent-description {
    font-size: clamp(10px, 2.2vw, 15px);
  }

  /* Page wrapper: ensure each section takes full width */
  .page-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .page-wrapper section {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  /* === Mobile hard-fix ≤768px: unify small-screen layout + hero background === */
  @media (max-width: 768px) {
    .page-wrapper {
      overflow-x: hidden;
    }

    /* Text containers: center alignment and safe width */
    .container {
      padding: 0 16px;
      width: 100%;
      margin: 0 auto;
    }
    .hero-title,
    .hero-subtitle,
    .section-title,
    .value-prop-title,
    .hero-description,
    .section-description,
    .value-prop-description,
    .innovation-subtitle {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
      text-wrap: balance;
    }

    /* Images/cards: make responsive and centered */
    img,
    .screenshot-placeholder,
    .mobile-device,
    .t-card-r,
    .demo-card,
    .image-placeholder {
      max-width: 100%;
      height: auto;
      margin: 0 auto;
      display: block;
    }

    /* Common grid: force single column and centered content */
    .features-grid,
    .benefits-content,
    .testimonial-content,
    .showcase-grid {
      grid-template-columns: 1fr !important;
      text-align: center;
      justify-items: center;
    }

    /* Hero section: true center + remove overlap */
    .hero {
      padding: 64px 0 40px;
      min-height: calc(100dvh); /* subtract fixed navbar height */
      display: grid;
      place-items: center;
      overflow: hidden; /* prevent blobs causing horizontal scroll */
    }
    .hero > .container,
    .hero-content,
    .hero-text {
      max-width: 360px;
      width: 100%;
      padding: 0 16px;
      margin: 0 auto;
      text-align: center;
    }
    .hero-background {
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100vw;
      height: 100% !important;
      pointer-events: none;
    }

    .interactive-demo {
      margin-top: 0 !important;
    }

    /* Hero buttons: vertical layout */
    .hero-actions {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
  }

  /* Extra narrow devices (iPhone SE, ~320–380px) */
  @media (max-width: 380px) {
    .hero > .container,
    .hero-content,
    .hero-text {
      padding: 0 12px;
    }

    /* Slightly shrink/center blobs to reduce right-heavy feel */
    .hero-blob {
      filter: blur(80px);
    }
    .hero-blob:nth-child(1) {
      left: 22%;
      min-width: 260px;
      height: 200px;
    }
    .hero-blob:nth-child(2) {
      left: 10%;
      min-width: 220px;
      height: 180px;
    }
    .hero-blob:nth-child(3) {
      left: 50%;
      min-width: 220px;
      height: 180px;
    }
    .hero-blob:nth-child(4) {
      left: 60%;
      min-width: 200px;
      height: 180px;
    }
  }

  html,
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  @media (max-width: 480px) {
    .btn-text {
      font-size: 14px;
      font-weight: 500;
    }

    .agent-description {
      font-size: 10px;
    }

    .btn-icon .agent-icon {
      width: 40px;
    }
  }

  @media (max-width: 768px) {
    .agent-buttons {
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }

    .agent-btn-rounded-container {
      width: 48%;
      margin-bottom: 8px;
    }

    .agent-btn {
      height: 100px;
      clip-path: none;
      border-radius: 12px;
    }
  }

  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .hero-background {
    overflow: hidden;
    max-width: 100vw;
  }

  .hero {
    overflow: hidden;
    max-width: 100vw;
  }
}
