:root {
  --ink: #000000;
  --ink-soft: #333333;
  --paper: #ffffff;
  --paper-strong: #f4f4f4;
  --accent: #2c3e50;
  --accent-2: #34495e;
  --accent-3: #f5c07a;
  --accent-4: #8fe1b2;
  --hero-gradient: radial-gradient(circle at top left, #ffffff 0%, #f9f9f9 70%, #f4f4f4 100%);
  --glass: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-hard: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--ink);
  background: var(--paper-strong);
  padding-top: 80px; /* Add spacing for fixed nav */
}

/* Hide the main navigation bar on landing page */
.navbar {
  display: none !important;
}

/* Also hide the container margin-top since there's no navbar */
.container.mt-3 {
  margin-top: 0 !important;
}

.landing-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--hero-gradient);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 80px 24px;
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  opacity: 0.15;
  filter: blur(80px);
  z-index: 0;
}

.landing-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 60%);
  opacity: 0.12;
  filter: blur(90px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 0;
  background: #fff;
  border: 1px solid #eaddd5;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  animation: float 6s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--ink) 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--ink-soft);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.5;
  font-family: 'Spectral', serif;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.btn-landing {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-landing-primary {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  box-shadow: 0 10px 20px -5px rgba(43, 42, 41, 0.4);
}

.btn-landing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(43, 42, 41, 0.5);
  color: #fff;
}

.btn-landing-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(43, 42, 41, 0.2);
}

.btn-landing-outline:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.hero-visual {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-hard);
  transform: perspective(1000px) rotateX(2deg) translateY(20px);
  max-width: 900px;
  margin: 0 auto;
}

.visual-mockup {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.mock-card {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mock-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.mock-content {
  flex: 1;
}

.mock-line {
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  margin-bottom: 6px;
}

.mock-line.short {
  width: 60%;
}

/* Features Section */
.features-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: 12px;
  font-weight: 700;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: #fff;
  border-radius: 0;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.feature-h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.feature-p {
  color: var(--ink-soft);
  line-height: 1.6;
  font-family: 'Spectral', serif;
  font-size: 1.1rem;
}

/* Colors */
.bg-accent-1 {
  background: #e0f2fe;
  color: #0284c7;
}

.bg-accent-2 {
  background: #fce7f3;
  color: #db2777;
}

.bg-accent-3 {
  background: #dcfce7;
  color: #16a34a;
}

.bg-accent-4 {
  background: #fff7ed;
  color: #ea580c;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Navigation */
.landing-nav {
  position: fixed; /* Changed from absolute to fixed */
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 10;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

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

.nav-link {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.btn-nav {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-nav-outline {
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--ink);
}

.btn-nav-primary {
  background: var(--ink);
  color: #fff;
}

/* Updated Hero Tweaks */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--paper-strong);
  border: 1px solid #eaddd5;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.trust-badge i {
  color: var(--accent-3);
}

/* Problem Section */
.problem-section {
  padding: 100px 24px;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 60px;
}

.stat-card {
  text-align: center;
  padding: 32px;
  background: var(--paper-strong);
  border-radius: 0;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-4);
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.stat-desc {
  color: var(--ink-soft);
  font-family: 'Spectral', serif;
  font-size: 1.1rem;
}

/* How It Works Section */
.how-section {
  padding: 100px 24px;
  background: var(--paper-strong);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.step-card {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: -20px;
  left: 10px;
  z-index: 0;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.step-desc {
  color: var(--ink-soft);
  line-height: 1.6;
  font-family: 'Spectral', serif;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* Trust Section */
.trust-section {
  background: var(--ink);
  padding: 100px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.trust-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-white {
  color: #fff;
}

.text-white-soft {
  color: rgba(255, 255, 255, 0.7);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.trust-list li i {
  color: var(--accent-4);
}

.verification-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.verification-avatar span {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-weight: 700;
  margin-bottom: 16px;
}

.verification-text {
  margin-bottom: 24px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.verification-actions .btn-verify {
  background: var(--accent-3);
  color: var(--ink);
  border: none;
  padding: 8px 16px;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.pricing-card {
  background: #fff;
  border-radius: 0;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.highlighted {
  border: 2px solid var(--ink);
  transform: scale(1.05);
  box-shadow: var(--shadow-hard);
  z-index: 1;
}

.best-value {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 4px 12px;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-tier {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.05em;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: normal;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  margin-bottom: 12px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--ink);
  font-weight: 700;
}

.btn-pricing {
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-pricing-outline {
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--ink);
}

.btn-pricing-primary {
  background: var(--ink);
  color: #fff;
}

/* CTA Section */
.cta-section {
  background: var(--accent-2);
  background: radial-gradient(circle at top right, #89d6e9 0%, #6ac6dd 100%);
  padding: 100px 24px;
  text-align: center;
  color: var(--ink);
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 16px;
}

.cta-desc {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.2rem;
  opacity: 0.8;
}

.cta-note {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 16px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Footer */
.landing-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.4);
  padding: 60px 24px;
  font-size: 0.9rem;
}

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

.footer-logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .cta-group,
  .cta-actions {
    flex-direction: column;
  }

  .btn-landing,
  .btn-pricing {
    width: 100%;
  }

  .trust-container {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .pricing-card.highlighted {
    transform: none;
  }

  .footer-container {
    flex-direction: column;
    gap: 24px;
  }
}
