:root {
  --dark: #050816;
  --dark-soft: #0b1120;
  --gold: #c6a15b;
  --gold-light: #e5c07b;
  --white: #f8fafc;
  --gray: #cbd5e1;
}

/* ===== HERO ===== */

.hero {
  min-height: 90vh;
  padding: 190px 7% 120px;

  background:
    linear-gradient(
      135deg,
      rgba(5,8,22,0.82),
      rgba(11,17,32,0.78)
    ),
    url("images/saltlake.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ===== BUTTONS ===== */

.hero-cta,
.investor-btn {
  background: var(--gold);
  color: #050816;
}

.hero-cta:hover,
.investor-btn:hover {
  background: var(--gold-light);
}

/* ===== TRUST BADGES ===== */

.trust-badges {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.trust-badges span {
  border: 1px solid rgba(198,161,91,0.3);
  background: rgba(198,161,91,0.12);

  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

/* ===== FORM ===== */

.form-box {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);

  padding: 45px;
  border-radius: 28px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.form-box h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #111;
}

.form-box input,
.form-box select {
  margin-bottom: 20px;
}
.form-box select {
  height: 52px; /* ajusta según tus inputs */
  background-color: white;
  color: #666;
}

.form-box input:focus {
  outline: none;
  border-color: var(--gold);

  transform: translateY(-2px);

  box-shadow:
    0 0 0 4px rgba(198,161,91,0.15);
}

.form-box button {
  width: 100%;
  padding: 18px;

  border: none;
  border-radius: 14px;

  background: var(--gold);
  color: #050816;

  font-size: 1rem;
  font-weight: 700;

  cursor: pointer;
  transition: 0.3s ease;
}

.form-box button:hover {
  background: var(--gold-light);
}

/* ===== NAVBAR ===== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  z-index: 1000;

  padding: 18px 7%;

  background: rgba(5, 8, 22, 0.35);
  backdrop-filter: blur(10px);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

/* ===== LOGO ===== */

.logo.luxury-logo {
  width: 220px;
  display: flex;
  align-items: center;
}

.logo.luxury-logo img {
  width: 230px;
  height: auto;
}

/* ===== HERO TEXT ===== */

.hero-left {
  width: 50%;
}

.hero-left h1 {
  font-size: 5rem;
  line-height: 1.05;
  margin-bottom: 24px;

  color: white;
  font-weight: 800;
}

.hero-left p {
  font-size: 1.2rem;
  color: #e5e5e5;

  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-right {
  width: 42%;
}

/* ===== BENEFITS ===== */

.investor-benefits {
  background: #050816;
  padding: 120px 7%;
  color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 18px;
}

.section-title p {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(198,161,91,0.15);
  border-radius: 22px;

  padding: 35px;
  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.benefit-card h3 {
  margin-bottom: 18px;
  color: var(--gold);
}

.benefit-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */

.how-it-works {
  background: #f8fafc;
  padding: 120px 7%;
  color: #050816;
}

.how-it-works .section-title h2 {
  color: #050816;
}

.how-it-works .section-title p {
  color: #64748b;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: white;

  border-radius: 24px;
  padding: 45px 35px;

  text-align: center;

  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.08);

  min-height: 260px;
}

.step-number {
  width: 58px;
  height: 58px;

  margin: 0 auto 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--gold);
  color: white;

  font-size: 1.2rem;
  font-weight: 700;
}

.step-card h3 {
  color: #050816;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.step-card p {
  color: #64748b;
  line-height: 1.7;
}

/* ===== FAQ ===== */

.faq-section {
  background: #050816;
  padding: 120px 7%;
  color: white;
}

.faq-grid {
  max-width: 1000px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 25px;
}

.faq-item {
  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(198,161,91,0.15);
  border-radius: 22px;

  padding: 32px;
}

.faq-item h3 {
  color: var(--gold);
  margin-bottom: 14px;
}

.faq-item p {
  color: #cbd5e1;
  line-height: 1.7;
}

/* ===== FOOTER ===== */

.footer {
  background: #020617;
  color: white;

  padding: 70px 7% 30px;

  display: flex;
  flex-direction: column;

  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;
  margin-bottom: 22px;
}

.footer-brand img {
  width: 180px;
  height: auto;
}

.footer-brand span {
  color: white;
  font-size: 2rem;
  font-weight: 700;
}

.footer-description {
  max-width: 650px;

  color: #94a3b8;
  line-height: 1.7;

  margin-bottom: 35px;
}

.footer-links {
  display: flex;
  gap: 30px;

  margin-bottom: 35px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);

  width: 100%;
  padding-top: 25px;

  color: #64748b;
  font-size: 0.95rem;
}

/* ===== ANIMATIONS ===== */

.hero-left,
.form-box {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== GLOBAL ===== */

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 120px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

  .hero {
    flex-direction: column;
    text-align: center;

    padding: 170px 20px 90px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 4rem;
  }

  .trust-badges {
    justify-content: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .navbar {
    padding: 18px 20px;

    flex-direction: row;
    gap: 14px;
  }

  .logo.luxury-logo {
    width: 170px;
  }

  .logo.luxury-logo img {
    width: 190px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-links a {
    font-size: 14px;
  }

  .hero {
    padding-top: 170px;
  }

  .hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.08;
  }

  .hero-left p {
    font-size: 1.05rem;
  }

  .trust-badges span {
    font-size: 0.85rem;
  }

  .form-box {
    padding: 30px 22px;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer-brand span {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {

  .hero-left h1 {
    font-size: 2.7rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }
}
.form-box select {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background-color: #fff;
  color: #666;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.form-box select:focus {
  border-color: #caa65a;
}
.form-box select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 45px;
}
.privacy-note {
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.5;
  color: #8a8a8a;
  text-align: center;
}

.privacy-note a {
  color: #c6a35d;
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}
.footer {
  background: #0b1120;
  color: #d1d5db;
  padding: 50px 20px;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-disclaimer {
  font-size: 13px;
  line-height: 1.8;
  color: #9ca3af;
  margin-bottom: 25px;
}

.footer-copy {
  font-size: 12px;
  color: #6b7280;
}