.landing-body {
  font-size: 14px;
}

@media (min-width: 768px) {
  .landing-body {
    font-size: 16px;
  }
}

.landing-body .btn:focus, .landing-body .btn:active:focus, .landing-body .btn-link.nav-link:focus, .landing-body .form-control:focus, .landing-body .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* ═══════════════════════════════════════════════════════
   Landing Page Styles
   ═══════════════════════════════════════════════════════ */

/* Navbar */
.landing-nav {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.landing-nav.scrolled {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 0.85rem;
}

.landing-nav .nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

.landing-nav .nav-link:hover {
  color: #fff !important;
}

.btn-glow {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-glow:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  min-height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.min-vh-75 {
  min-height: 75vh;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.45rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.hero-title {
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #f59e0b, #f97316, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Hero Visual Cards */
.hero-visual {
  position: relative;
  height: 420px;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  width: 260px;
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px) !important;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-card-1 { top: 20px; left: 0; animation: float 6s ease-in-out infinite; }
.hero-card-2 { top: 120px; right: 20px; animation: float 6s ease-in-out 1.5s infinite; }
.hero-card-3 { top: 240px; left: 30px; animation: float 6s ease-in-out 3s infinite; }
.hero-card-4 { top: 340px; right: 0; animation: float 6s ease-in-out 4.5s infinite; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 200px;
  height: 200px;
  background: rgba(99, 102, 241, 0.15);
  top: 50%;
  left: 30%;
}

.hero-orb-2 {
  width: 150px;
  height: 150px;
  background: rgba(245, 158, 11, 0.12);
  top: 20%;
  right: 10%;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Stats Bar */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 2.5rem 0;
}

.stat-item {
  padding: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Feature Cards */
.features-section {
  background: #fff;
}

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* Step Cards */
.step-card {
  padding: 2rem;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Role Cards */
.role-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
}

.role-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.role-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Footer */
.landing-footer {
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  color: rgba(255, 255, 255, 0.5);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
  }

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

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

  .stat-label {
    font-size: 0.7rem;
  }
}

/* ═══════════════════════════════════════════════════════
   Plans Page Styles
   ═══════════════════════════════════════════════════════ */

.plans-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding-top: 100px;
}

.plan-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.plan-card-header {
  padding: 2rem 2rem 0;
}

.plan-card-body {
  padding: 1.5rem 2rem;
  flex: 1;
}

.plan-card-footer {
  padding: 0 2rem 2rem;
}

.plan-price-block {
  text-align: center;
}

.plan-price-monthly {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.plan-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.plan-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.plan-period {
  font-size: 1rem;
  color: #64748b;
  margin-left: 4px;
}

.plan-price-annual {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.plan-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: #475569;
}

.plan-benefits-list li i {
  font-size: 0.85rem;
  flex-shrink: 0;
}

[data-bs-theme="dark"] .plan-card {
  background: #1e293b;
  border-color: #334155;
}

[data-bs-theme="dark"] .plan-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .plan-currency,
[data-bs-theme="dark"] .plan-amount {
  color: #e2e8f0;
}

[data-bs-theme="dark"] .plan-benefits-list li {
  color: #94a3b8;
}
