/* LANDING PAGE STYLES */

.landing-body {
  background: var(--navy);
}

/* NAV */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem 0.5rem;
}

.nav-inner .logo-area {
  margin-bottom: 0.3rem;
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0.6rem 0.75rem 0.4rem;
  }
  .nav-inner .logo-text {
    font-size: 0.95rem;
  }
  .nav-inner .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* HERO */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(15, 32, 68, 0.9) 0%, transparent 50%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(201, 168, 76, 0.015) 80px,
      rgba(201, 168, 76, 0.015) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(201, 168, 76, 0.015) 80px,
      rgba(201, 168, 76, 0.015) 81px
    );
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
  animation: heroFadeIn 1s ease forwards;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: 'Assistant', sans-serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

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

.section-title {
  text-align: center;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  text-align: center;
}

/* INFO SECTIONS */
.info-section {
  padding: 6rem 0;
  text-align: center;
}

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

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.benefit-card {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  text-align: center;
}

.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px) !important;
}

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

.benefit-card h3 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* HOW IT WORKS */
.how-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(15, 32, 68, 0.5), transparent);
  text-align: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.steps-list::before {
  display: none;
  content: '';
  position: absolute;
  right: 28px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--border));
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
  opacity: 0;
  transform: translateY(20px);
}

.step-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Assistant', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: 0.75rem;
  text-align: center;
}

.step-content h3 {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PREPARE */
.prepare-section {
  padding: 6rem 0;
  text-align: center;
}

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

@media (max-width: 600px) {
  .prepare-grid { grid-template-columns: 1fr; }
}

.prepare-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-main);
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.prepare-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.prepare-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* PRICING */
.pricing-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(15, 32, 68, 0.3), transparent);
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pricing-main {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(15, 32, 68, 0.8));
  border: 1.5px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.pricing-side {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}

.pricing-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.pricing-amount {
  font-family: 'Assistant', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.pricing-amount-sm {
  font-size: 2rem;
  color: var(--text-main);
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA */
.cta-section {
  padding: 6rem 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 1.5rem 0 2.5rem;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-section {
  padding: 6rem 0;
  text-align: center;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(10px);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq-q {
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-q::before {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
  order: -1;
  margin-left: 1rem;
}

.faq-item.open .faq-q::before {
  transform: rotate(45deg);
}

.faq-q:hover { color: var(--gold-light); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

/* FOOTER */
.landing-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

@media (max-width: 600px) {
  .footer-inner { gap: 0.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { display: none; }
  .cta-card { padding: 2rem 1.5rem; }
}

/* ===== BENEFIT BANNERS ===== */
.benefits-banners {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto;
}

.benefit-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}

.benefit-banner:hover {
  border-color: var(--gold-dark);
  transform: translateX(-3px);
}

.benefit-banner-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}

.benefit-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.benefit-banner-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.benefit-banner-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== COMPACT PRICING ===== */
.pricing-compact {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gold-dark);
}

.pricing-main-row {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #b8922a 100%);
  padding: 1.6rem 2rem;
  text-align: center;
  color: #ffffff;
}

.pricing-main-row * {
  color: #ffffff;
}

.pricing-main-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff !important;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.pricing-main-price {
  font-family: 'Assistant', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff !important;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.pricing-main-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
}

.pricing-extras-row {
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}

.pricing-extra-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  padding: 0.5rem;
}

.pricing-extra-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-extra-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.pricing-extra-note {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.pricing-extra-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
