:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f6f6f8;
  --bg-tertiary: #eeeef0;
  --text-primary: #1e1e1e;
  --text-secondary: #5e5e6b;
  --text-tertiary: #8e8e98;
  --text-on-dark: #ffffff;
  --border-light: #ececf0;
  --border-medium: #dbdbe2;
  --border-strong: #c0c0cc;
  --accent-blue: #56c2ff;
  --accent-red: #ff6363;
  --accent-green: #59d499;
  --accent-yellow: #ffc531;
  --accent-purple: #881dec;
  --card-bg: #ffffff;
  --card-bg-alt: #fafafc;
  --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
  --overlay-light: rgba(255, 255, 255, 0.8);
  --overlay-dark: rgba(0, 0, 0, 0.05);
  --btn-primary-bg: #1e1e1e;
  --btn-primary-text: #ffffff;
  --btn-primary-hover: #2a2a2a;
  --btn-secondary-bg: #f6f6f8;
  --btn-secondary-text: #1e1e1e;
  --btn-secondary-border: #dbdbe2;
  --btn-secondary-hover: #eaeaef;

  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

body.dark-mode {
  --bg-primary: #000000;
  --bg-secondary: #101010;
  --bg-tertiary: #373737;
  --text-primary: #ffffff;
  --text-secondary: #d0d0d0;
  --text-tertiary: #7a7a85;
  --text-on-dark: #ffffff;
  --border-light: #3a3a3a;
  --border-medium: #4a4a4a;
  --border-strong: #5a5a5a;
  --accent-blue: #56c2ff;
  --accent-red: #ff6363;
  --accent-green: #59d499;
  --accent-yellow: #ffc531;
  --accent-purple: #881dec;
  --card-bg: #181818;
  --card-bg-alt: #0e0d0d;
  --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
  --overlay-light: rgba(255, 255, 255, 0.05);
  --overlay-dark: rgba(0, 0, 0, 0.3);
  --btn-primary-bg: #ffffff;
  --btn-primary-text: #1a1a1a;
  --btn-primary-hover: #e0e0e0;
  --btn-secondary-bg: #2a2a2a;
  --btn-secondary-text: #ffffff;
  --btn-secondary-border: #4a4a4a;
  --btn-secondary-hover: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family, "Inter", sans-serif);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition:
    background-color 0.3s ease,
    color 0.2s ease;
  overflow-x: hidden;
}

body * {
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

h2 {
  font-size: 3rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.225rem;
  max-width: 600px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-bg);
}

.btn-primary:hover {
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
}

.btn-secondary {
  background: var(--btn-secondary-bg);
  border-color: var(--btn-secondary-border);
  color: var(--btn-secondary-text);
}

.btn-secondary:hover {
  background: var(--btn-secondary-hover);
  border-color: var(--border-strong);
}

.btn-text {
  border-color: transparent;
  background: transparent;
  color: var(--text-secondary);
}

.btn-text:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.btn-large {
  padding: 12px 24px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-small {
  padding: 6px 12px;
  font-size: 0.85rem;
}

/* Navbar Styles - Updated for sticky behavior */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--overlay-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
}

body.dark-mode .navbar {
  background: rgb(0 0 0 / 47%);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Add padding to main to account for fixed navbar */
main {
  padding-top: 72px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-docs {
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 4px 12px;
}

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-primary);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-container {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.mobile-menu-overlay:not(.active) {
  display: none;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 32px;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-logo img {
  height: 28px;
  width: auto;
}

.mobile-logo span {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background: var(--bg-primary);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.15s ease;
}

.mobile-menu-close:hover {
  background: var(--bg-secondary);
  border-color: var(--text-tertiary);
}

.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 24px;
  margin-bottom: 40px;
}

.mobile-menu-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.15s ease;
}

.mobile-menu-links a:hover {
  color: var(--accent-blue);
}

.mobile-menu-links .nav-docs {
  display: inline-block;
  width: fit-content;
  padding: 8px 24px;
  font-size: 1.2rem;
}

.mobile-menu-actions {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-primary);
}

/* Theme Toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background: var(--bg-primary);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 8px;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  background: var(--bg-secondary);
  border-color: var(--text-tertiary);
  transform: rotate(15deg);
}

.theme-toggle i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: absolute;
}

.theme-toggle .fa-moon {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.theme-toggle .fa-sun {
  opacity: 0;
  transform: translateY(20px) rotate(-90deg);
  color: #ffc531;
}

body.dark-mode .theme-toggle .fa-moon {
  opacity: 0;
  transform: translateY(-20px) rotate(90deg);
}

body.dark-mode .theme-toggle .fa-sun {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.theme-toggle:active {
  transform: scale(0.9);
}

/* Bird Animation */
.bird-container {
  position: fixed;
  top: 100px;
  left: -100px;
  z-index: 999;
  pointer-events: none;
  will-change: transform;
}

.bird-image {
  width: 40px;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transform-origin: center center;
}

body.dark-mode .bird-image {
  filter: brightness(0.8) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Hero Section - with Full Width Animated Background */
.hero {
  padding: 100px 0 80px;
  /* background: var(--bg-primary); */
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
}

.gradient-sphere {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(86, 194, 255, 0.15),
    rgba(136, 29, 236, 0.05) 70%
  );
  top: -200px;
  right: -200px;
  animation: floatSphere 20s ease-in-out infinite;
}

.gradient-sphere-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 70% 70%,
    rgba(255, 99, 99, 0.1),
    rgba(89, 212, 153, 0.03) 70%
  );
  bottom: -200px;
  left: -100px;
  animation: floatSphere2 18s ease-in-out infinite reverse;
}

@keyframes floatSphere {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-30px, 20px) scale(1.05);
  }
  66% {
    transform: translate(20px, -30px) scale(0.95);
  }
}

@keyframes floatSphere2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  border-radius: 50%;
  opacity: 0.03;
  filter: blur(40px);
  animation: shapeFloat 15s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 15%;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-yellow));
  animation-delay: -5s;
}

.shape-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  animation-delay: -10s;
}

@keyframes shapeFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(5%, 5%) scale(1.1);
  }
  50% {
    transform: translate(-5%, 10%) scale(0.9);
  }
  75% {
    transform: translate(10%, -5%) scale(1.05);
  }
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  text-align: start;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* Window UI */
.window-ui {
  width: 100%;
  max-width: 500px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  animation: windowFloat 6s ease-in-out infinite;
}

@keyframes windowFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.window-header {
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-medium);
}

.window-dots span:first-child {
  background: var(--accent-red);
}

.window-dots span:nth-child(2) {
  background: var(--accent-yellow);
}

.window-dots span:last-child {
  background: var(--accent-green);
}

.window-title {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  font-weight: 500;
}

.window-body {
  padding: 24px;
}

.suggestion-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  background: var(--bg-secondary);
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.suggestion-row:focus-within {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(86, 194, 255, 0.1);
}

.suggestion-icon {
  color: var(--text-tertiary);
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.suggestion-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 8px 0;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}

.suggestion-input::placeholder {
  color: var(--text-tertiary);
  opacity: 0.8;
}

.suggestion-input:focus {
  outline: none;
}

/* Dark mode specific styles for input */
body.dark-mode .suggestion-input {
  color: var(--text-primary);
  background: transparent;
}

body.dark-mode .suggestion-input::placeholder {
  color: var(--text-tertiary);
}

/* Remove default input styles */
.suggestion-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.suggestion-input:-webkit-autofill,
.suggestion-input:-webkit-autofill:hover,
.suggestion-input:-webkit-autofill:focus,
.suggestion-input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--text-primary);
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

.result-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.result-item.active {
  background: var(--bg-secondary);
  border-left: 3px solid var(--accent-blue);
}

.result-category {
  color: var(--text-tertiary);
  min-width: 70px;
  font-size: 0.85rem;
}

.result-name {
  font-weight: 500;
}

.result-count {
  color: var(--text-tertiary);
  font-weight: 400;
}

/* Problem Section */
.problem-section {
  padding: 100px 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 32px;
}

.problem-card {
  background: var(--card-bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
  border-color: var(--accent-red);
}

.problem-icon {
  font-size: 2.5rem;
  color: var(--accent-red);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  margin: 0;
}

.problem-conclusion {
  text-align: center;
  margin-top: 40px;
}

.conclusion-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto;
}

/* Solution Section - with Animated Stats */
.solution-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.solution-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-description {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.progressive-statements {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 16px;
  position: relative;
}

.progressive-item {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.7;
  transform: translateX(0);
  transition: all 0.3s ease;
}

.progressive-item:hover {
  opacity: 1;
  transform: translateX(10px);
}

.progressive-item.item-1 {
  opacity: 1;
}

.progressive-item.item-2 {
  opacity: 0.9;
}

.progressive-item.item-3 {
  opacity: 0.8;
}

.progressive-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-tertiary);
  min-width: 50px;
  font-family: monospace;
}

.progressive-content {
  flex: 1;
  position: relative;
}

.progressive-badge {
  display: inline-block;
  background: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 1rem;
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 2;
}

.progressive-line {
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  width: 0;
  transition: width 0.5s ease;
}

.progressive-item:hover .progressive-line {
  width: 100%;
}

.progressive-item.item-1 .progressive-line {
  width: 100%;
}

.progressive-item.item-2 .progressive-line {
  width: 70%;
}

.progressive-item.item-3 .progressive-line {
  width: 40%;
}

.progressive-arrow {
  display: flex;
  justify-content: flex-start;
  margin-left: 70px;
  margin-top: 8px;
  color: var(--accent-blue);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.solution-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 40px 24px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Who Section */
.who-section {
  padding: 100px 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 40px;
}

.who-card {
  background: var(--card-bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s ease;
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
  border-color: var(--accent-green);
}

.who-card i {
  font-size: 2.5rem;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.who-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.who-card p {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  margin: 0;
}

.who-footer {
  text-align: center;
  margin-top: 32px;
}

.who-footer p {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto;
}

/* Different Section */
.different-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}

.different-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 48px 0;
}

.different-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 40px 32px;
  transition: all 0.2s ease;
}

.different-card-positive {
  border-color: var(--accent-green);
  box-shadow:
    0 0 0 1px var(--accent-green),
    var(--card-shadow);
}

.different-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.different-header i {
  font-size: 1.8rem;
}

.different-header i.fa-xmark {
  color: var(--accent-red);
}

.different-header i.fa-check {
  color: var(--accent-green);
}

.different-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.different-list {
  list-style: none;
  padding: 0;
}

.different-list li {
  padding: 12px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
  font-size: 1.1rem;
}

.different-list li:last-child {
  border-bottom: none;
}

.different-list i {
  font-size: 1.25rem;
}

.different-list-negative i {
  color: var(--accent-red);
}

.different-list i.fa-circle-check {
  color: var(--accent-green);
}

.different-footer {
  text-align: center;
  margin-top: 32px;
}

.different-footer p {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.cta-card {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--card-bg-alt) 100%
  );
  border: 1px solid var(--border-light);
  border-radius: 40px;
  padding: 64px 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--card-shadow);
}

.cta-card h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-card p {
  font-size: 1.25rem;
  margin: 0 auto 32px;
  max-width: 600px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Features Section - with Animated Images */
.features-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header p {
  margin: 20px auto 0;
  color: var(--text-secondary);
}

.features-slider-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.features-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-tab {
  padding: 8px 16px;
  border: 1px solid var(--border-medium);
  background: transparent;
  border-radius: 30px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 0.95rem;
}

.feature-tab:hover {
  background: var(--bg-primary);
  border-color: var(--text-tertiary);
}

.feature-tab.active {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

.features-slider-container {
  overflow: hidden;
  border-radius: 24px;
  background: var(--bg-primary);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
}

.features-slider {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.feature-slide {
  flex: 0 0 100%;
  padding: 0;
}

/* Split Layout for Features */
.feature-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.feature-image-side {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.feature-image-container {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.image-overlay-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Conversion Image Animations */
.conversion-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  height: 200px;
  width: 100%;
  padding: 20px 0;
}

.conversion-bar {
  width: 50px;
  border-radius: 12px 12px 4px 4px;
  transition: height 0.3s ease;
  animation: barPulse 3s ease-in-out infinite;
}

.bar-1 {
  animation-delay: 0s;
}
.bar-2 {
  animation-delay: 0.5s;
}
.bar-3 {
  animation-delay: 1s;
}
.bar-4 {
  animation-delay: 1.5s;
}
.bar-5 {
  animation-delay: 2s;
}

@keyframes barPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.8;
  }
  50% {
    transform: scaleY(1.1);
    opacity: 1;
  }
}

/* Performance Image Animations */
.performance-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.speed-meter {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 8px solid var(--border-medium);
  position: relative;
}

.speed-needle {
  width: 4px;
  height: 60px;
  background: var(--accent-blue);
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  transition: transform 0.5s ease;
  animation: speedNeedleSweep 4s ease-in-out infinite;
}

@keyframes speedNeedleSweep {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(45deg);
  }
  75% {
    transform: rotate(20deg);
  }
}

.speed-stats {
  text-align: center;
}

.speed-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  display: block;
  animation: pulseText 2s ease-in-out infinite;
}

@keyframes pulseText {
  0%,
  100% {
    transform: scale(1);
    color: var(--accent-green);
  }
  50% {
    transform: scale(1.1);
    color: var(--accent-blue);
  }
}

.speed-label {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

/* Multi-level Image Animations */
.tree-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 20px;
}

.tree-node {
  padding: 8px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: 20px;
  margin: 4px 0;
  font-size: 0.9rem;
  box-shadow: var(--card-shadow);
  z-index: 2;
  animation: nodeAppear 0.5s ease-out forwards;
  opacity: 0;
  transform: translateY(10px);
}

.node-1 {
  animation-delay: 0.2s;
}
.node-2 {
  animation-delay: 0.4s;
}
.node-3 {
  animation-delay: 0.6s;
}
.node-4 {
  animation-delay: 0.8s;
}

@keyframes nodeAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tree-node.root {
  background: var(--accent-purple);
  color: white;
  border-color: var(--accent-purple);
}

.tree-node.child {
  margin-left: 40px;
}

.tree-node.grandchild {
  margin-left: 80px;
  font-size: 0.8rem;
}

.tree-connector {
  position: absolute;
  width: 2px;
  height: 140px;
  background: var(--border-strong);
  top: 58px;
  left: 50%;
  z-index: 1;
  animation: connectorPulse 3s ease-in-out infinite;
}

@keyframes connectorPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.05);
  }
}

/* UX Image Animations */
.ux-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 20px;
  background: var(--bg-primary);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
}

.ux-chip-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.demo-chip {
  padding: 6px 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  font-size: 0.9rem;
  animation: chipFloat 3s ease-in-out infinite;
}

.chip-animate-1 {
  animation-delay: 0s;
}
.chip-animate-2 {
  animation-delay: 1s;
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.demo-chip.active {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.ux-swatches {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.demo-swatch {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 0 1px var(--border-medium);
  animation: swatchPulse 3s ease-in-out infinite;
}

.swatch-1 {
  animation-delay: 0s;
}
.swatch-2 {
  animation-delay: 0.7s;
}
.swatch-3 {
  animation-delay: 1.4s;
}

@keyframes swatchPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.demo-slider {
  width: 100%;
  height: 6px;
  background: var(--border-medium);
  border-radius: 10px;
  position: relative;
  animation: sliderMove 4s ease-in-out infinite;
}

.demo-slider::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--text-primary);
  border-radius: 50%;
  top: -5px;
  left: 40%;
  animation: sliderThumb 4s ease-in-out infinite;
}

@keyframes sliderMove {
  0%,
  100% {
    background: var(--border-medium);
  }
  50% {
    background: var(--accent-blue);
  }
}

@keyframes sliderThumb {
  0%,
  100% {
    left: 10%;
    background: var(--text-primary);
  }
  50% {
    left: 80%;
    background: var(--accent-blue);
  }
}

/* Insight Image Animations */
.insight-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.insight-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
  height: 150px;
  width: 100%;
  padding: 10px;
}

.chart-bar {
  width: 40px;
  border-radius: 8px 8px 0 0;
  transition: height 0.3s ease;
  animation: chartBarPulse 3s ease-in-out infinite;
}

.chart-bar-1 {
  animation-delay: 0s;
}
.chart-bar-2 {
  animation-delay: 0.5s;
}
.chart-bar-3 {
  animation-delay: 1s;
}
.chart-bar-4 {
  animation-delay: 1.5s;
}

@keyframes chartBarPulse {
  0%,
  100% {
    height: 80px;
  }
  25% {
    height: 100px;
  }
  50% {
    height: 120px;
  }
  75% {
    height: 90px;
  }
}

.chart-bar-2 {
  animation-name: chartBarPulse2;
}

@keyframes chartBarPulse2 {
  0%,
  100% {
    height: 120px;
  }
  25% {
    height: 140px;
  }
  50% {
    height: 160px;
  }
  75% {
    height: 130px;
  }
}

.chart-bar-3 {
  animation-name: chartBarPulse3;
}

@keyframes chartBarPulse3 {
  0%,
  100% {
    height: 60px;
  }
  25% {
    height: 80px;
  }
  50% {
    height: 100px;
  }
  75% {
    height: 70px;
  }
}

.chart-bar-4 {
  animation-name: chartBarPulse4;
}

@keyframes chartBarPulse4 {
  0%,
  100% {
    height: 100px;
  }
  25% {
    height: 120px;
  }
  50% {
    height: 80px;
  }
  75% {
    height: 110px;
  }
}

.chart-label {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.image-caption {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 10px;
}

.feature-text-side {
  padding: 40px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
}

.feature-card.split-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: 100%;
}

.feature-card.split-card .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-metric {
  margin-top: 20px;
  padding: 12px;
  background: var(--bg-secondary);
  border-radius: 12px;
  color: var(--accent-green);
  font-weight: 500;
}

.feature-card .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border-medium);
  line-height: 1;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.8rem;
}

.feature-card p {
  font-size: 1rem;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 8px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px dashed var(--border-light);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-preview {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 100px;
  padding: 20px 0;
}

.preview-bar {
  height: 60px;
  flex: 1;
  border-radius: 8px;
  background: var(--accent-blue);
  opacity: 0.7;
}

.animated-bar {
  animation: barWidthPulse 3s ease-in-out infinite;
}

@keyframes barWidthPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.05);
  }
}

.performance-metric {
  display: flex;
  gap: 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: 12px;
}

.component-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 12px;
}

.chip {
  padding: 6px 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  font-size: 0.9rem;
}

.chip-active {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 0 1px var(--border-medium);
}

.range-slider-sim {
  width: 120px;
  height: 6px;
  background: var(--border-medium);
  border-radius: 10px;
  position: relative;
}

.range-slider-sim::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--text-primary);
  border-radius: 50%;
  top: -5px;
  left: 30px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-control {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-primary);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
}

.slider-control:hover {
  background: var(--bg-secondary);
  border-color: var(--text-tertiary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-medium);
  cursor: pointer;
  transition: all 0.15s ease;
}

.dot.active {
  background: var(--text-primary);
  width: 20px;
  border-radius: 10px;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.2s ease;
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: var(--text-primary);
  box-shadow:
    0 0 0 1px var(--text-primary),
    var(--card-shadow);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--text-secondary);
  color: var(--bg-primary);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--text-primary);
}

.popular-badge {
  background: var(--accent-blue);
  color: var(--bg-primary);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-top: 10px;
}

.card-description {
  color: var(--text-secondary);
  font-size: 1rem;
  min-height: 50px;
}

.price {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.currency {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-tertiary);
  vertical-align: super;
}

.period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-tertiary);
  margin-left: 4px;
}

.pricing-card .feature-list {
  margin: 20px 0;
}

.pricing-card .feature-list li {
  border-bottom: none;
  padding: 6px 0;
}

.pricing-card .feature-list i {
  color: var(--accent-green);
}

/* Social Proof */
.social-proof {
  padding: 60px 0;
  background: var(--bg-secondary);
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.proof-text {
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.avatar-cloud {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.avatar-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all 0.15s ease;
}

.avatar-initials:hover {
  border-color: var(--accent-blue);
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: var(--bg-primary);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}

.footer-brand img {
  height: 32px;
  width: auto;
  filter: brightness(1);
}

body.dark-mode .footer-brand img {
  filter: brightness(1.2);
}

.footer-brand span {
  font-weight: 700;
  font-size: 1.2rem;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  max-width: 250px;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links a {
  display: block;
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.contact-info {
  display: flex;
  gap: 24px;
}

.contact-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: var(--text-tertiary);
  font-size: 1.2rem;
  transition: color 0.15s ease;
}

.social-icons a:hover {
  color: var(--text-primary);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 60px;
  padding: 8px 16px 8px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  z-index: 1000;
}

.cookie-banner a {
  color: var(--text-primary);
}

.cookie-banner .btn {
  border-radius: 30px;
}

/* Dark Mode Specific */
body.dark-mode .card-badge {
  background: var(--text-primary);
  color: var(--bg-primary);
}

body.dark-mode .popular-badge {
  background: var(--accent-blue);
  color: var(--bg-primary);
}

body.dark-mode .avatar-initials {
  background: var(--bg-secondary);
  border-color: var(--border-strong);
}

body.dark-mode .window-ui {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

body.dark-mode .feature-tab.active {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

body.dark-mode .btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

body.dark-mode .btn-primary:hover {
  background: #e0e0e0;
  border-color: #e0e0e0;
}

/* Media Queries */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .feature-split-layout {
    grid-template-columns: 1fr;
  }

  .feature-image-side {
    min-height: 300px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-content p {
    text-align: center;
  }

  .problem-grid,
  .solution-grid,
  .who-grid,
  .different-grid {
    grid-template-columns: 1fr;
  }

  .solution-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .different-card {
    padding: 30px 24px;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-card h2 {
    font-size: 1.8rem;
  }

  .features-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-tab {
    text-align: center;
  }

  .feature-slide {
    padding: 0;
  }

  .feature-card.split-card .card-header {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .feature-card h3 {
    font-size: 1.5rem;
  }

  .feature-text-side {
    padding: 30px;
  }

  .feature-image-side {
    padding: 30px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    width: 90%;
    padding: 16px;
  }

  .progressive-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .progressive-arrow {
    margin-left: 0;
    justify-content: center;
  }

  /* Bird container adjustment for mobile */
  .bird-container {
    top: 80px;
  }

  .bird-image {
    width: 30px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-slide {
  animation: fadeIn 0.4s ease-out;
}

.problem-card,
.solution-card,
.who-card,
.different-card {
  animation: fadeIn 0.4s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}
@media screen and (max-height: 858px) {
  .hero-subtitle {
    display: none;
  }
}
@media screen and (max-height: 578px) {
  .hero-visual {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hero-visual {
    display: none;
  }
  /* .hero-subtitle{
    display:flex;
    justify-content: start;
    align-items: start;
  } */
}
