/* ABAIQ Landing Page - Section Styles (Enhanced with Stripe-like effects) */

/* ========== ANIMATED MESH GRADIENT BACKGROUND ========== */
.mesh-gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
}

.mesh-gradient-bg .gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: floatMesh 20s ease-in-out infinite;
}

.mesh-gradient-bg .sphere-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.mesh-gradient-bg .sphere-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  bottom: -150px;
  left: -100px;
  animation-delay: -5s;
  animation-duration: 25s;
}

.mesh-gradient-bg .sphere-3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  top: 40%;
  left: 30%;
  animation-delay: -10s;
  animation-duration: 30s;
}

.mesh-gradient-bg .sphere-4 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  top: 20%;
  right: 20%;
  animation-delay: -15s;
  animation-duration: 22s;
}

@keyframes floatMesh {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(-30px, -20px) scale(1.02);
  }
}

/* Light mode mesh gradient - Clean & Minimal */
.mesh-gradient-bg.light {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f7 100%);
}

.mesh-gradient-bg.light .gradient-sphere {
  opacity: 0.35;
  filter: blur(100px);
}

.mesh-gradient-bg.light .sphere-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  top: 55vh;
  right: -50px;
}

.mesh-gradient-bg.light .sphere-2 {
  background: linear-gradient(135deg, #667eea 0%, #a78bfa 100%);
  bottom: auto;
  top: 60vh;
  left: -100px;
}

.mesh-gradient-bg.light .sphere-3 {
  background: linear-gradient(135deg, #818cf8 0%, #667eea 100%);
  top: 50vh;
  left: 40%;
}

.mesh-gradient-bg.light .sphere-4 {
  background: linear-gradient(135deg, #a78bfa 0%, #667eea 100%);
  top: 65vh;
  right: 10%;
}

/* Fade effect - gradient fades to white as you scroll down */
.mesh-gradient-bg.light::after {
  content: '';
  position: absolute;
  top: 80vh;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 20%,
    rgba(255, 255, 255, 0.7) 50%,
    #ffffff 80%
  );
  pointer-events: none;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  transition: var(--transition-base);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(102, 126, 234, 0.1);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
}

.nav-brand:hover {
  transform: scale(1.05);
}

.nav-favicon {
  height: 28px;
  width: 28px;
}

.nav-logo {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-login {
  padding: 10px 20px;
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--text-dark);
  border-radius: var(--btn-radius);
  transition: var(--transition-fast);
}

.nav-login:hover {
  color: var(--primary);
  background: rgba(102, 126, 234, 0.06);
}

.nav-cta {
  padding: 10px 24px;
  background: var(--primary-gradient);
  color: white;
  font-weight: 600;
  font-size: var(--font-size-sm);
  border-radius: var(--btn-radius);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* ── Hamburger button (hidden by default, shown on mobile) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile slide-out menu (hidden by default) ── */
.mobile-menu {
  display: none;
}

.mobile-menu-overlay {
  display: none;
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Smooth fade at bottom of hero into next section */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, #fafafa 100%);
  z-index: 5;
  pointer-events: none;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: -2s; }
.particle:nth-child(3) { left: 35%; top: 30%; animation-delay: -4s; }
.particle:nth-child(4) { left: 50%; top: 70%; animation-delay: -6s; }
.particle:nth-child(5) { left: 65%; top: 25%; animation-delay: -8s; }
.particle:nth-child(6) { left: 80%; top: 55%; animation-delay: -10s; }
.particle:nth-child(7) { left: 90%; top: 40%; animation-delay: -12s; }
.particle:nth-child(8) { left: 15%; top: 80%; animation-delay: -14s; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-100px) rotate(180deg); opacity: 0.6; }
}

/* Floating decorative shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  opacity: 0.1;
  animation: floatShape 20s infinite ease-in-out;
}

.floating-shape.shape-1 {
  width: 300px;
  height: 300px;
  border: 2px solid var(--primary-blue);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.floating-shape.shape-2 {
  width: 200px;
  height: 200px;
  border: 2px solid var(--primary-magenta);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 15%;
  left: 5%;
  animation-delay: -5s;
}

.floating-shape.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
  border-radius: 50%;
  top: 40%;
  left: 15%;
  animation-delay: -10s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -20px) rotate(5deg); }
  50% { transform: translate(-10px, 10px) rotate(-5deg); }
  75% { transform: translate(15px, 15px) rotate(3deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px var(--container-padding);
  max-width: 1000px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(102, 126, 234, 0.06);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-blue);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.1s forwards;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success-green);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  margin-bottom: 28px;
  line-height: 1.1;
  font-size: clamp(1.8rem, 5vw, 4rem);
}

.hero-accent-text {
  color: var(--primary);
}

.hero-headline .line {
  display: block;
  overflow: hidden;
}

.hero-headline .line span {
  display: inline-block;
  transform: translateY(100%);
  animation: revealText 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes revealText {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.hero-subheader {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
  min-height: 1.5em; /* Prevent layout shift */
}

/* Static subheader - 2 lines, dark for readability */
.hero-subheader-static {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1f2937;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-video {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  opacity: 0;
  animation: scaleIn 1s ease 0.9s forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Hero media - floating browser window with glow */
.hero-media-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  opacity: 0;
  animation: scaleIn 1s ease 0.9s forwards;
  perspective: 1200px;
}

.hero-media-container {
  position: relative;
  width: 100%;
  background: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.08),
    0 24px 48px rgba(102, 126, 234, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: rotateX(2deg);
  transform-origin: center bottom;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient glow behind video */
.hero-media-container::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(102, 126, 234, 0.2) 0%,
    rgba(118, 75, 162, 0.12) 40%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: -1;
  border-radius: 50%;
  animation: glowPulse 6s ease-in-out infinite;
}

/* Browser chrome toolbar */
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #1e1e2e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-family: system-ui, sans-serif;
}

.browser-url svg {
  color: #28c840;
  flex-shrink: 0;
}

/* hero-video-player removed — replaced by hero-demo */

/* Shine sweep on load */
.hero-media-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 60%
  );
  animation: shineSweep 1.5s ease 1.5s forwards;
  opacity: 0;
  pointer-events: none;
}

@keyframes shineSweep {
  0% {
    opacity: 1;
    transform: translateX(-100%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* ========== HERO VIDEO DEMO ========== */

.hero-video-demo {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1080;
  overflow: hidden;
  background: #f4f5f7;
}

.hero-video-zoom {
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: top right;
  transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-video-zoom[data-zoom="in"] {
  transform: scale(1.15);
}

.hero-video-zoom[data-zoom="out"] {
  transform: scale(1);
}

.hero-video-player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Reduced Motion (video) ---- */
@media (prefers-reduced-motion: reduce) {
  .hero-video-zoom {
    transition: none !important;
  }
}

/* ========== LOGOS SECTION ========== */
.logos-section {
  padding: 60px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.logos-title {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.logos-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.logos-wrapper img {
  height: 32px;
  filter: grayscale(100%);
  transition: var(--transition-base);
}

.logos-wrapper img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========== PAIN SECTION - BENTO GRID ========== */
.pain-section {
  padding: var(--section-padding) 0;
  position: relative;
  background: #fafafa;
  margin-top: -2px;
}

.pain-section .section-subtitle {
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* ========== EFFICIENCY GRID - HORIZONTAL SCROLL ========== */
.efficiency-grid {
  display: flex;
  gap: 16px;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.efficiency-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.efficiency-grid .efficiency-card {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
}

.efficiency-card {
  position: relative;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated glow background */
.efficiency-card .card-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

/* Color variations for each card */
.efficiency-card[data-color="coral"] .card-glow {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #feca57 100%);
}

.efficiency-card[data-color="purple"] .card-glow {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.efficiency-card[data-color="blue"] .card-glow {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #43e97b 100%);
}

.efficiency-card[data-color="teal"] .card-glow {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 50%, #b8e994 100%);
}

.efficiency-card:hover .card-glow {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulseCard {
  0%, 100% { opacity: 0.7; filter: blur(0px); }
  50% { opacity: 1; filter: blur(2px); }
}

/* Card inner content */
.efficiency-card .card-inner {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 21px;
  padding: 24px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.efficiency-card:hover .card-inner {
  background: rgba(255, 255, 255, 0.95);
}

/* Problem state (default) */
.efficiency-card .problem-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
}

.efficiency-card .time-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.4s ease;
}

.efficiency-card[data-color="coral"] .time-icon {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 142, 83, 0.1) 100%);
  color: #ff6b6b;
}

.efficiency-card[data-color="purple"] .time-icon {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: #667eea;
}

.efficiency-card[data-color="blue"] .time-icon {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0%, rgba(0, 242, 254, 0.1) 100%);
  color: #4facfe;
}

.efficiency-card[data-color="teal"] .time-icon {
  background: linear-gradient(135deg, rgba(17, 153, 142, 0.15) 0%, rgba(56, 239, 125, 0.1) 100%);
  color: #11998e;
}

.efficiency-card .problem-stat {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.efficiency-card .problem-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.efficiency-card .problem-detail {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 220px;
}

/* Solution state (on hover) */
.efficiency-card .solution-state {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.efficiency-card:hover .problem-state {
  opacity: 0;
  transform: translateY(-20px);
}

.efficiency-card:hover .solution-state {
  opacity: 1;
  transform: translateY(0);
}

.efficiency-card .solution-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: white;
}

.efficiency-card[data-color="coral"] .solution-icon {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

.efficiency-card[data-color="purple"] .solution-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.efficiency-card[data-color="blue"] .solution-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.efficiency-card[data-color="teal"] .solution-icon {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.efficiency-card .solution-text {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.efficiency-card[data-color="coral"] .solution-text {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.efficiency-card[data-color="purple"] .solution-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.efficiency-card[data-color="blue"] .solution-text {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.efficiency-card[data-color="teal"] .solution-text {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.efficiency-card .solution-detail {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 220px;
}

/* ========== MOCKUP CONTAINER ========== */
.pain-mockup {
  background: linear-gradient(135deg, #f8f9fc 0%, #f1f3f9 100%);
  border: 1px solid rgba(102, 126, 234, 0.08);
  border-radius: 16px;
  padding: 20px;
  min-height: 180px;
  position: relative;
}

/* ========== MOCKUP 1: Late Night ========== */
.mockup-late-night {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-time {
  font-size: 2rem;
  font-weight: 700;
  color: var(--warning-orange);
  font-family: 'SF Mono', 'Monaco', monospace;
  text-align: center;
  margin-bottom: 8px;
}

.abaiq-textarea-mockup {
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 8px 8px 12px 12px;
  overflow: hidden;
  background: white;
}

.textarea-label {
  background: var(--primary);
  color: white;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
}

.textarea-body {
  padding: 12px;
  min-height: 60px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
}

.placeholder-text {
  opacity: 0.5;
}

.cursor-blink {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--primary);
  margin-left: 2px;
  animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.mockup-hint {
  text-align: center;
  font-size: 11px;
  color: var(--warning-orange);
  font-weight: 500;
}

/* ========== MOCKUP 2: Rejection Email ========== */
.mockup-rejection {
  padding: 16px;
}

.rejection-email {
  background: white;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(220, 38, 38, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.email-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.email-from {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
}

.email-time {
  font-size: 10px;
  color: var(--text-muted);
}

.email-subject {
  font-size: 12px;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.email-preview {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-style: italic;
}

.email-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  font-size: 10px;
  font-weight: 600;
  border-radius: 12px;
}

/* ========== MOCKUP 3: Copy-Paste ========== */
.mockup-copypaste {
  padding: 12px;
}

.stacked-note-cards {
  position: relative;
}

.mini-note-card {
  background: white;
  border: 1px solid rgba(102, 126, 234, 0.12);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 6px;
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.04);
  transition: all 0.3s ease;
}

.mini-note-card:hover {
  transform: translateX(4px);
}

.note-header {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.note-body {
  font-size: 10px;
  color: var(--text-dark);
  line-height: 1.4;
}

.highlight-same {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
  padding: 2px 4px;
  border-radius: 3px;
  border: 1px dashed rgba(255, 107, 53, 0.4);
}

.similarity-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(255, 107, 53, 0.08);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--warning-orange);
}

.warning-icon {
  width: 16px;
  height: 16px;
  background: var(--warning-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

/* ========== MOCKUP 4: Calendar ========== */
.mockup-calendar {
  padding: 16px;
}

.mini-calendar-week {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.cal-day {
  flex: 1;
  text-align: center;
}

.day-name {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cal-event {
  background: white;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 10px;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.cal-event.crossed {
  text-decoration: line-through;
  color: var(--text-muted);
  background: rgba(220, 38, 38, 0.04);
  border-color: rgba(220, 38, 38, 0.1);
}

.notes-pending-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 10px;
}

.badge-icon {
  color: var(--warning-orange);
  display: flex;
  align-items: center;
}

.badge-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--warning-orange);
}

/* ========== INTEGRATION SECTION ========== */
.integration-section {
  padding: var(--section-padding) 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 50%, #ffffff 100%);
  overflow: hidden;
}

.section-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 32px;
  font-style: italic;
}

.integration-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.integration-header h2 {
  margin-bottom: 16px;
}

.integration-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* (Showcase container and SVG removed — replaced by .integration-demo) */

/* ========== PLATFORM MOCKUP ========== */
.office-puzzle-mockup {
  width: 750px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
  display: flex;
}

/* Platform Sidebar Navigation */
.op-sidebar-nav {
  width: 130px;
  background: #fafbfc;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
}

.op-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.op-house-icon {
  width: 40px;
  height: 40px;
}

.op-search-box {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-bottom: 16px;
  font-size: 10px;
  color: #999;
}

.op-nav-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.op-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 11px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.op-nav-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

.op-nav-item.active {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
}

.op-nav-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Platform Main Content */
.op-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.op-toolbar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafbfc;
}

.op-menu-items {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: #333;
}

.op-menu-items span {
  cursor: pointer;
}

.op-format-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.format-icon {
  font-size: 10px;
  color: #666;
  padding: 4px 6px;
  cursor: pointer;
}

.format-divider {
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 4px;
}

/* Document Area */
.op-document-area {
  flex: 1;
  padding: 20px;
  background: white;
}

.op-cpt-header {
  background: #4a5568;
  color: white;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px 4px 0 0;
  margin-bottom: 0;
}

.op-summary-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
}

.op-summary-label {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.op-summary-field {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 24px;
  position: relative;
}

.op-empty-placeholder {
  flex: 1;
  height: 20px;
  background: #f8f9fa;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.op-clear-btn {
  width: 20px;
  height: 20px;
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

.op-generate-row {
  display: flex;
  align-items: center;
  margin: 12px 0;
}

.op-generate-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.op-abaiq-mini-logo {
  font-weight: 700;
  font-size: 10px;
  background: white;
  color: #764ba2;
  padding: 2px 4px;
  border-radius: 3px;
}

.op-certification-text {
  font-size: 10px;
  color: #666;
  font-style: italic;
  margin: 16px 0 12px;
}

/* Signature Section */
.op-signature-section {
  display: flex;
  gap: 24px;
  padding-top: 12px;
}

.op-sig-field {
  flex: 1;
  text-align: center;
}

.op-sig-field.sig-center {
  position: relative;
}

.op-sig-line {
  height: 1px;
  background: #333;
  margin-bottom: 6px;
}

.op-sig-field span {
  font-size: 9px;
  color: #666;
}

.op-sign-here-sticker {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff9800;
  color: white;
  padding: 4px 8px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.sticker-arrow {
  font-size: 12px;
  margin-top: 2px;
}

/* Data Collection Tab */
.op-data-tab {
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  background: #4a5568;
  color: white;
  padding: 8px 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 0 6px 6px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.op-data-tab .tab-space {
  height: 8px;
}

/* ABAIQ FAB Button */
.op-abaiq-fab {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
  cursor: pointer;
  z-index: 5;
}

.fab-logo {
  color: white;
  font-size: 16px;
  font-weight: 700;
}

/* ========== ABAIQ SIDEBAR MOCKUP - FIEL AL REAL ========== */
.abaiq-sidebar-mockup {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(102, 126, 234, 0.15);
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2), 0 0 0 1px rgba(102, 126, 234, 0.05);
  overflow: hidden;
  z-index: 10;
}

/* ABAIQ Header */
.abaiq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.abaiq-logo-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-aba {
  color: #667eea;
}

.logo-iq {
  color: #764ba2;
}

.abaiq-close-btn {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  color: #999;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ABAIQ Content */
.abaiq-content {
  padding: 16px;
}

/* Session Details Card */
.abaiq-session-card {
  background: white;
  border: 1px solid rgba(102, 126, 234, 0.12);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}

.session-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
}

.session-title {
  font-size: 11px;
  font-weight: 600;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.session-update-btn {
  padding: 5px 12px;
  background: transparent;
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  color: #667eea;
  cursor: pointer;
}

.session-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0 12px 16px;
}

.session-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #f8f9fc;
  border-radius: 10px;
  font-size: 11px;
  color: #333;
  font-weight: 500;
}

.check-circle {
  width: 18px;
  height: 18px;
  background: #48bb78;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

/* Add Details Link */
.abaiq-add-details {
  width: 100%;
  padding: 14px;
  background: #f8f9fc;
  border: 1px solid rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  font-size: 12px;
  color: #667eea;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 12px;
  text-align: center;
}

/* Generate Button */
.abaiq-generate-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
}

/* Footer Tabs */
.abaiq-footer-tabs {
  display: flex;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.footer-tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.footer-tab.active {
  color: #667eea;
  border-bottom-color: #667eea;
}

/* Credits Badge */
.abaiq-credits-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-top: 1px solid rgba(102, 126, 234, 0.08);
  font-size: 12px;
  color: #333;
  font-weight: 600;
}

.abaiq-credits-badge svg {
  flex-shrink: 0;
}

/* Integration Arrow */
.integration-arrow {
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.integration-arrow svg {
  color: var(--primary);
  background: white;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
  animation: pulseArrow 2s ease-in-out infinite;
}

.integration-arrow span {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

@keyframes pulseArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* Integration Features */
.integration-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.integration-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-check {
  width: 24px;
  height: 24px;
  background: rgba(72, 187, 120, 0.1);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

/* ========== AGITATION SECTION ========== */
.agitation-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.agitation-content {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.agitation-text h2 {
  margin-bottom: 32px;
}

.agitation-stats {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
  justify-content: center;
}

.agitation-stat {
  text-align: center;
}

.agitation-stat .stat-number {
  font-size: var(--font-size-4xl);
  margin-bottom: 4px;
}

.agitation-stat .stat-label {
  font-size: var(--font-size-sm);
}

.agitation-quote {
  font-size: var(--font-size-lg);
  font-style: italic;
  color: var(--text-dark);
  padding: 24px 40px;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 16px;
  border-left: 4px solid;
  border-image: var(--primary-gradient) 1;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.agitation-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  padding: 48px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.02) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.visual-card svg {
  position: relative;
  z-index: 1;
}

.visual-label {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--warning-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== PROBLEMS DEEP DIVE SECTION - DARK ========== */
.problems-section {
  padding: var(--section-padding) 0;
  position: relative;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
  overflow: hidden;
}

/* Animated dot grid */
.problems-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 107, 53, 0.12) 1px,
    transparent 0
  );
  background-size: 40px 40px;
  pointer-events: none;
}

/* Glowing orb */
.problems-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 107, 53, 0.15) 0%,
    rgba(220, 38, 38, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: problemsOrb 4s ease-in-out infinite;
}

@keyframes problemsOrb {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.problems-section .section-title {
  color: #ffffff;
}

.problems-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 60px;
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.problem-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 107, 53, 0.1);
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff6b35, #dc2626);
}

.problem-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 28px;
  height: 28px;
  color: #ff6b35;
}

.problem-header h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.problem-header .stat-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.2);
  color: #ff9f6b;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 4px;
}

.problem-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Interactive Example Box */
.problem-example {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 16px;
  position: relative;
}

.example-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.example-text {
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.example-text .highlight-bad {
  background: rgba(220, 38, 38, 0.3);
  color: #fca5a5;
  padding: 2px 6px;
  border-radius: 4px;
}

.example-text .highlight-similar {
  background: rgba(255, 107, 53, 0.3);
  color: #ffb380;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px dashed rgba(255, 107, 53, 0.5);
}

/* Comparison Arrows */
.problem-comparison {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-before, .comparison-after {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
}

.comparison-before {
  background: rgba(220, 38, 38, 0.15);
  color: #fca5a5;
}

.comparison-after {
  background: rgba(72, 187, 120, 0.15);
  color: #86efac;
}

.comparison-arrow {
  color: rgba(255, 255, 255, 0.4);
}

.comparison-arrow svg {
  width: 20px;
  height: 20px;
}

/* Stats row inside problems section */
.problems-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.problems-stats .stat {
  text-align: center;
}

.problems-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 8px;
}

.problems-stats .stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ========== SOLUTION SECTION ========== */
.solution-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.solution-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.solution-intro p {
  font-size: var(--font-size-lg);
  line-height: 1.7;
}

.how-it-works {
  margin-bottom: 80px;
}

.how-it-works h3 {
  text-align: center;
  margin-bottom: 48px;
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
}

.steps-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Connecting line behind steps */
.steps-container::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--primary-magenta));
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
}

.step-number {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--primary-gradient);
  opacity: 0;
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Before/After Comparison */
.transformation-preview {
  max-width: 900px;
  margin: 0 auto;
}

.before-after-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}

.before, .after {
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.before {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.02) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.before::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--warning-orange);
}

.before h4 {
  color: var(--warning-orange);
  margin-bottom: 24px;
  font-size: var(--font-size-lg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.after {
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.08) 0%, rgba(72, 187, 120, 0.02) 100%);
  border: 1px solid rgba(72, 187, 120, 0.2);
}

.after::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--success-green);
}

.after h4 {
  color: var(--success-green);
  margin-bottom: 24px;
  font-size: var(--font-size-lg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.before ul, .after ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.before li, .after li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-size-base);
  color: var(--text-secondary);
}

.before li::before {
  content: '✕';
  color: var(--warning-orange);
  font-weight: bold;
  font-size: 14px;
}

.after li::before {
  content: '✓';
  color: var(--success-green);
  font-weight: bold;
  font-size: 14px;
}

.arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.arrow-divider svg {
  width: 40px;
  height: 40px;
  color: var(--primary-blue);
  animation: bounceRight 1.5s ease-in-out infinite;
}

@keyframes bounceRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

/* ========== FEATURES SECTION - DETAILED ========== */
.features-section {
  padding: var(--section-padding) 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.features-section .badge {
  margin-bottom: 16px;
}

.features-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.feature-detailed-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.feature-detailed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-detailed-card:hover::before {
  opacity: 1;
}

.feature-detailed-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-detailed-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(102, 126, 234, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-detailed-card:hover .feature-detailed-icon {
  background: rgba(102, 126, 234, 0.15);
  transform: scale(1.05);
}

.feature-detailed-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.feature-detailed-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.feature-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
}

.feature-detailed-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-card-disclaimer {
  font-size: 11px !important;
  color: #b0b7c3 !important;
  font-style: italic !important;
  font-weight: 300 !important;
  line-height: 1.4;
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 12px;
}

/* Feature Preview Box */
.feature-preview {
  background: rgba(102, 126, 234, 0.04);
  border: 1px solid rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  padding: 16px;
}

.preview-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.preview-content {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-chip {
  padding: 6px 12px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.preview-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.preview-step {
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
}

.preview-arrow {
  color: var(--primary);
  font-weight: 600;
}

.preview-comparison {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison-no {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.comparison-no::before {
  content: '✓';
  color: var(--success);
  font-weight: 600;
}

/* ========== AGENCY HERO SECTION ========== */
.agency-hero-section {
  padding: var(--section-padding) 0;
  position: relative;
  background: linear-gradient(180deg, #fafafa 0%, #f0f0ff 50%, #fafafa 100%);
  overflow: hidden;
}

.agency-hero-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(102, 126, 234, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.agency-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.badge.gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
}

.badge.gold svg {
  color: white;
}

.agency-hero-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.agency-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Hero Benefits Grid */
.hero-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.hero-benefit-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(102, 126, 234, 0.2);
}

.hero-benefit-card:hover::before {
  opacity: 1;
}

.hero-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-benefit-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.hero-benefit-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.hero-benefit-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.benefit-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 10px;
}

.stat-highlight {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--success);
}

.benefit-stat span:last-child {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Agency Hero Quote */
.agency-hero-quote {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 40px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  position: relative;
}

.agency-hero-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}

.agency-hero-quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.agency-hero-quote cite {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
}

/* Keep old transformation styles for backwards compatibility */
.transformation-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.benefits-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 60px;
}

.benefit-card {
  padding: var(--card-padding);
  text-align: center;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.benefit-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.3), rgba(72, 187, 120, 0.1));
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

.benefit-icon.success {
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.2) 0%, rgba(72, 187, 120, 0.05) 100%);
  color: var(--success-green);
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}

.benefit-card h3 {
  margin-bottom: 12px;
}

.testimonial-preview {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  position: relative;
}

.testimonial-preview::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  color: var(--primary-blue);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-preview blockquote {
  font-size: var(--font-size-2xl);
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.5;
}

.testimonial-preview cite {
  font-style: normal;
  color: var(--text-muted);
  font-size: var(--font-size-base);
}

/* ========== SOCIAL PROOF SECTION ========== */
.social-proof-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 60px;
}

.stat-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(72, 187, 120, 0.08);
  border: 1px solid rgba(72, 187, 120, 0.2);
  border-radius: 50px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-base);
}

.trust-badge:hover {
  background: rgba(72, 187, 120, 0.15);
  transform: translateY(-2px);
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--success-green);
}

/* ========== PRICING SECTION - PREMIUM DARK ========== */
.pricing-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
  position: relative;
  overflow: hidden;
}

/* Animated dot grid (fiber optic effect) */
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(102, 126, 234, 0.2) 1px,
    transparent 0
  );
  background-size: 50px 50px;
  animation: moveGrid 30s linear infinite;
  pointer-events: none;
}

@keyframes moveGrid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Glowing orbs in background */
.pricing-section::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(102, 126, 234, 0.15) 0%,
    rgba(118, 75, 162, 0.1) 30%,
    transparent 70%
  );
  pointer-events: none;
}

/* Dark theme text colors */
.pricing-section .section-title {
  color: #ffffff;
}

.pricing-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Billing Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.toggle-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-label.active {
  color: #ffffff;
}

.save-badge {
  padding: 4px 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toggle-switch {
  position: relative;
  width: 56px;
  height: 28px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 2px;
  top: 2px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(28px);
}

.toggle-switch input:checked + .toggle-slider {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.4);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 40px;
  align-items: stretch;
}

.pricing-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition-base);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(102, 126, 234, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

/* Gradient border effect */
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.4) 0%,
    rgba(102, 126, 234, 0) 50%,
    rgba(118, 75, 162, 0.3) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(102, 126, 234, 0.1);
}

.pricing-card.price-pop {
  animation: pricePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pricePop {
  0% { transform: scale(1); }
  40% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* SVG Icon Animation */
.pricing-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.pricing-svg {
  width: 100%;
  height: 100%;
}

.pricing-svg .svg-circle {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: drawCircle 1s ease forwards;
}

.pricing-svg .svg-check,
.pricing-svg .svg-star,
.pricing-svg .svg-crown {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawPath 0.8s ease 0.5s forwards;
}

.pricing-svg .svg-gem {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: drawPath 0.4s ease 0.8s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

/* Replay animation on hover */
.pricing-card:hover .svg-circle {
  animation: drawCircle 0.6s ease forwards;
}

.pricing-card:hover .svg-check,
.pricing-card:hover .svg-star,
.pricing-card:hover .svg-crown {
  animation: drawPath 0.5s ease 0.3s forwards;
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  z-index: 1;
  background: rgba(102, 126, 234, 0.08);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

/* Popular badge - positioned outside the gradient border pseudo */
.pricing-card.popular .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.pricing-name {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.pricing-price {
  margin-bottom: 8px;
  line-height: 1;
  overflow: hidden;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.price-amount.scroll-out {
  transform: translateY(-100%);
  opacity: 0;
}

.price-amount.scroll-in {
  transform: translateY(100%);
  opacity: 0;
}

.price-amount.scroll-active {
  transform: translateY(0);
  opacity: 1;
}

.price-period {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-notes {
  font-size: var(--font-size-sm);
  color: #a78bfa;
  font-weight: 600;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 20px;
  display: inline-block;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

/* Pricing Add-on */
.pricing-addon {
  max-width: 450px;
  margin: 0 auto 60px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.addon-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.addon-badge {
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
  color: #a78bfa;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.addon-content h4 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.addon-content p {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.addon-content strong {
  color: #a78bfa;
  font-weight: 700;
}

.final-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 40px;
  position: relative;
  z-index: 10;
}

.final-cta h3 {
  font-size: var(--font-size-3xl);
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 700;
}

.final-cta p {
  font-size: var(--font-size-lg);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========== NOTE TYPES SECTION ========== */
.note-types-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
  position: relative;
  overflow: hidden;
}

/* Dot grid background (same as pricing) */
.note-types-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(102, 126, 234, 0.15) 1px,
    transparent 0
  );
  background-size: 50px 50px;
  animation: moveGrid 30s linear infinite;
  pointer-events: none;
}

/* Glow orb */
.note-types-section::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse at center,
    rgba(102, 126, 234, 0.12) 0%,
    rgba(118, 75, 162, 0.08) 30%,
    transparent 70%
  );
  pointer-events: none;
}

/* Dark theme text */
.note-types-section .section-title {
  color: #ffffff;
}

.note-types-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.note-types-section .section-subtitle strong {
  color: #ffffff;
  font-weight: 600;
}

/* Light badge for dark backgrounds */
.badge-light {
  background: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.badge-light svg {
  stroke: rgba(255, 255, 255, 0.7);
}

/* Grid: flex wrap — cards have a fixed size and wrap when they don't fit */
.note-types-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

/* Card */
.note-type-card {
  width: 320px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.note-type-card:hover {
  transform: translateY(-6px);
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(102, 126, 234, 0.1);
}

/* ---- Note Type Mockup (faithfully replicating ABAIQ sidebar) ---- */
.note-type-mockup {
  margin: 16px 16px 0;
  background: #f4f5f7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.note-type-card:hover .note-type-mockup {
  transform: scale(1.02);
}

/* Top gray header bar with pill */
.ntm-header {
  background: #ecedf0;
}

.ntm-header-bar {
  display: flex;
  justify-content: center;
  padding: 8px 0 6px;
}

.ntm-header-pill {
  width: 36px;
  height: 4px;
  background: #c8c9cc;
  border-radius: 2px;
}

/* Note Type label row */
.ntm-note-type-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #ffffff;
  border-bottom: 3px solid #667eea;
}

.ntm-label-text {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.3px;
}

.ntm-label-text strong {
  color: #1a1a2e;
  font-weight: 700;
}

.ntm-close {
  font-size: 16px;
  color: #999;
  cursor: default;
  line-height: 1;
}

/* Suggestion card */
.ntm-suggestion {
  margin: 12px;
  background: #ffffff;
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.ntm-suggestion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
}

.ntm-suggestion-label {
  font-size: 13px;
  font-weight: 600;
  color: #667eea;
}

.ntm-copy-btn {
  font-size: 10px;
  font-weight: 700;
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 14px;
  padding: 4px 12px;
  letter-spacing: 0.5px;
}

.ntm-suggestion-body {
  padding: 0 14px;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.ntm-typing-text {
  font-size: 12.5px;
  line-height: 1.65;
  color: #444;
  margin: 0;
  padding: 8px;
  background: rgba(102, 126, 234, 0.04);
  border-radius: 8px;
  border-left: 3px solid rgba(102, 126, 234, 0.2);
}

.ntm-typing-text::after {
  content: '|';
  color: #667eea;
  animation: ntmBlink 0.8s step-end infinite;
  font-weight: 300;
  margin-left: 1px;
}

@keyframes ntmBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Fade bottom */
.ntm-suggestion-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, #ffffff);
  pointer-events: none;
}

/* View more link */
.ntm-view-more {
  padding: 8px 14px 14px;
  margin: 0 12px;
  font-size: 12px;
  color: #667eea;
  font-weight: 500;
}

/* Info text */
.note-type-info {
  padding: 20px 24px 28px;
  text-align: center;
}

.note-type-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.note-type-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ========== FOOTER - LIGHT THEME ========== */
.site-footer {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(2, 1fr) 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.footer-column h4 {
  color: var(--text-dark);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  padding: 8px 0;
  transition: var(--transition-fast);
}

.footer-column a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact h4 {
  color: var(--text-dark);
}

.footer-contact a {
  color: var(--primary);
  font-weight: 500;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(102, 126, 234, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 126, 234, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ========== FAQ SECTION (Light) ========== */
.faq-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  padding: 28px 32px;
}

.faq-question {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.faq-answer {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
}

.faq-cta p {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* ========== SESSION DETAILS CARD ========== */
.feature-autoimport-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.autoimport-content {
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.autoimport-mockup {
  background: linear-gradient(145deg, #f8f9fc 0%, #f1f3f9 100%);
  border: 1px solid rgba(102, 126, 234, 0.12);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.08);
}

.autoimport-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.autoimport-mockup-title {
  font-size: 12px;
  font-weight: 700;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.autoimport-update-btn {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #667eea;
  cursor: pointer;
  transition: all 0.2s ease;
}

.autoimport-update-btn:hover {
  background: rgba(102, 126, 234, 0.1);
}

.autoimport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.autoimport-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: white;
  border-radius: 12px;
  font-size: 13px;
  color: #1a202c;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.04);
  transition: all 0.2s ease;
}

.autoimport-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.08);
}

.autoimport-check {
  width: 22px;
  height: 22px;
  background: #48bb78;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.autoimport-add-details {
  width: 100%;
  padding: 14px;
  background: #f8f9fc;
  border: 1px solid rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  font-size: 13px;
  color: #667eea;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.autoimport-add-details:hover {
  background: rgba(102, 126, 234, 0.08);
}

/* Responsive for autoimport card */
@media (max-width: 768px) {
  .feature-autoimport-card {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .autoimport-content {
    padding-right: 0;
  }

  .autoimport-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CARD 2: SUGGESTION MOCKUP (Large) ========== */
.suggestion-card-large {
  background: white;
  border: 1px solid rgba(102, 126, 234, 0.12);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.06);
}

.suggestion-large-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(102, 126, 234, 0.08);
}

.suggestion-large-label {
  font-size: 15px;
  font-weight: 600;
  color: #667eea;
}

.suggestion-copy-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1.5px solid #667eea;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #667eea;
  cursor: pointer;
  transition: all 0.3s ease;
}

.suggestion-copy-btn:hover {
  background: rgba(102, 126, 234, 0.1);
}

.suggestion-large-content {
  padding: 20px;
  height: 180px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.7;
  color: #1a202c;
  position: relative;
  padding-bottom: 60px;
}

.suggestion-large-content p {
  margin: 0;
}

.suggestion-large-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
}

/* ========== CARD 3: NOTE MOCKUP (Large) ========== */
.op-mockup-large {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.op-mockup-header {
  background: #f5f5f5;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
}

.op-mockup-content {
  padding: 20px;
}

.op-mockup-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 12px;
}

.op-mockup-textarea {
  padding: 16px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  max-height: 140px;
  overflow: hidden;
  position: relative;
}

.op-mockup-textarea::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #fafafa);
}

.op-mockup-textarea-empty {
  height: 80px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

/* Generate Button Mockup */
.op-generate-btn-mockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: white;
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #667eea;
  box-shadow: 0 6px 24px rgba(102, 126, 234, 0.15);
  margin-top: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.op-generate-btn-mockup:hover {
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.25);
  transform: translateY(-2px);
}

/* .op-iq-icon is defined in Card 4 section below */

/* ========== CARD 3: Auto-scroll animation ========== */
.card3-mockup-wrapper {
  overflow: hidden;
}

.op-mockup-textarea-scrollable {
  max-height: 140px;
  overflow: hidden;
  position: relative;
}

.card3-scroll-content {
  transition: transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ========== CARD 4: Faithful Generate Note Button ========== */
.op-generate-btn-wrapper {
  padding: 12px 20px 8px;
  display: flex;
  justify-content: center;
}

.op-generate-btn-real {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: white;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.18), 0 0 40px rgba(102, 126, 234, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}

.op-generate-btn-real:hover {
  box-shadow: 0 8px 32px rgba(127, 83, 172, 0.35), 0 4px 16px rgba(127, 83, 172, 0.2);
  transform: translateY(-2px);
}

.op-generate-btn-real.clicking {
  transform: scale(0.95);
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.15);
}

.op-iq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: inline-block;
  background: transparent;
}

.op-signing-text {
  padding: 8px 20px 16px;
  font-size: 11px;
  color: #999;
  line-height: 1.4;
}

/* Card 4 filled state transition */
#card4SummaryFilled {
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(10px);
}

/* ========== 4 HORIZONTAL FEATURE CARDS ========== */
.features-horizontal-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 48px;
}

.features-horizontal-grid::-webkit-scrollbar {
  display: none;
}

.feature-horizontal-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.feature-horizontal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(102, 126, 234, 0.15);
}

.feature-horizontal-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-horizontal-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.feature-horizontal-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Feature Mockup Card Container */
.feature-mockup-card {
  margin-top: auto;
  padding-top: 16px;
}

/* Session Details Mockup (Card 1) */
.session-details-mockup {
  background: white;
  border: 1px solid rgba(102, 126, 234, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.06);
}

.session-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(102, 126, 234, 0.08);
}

.session-mockup-title {
  font-size: 11px;
  font-weight: 700;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.session-update-btn {
  padding: 4px 12px;
  background: transparent;
  border: 1px solid #667eea;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  color: #667eea;
  cursor: pointer;
}

.session-mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px 16px;
}

.session-mockup-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-dark);
}

.check-green {
  color: #48bb78;
  font-weight: 700;
}

.session-mockup-footer {
  padding: 10px 16px;
  font-size: 11px;
  color: #667eea;
  text-align: center;
  border-top: 1px solid rgba(102, 126, 234, 0.08);
}

/* Suggestion Card Mockup (Card 2) */
.suggestion-card-mockup {
  background: white;
  border: 1px solid rgba(102, 126, 234, 0.12);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.06);
}

.suggestion-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(102, 126, 234, 0.08);
}

.suggestion-label {
  font-size: 13px;
  font-weight: 600;
  color: #667eea;
}

.copy-btn-outline {
  padding: 5px 14px;
  background: transparent;
  border: 1.5px solid #667eea;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #667eea;
  cursor: pointer;
}

.suggestion-mockup-content {
  padding: 14px 16px 50px;
  min-height: 100px;
}

.feature-typing-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

.suggestion-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
}

/* Note Summary Mockup */
.op-summary-mockup {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.op-cpt-header {
  background: #f5f5f5;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
}

.op-summary-content {
  padding: 14px;
}

.op-summary-label {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.op-summary-filled {
  padding: 10px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 11px;
  line-height: 1.5;
  color: #333;
  max-height: 90px;
  overflow: hidden;
  position: relative;
}

.op-summary-filled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to bottom, transparent, #fafafa);
}

.op-summary-empty {
  height: 50px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

/* Generate Note Shortcut Button */
.generate-note-shortcut-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #667eea;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.12);
  margin-top: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.generate-note-shortcut-btn:hover {
  box-shadow: 0 6px 24px rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

.iq-icon-small {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

/* Responsive for horizontal cards */
@media (max-width: 768px) {
  .features-horizontal-grid {
    padding-left: 20px;
  }

  .feature-horizontal-card {
    flex: 0 0 300px;
  }
}

/* ========== DEMO OVERLAY FOR INTEGRATION SECTION ========== */
.integration-showcase {
  position: relative;
}

/* Integration Demo - Generate Notes + Note Showcase */
.integration-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.note-showcase {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.note-showcase-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, #f8f9fc 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.note-showcase-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, #f8f9fc 100%);
  z-index: 2;
  pointer-events: none;
}

.note-showcase-content {
  padding: 40px 24px 60px;
  height: 100%;
  overflow: hidden;
}

.note-showcase .typed-note-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #374151;
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
}

/* ========== COMPLIANCE CHECKLIST ========== */
.compliance-checklist {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.06) 0%, rgba(118, 75, 162, 0.04) 100%);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 16px;
}

.compliance-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.compliance-header svg {
  stroke: var(--primary);
  flex-shrink: 0;
}

.compliance-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.4;
}

.compliance-check {
  stroke: #10b981;
  flex-shrink: 0;
}

/* ========== PRICING CARD EQUAL HEIGHT ========== */
.pricing-card .btn {
  margin-top: auto;
}

/* ========== FEATURE DETAIL SECTIONS (Alternating Layout) ========== */
.feature-detail {
  padding: var(--section-padding) 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  overflow: hidden;
}

.feature-detail .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
}

.feature-detail.reverse .container {
  direction: rtl;
}

.feature-detail.reverse .container > * {
  direction: ltr;
}

/* Feature Detail Content */
.feature-detail-content {
  max-width: 500px;
}

.feature-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-detail-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.feature-detail-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Feature Detail Mockup */
.feature-detail-mockup {
  background: linear-gradient(135deg, #f8f9fc 0%, #f1f3f9 100%);
  border: 1px solid rgba(102, 126, 234, 0.1);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.1);
}

/* AI Processing Mockup */
.ai-processing-mockup {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.ai-step:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.ai-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.ai-step-icon.reading {
  background: rgba(79, 172, 254, 0.15);
  color: #4facfe;
}

.ai-step-icon.applying {
  background: rgba(102, 126, 234, 0.15);
  color: var(--primary-blue);
}

.ai-step-icon.drafting {
  background: rgba(118, 75, 162, 0.15);
  color: #764ba2;
}

.ai-step-icon.ready {
  background: rgba(72, 187, 120, 0.15);
  color: var(--success-green);
}

.ai-step-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

/* Add More Details Mockup */
.add-details-mockup {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(102, 126, 234, 0.12);
  overflow: hidden;
}

.add-details-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8f9fc 0%, #f1f3f9 100%);
  border-bottom: 1px solid rgba(102, 126, 234, 0.08);
}

.add-details-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-details-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.add-details-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dark);
}

.add-details-item .check-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
}

/* Feature Detail Purple Section */
.feature-detail-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.feature-detail-purple::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
  background-size: 40px 40px;
  animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

.feature-detail-purple .container {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
}

.feature-detail-purple .feature-detail-badge {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.feature-detail-purple .feature-detail-title {
  color: white;
}

.feature-detail-purple .feature-detail-description {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 40px;
}

.feature-detail-purple .stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.feature-detail-purple .stat-item {
  text-align: center;
}

.feature-detail-purple .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.feature-detail-purple .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Feature Detail Dark Section */
.feature-detail-dark {
  background: linear-gradient(145deg, #1a1f36 0%, #0f1219 100%);
  position: relative;
  overflow: hidden;
}

.feature-detail-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(102, 126, 234, 0.15) 1px, transparent 0);
  background-size: 40px 40px;
}

.feature-detail-dark .feature-detail-badge {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.4);
  color: #a78bfa;
}

.feature-detail-dark .feature-detail-title {
  color: white;
}

.feature-detail-dark .feature-detail-description {
  color: rgba(255, 255, 255, 0.7);
}

.feature-detail-dark .feature-detail-mockup {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(102, 126, 234, 0.2);
}

/* Workflow Mockup */
.workflow-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.workflow-step-number {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.workflow-step-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.workflow-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
}

.feature-detail-dark .btn {
  margin-top: 32px;
}

/* Responsive for Feature Details */
@media (max-width: 1024px) {
  .feature-detail .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-detail.reverse .container {
    direction: ltr;
  }

  .feature-detail-content {
    max-width: 100%;
    text-align: center;
  }

  .feature-detail-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .workflow-mockup {
    flex-wrap: wrap;
  }
}

/* Generate Button Container */
.generate-btn-container {
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.generate-btn-container.shrunk {
  transform: scale(0.6);
  opacity: 0.8;
}

.generate-btn-animated {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.generate-btn-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmerBtn 3s infinite;
}

@keyframes shimmerBtn {
  0% { left: -100%; }
  100% { left: 100%; }
}

.generate-btn-animated:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.55);
}

.generate-btn-animated .btn-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

/* Note Content with Typing Effect */

.typed-note-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  font-family: 'Inter', system-ui, sans-serif;
}

.typed-note-text .typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--primary-blue);
  margin-left: 2px;
  animation: typingCursorBlink 0.8s infinite;
  vertical-align: middle;
}

@keyframes typingCursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


/* Responsive */
@media (max-width: 768px) {
  .generate-btn-animated {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .note-showcase {
    height: 220px;
  }

  .note-showcase .typed-note-text {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

/* ========== TESTIMONIALS CAROUSEL (2 Rows) ========== */
.testimonials-carousel-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  overflow: hidden;
}

.testimonials-carousel-section .section-title {
  text-align: center;
  margin-bottom: 48px;
}

/* Carousel Container */
.testimonials-carousel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

/* Carousel Track */
.testimonials-track {
  display: flex;
  gap: 24px;
  animation: scrollTestimonials 40s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

/* Reverse direction for second row */
.testimonials-track-reverse {
  animation: scrollTestimonialsReverse 40s linear infinite;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollTestimonialsReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Testimonial Card for Carousel */
.testimonial-carousel-card {
  flex-shrink: 0;
  width: 380px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(102, 126, 234, 0.1);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
  transition: all 0.3s ease;
}

.testimonial-carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.testimonial-carousel-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: normal;
}

.testimonial-carousel-card blockquote::before {
  content: '"';
  font-size: 3rem;
  line-height: 1;
  color: var(--primary-blue);
  opacity: 0.2;
  display: block;
  margin-bottom: -20px;
}

.testimonial-carousel-card cite {
  display: flex;
  align-items: center;
  gap: 14px;
  font-style: normal;
}

.testimonial-carousel-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-carousel-card .author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-carousel-card .author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.testimonial-carousel-card .author-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive for Testimonials Carousel */
@media (max-width: 768px) {
  .testimonial-carousel-card {
    width: 300px;
    padding: 20px;
  }

  .testimonial-carousel-card blockquote {
    font-size: 14px;
  }
}

/* ========== AGENCY CTA SECTION ========== */
.agency-cta-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.agency-cta-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
  border: 1px solid rgba(102, 126, 234, 0.15);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.agency-cta-card .badge {
  margin-bottom: 20px;
}

.agency-cta-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.agency-cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 36px;
}

.agency-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  text-align: left;
}

.agency-cta-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.agency-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(102, 126, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-blue);
}

.agency-cta-icon svg {
  width: 20px;
  height: 20px;
}

.agency-cta-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 4px;
}

.agency-cta-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.agency-cta-btn {
  display: inline-flex;
  width: auto;
}
