:root {
  --bg: #07111f;
  --bg-soft: #0e1a2f;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.08);
  --text: #0f172a;
  --text-soft: #475569;
  --text-light: #dbe6f5;
  --line: rgba(15, 23, 42, 0.1);
  --line-light: rgba(255, 255, 255, 0.12);
  --gold: #c8a96b;
  --gold-soft: rgba(200, 169, 107, 0.16);
  --success: #25d366;
  --radius: 22px;
  --shadow: 0 25px 80px rgba(5, 12, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 169, 107, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f8fb 0%, #eef2f7 100%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 17, 31, 0.86);
  border-bottom: 1px solid var(--line-light);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #d7bc86, #aa8450);
  color: #0d1524;
  font-weight: 800;
}

.brand-text {
  letter-spacing: 0.01em;
}

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

.nav a,
.footer-links a,
.lang-switch {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
}

.nav a:hover,
.footer-links a:hover,
.lang-switch:hover {
  color: white;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  border: 1px solid var(--line-light);
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-current {
  color: white;
  font-weight: 700;
}

.lang-separator {
  opacity: 0.55;
  margin: 0 6px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  margin: 6px auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #d9bb82, #b88c53);
  color: #09111f;
  box-shadow: 0 12px 30px rgba(184, 140, 83, 0.28);
}

.button-secondary {
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: white;
  color: var(--text);
}

.button-whatsapp {
  background: #1e2b3c;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero {
  padding: 96px 0 76px;
}

.hero-grid,
.about-grid,
.contact-grid,
.split-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.contact-section h2,
.section-dark h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  max-width: 12ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #8f6a33;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow-light {
  color: #e0c289;
}

.hero-text,
.section-heading p,
.about-copy p,
.contact-section p,
.card p,
.step-card p,
.footer p {
  color: var(--text-soft);
  line-height: 1.8;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 61ch;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.hero-points div {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-points strong {
  display: block;
  margin-bottom: 6px;
}

.hero-points span {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-dark {
  background: linear-gradient(180deg, #08111e, #111d32);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-dark p,
.card-dark li,
.section-dark p,
.section-dark .step-card p,
.footer p,
.footer-links a {
  color: rgba(232, 239, 249, 0.8);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  max-width: 470px;
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.92);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 169, 107, 0.12);
}

.hero-card h2 {
  margin: 22px 0 14px;
  font-size: 2rem;
  line-height: 1.15;
}

.hero-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-list li,
.feature-list li {
  position: relative;
  padding-left: 22px;
}

.hero-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.trust-strip {
  padding: 16px 0;
  background: rgba(9, 17, 31, 0.95);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.section {
  padding: 96px 0;
}

.section-dark,
.footer {
  background: linear-gradient(180deg, #08111f, #101b2e);
  color: white;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.about-copy h2,
.contact-section h2,
.section-dark h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}

.card-grid {
  display: grid;
  gap: 22px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card h3,
.about-card h3,
.contact-card h3,
.step-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.split-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.steps {
  display: grid;
  gap: 18px;
}

.step-card {
  border-radius: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #e0c289;
  font-weight: 700;
}

.about-grid,
.contact-grid {
  grid-template-columns: 1fr 0.95fr;
}

.feature-list,
.contact-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 18px;
}

.contact-note {
  font-size: 0.96rem;
}

.contact-benefits strong {
  display: block;
  margin-bottom: 6px;
}

.footer {
  border-top: 1px solid var(--line-light);
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-wrap strong {
  display: block;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .about-grid,
  .contact-grid,
  .three-col {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav,
  .nav-actions {
    display: none;
  }

  .nav-wrap.open {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 18px 0;
  }

  .nav-wrap.open .nav,
  .nav-wrap.open .nav-actions {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrap.open .nav {
    gap: 14px;
    padding-top: 16px;
  }

  .nav-wrap.open .nav-actions {
    gap: 12px;
    padding-top: 12px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-points,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .button,
  .lang-switch {
    width: 100%;
  }

  .contact-buttons,
  .hero-actions {
    flex-direction: column;
  }
}
