/* ==========================================================================
   Landing Page Styles - Linneu
   Modern, Awwwards-inspired design
   ========================================================================== */

/* --------------------------------------------------------------------------
   Base & Reset - Override base styles.css
   -------------------------------------------------------------------------- */
body.landing-page {
  --nav-height: 72px;
  display: block !important;
  align-items: initial !important;
  justify-content: initial !important;
  min-height: 100vh;
  background: var(--neutral-50);
  overflow-x: hidden;
  padding: 0 !important;
}

.landing-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure all sections are full width and stacked */
.landing-page section {
  width: 100%;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Accessibility
   -------------------------------------------------------------------------- */

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-500);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--primary-300);
  outline-offset: 2px;
}

/* Focus states for all interactive elements */
.landing-page a:focus-visible,
.landing-page button:focus-visible {
  outline: 3px solid var(--primary-400);
  outline-offset: 2px;
}

.landing-page .btn:focus-visible {
  outline: 3px solid white;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--primary-300);
}

.landing-page .nav-cta:focus-visible,
.landing-page .mobile-cta:focus-visible {
  outline: 3px solid var(--primary-300);
  outline-offset: 2px;
}

/* Screen reader only class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-blob,
  .typing-dots span,
  .scroll-indicator {
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .landing-page .btn {
    border: 2px solid currentColor;
  }

  .feature-card,
  .testimonial-card,
  .pricing-card,
  .faq-item {
    border: 2px solid var(--neutral-900);
  }
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--neutral-900);
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-logo img {
  border-radius: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--neutral-600);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--neutral-900);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary-500);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--neutral-700);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  padding: calc(var(--nav-height) + 40px) 24px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-links a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--primary-500);
  color: white !important;
  border-radius: 100px;
  font-size: 1rem !important;
  margin-top: 16px;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) 24px 60px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: heroFloat 20s ease-in-out infinite;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-100));
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #c7d2fe, #e0e7ff);
  bottom: -150px;
  left: -100px;
  animation-delay: -7s;
}

.hero-blob-3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-200), #fef3c7);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-600);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--neutral-900);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600), #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-500);
  color: white;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--neutral-700);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-ghost:hover {
  background: white;
  border-color: rgba(0, 0, 0, 0.15);
}

.btn-white {
  background: white;
  color: var(--primary-600);
}

.btn-white:hover {
  background: var(--neutral-50);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

.hero-stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--neutral-500);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--neutral-200);
}

/* Hero Visual - Phone Mockup */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.2),
    0 25px 50px rgba(0, 0, 0, 0.15),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0); }
  50% { transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-10px); }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #075e54 0%, #128c7e 100%);
  border-radius: 32px;
  overflow: hidden;
  padding: 60px 12px 20px;
}

.chat-demo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.8125rem;
  line-height: 1.4;
  animation: messageIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.chat-message.chat-user {
  align-self: flex-end;
  background: #dcf8c6;
  color: #111;
  border-bottom-right-radius: 4px;
  animation-delay: 0.5s;
}

.chat-message.chat-bot {
  align-self: flex-start;
  background: white;
  color: #111;
  border-bottom-left-radius: 4px;
}

.chat-message.chat-bot:nth-child(2) {
  animation-delay: 1s;
}

.chat-message.chat-bot:nth-child(4) {
  animation-delay: 2s;
}

.chat-message.typing .typing-dots {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}

.chat-message.typing .typing-dots span {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  animation: typingDot 1.4s ease-in-out infinite;
}

.chat-message.typing .typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-message.typing .typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--neutral-400);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* --------------------------------------------------------------------------
   Logos Section
   -------------------------------------------------------------------------- */
.logos-section {
  padding: 60px 0;
  background: white;
  border-top: 1px solid var(--neutral-100);
  border-bottom: 1px solid var(--neutral-100);
}

.logos-title {
  text-align: center;
  font-size: 0.875rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bank-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s;
}

.logo-item:hover .bank-logo {
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   Section Styles
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-50);
  color: var(--primary-600);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--neutral-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Features Section
   -------------------------------------------------------------------------- */
.features-section {
  padding: 120px 0;
  background: var(--neutral-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--neutral-100);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.feature-card-large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  display: flex;
  overflow: hidden;
  background: white;
}

.feature-large-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.feature-card-large h3 {
  color: var(--neutral-900);
  font-size: 1.5rem;
  display: block;
}

.feature-card-large p {
  color: var(--neutral-600);
  font-size: 1rem;
  margin-bottom: 24px;
}

/* Prompt examples */
.prompt-examples {
  margin-top: auto;
}

.prompt-label {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin-bottom: 12px;
}

.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prompt-chip {
  display: inline-block;
  padding: 8px 14px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-size: 0.8125rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* Chart visualization */
.feature-visual {
  flex: 0 0 280px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-container {
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
}

.chart-title {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  text-align: center;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 120px;
  gap: 12px;
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 1;
  height: 100%;
}

.bar {
  width: 100%;
  max-width: 40px;
  min-height: 20px;
  height: var(--height);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 6px 6px 0 0;
  transition: height 0.5s ease-out;
}

.bar-current {
  background: white;
}

.bar-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.chart-insight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.8125rem;
  color: white;
}

.chart-insight i,
.chart-insight svg {
  color: #4ade80;
  flex-shrink: 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}

.feature-icon-large {
  width: 56px;
  height: 56px;
  background: var(--primary-500);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 12px;
  display: block;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   How It Works Section
   -------------------------------------------------------------------------- */
.how-it-works-section {
  padding: 120px 0;
  background: white;
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-200);
  line-height: 1;
  margin-bottom: 24px;
}

.step-content {
  background: var(--neutral-50);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-500);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 12px;
  display: block;
}

.step p {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-200), var(--primary-400));
  margin-top: 215px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 120px 0;
  background: var(--neutral-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--neutral-100);
  transition: all 0.3s;
  text-align: start;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-featured {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  border: none;
  transform: scale(1.05);
}

.testimonial-featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.testimonial-featured .testimonial-text {
  color: white;
}

.testimonial-featured .testimonial-author span {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  fill: currentColor;
}

.testimonial-featured .testimonial-stars {
  color: white;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary-100);
  color: var(--primary-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial-featured .testimonial-avatar {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--neutral-900);
}

.testimonial-featured .testimonial-author strong {
  color: white;
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing-section {
  padding: 120px 0;
  background: white;
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: white;
  border-radius: 32px;
  padding: 48px;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-500);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-500);
}

.pricing-value {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--neutral-900);
  line-height: 1;
}

.pricing-decimal {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.pricing-period {
  font-size: 1.125rem;
  color: var(--neutral-500);
}

.pricing-description {
  color: var(--neutral-600);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  border-top: 1px solid var(--neutral-100);
  padding-top: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.9375rem;
  color: var(--neutral-700);
}

.pricing-features li svg {
  color: var(--primary-500);
  flex-shrink: 0;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

.pricing-guarantee svg {
  color: var(--primary-500);
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 120px 0;
  background: var(--neutral-50);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--neutral-100);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--neutral-200);
}

.faq-item.open {
  border-color: var(--primary-200);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.1);
}

.landing-page .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-900);
  font-family: inherit;
}

.landing-page .faq-question svg {
  color: var(--neutral-400);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
  color: var(--primary-500);
}

.landing-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.landing-page .faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.container::before {
  display: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

/* CTA mascot */
.cta-mascot {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
}

.cta-mascot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--neutral-900);
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.footer-logo img {
  border-radius: 12px;
}

.footer-brand p {
  color: var(--neutral-400);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--neutral-800);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-400);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary-500);
  color: white;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: var(--neutral-400);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 8px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--neutral-800);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--neutral-500);
}

.footer-badges {
  display: flex;
  gap: 24px;
}

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

.footer-badges svg {
  color: var(--primary-500);
}

/* --------------------------------------------------------------------------
   Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure content is visible if JS fails */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* Stagger effect for children */
.features-grid .reveal:nth-child(1) { transition-delay: 0s; }
.features-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.features-grid .reveal:nth-child(5) { transition-delay: 0.4s; }

.testimonials-grid .reveal:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.3s; }

.steps-container .reveal:nth-child(1) { transition-delay: 0s; }
.steps-container .reveal:nth-child(2) { transition-delay: 0.1s; }
.steps-container .reveal:nth-child(3) { transition-delay: 0.2s; }
.steps-container .reveal:nth-child(4) { transition-delay: 0.3s; }
.steps-container .reveal:nth-child(5) { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }

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

  .feature-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .steps-container {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-featured {
    transform: none;
  }

  .testimonial-featured:hover {
    transform: translateY(-4px);
  }

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

@media (max-width: 768px) {
  body.landing-page {
    padding: 0 !important;
  }

  .landing-page .container {
    padding: 0 16px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .hero {
    padding: calc(var(--nav-height) + 40px) 16px 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.25rem;
  }

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

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stat-divider {
    height: 30px;
  }

  .scroll-indicator {
    display: none;
  }

  .logos-section {
    padding: 40px 0;
  }

  .logos-grid {
    gap: 16px 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .bank-logo {
    height: 24px;
  }

  .features-section,
  .how-it-works-section,
  .testimonials-section,
  .pricing-section,
  .faq-section,
  .cta-section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
    padding: 0 8px;
  }

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

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

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 8px;
  }

  .feature-card {
    padding: 24px;
    text-align: center;
  }

  .feature-card .feature-icon {
    margin: 0 auto 16px;
  }

  .feature-card h3 {
    font-size: 1.125rem;
  }

  .feature-card p {
    font-size: 0.875rem;
  }

  .feature-card-large {
    grid-column: span 1;
    flex-direction: column;
  }

  .feature-large-content {
    padding: 28px;
    text-align: center;
  }

  .feature-card-large .feature-icon-large {
    margin: 0 auto 16px;
  }

  .feature-card-large h3 {
    font-size: 1.25rem;
  }

  .feature-card-large p {
    font-size: 0.9375rem;
  }

  .prompt-chips {
    justify-content: center;
  }

  .prompt-chip {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .feature-visual {
    flex: none;
    padding: 24px;
  }

  .bar-chart {
    height: 100px;
  }

  .steps-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 8px;
  }

  .step {
    width: 100%;
  }

  .step-number {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .step-content {
    padding: 24px 20px;
    text-align: center;
  }

  .step-content .step-icon {
    margin: 0 auto 16px;
  }

  .step-content h3 {
    font-size: 1.125rem;
  }

  .step-content p {
    font-size: 0.875rem;
  }

  .step-connector {
    display: none;
  }

  .pricing-card {
    padding: 32px 20px;
    margin: 0 8px;
  }

  .pricing-value {
    font-size: 3rem;
  }

  .faq-grid {
    padding: 0 8px;
  }

  .landing-page .faq-question {
    padding: 16px 20px;
    font-size: 0.9375rem;
  }

  .landing-page .faq-answer p {
    padding: 0 20px 16px;
    font-size: 0.875rem;
  }

  .cta-section {
    padding: 60px 16px;
  }

  .cta-content {
    padding: 32px 24px;
    margin: 0 8px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }

  .testimonials-grid {
    padding: 0 8px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-text {
    font-size: 0.9375rem;
  }

  .footer {
    padding: 48px 0 24px;
  }

  .footer .container {
    padding: 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: span 2;
    text-align: start;
  }

  .footer-brand p {
    max-width: 300px;
    margin: 0 0 16px;
  }

  .footer-social {
    justify-content: center;
  }

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

  .footer-links h4 {
    margin-bottom: 12px;
  }

  .footer-links a {
    padding: 6px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 24px;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: calc(var(--nav-height) + 24px) 12px 60px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }

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

  .feature-card,
  .testimonial-card,
  .pricing-card {
    border-radius: 16px;
  }

  .pricing-value {
    font-size: 2.5rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-blob,
  .phone-mockup,
  .scroll-indicator,
  .chat-message,
  .typing-dots span {
    animation: none;
  }

  .phone-mockup {
    transform: none;
  }
}
