@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --emerald: #047857;
  --emerald-dark: #065f46;
  --sage: #6ee7b7;
  --sage-light: #d1fae5;
  --mint: #a7f3d0;
  --forest: #064e3b;
  --cream: #fffbeb;
  --warm-white: #fefce8;
  --sand: #fef3c7;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --coral: #fb923c;
  --text-dark: #1f2937;
  --text-medium: #4b5563;
  --text-light: #6b7280;
}

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

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Pixel art decorative elements on background */
body::before {
  content: '';
  position: fixed;
  top: 10%;
  right: 8%;
  width: 100px;
  height: 100px;
  background:
    linear-gradient(90deg, var(--sage-light) 0%, var(--sage-light) 20%, transparent 20%, transparent 40%, var(--sage-light) 40%, var(--sage-light) 60%, transparent 60%, transparent 80%, var(--sage-light) 80%),
    linear-gradient(0deg, var(--mint) 0%, var(--mint) 20%, transparent 20%, transparent 40%, var(--mint) 40%, var(--mint) 60%, transparent 60%, transparent 80%, var(--mint) 80%);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  animation: pixelFloat 12s ease-in-out infinite;
}

body::after {
  content: '';
  position: fixed;
  bottom: 15%;
  left: 5%;
  width: 80px;
  height: 80px;
  background:
    linear-gradient(90deg, var(--mint) 0%, var(--mint) 25%, transparent 25%, transparent 50%, var(--mint) 50%, var(--mint) 75%, transparent 75%),
    linear-gradient(0deg, var(--sage) 0%, var(--sage) 25%, transparent 25%, transparent 50%, var(--sage) 50%, var(--sage) 75%, transparent 75%);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
  animation: pixelFloat 15s ease-in-out infinite reverse;
}

@keyframes pixelFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -30px); }
}

/* Header - Reduced size */
header {
  position: relative;
  z-index: 10;
  padding: 0.75rem 0;
  background: rgba(255, 251, 235, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--emerald);
  box-shadow: 0 2px 20px rgba(4, 120, 87, 0.08);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald);
  position: relative;
  display: inline-flex;
  align-items: center;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.8;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald);
  transition: width 0.3s;
}

nav a:hover {
  color: var(--emerald);
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section - Reduced vertical spacing */
.hero {
  position: relative;
  z-index: 1;
  padding: 2rem 0 1.5rem 0;
  overflow: visible;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--sage-light);
  border: 2px dashed var(--emerald);
  border-radius: 24px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--emerald);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  animation: slideDown 0.5s ease-out;
  text-transform: uppercase;
}

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

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--forest);
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideUp 0.5s ease-out 0.1s both;
}

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

.hero-subheadline {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-medium);
  max-width: 750px;
  margin-bottom: 1.5rem;
  animation: slideUp 0.5s ease-out 0.2s both;
}

.hero-search {
  max-width: 650px;
  margin-bottom: 0;
  animation: slideUp 0.5s ease-out 0.3s both;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 1.1rem 3.5rem 1.1rem 3.5rem;
  font-size: 0.95rem;
  font-family: 'DM Mono', monospace;
  background: white;
  border: 2px solid var(--emerald);
  border-radius: 48px;
  outline: none;
  transition: all 0.3s;
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(4, 120, 87, 0.1);
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-input:focus {
  box-shadow: 0 6px 30px rgba(4, 120, 87, 0.2);
  border-color: var(--emerald-dark);
}

.search-icon {
  position: absolute;
  left: 1.3rem;
  color: var(--emerald);
  font-size: 1.1rem;
  pointer-events: none;
}

.search-button {
  position: absolute;
  right: 0.4rem;
  background: var(--emerald);
  color: white;
  border: none;
  border-radius: 40px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(4, 120, 87, 0.3);
}

.search-button:hover {
  background: var(--emerald-dark);
  box-shadow: 0 4px 20px rgba(4, 120, 87, 0.4);
  transform: translateY(-1px);
}

.search-suggestions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.search-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--sage);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.search-tag:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.15);
}

/* Main Content */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 3rem;
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: var(--sage-light);
  border: 2px dashed var(--emerald);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--emerald);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--forest);
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Stats Grid - with pixel art accents */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: white;
  border: 3px solid var(--emerald);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(4, 120, 87, 0.08);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 30px;
  height: 30px;
  background:
    linear-gradient(90deg, var(--emerald) 0%, var(--emerald) 33%, transparent 33%, transparent 66%, var(--emerald) 66%),
    linear-gradient(0deg, var(--emerald) 0%, var(--emerald) 33%, transparent 33%, transparent 66%, var(--emerald) 66%);
  opacity: 0.3;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(4, 120, 87, 0.15);
  background: var(--sage-light);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-medium);
  margin-bottom: 0.75rem;
}

.stat-value {
  font-family: 'DM Mono', monospace;
  font-size: 2rem;
  font-weight: 500;
  color: var(--emerald);
  letter-spacing: -0.02em;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: white;
  border: 2px solid var(--mint);
  border-radius: 32px;
  padding: 2.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(4, 120, 87, 0.06);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 40px;
  height: 40px;
  background:
    linear-gradient(90deg, var(--sage) 0%, var(--sage) 25%, transparent 25%, transparent 50%, var(--sage) 50%, var(--sage) 75%, transparent 75%),
    linear-gradient(0deg, var(--mint) 0%, var(--mint) 25%, transparent 25%, transparent 50%, var(--mint) 50%, var(--mint) 75%, transparent 75%);
  opacity: 0.2;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--emerald);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(4, 120, 87, 0.12);
  background: linear-gradient(135deg, white 0%, var(--sage-light) 100%);
}

.feature-card:hover::after {
  opacity: 0.4;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.3s;
  filter: drop-shadow(0 4px 12px rgba(4, 120, 87, 0.15));
  position: relative;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Pixel Art Icons */
.icon-chart::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--emerald);
  box-shadow:
    /* Bar 1 (short) */
    0 48px 0 var(--emerald),
    0 40px 0 var(--emerald),
    0 32px 0 var(--emerald),
    /* Bar 2 (tall) */
    16px 48px 0 var(--emerald),
    16px 40px 0 var(--emerald),
    16px 32px 0 var(--emerald),
    16px 24px 0 var(--emerald),
    16px 16px 0 var(--emerald),
    /* Bar 3 (medium) */
    32px 48px 0 var(--emerald),
    32px 40px 0 var(--emerald),
    32px 32px 0 var(--emerald),
    32px 24px 0 var(--emerald),
    /* Bar 4 (tallest) */
    48px 48px 0 var(--emerald),
    48px 40px 0 var(--emerald),
    48px 32px 0 var(--emerald),
    48px 24px 0 var(--emerald),
    48px 16px 0 var(--emerald),
    48px 8px 0 var(--emerald);
}

.icon-coin::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  box-shadow:
    /* Circle outline */
    16px 0 0 var(--gold),
    24px 0 0 var(--gold),
    32px 0 0 var(--gold),
    8px 8px 0 var(--gold),
    40px 8px 0 var(--gold),
    0 16px 0 var(--gold),
    48px 16px 0 var(--gold),
    0 24px 0 var(--gold),
    48px 24px 0 var(--gold),
    0 32px 0 var(--gold),
    48px 32px 0 var(--gold),
    0 40px 0 var(--gold),
    48px 40px 0 var(--gold),
    8px 48px 0 var(--gold),
    40px 48px 0 var(--gold),
    16px 56px 0 var(--gold),
    24px 56px 0 var(--gold),
    32px 56px 0 var(--gold),
    /* Dollar sign */
    24px 16px 0 var(--gold),
    16px 24px 0 var(--gold),
    24px 24px 0 var(--gold),
    24px 32px 0 var(--gold),
    32px 32px 0 var(--gold),
    24px 40px 0 var(--gold);
}

.icon-graph::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--sage);
  box-shadow:
    /* Upward trend line */
    0 48px 0 var(--sage),
    8px 48px 0 var(--sage),
    8px 40px 0 var(--sage),
    16px 40px 0 var(--sage),
    16px 32px 0 var(--sage),
    24px 32px 0 var(--sage),
    24px 24px 0 var(--sage),
    32px 24px 0 var(--sage),
    32px 16px 0 var(--sage),
    40px 16px 0 var(--sage),
    40px 8px 0 var(--sage),
    48px 8px 0 var(--sage),
    48px 0 0 var(--sage),
    56px 0 0 var(--sage),
    /* Arrow head */
    48px 8px 0 var(--sage),
    56px 8px 0 var(--sage);
}

.icon-search::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--coral);
  box-shadow:
    /* Circle */
    16px 8px 0 var(--coral),
    24px 8px 0 var(--coral),
    8px 16px 0 var(--coral),
    32px 16px 0 var(--coral),
    8px 24px 0 var(--coral),
    32px 24px 0 var(--coral),
    8px 32px 0 var(--coral),
    32px 32px 0 var(--coral),
    16px 40px 0 var(--coral),
    24px 40px 0 var(--coral),
    /* Handle */
    40px 48px 0 var(--coral),
    48px 56px 0 var(--coral);
}

.icon-document::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--forest);
  box-shadow:
    /* Document outline */
    8px 0 0 var(--forest),
    16px 0 0 var(--forest),
    24px 0 0 var(--forest),
    32px 0 0 var(--forest),
    0 8px 0 var(--forest),
    40px 8px 0 var(--forest),
    0 16px 0 var(--forest),
    40px 16px 0 var(--forest),
    0 24px 0 var(--forest),
    40px 24px 0 var(--forest),
    0 32px 0 var(--forest),
    40px 32px 0 var(--forest),
    0 40px 0 var(--forest),
    40px 40px 0 var(--forest),
    0 48px 0 var(--forest),
    8px 48px 0 var(--forest),
    16px 48px 0 var(--forest),
    24px 48px 0 var(--forest),
    32px 48px 0 var(--forest),
    40px 48px 0 var(--forest),
    /* Text lines */
    8px 16px 0 var(--forest),
    16px 16px 0 var(--forest),
    24px 16px 0 var(--forest),
    8px 24px 0 var(--forest),
    16px 24px 0 var(--forest),
    24px 24px 0 var(--forest),
    32px 24px 0 var(--forest),
    8px 32px 0 var(--forest),
    16px 32px 0 var(--forest);
}

.icon-target::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  box-shadow:
    /* Outer ring */
    16px 0 0 var(--gold-light),
    24px 0 0 var(--gold-light),
    32px 0 0 var(--gold-light),
    8px 8px 0 var(--gold-light),
    40px 8px 0 var(--gold-light),
    0 16px 0 var(--gold-light),
    48px 16px 0 var(--gold-light),
    0 24px 0 var(--gold-light),
    48px 24px 0 var(--gold-light),
    0 32px 0 var(--gold-light),
    48px 32px 0 var(--gold-light),
    8px 40px 0 var(--gold-light),
    40px 40px 0 var(--gold-light),
    16px 48px 0 var(--gold-light),
    24px 48px 0 var(--gold-light),
    32px 48px 0 var(--gold-light),
    /* Inner dot */
    24px 24px 0 var(--gold-light);
}

.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--forest);
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-medium);
  position: relative;
  z-index: 1;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  border-radius: 48px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(4, 120, 87, 0.3);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 2rem;
  right: 3rem;
  width: 60px;
  height: 60px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 20%, transparent 20%, transparent 40%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.2) 60%, transparent 60%, transparent 80%, rgba(255, 255, 255, 0.2) 80%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 20%, transparent 20%, transparent 40%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0.15) 60%, transparent 60%, transparent 80%, rgba(255, 255, 255, 0.15) 80%);
  animation: pixelFloat 10s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 2rem;
  left: 3rem;
  width: 50px;
  height: 50px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);
  animation: pixelFloat 12s ease-in-out infinite reverse;
}

.cta-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  color: white;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

/* Footer */
footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 3rem 2rem 3rem;
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  border-top: 4px solid var(--emerald);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--sage);
  letter-spacing: -0.01em;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--sage);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-headline { font-size: 2.5rem; }
  .hero-subheadline { font-size: 1rem; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 2rem; }
}

@media (max-width: 768px) {
  .header-container { flex-direction: column; gap: 1rem; text-align: center; padding: 0 1.5rem; }
  .logo { font-size: 1.2rem; }
  nav ul { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  nav a { font-size: 0.85rem; }
  .hero { padding: 1.5rem 0 1rem 0; }
  .hero-content { padding: 0 1.5rem; }
  .hero-headline { font-size: 2rem; line-height: 1.2; }
  .hero-subheadline { font-size: 0.95rem; }
  .hero-search { max-width: 100%; }
  .search-input { padding: 1rem 1rem; font-size: 0.85rem; }
  .search-icon { position: static; margin-bottom: 0.5rem; }
  .search-button { position: static; width: 100%; margin-top: 0.5rem; border-radius: 32px; }
  .search-container { flex-direction: column; }
  .search-suggestions { justify-content: center; }
  .section-title { font-size: 1.75rem; }
  .features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-value { font-size: 1.5rem; }
  .feature-card { padding: 2rem; }
  .feature-card h3 { font-size: 1.15rem; }
  .cta-section { padding: 2.5rem 1.5rem; border-radius: 32px; }
  .cta-section h2 { font-size: 1.75rem; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-col h4 { font-size: 0.95rem; }
  main { padding: 2rem 1.5rem; }
}

/* Navigation CTA Button */
.nav-cta {
  background: var(--emerald) !important;
  color: white !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 24px !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--emerald-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-primary-large, .btn-secondary-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary-large {
  background: var(--emerald);
  color: white;
  box-shadow: 0 4px 20px rgba(4, 120, 87, 0.3);
}

.btn-primary-large:hover {
  background: var(--emerald-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(4, 120, 87, 0.4);
}

.btn-primary-large .arrow {
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.btn-primary-large:hover .arrow {
  transform: translateX(4px);
}

.btn-secondary-large {
  background: white;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}

.btn-secondary-large:hover {
  background: var(--sage-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(4, 120, 87, 0.2);
}

/* Hero Trust Indicators */
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-item {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-weight: 500;
}

/* Journey Steps */
.journey-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.journey-card {
  background: white;
  border: 2px solid var(--mint);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(4, 120, 87, 0.15);
  border-color: var(--emerald);
}

.journey-card-highlight {
  border: 3px solid var(--emerald);
  background: linear-gradient(135deg, white 0%, var(--sage-light) 100%);
}

.journey-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: var(--emerald);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.journey-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.journey-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--forest);
}

.journey-card p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.journey-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.free-label {
  background: var(--sage-light);
  color: var(--emerald-dark);
}

.paid-label {
  background: var(--emerald);
  color: white;
}

.journey-arrow {
  font-size: 2.5rem;
  color: var(--sage);
  font-weight: 300;
}

/* Feature Badges */
.feature-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.free-badge {
  background: var(--sage-light);
  color: var(--emerald-dark);
}

.paid-badge {
  background: var(--emerald);
  color: white;
}

.feature-card-premium {
  border-color: var(--emerald);
}

/* AI Showcase Section */
.ai-showcase {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  border-radius: 48px;
  padding: 4rem 3rem;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.ai-showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.ai-showcase-text .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ai-showcase-text .section-title {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.ai-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ai-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.ai-stat-value {
  font-family: 'DM Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.ai-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.ai-example {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
}

.ai-example-header {
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.ai-example-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.ai-example-content strong {
  color: white;
}

/* AI Visual Card */
.ai-visual-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ai-visual-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--sage-light);
  font-weight: 600;
  color: var(--forest);
}

.ai-visual-icon {
  font-size: 1.5rem;
}

.ai-visual-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ai-visual-line {
  height: 8px;
  background: var(--sage-light);
  border-radius: 4px;
}

.ai-visual-line.short {
  width: 60%;
}

.ai-visual-line.medium {
  width: 80%;
}

.ai-visual-highlight {
  background: var(--emerald);
  color: white;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ai-visual-badge {
  background: white;
  color: var(--emerald);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Pricing Section */
.pricing-section {
  margin: 5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid var(--mint);
  border-radius: 32px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(4, 120, 87, 0.15);
  border-color: var(--emerald);
}

.pricing-card-featured {
  border: 3px solid var(--emerald);
  box-shadow: 0 12px 40px rgba(4, 120, 87, 0.2);
  transform: scale(1.05);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--sage-light);
}

.pricing-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-amount {
  font-family: 'DM Mono', monospace;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--emerald);
}

.price-period {
  font-size: 1.1rem;
  color: var(--text-medium);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-feature, .pricing-feature-highlight {
  padding: 0.75rem 0;
  color: var(--text-medium);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--sage-light);
}

.pricing-feature:last-child, .pricing-feature-highlight:last-child {
  border-bottom: none;
}

.pricing-feature-highlight {
  color: var(--emerald-dark);
  font-weight: 600;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 32px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.pricing-cta.btn-primary {
  background: var(--emerald);
  color: white;
  border: none;
}

.pricing-cta.btn-primary:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 120, 87, 0.3);
}

.pricing-cta.btn-outline {
  background: white;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}

.pricing-cta.btn-outline:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Benefits Grid */
.social-proof {
  margin: 5rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--forest);
}

.benefit-card p {
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* CTA Trust Line */
.cta-trust {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Updates */
@media (max-width: 1024px) {
  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }

  .ai-showcase-content {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    transform: scale(1);
  }

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

  .ai-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-cta-buttons {
    flex-direction: column;
  }

  .btn-primary-large, .btn-secondary-large {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .ai-stats {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .features.free-features, .features.paid-features {
    grid-template-columns: 1fr;
  }

  .ai-showcase {
    padding: 2.5rem 1.5rem;
  }

  .ai-visual-card {
    padding: 1.5rem;
  }
}

/* Journey Section - Grid of use case boxes */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.journey-box {
  background: white;
  border: 2px solid var(--mint);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.journey-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(4, 120, 87, 0.12);
  border-color: var(--sage);
}

.journey-box-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.journey-box h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--emerald-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.journey-box p {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.95rem;
  font-style: italic;
}

.journey-cta-section {
  text-align: center;
  margin-top: 3rem;
  padding: 0 2rem;
}

.journey-cta-note {
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Pro Features Section */
.pro-features {
  margin: 5rem 0;
  padding: 4rem 2rem;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pro-feature-card {
  background: var(--cream);
  border: 2px solid var(--emerald);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.pro-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(4, 120, 87, 0.15);
  border-color: var(--sage);
}

.pro-feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  color: var(--emerald-dark);
}

.pro-feature-card p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.feature-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-details li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.feature-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 600;
}

/* Comparison Section */
.comparison-section {
  margin: 5rem 0;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--warm-white) 100%);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-column {
  background: white;
  border: 2px solid var(--mint);
  border-radius: 24px;
  padding: 2rem;
  min-height: 300px;
}

.comparison-column h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--emerald-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comparison-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.comparison-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 600;
}

.comparison-plus,
.comparison-equals {
  font-size: 3rem;
  font-weight: 700;
  color: var(--emerald);
  text-align: center;
}

.comparison-result {
  color: var(--text-medium);
  line-height: 1.7;
  text-align: center;
}

/* Who Section */
.who-section {
  margin: 5rem 0;
  padding: 0 2rem;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.who-card {
  background: white;
  border: 2px solid var(--mint);
  border-radius: 24px;
  padding: 2.5rem;
}

.who-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.who-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.who-card li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-medium);
  line-height: 1.6;
}

.who-ready {
  border-color: var(--emerald);
  background: var(--sage-light);
}

.who-ready li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 600;
}

.who-not-ready {
  border-color: var(--gold-light);
  background: var(--warm-white);
}

.who-not-ready li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.who-cta {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--text-medium);
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  margin: 5rem 0;
  padding: 4rem 2rem;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  padding: 2rem;
  background: var(--cream);
  border: 2px solid var(--mint);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--emerald);
  box-shadow: 0 4px 16px rgba(4, 120, 87, 0.1);
}

.faq-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--emerald-dark);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Pricing Comparison Text */
.pricing-comparison {
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--sage-light);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--emerald-dark);
}

/* AI Bottom Text */
.ai-bottom-text {
  margin-top: 2rem;
  padding: 1rem;
  background: var(--sage-light);
  border-radius: 12px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--emerald-dark);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .journey-box {
    padding: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .comparison-plus,
  .comparison-equals {
    font-size: 2rem;
    margin: 0.5rem 0;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
