@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Playfair+Display:wght@700;800&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  color: #F4F0E8;
  background: #0B1A2E;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── Fixed Background ─── */
.site-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}
.site-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.45;
}
.site-bg .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,   background: linear-gradient(180deg, rgba(11,26,46,0.5) 0%, rgba(11,26,46,0.65) 50%, rgba(11,26,46,0.8) 100%)  background: linear-gradient(180deg, rgba(11,26,46,0.7) 0%, rgba(11,26,46,0.65) 50%, rgba(11,26,46,0.8) 100%);;rgba(11,26,46,0.2) 0%, rgba(11,26,46,0.35) 50%, rgba(11,26,46,0.55) 100%);
}

/* ─── Section Styles ─── */
.section {
  background: rgba(11,26,46,0.6);
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
.section--alt {
  background: rgba(17,34,64,0.65);
}
.section--hero {
  background: rgba(11,26,46,0.45);
  padding-top: 140px;
  padding-bottom: 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.section--proof {
  background: rgba(17,34,64,0.7);
  padding: 24px;
  border-top: 1px solid rgba(212,168,75,0.06);
  border-bottom: 1px solid rgba(212,168,75,0.06);
  text-align: center;
  position: relative;
  z-index: 1;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Playfair Display', serif; }
.gold { color: #D4A84B; }
.text-muted { color: #8B9BB4; }
.text-center { text-align: center; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 16px;
}
.section-header p {
  color: #8B9BB4;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Badge ─── */
.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212,168,75,0.1);
  border: 1px solid rgba(212,168,75,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #D4A84B;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,26,46,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,168,75,0.08);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(212,168,75,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #112240;
}
.nav-brand-icon img {
  width: 52px; height: 52px;
  object-fit: cover;
  object-position: center 8%;
}
.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 18px;
  color: #F4F0E8;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: #8B9BB4;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-link:hover { color: #D4A84B; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #D4A84B;
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-menu {
  display: none;
  background: #112240;
  padding: 20px 24px;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(212,168,75,0.1);
}
.nav-mobile-menu.active { display: flex; }

/* ─── Buttons ─── */
.btn-gold {
  background: linear-gradient(135deg, #D4A84B 0%, #B8912F 100%);
  color: #0B1A2E;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,75,0.35);
}
.btn-gold--sm { padding: 8px 20px; font-size: 14px; }
.btn-gold--lg { padding: 16px 40px; font-size: 18px; }

.btn-outline {
  background: transparent;
  color: #D4A84B;
  border: 2px solid #D4A84B;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-outline:hover {
  background: rgba(212,168,75,0.1);
  transform: translateY(-2px);
}
.btn-outline--sm { padding: 8px 20px; font-size: 14px; }

/* ─── Hero ─── */
.hero-grid {
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero-content { flex: 1.2; }
.hero-content h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-top: 24px;
  margin-bottom: 24px;
}
.hero-content p {
  font-size: 19px;
  line-height: 1.7;
  color: #8B9BB4;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: #D4A84B;
}<.65) 50%, rgba(11,26,46,0.8) 100%);;rgba(11,26,46,0.5) 0%, rgba(11,26,46,0.65) 50%, rgba(11,26,46,0.8) 100%);
.hero-stat-label {
  font-size: 13px;
  color: #8B9BB4;
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.hero-logo-wrap {
  flex: 0.8;
  display: flex;
  justify-content: center;
}
.hero-logo { position: relative; }
.hero-logo-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(212,168,75,0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
}
.hero-logo img {
  width: 100%;
  max-width: 340px;
  opacity: 0.85;
  position: relative;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.hero-logo { animation: float 4s ease-in-out infinite; }

/* ─── Glow Orbs ─── */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.45; }
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* ─── Feature Cards ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: linear-gradient(145deg, rgba(17,34,64,0.8) 0%, rgba(15,31,56,0.8) 100%);
  border: 1px solid rgba(212,168,75,0.12);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4A84B, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card:hover {
  border-color: rgba(212,168,75,0.3);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }
.feature-card-icon { margin-bottom: 20px; }
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #F4F0E8;
  font-family: 'DM Sans', sans-serif;
}
.feature-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #8B9BB4;
}

/* ─── Steps ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  position: relative;
  padding: 32px;
  border-left: 2px solid rgba(212,168,75,0.2);
  transition: all 0.3s ease;
}
.step-card:hover { border-left-color: #D4A84B; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 800;
  color: #D4A84B;
  opacity: 0.3;
  margin-bottom: 12px;
}
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}
.step-card p { font-size: 15px; line-height: 1.65; color: #8B9BB4; }

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: linear-gradient(145deg, rgba(17,34,64,0.8) 0%, rgba(15,31,56,0.8) 100%);
  border: 1px solid rgba(212,168,75,0.1);
  border-radius: 16px;
  padding: 32px;
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: #D4A84B; }
.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #8B9BB4;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-name { font-weight: 700; font-size: 15px; color: #F4F0E8; }
.testimonial-role { font-size: 13px; color: #D4A84B; margin-top: 2px; }

/* ─── Pricing Cards ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  background: linear-gradient(145deg, rgba(15,31,56,0.8) 0%, rgba(11,26,46,0.8) 100%);
  border: 1px solid rgba(212,168,75,0.1);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
}
.pricing-card--featured {
  border: 2px solid rgba(212,168,75,0.4);
  box-shadow: 0 0 40px rgba(212,168,75,0.08);
  position: relative;
}
.pricing-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D4A84B, #B8912F);
  color: #0B1A2E;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 20px;
  border-radius: 100px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: #D4A84B;
  margin: 16px 0;
}
.pricing-price span { font-size: 18px; font-weight: 400; }
.pricing-period { color: #8B9BB4; font-size: 14px; margin-bottom: 28px; }
.pricing-features { text-align: left; margin-bottom: 24px; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.pricing-feature span { font-size: 14px; color: #8B9BB4; }
.pricing-feature svg { flex-shrink: 0; }
.pricing-card .btn-gold,
.pricing-card .btn-outline { width: 100%; margin-top: 8px; }

/* ─── FAQ ─── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(212,168,75,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 20px 0;
}
.faq-item:hover { background: rgba(212,168,75,0.03); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question h3 { font-size: 17px; font-weight: 600; font-family: 'DM Sans', sans-serif; }
.faq-toggle {
  color: #D4A84B;
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
  user-select: none;
}
.faq-toggle.open { transform: rotate(45deg); }
.faq-answer {
  display: none;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: #8B9BB4;
}
.faq-answer.open { display: block; }

/* ─── CTA ─── */
.cta-section {
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 800;
  margin-bottom: 20px;
}
.cta-section p {
  color: #8B9BB4;
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 36px;
}

/* ─── Divider ─── */
.divider {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.divider-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4A84B, transparent);
  border-radius: 2px;
}

/* ─── Footer ─── */
.footer {
  background: rgba(11,26,46,0.8);
  border-top: 1px solid rgba(212,168,75,0.08);
  padding: 64px 24px 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #8B9BB4;
  max-width: 280px;
}
.footer-heading {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #D4A84B;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-link {
  display: block;
  color: #8B9BB4;
  font-size: 14px;
  margin-bottom: 12px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-link:hover { color: #D4A84B; }
.footer-bottom {
  border-top: 1px solid rgba(212,168,75,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #8B9BB4;
}

/* ─── Scroll Fade-in ─── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Login Page ─── */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 24px;
}
.login-card {
  background: linear-gradient(145deg, rgba(17,34,64,0.9) 0%, rgba(11,26,46,0.9) 100%);
  border: 1px solid rgba(212,168,75,0.15);
  border-radius: 24px;
  padding: 48px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}
.login-card img { max-width: 200px; margin-bottom: 24px; opacity: 0.85; }
.login-card h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.login-card p { color: #8B9BB4; margin-bottom: 32px; line-height: 1.6; }

/* ─── Success Page ─── */
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(212,168,75,0.1);
  border: 2px solid rgba(212,168,75,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none !important; }
  .nav-mobile-toggle { display: block !important; }

  .hero-grid {
    flex-direction: column;
    text-align: center;
  }
  .hero-logo-wrap { order: -1; }
  .hero-buttons { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 24px; align-items: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
