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

:root {
  --navy-950: #050f1d;
  --navy-900: #07182b;
  --navy-800: #0b243d;
  --navy-700: #123453;
  --gold: #d3a34f;
  --gold-light: #efc777;
  --cream: #f7f2e8;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #edf0f4;
  --gray-300: #c7ced7;
  --gray-500: #7b8793;
  --gray-700: #3d4853;
  --shadow: 0 24px 60px rgba(5, 15, 29, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

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

button, input, textarea, select {
  font: inherit;
}

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

.topbar {
  color: #d4dde6;
  background: var(--navy-950);
  font-size: 13px;
}

.topbar-content {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 24, 43, 0.96);
  border-bottom: 1px solid rgba(211, 163, 79, 0.18);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease;
}

.header.scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.header-content {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.brand div {
  display: flex;
  flex-direction: column;
}

.brand strong {
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
}

.brand span {
  color: #b8c4d0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #e3e8ed;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.navigation a {
  transition: color 0.2s ease;
}

.navigation a:hover {
  color: var(--gold-light);
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold-light) !important;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 30%, rgba(211, 163, 79, 0.10), transparent 28%),
    linear-gradient(135deg, var(--navy-900), var(--navy-950));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 110% 100%, transparent 0 34px, rgba(211,163,79,.05) 35px 36px);
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,15,29,.16), rgba(5,15,29,.48));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  padding: 90px 0;
}

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

.eyebrow.dark {
  color: #a67528;
}

.hero h1 {
  max-width: 730px;
  font-size: clamp(54px, 7vw, 88px);
}

.hero-copy > p {
  max-width: 650px;
  margin-top: 24px;
  color: #c7d2dc;
  font-size: 18px;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-gold {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 15px 35px rgba(211,163,79,.24);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  background: transparent;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.hero-trust div {
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  color: var(--white);
  font-size: 13px;
}

.hero-trust span {
  margin-top: 5px;
  color: #9fb0c0;
  font-size: 11px;
}

.hero-logo {
  display: flex;
  justify-content: center;
}

.logo-frame {
  width: min(500px, 100%);
  aspect-ratio: 1;
  padding: 12px;
  border-radius: 50%;
  border: 1px solid rgba(239,199,119,.45);
  box-shadow: 0 40px 80px rgba(0,0,0,.38);
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.section {
  padding: 105px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.process-copy h2,
.faq-copy h2,
.contact-copy h2,
.cta-card h2 {
  color: var(--navy-900);
  font-size: clamp(42px, 5vw, 60px);
}

.section-heading p,
.about-copy p,
.process-copy p,
.faq-copy p,
.contact-copy p {
  margin-top: 15px;
  color: var(--gray-500);
}

.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 310px;
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid #e5dccd;
  box-shadow: 0 10px 30px rgba(20,30,40,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-number {
  color: var(--gold);
  font-size: 28px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.service-card h3 {
  margin-top: 18px;
  color: var(--navy-900);
  font-size: 24px;
}

.service-card p {
  margin-top: 12px;
  color: var(--gray-500);
  font-size: 14px;
}

.service-card a {
  display: inline-block;
  margin-top: 18px;
  color: #a67528;
  font-size: 13px;
  font-weight: 700;
}

.about-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-logo img {
  width: 100%;
  max-width: 490px;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,.34);
}

.about-copy h2 {
  color: var(--white);
}

.about-copy p {
  color: #bdcad5;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.about-points div {
  color: var(--white);
  font-weight: 600;
}

.about-points span {
  color: var(--gold-light);
  margin-right: 8px;
}

.difference-section {
  background: var(--navy-900);
  color: var(--white);
}

.difference-section h2 {
  color: var(--white);
}

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

.difference-card {
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(211,163,79,.28);
  background: rgba(255,255,255,.025);
}

.difference-card > span {
  color: var(--gold-light);
  font-size: 36px;
}

.difference-card h3 {
  margin-top: 16px;
  color: var(--white);
  font-size: 28px;
}

.difference-card p {
  margin-top: 10px;
  color: #aebdca;
  font-size: 14px;
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
}

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

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  background: var(--gray-50);
  border-left: 3px solid var(--gold);
}

.step > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--gold-light);
  font-weight: 800;
}

.step strong {
  color: var(--navy-900);
}

.step p {
  margin-top: 5px;
  color: var(--gray-500);
  font-size: 14px;
}

.faq-section {
  color: var(--white);
  background: var(--navy-950);
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
}

.faq-copy h2 {
  color: var(--white);
}

.faq-copy p {
  color: #aebdca;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid rgba(211,163,79,.24);
  background: rgba(255,255,255,.025);
}

.accordion-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  color: var(--white);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 700;
}

.accordion-item button span {
  color: var(--gold-light);
  font-size: 20px;
  transition: transform .2s ease;
}

.accordion-item.active button span {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.accordion-content p {
  padding: 0 20px 20px;
  color: #aebdca;
}

.cta-section {
  padding: 0 0 105px;
  background: var(--navy-950);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 42px 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border: 1px solid rgba(211,163,79,.35);
}

.cta-card h2 {
  max-width: 760px;
  color: var(--white);
}

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  padding: 17px 18px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  color: var(--gray-500);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-list strong {
  margin-top: 4px;
  color: var(--navy-900);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--navy-900);
  font-size: 32px;
  margin-bottom: 8px;
}

.contact-form label {
  margin-top: 8px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd5c8;
  background: #fffdfa;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(211,163,79,.12);
}

.contact-form small {
  color: var(--gray-500);
  text-align: center;
}

.footer {
  color: #aebdca;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 55px;
  padding: 60px 0 38px;
}

.footer-brand img {
  width: 120px;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 16px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}

.footer-grid strong {
  color: var(--white);
  margin-bottom: 8px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  padding: 14px 18px;
  color: var(--white);
  background: #1f9d57;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(31,157,87,.35);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1050px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .navigation {
    gap: 14px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .navigation {
    position: fixed;
    inset: 88px 0 auto 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    background: var(--navy-900);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }

  .navigation.active {
    transform: translateY(0);
  }

  .navigation a {
    padding: 13px 8px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .about-grid,
  .process-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-logo {
    order: 0;
  }

  .logo-frame {
    max-width: 390px;
  }

  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .header-content {
    min-height: 76px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand span {
    display: none;
  }

  .navigation {
    inset: 76px 0 auto 0;
  }

  .hero-grid {
    padding: 65px 0;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-trust,
  .services-grid,
  .difference-grid,
  .about-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 26px;
  }

  .contact-form {
    padding: 24px;
  }
}
