/* KFA Voyage — Ultra-luxury landing page */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0A0A0A;
  --black-warm: #0F0F0F;
  --gold: #D4AF37;
  --gold-light: #E8C96A;
  --gold-dark: #A8882C;
  --turquoise: #40E0D0;
  --rose: #E8B4B8;
  --white: #FFFFFF;
  --gray-100: rgba(255,255,255,0.05);
  --gray-200: rgba(255,255,255,0.08);
  --gray-300: #C8C8C8;
  --gray-500: #888888;
  --gray-700: #444444;
  --glass-bg: rgba(255,255,255,0.04);
  --glass-bg-warm: rgba(255,248,235,0.04);
  --glass-border: rgba(64,224,208,0.18);
  --glass-border-warm: rgba(212,175,55,0.15);
  --warm-glow: rgba(212,175,55,0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Nav ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0 40px;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-logo span {
  color: var(--gold);
  font-weight: 300;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: transparent;
  color: var(--turquoise) !important;
  padding: 8px 20px;
  border: 1px solid var(--turquoise);
  border-radius: 24px;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--turquoise) !important;
  color: var(--black) !important;
}

@media (max-width: 768px) { .nav-links { display: none; } }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_194817/fc343dab-f901-4cc2-8f0e-7cbe1084cd39.jpg') center/cover no-repeat;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.2) 0%,
      rgba(10,10,10,0.5) 40%,
      rgba(10,10,10,0.85) 70%,
      rgba(10,10,10,1) 100%
    ),
    radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(64,224,208,0.05) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  max-width: 780px;
  text-align: center;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(212,175,55,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.4);
}
.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-weight: 400;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

.hero-stats {
  display: flex;
  gap: 64px;
  justify-content: center;
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat .label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 400;
}

/* ─── Sections ─── */
.section { padding: 120px 40px; }
.section-warm { background: var(--black-warm); }
.section-alt { background: rgba(255,255,255,0.015); }
.container { max-width: 1100px; margin: 0 auto; }
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}
.section-header .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: 0.01em;
}
.section-header h2 .gold-text { font-weight: 400; }
.section-header p {
  color: var(--gray-300);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ─── Features ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--glass-bg-warm);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 20px;
  padding: 40px 36px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.feature-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(212,175,55,0.08), 0 4px 16px rgba(0,0,0,0.3);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--gray-300);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── Features Image Banner ─── */
.features-image-section {
  background: var(--black);
  padding: 0;
  overflow: hidden;
}
.features-image-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border-warm);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 40px rgba(212,175,55,0.04);
}
.features-image-inner img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.85) contrast(1.05) saturate(1.1);
}

/* ─── How it works ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.step { text-align: center; position: relative; }
.step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -28px;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.3), transparent);
}
.step:last-child::after { display: none; }
.step-number {
  width: 64px;
  height: 64px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  margin: 0 auto 24px;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.step p { color: var(--gray-300); font-size: 0.88rem; font-weight: 300; }

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .section { padding: 80px 24px; }
  .hero { padding: 0 24px; }
}

/* ─── Tagline ─── */
.tagline {
  background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, rgba(212,175,55,0.03) 50%, rgba(64,224,208,0.03) 100%);
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.tagline h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.tagline p {
  color: var(--gray-300);
  font-size: 1rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 36px;
}

/* ─── Pricing ─── */
.pricing { background: var(--black-warm); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
  transition: all 0.35s;
}
.pricing-card:hover {
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 16px 48px rgba(212,175,55,0.06);
}
.pricing-card.featured {
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 0 60px rgba(212,175,55,0.1), 0 16px 48px rgba(0,0,0,0.3);
  transform: translateY(-8px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 18px;
  border-radius: 100px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 20px 0;
}
.pricing-price .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
}
.pricing-price .period {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 300;
}
.pricing-desc {
  color: var(--gray-300);
  font-size: 0.88rem;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.6;
}
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gray-300);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-weight: 300;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.8rem;
}
.pricing-features li.disabled {
  color: var(--gray-700);
  text-decoration: line-through;
}
.pricing-features li.disabled::before { content: '—'; color: var(--gray-700); }
.btn-block { width: 100%; justify-content: center; }
.btn-pricing {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.4);
}
.btn-pricing:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
}
.btn-pricing-blue {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  font-weight: 600;
}
.btn-pricing-blue:hover {
  box-shadow: 0 8px 32px rgba(212,175,55,0.3);
  transform: translateY(-1px);
}
.btn-pricing-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--black);
  font-weight: 600;
}
.btn-pricing-gold:hover {
  box-shadow: 0 8px 32px rgba(212,175,55,0.3);
  transform: translateY(-1px);
}

/* ─── Pricing image ─── */
.pricing-image-section {
  background: var(--black);
  padding: 60px 24px;
  text-align: center;
}
.pricing-image-inner {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border-warm);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.pricing-image-inner img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.8) contrast(1.1) saturate(1.05);
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s;
}
.testimonial:hover {
  border-color: rgba(212,175,55,0.2);
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--white);
  font-size: 0.88rem;
}
.testimonial-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ─── CTA ─── */
.cta {
  background: linear-gradient(180deg, rgba(212,175,55,0.05) 0%, var(--black) 50%);
  border-top: 1px solid rgba(212,175,55,0.15);
  color: var(--white);
  text-align: center;
  padding: 100px 24px;
}
.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.cta p {
  color: var(--gray-300);
  font-size: 1rem;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta .btn { font-size: 0.9rem; padding: 18px 42px; }

/* ─── Footer ─── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--gray-700);
  padding: 48px 24px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.footer a { color: var(--gray-700); text-decoration: none; }
.footer a:hover { color: var(--gold); }