/* ── PUBLIC LANDING PAGE (BOTFACTORY) ── */

.landing-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  font-family: "DM Sans", sans-serif;
}

/* ── HERO SECTION ── */
.hero-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 100px auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #8a6535;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-title {
  font-family: "Sora", sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: #1c1004;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-btn-primary,
.hero-btn-secondary {
  padding: 16px 32px;
  border-radius: 100px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-btn-primary {
  background: #1c1004;
  color: #fff;
  box-shadow: 0 8px 24px rgba(28, 16, 4, 0.25);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(28, 16, 4, 0.35);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.5);
  color: #1c1004;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.glass-feature-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(180, 80, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a6535;
  margin-bottom: 20px;
}

.glass-feature-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1c1004;
  margin-bottom: 12px;
}

.glass-feature-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── HOW IT WORKS SECTION ── */
.section-title {
  font-family: "Sora", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1c1004;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.how-it-works-section {
  max-width: 800px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  gap: 24px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 12px 30px rgba(180, 80, 0, 0.08);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.step-card:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.65);
}

.step-number {
  font-family: "Sora", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(138, 101, 53, 0.2);
  line-height: 1;
}

.step-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1c1004;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── FOOTER ── */
.glass-footer {
  background: rgba(28, 16, 4, 0.05);
  border-top: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 48px 48px 24px 48px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(138, 101, 53, 0.2);
  padding-bottom: 32px;
  margin-bottom: 24px;
}

.footer-brand h2 {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #1c1004;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  color: #8a6535;
}

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

.footer-links a {
  color: #1c1004;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(28, 16, 4, 0.5);
  font-weight: 500;
}
/* ═══ COMPARE DROPDOWN MENU ═══ */
.nav-links .has-drop {
  position: relative;
}

.nav-links .has-drop > a {
  cursor: pointer;
}

/* This creates an invisible bridge so the mouse doesn't fall off when moving down */
.nav-links .has-drop::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1.5rem;
}

.nav-links .drop {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Show the dropdown on hover */
.nav-links .has-drop:hover .drop,
.nav-links .has-drop:focus-within .drop {
  display: block;
  animation: dropFade 0.2s ease forwards;
}

.nav-links .drop a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  border-radius: 8px;
  margin: 0 0.4rem;
  transition: all 0.2s;
}

.nav-links .drop a:hover {
  background: rgba(232, 114, 42, 0.08);
  color: var(--orange);
}

@keyframes dropFade {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
