:root {
  --navy: #051429;
  --navy-2: #0b203b;
  --blue: #1565c0;
  --blue-dark: #0d47a1;
  --gold: #d4af37;
  --gold-light: #e5ca6b;
  --paper: #f4f6f8;
  --white: #ffffff;
  --ink: #152033;
  --muted: #5f6978;
  --line: #dce2e9;
  --radius: 24px;
  --shadow: 0 24px 65px -34px rgba(5, 20, 41, 0.5);
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10000;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 20, 41, 0.96);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  width: 112px;
  height: 64px;
  padding: 3px 8px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px -18px rgba(0, 0, 0, 0.75);
}

.brand img {
  width: auto;
  height: auto;
  max-width: 96px;
  max-height: 58px;
  object-fit: contain;
  object-position: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--gold-light);
}

.nav-menu .nav-cta {
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
}

.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.mobile-language,
.nav-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px -22px rgba(0, 0, 0, 0.9);
}

.mobile-language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.mobile-language:hover,
.mobile-language:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(229, 202, 107, 0.72);
  background: rgba(255, 255, 255, 0.13);
}

.mobile-language:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(229, 202, 107, 0.32);
  outline-offset: 3px;
}

.nav-toggle-icon {
  position: relative;
  display: block;
  width: 21px;
  height: 16px;
}

.nav-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-toggle-icon span:nth-child(1) {
  top: 0;
}

.nav-toggle-icon span:nth-child(2) {
  top: 7px;
}

.nav-toggle-icon span:nth-child(3) {
  top: 14px;
}

.nav-toggle.is-open .nav-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.breadcrumb {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  background:
    radial-gradient(circle at 86% 18%, rgba(21, 101, 192, 0.7), transparent 32%),
    linear-gradient(135deg, #051429 0%, #0b203b 62%, #0d47a1 100%);
  color: var(--white);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transform: rotate(-13deg);
}

.hero::before {
  right: -8%;
  top: 15%;
  width: 42%;
  height: 20px;
  background: linear-gradient(90deg, transparent, rgba(229, 202, 107, 0.75));
}

.hero::after {
  right: -12%;
  top: 31%;
  width: 52%;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 102px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 70px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 6vw, 5.3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero-copy > p {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--navy);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.hero-proof {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(5, 20, 41, 0.42);
  box-shadow: var(--shadow);
}

.hero-proof strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.hero-proof ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.hero-proof li:first-child {
  border-top: 0;
}

.section {
  padding: 96px 0;
}

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

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

.narrow {
  width: min(820px, 100%);
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.45rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.18rem;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.feature-card {
  min-height: 210px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 45px -38px rgba(5, 20, 41, 0.8);
}

.feature-card .number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 800;
}

.feature-card p,
.split-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 15px;
  color: var(--blue);
  font-weight: 900;
}

.proof-strip {
  background: var(--navy);
  color: var(--white);
}

.proof-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 160px;
  padding: 36px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.split-card {
  padding: 30px;
  border-radius: 20px;
  background: var(--paper);
}

.service-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.service-link {
  display: flex;
  min-height: 126px;
  padding: 23px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.15rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-link::after {
  content: "→";
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 1.4rem;
}

.service-link:hover,
.service-link:focus-visible {
  transform: translateY(-3px);
  background: var(--blue-dark);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.faq-list summary {
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.cta-panel {
  padding: 54px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 12%, rgba(21, 101, 192, 0.75), transparent 34%),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  padding: 54px 0 100px;
  background: #020b18;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  object-fit: contain;
}

.site-footer strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
}

.site-footer p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  padding: 13px 19px;
  border-radius: 999px;
  background: #25d366;
  color: #082214;
  box-shadow: 0 18px 44px -16px rgba(0, 0, 0, 0.6);
  text-decoration: none;
  font-weight: 900;
}

.cookie-settings-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  color: var(--gold-light);
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 82px;
  z-index: 1200;
  display: none;
  width: min(410px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 70px -24px rgba(5, 20, 41, 0.65);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.cookie-banner p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.86rem;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.cookie-actions button {
  min-height: 42px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-actions button:last-child {
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 900px) {
  .mobile-header-actions {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    padding: 28px 24px 34px;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    box-shadow: 0 30px 45px rgba(0, 0, 0, 0.35);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 8px 0;
  }

  .nav-menu .desktop-language {
    display: none;
  }

  .nav-menu .nav-cta {
    padding: 12px 17px;
    text-align: center;
  }

  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .feature-grid,
  .proof-grid,
  .service-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

@media (max-width: 600px) {
  .brand {
    width: 104px;
    height: 60px;
    padding: 3px 7px;
    border-radius: 16px;
  }

  .brand img {
    width: auto;
    height: auto;
    max-width: 90px;
    max-height: 54px;
  }

  .nav-shell,
  .breadcrumb,
  .container,
  .proof-grid,
  .footer-grid {
    width: min(100% - 28px, 1120px);
  }

  .hero-grid {
    width: min(100% - 28px, 1180px);
    padding: 58px 0 78px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
  }

  .actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 76px 0;
  }

  .feature-grid,
  .split-cards,
  .service-links,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .cta-panel {
    padding: 34px 24px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 76px;
    width: calc(100% - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
