:root {
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-chat: #1a1a1a;
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --accent-blue: #3b82f6;
  --accent-blue-glow: rgba(59, 130, 246, 0.5);
  --border-color: #27272a;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: white;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #93c5fd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease-out;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), transparent);
  border-radius: 2px;
  display: none;
}

/* Utility Classes */
.mb-2 {
  margin-bottom: 1rem;
}

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

p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.text-center h2 {
  display: block;
  width: 100%;
}

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

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

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

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

section:nth-child(even) {
  background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.02) 50%, transparent 100%);
}

.bg-gradient {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0f0f 100%);
  position: relative;
}

.bg-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-icon {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
  transition: all 0.3s ease;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

.logo:hover .logo-icon {
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
  transform: scale(1.05);
}

.logo:hover .logo-text {
  color: var(--accent-blue);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
}

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

.nav-auth {
  display: flex;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 4px 20px var(--accent-blue-glow);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-blue-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-color);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

/* Hero */
.hero {
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.typing-container {
  min-height: 60px;
  margin: 2rem 0;
}

.typing-text {
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
  font-style: italic;
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 1.5rem;
  background: var(--accent-blue);
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* Hero & Chat Mockup */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.chat-mockup {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-chat);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow:
    0 20px 60px -10px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(59, 130, 246, 0.1);
  overflow: hidden;
  text-align: left;
  animation: fadeInUp 1s ease-out 0.4s backwards;
  transition: transform 0.3s ease;
}

.chat-mockup:hover {
  transform: translateY(-5px);
  box-shadow:
    0 30px 80px -10px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(59, 130, 246, 0.2);
}

.chat-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
  background: #222;
}

.chat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.red {
  background: #ef4444;
}

.yellow {
  background: #eab308;
}

.green {
  background: #22c55e;
}

.chat-title {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.chat-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 300px;
}

.message {
  max-width: 80%;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0;
  animation: fadeInUp 0.5s forwards;
}

.user-message {
  align-self: flex-end;
  background: var(--accent-blue);
  color: white !important;
  border-bottom-right-radius: 4px;
}

.user-message p {
  color: white !important;
}

.system-message {
  align-self: flex-start;
  background: #333;
  color: #eee;
  border-bottom-left-radius: 4px;
}

.highlight-green {
  color: #4ade80;
  font-weight: 600;
}

.delayed-1 {
  animation-delay: 1.5s;
}

.delayed-2 {
  animation-delay: 3s;
}

.chat-input-area {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #222;
}

.fake-input {
  flex: 1;
  color: var(--text-muted);
  font-family: monospace;
  animation: blink 1s infinite;
}

.send-btn {
  color: var(--accent-blue);
  width: 24px;
  height: 24px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1.1);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 0.5rem 0;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: #aaa;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

/* Integrations */
.integrations-section {
  background: #0f0f0f;
}

.integrations-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.integration-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border-radius: 16px;
  color: #555;
  transition: all 0.3s;
}

.integration-icon svg {
  width: 32px;
  height: 32px;
}

.integration-icon:hover {
  color: white;
  transform: translateY(-5px);
  background: #222;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Features Split */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chat-examples li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: var(--bg-card);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.chat-icon {
  font-size: 1.5rem;
}

.insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
}

.insight-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.badge-green {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.875rem;
}

.simple-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 150px;
  margin-bottom: 1rem;
}

.bar {
  flex: 1;
  background: #333;
  border-radius: 4px;
  transition: height 1s;
}

.bar.active {
  background: var(--accent-blue);
  box-shadow: 0 0 15px var(--accent-blue-glow);
}

.insight-caption {
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0;
}

/* Audience Section */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.2s, border-color 0.2s;
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
}

.audience-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: white;
}

.audience-card p {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.audience-card .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-blue);
}

.audience-card .card-icon svg {
  width: 24px;
  height: 24px;
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 100%);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #2563eb 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px var(--accent-blue-glow);
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px var(--accent-blue-glow);
}

/* Chat Examples */
.bg-darker {
  background: #050505;
  position: relative;
}

.bg-darker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

/* Before/After Comparison */
.before-after-comparison {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.comparison-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  text-align: center;
}

.comparison-item p {
  margin: 0;
}

.comparison-item.old-way {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.comparison-item.new-way {
  background: rgba(59, 130, 246, 0.05);
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  border-radius: 16px;
  color: #93c5fd;
  padding: 1.125rem 1.75rem;
}

.comparison-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Value Props */
.value-props {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.value-prop-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #d4d4d8;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.value-prop-item:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.05);
}

.value-icon {
  font-size: 1.25rem;
}

.chat-examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.chat-example-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(10, 10, 10, 0.8) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Staggered animation delays */
.chat-example-card:nth-child(1) {
  animation-delay: 0.1s;
}

.chat-example-card:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-example-card:nth-child(3) {
  animation-delay: 0.3s;
}

.chat-example-card:nth-child(4) {
  animation-delay: 0.4s;
}

.chat-example-card:nth-child(5) {
  animation-delay: 0.5s;
}

.chat-example-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-example-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.chat-example-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.chat-example-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(59, 130, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.chat-example-card:hover::before {
  opacity: 1;
}

.chat-example-card:hover::after {
  opacity: 1;
}

.chat-bubble {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  position: relative;
}

.chat-bubble.user {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  align-self: flex-start;
  max-width: 85%;
  border-radius: 24px;
  padding: 1.25rem 1.75rem;
  box-shadow:
    0 8px 30px rgba(59, 130, 246, 0.4),
    0 0 0 1px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.chat-bubble.user::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.chat-bubble.user:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 16px 50px rgba(59, 130, 246, 0.7),
    0 0 30px rgba(59, 130, 246, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.chat-bubble.user:hover::before {
  opacity: 1;
}

.chat-bubble.system {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #e4e4e7;
  align-self: flex-start;
  max-width: 100%;
  transition: all 0.3s ease;
}

.chat-bubble.system:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.chat-bubble p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: inherit;
}

/* Outcome Badges */
.outcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 0.875rem;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #93c5fd;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.outcome-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }
}

.outcome-badge:hover {
  background: rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.7);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.warning-badge {
  background: rgba(251, 146, 60, 0.15);
  border: 1px solid rgba(251, 146, 60, 0.3);
  color: #fb923c;
}

/* Demo CTA */
.demo-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.demo-cta-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

.demo-subtext {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.benefit-item p {
  margin: 0;
  font-size: 1rem;
}

.check-circle {
  width: 24px;
  height: 24px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Social Proof */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: white;
  margin-bottom: 1rem;
}

.testimonial-card .author {
  color: var(--accent-blue);
  font-weight: 500;
}

.logos-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.5;
}

.logo-item svg {
  height: 30px;
  width: auto;
  color: white;
}

/* Comparison Table */
.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  max-width: 800px;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  color: white;
  font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  color: var(--text-muted);
  font-weight: 500;
}

.comparison-table th {
  font-size: 1rem;
  padding-bottom: 1.5rem;
  font-weight: 600;
}

.comparison-table .highlight {
  background: rgba(59, 130, 246, 0.05);
  color: white;
}

.comparison-table th.highlight {
  color: var(--accent-blue);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.check {
  color: var(--accent-blue);
  font-weight: bold;
}

.cross {
  color: #52525b;
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .integrations-row {
    gap: 1.5rem;
  }

  .cta-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2.5rem 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
    text-align: center;
  }

  .cta-content .cta-buttons {
    align-items: stretch;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .contact-form-wrapper h3 {
    font-size: 1.75rem;
  }

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

  .security-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .security-content h2 {
    font-size: 1.75rem;
  }

  .before-after-comparison {
    flex-direction: column;
    gap: 1rem;
  }

  .value-props {
    gap: 1.5rem;
  }

  .demo-cta {
    padding: 2rem 1.5rem;
  }

  .demo-cta-text {
    font-size: 1.25rem;
  }
}

/* Security */
.security-section {
  padding: 4rem 0;
}

.security-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-card) 0%, #0a0a0a 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.security-icon-large {
  flex-shrink: 0;
  color: var(--accent-blue);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 16px;
}

.security-icon-large svg {
  width: 48px;
  height: 48px;
}

.security-content {
  flex: 1;
}

.security-content h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.security-content h2::after {
  display: none;
}

.security-list-horizontal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-list-horizontal li {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-small {
  color: var(--accent-blue);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* FAQ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  padding: 1.5rem 0;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.faq-question:hover {
  color: var(--accent-blue);
}

.faq-answer {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .toggle {
  transform: rotate(45deg);
}

.toggle {
  transition: transform 0.3s;
  font-size: 1.5rem;
}

/* CTA + Contact Combined Section */
.cta-contact-section {
  padding: 6rem 0;
  position: relative;
}

.cta-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, var(--bg-card) 50%, #0a0a0a 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 24px;
  padding: 4rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.cta-contact-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.cta-contact-grid::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
  z-index: -1;
}

/* Left: CTA Content */
.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.75rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #fff, #93c5fd, #fff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}

.cta-content h2::after {
  display: none;
}

.cta-content .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.cta-content .small-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Right: Contact Form */
.contact-form-wrapper {
  background: rgba(0, 0, 0, 0.4);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.contact-form-wrapper h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
  text-align: center;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.contact-form .btn {
  margin-top: 0.5rem;
  padding: 1.125rem 2rem;
  font-size: 1.05rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

.pricing-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, #0a0a0a 100%);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.featured {
  border-color: var(--accent-blue);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, var(--bg-card) 100%);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.pricing-card.featured:hover {
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  color: white;
}

.price .currency {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.features-list {
  text-align: left;
  margin: 2rem 0;
}

.features-list li {
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: #d4d4d8;
}

.check-icon {
  color: var(--accent-blue);
  flex-shrink: 0;
}

.cross-icon {
  color: #52525b;
  flex-shrink: 0;
}

/* Comparison Table */
.contact-wrapper {
  max-width: 400px;
  margin: 0 auto;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  background: #1a1a1a;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: white;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #000 100%);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-logo:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.footer-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--accent-blue);
  transform: translateX(3px);
}

.footer-legal-text {
  font-size: 0.75rem;
  color: #52525b;
  line-height: 1.5;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer CTA */
.footer-cta {
  text-align: center;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-cta-text {
  font-size: 1.125rem;
  color: white;
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  footer {
    padding: 3rem 0 1.5rem;
  }

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

  .footer-description {
    max-width: 100%;
  }

  .footer-cta {
    padding: 2rem 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .integrations-row {
    gap: 1.5rem;
  }
}