/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off-white: #f8f8f6;
  --light-gray: #f0eeeb;
  --border: #e5e2dc;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --navy: #0f1f3d;
  --navy-light: #1a3560;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --success: #1a7a4a;
  --danger: #c0392b;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,31,61,0.25); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--navy); background: var(--off-white); }

.btn-plan {
  width: 100%;
  justify-content: center;
  background: var(--off-white);
  color: var(--navy);
  border: 1.5px solid var(--border);
  margin-top: auto;
}
.btn-plan:hover { background: var(--light-gray); border-color: var(--navy); }

.btn-plan-dark {
  width: 100%;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  margin-top: auto;
}
.btn-plan-dark:hover { background: var(--navy-light); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.light { color: var(--gold-light); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 16px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}
.logo-icon {
  width: 30px;
  height: 30px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }

.nav-cta { padding: 10px 22px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 130px 0 90px;
  background: var(--white);
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-title em { color: var(--gold); }

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat i {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 4px;
}
.stat span { font-size: 14px; font-weight: 600; color: var(--navy); }
.stat small { font-size: 12px; color: var(--text-muted); }

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--off-white);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15.5px;
}
.feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.feature-list li i { color: var(--gold); font-size: 16px; }

/* ===== APPROACH ===== */
.approach {
  padding: 100px 0;
  background: var(--white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

.step-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon i { color: var(--gold); font-size: 22px; }

.step-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p { color: var(--text-muted); font-size: 14px; }

/* ===== PLANS ===== */
.plans {
  padding: 100px 0;
  background: var(--navy);
}
.plans .section-header h2 { color: var(--white); }
.plans .section-header p { color: rgba(255,255,255,0.65); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: var(--transition);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.plan-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.plan-icon {
  width: 46px;
  height: 46px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.plan-icon i { color: var(--navy); font-size: 18px; }
.plan-card.popular .plan-icon { background: rgba(201,168,76,0.12); }
.plan-card.popular .plan-icon i { color: var(--gold); }

.plan-header h3 { font-size: 18px; color: var(--navy); margin-bottom: 2px; }
.plan-header small { color: var(--text-muted); font-size: 12px; }

.plan-range { display: flex; flex-direction: column; gap: 4px; }
.plan-range .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600; }
.plan-range .amount { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--navy); }

.plan-split { display: flex; flex-direction: column; gap: 8px; }
.plan-split .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600; }

.split-bar {
  display: flex;
  border-radius: 100px;
  overflow: hidden;
  height: 22px;
  font-size: 11px;
  font-weight: 600;
}
.split-company {
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
}
.split-investor {
  background: rgba(201,168,76,0.2);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.plan-features li i { color: var(--success); font-size: 12px; margin-top: 2px; flex-shrink: 0; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.contact-item i { color: var(--gold); font-size: 18px; width: 20px; }

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  display: none;
}
.form-message.success { background: rgba(26,122,74,0.1); color: var(--success); border: 1px solid rgba(26,122,74,0.3); display: block; }
.form-message.error { background: rgba(192,57,43,0.1); color: var(--danger); border: 1px solid rgba(192,57,43,0.3); display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }

/* ===== DISCLAIMER ===== */
.disclaimer {
  padding: 48px 0;
  background: var(--light-gray);
}
.disclaimer-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.disclaimer-box > i {
  color: var(--gold);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.disclaimer-box h4 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.disclaimer-box p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-icon { background: var(--gold); color: var(--navy); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 12px; max-width: 260px; }

.footer-links h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 16px; font-family: var(--font-body); }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

/* ===== PERFORMANCE ===== */
.performance { padding: 100px 0; background: #f8f9fb; }
.performance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.perf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}
.perf-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.perf-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--border);
}
.perf-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10,42,97,0.1);
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.perf-header h3 { font-size: 1rem; font-weight: 700; margin: 0 0 2px; color: var(--primary); }
.perf-role { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent); }
.perf-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; padding: 14px 20px; }
.perf-chart-wrap { background: var(--white); }
.perf-chart-wrap iframe { display: block; width: 100%; border: none; }
.perf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #f8f9fb;
  border-top: 1px solid var(--border);
}
.live-dot { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 1.5s infinite; display: inline-block; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.perf-footer a { font-size: 0.78rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.perf-footer a:hover { text-decoration: underline; }
.perf-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  justify-content: center;
  margin-top: 48px;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.perf-trust span { display: flex; align-items: center; gap: 7px; }
.perf-trust i { color: var(--primary); font-size: 0.9rem; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--border); }

  .hero { padding: 100px 0 60px; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .contact-container { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .performance-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .disclaimer-box { flex-direction: column; }
}
