:root {
  --navy: #0d1b2a;
  --navy-soft: #112338;
  --gold: #d4af37;
  --gold-soft: #e2c66f;
  --slate: #5d6d7e;
  --paper: #f5f1e8;
  --white: #ffffff;
  --line: rgba(212, 175, 55, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(8, 18, 31, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

section[id] {
  scroll-margin-top: 118px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: clamp(220px, 22vw, 290px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(245, 241, 232, 0.84);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav a:hover,
.footer-contact a:hover {
  color: var(--gold-soft);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 142px clamp(20px, 4vw, 56px) 80px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 18, 31, 0.98) 0%, rgba(8, 18, 31, 0.9) 33%, rgba(8, 18, 31, 0.42) 60%, rgba(8, 18, 31, 0.7) 100%),
    linear-gradient(180deg, rgba(8, 18, 31, 0.12), rgba(8, 18, 31, 0.78));
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(650px, 100%);
}

.hero-content h1 {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
}

.hero-copy {
  max-width: 560px;
  color: rgba(245, 241, 232, 0.9);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 6px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), #f0ca64);
  color: #17202b;
}

.button-secondary {
  border-color: var(--gold);
  color: var(--paper);
}

.cookie-modal .button-secondary {
  background: transparent;
  color: var(--paper);
}

.cookie-banner .button-secondary {
  background: transparent;
  color: var(--paper);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-benefits span {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 27, 42, 0.54);
  color: rgba(245, 241, 232, 0.9);
  font-size: 13px;
}

.hero-card {
  align-self: end;
  margin-left: auto;
  width: min(390px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(8, 18, 31, 0.78);
  backdrop-filter: blur(12px);
}

.hero-card p {
  margin: 0 0 8px;
  color: rgba(245, 241, 232, 0.82);
}

.hero-card strong {
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: 24px;
  font-weight: 500;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #091421;
}

.trust-bar span {
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.section-shell {
  padding: 88px clamp(20px, 6vw, 88px);
}

.section-heading,
.quick-paths-grid,
.solutions-grid,
.market-grid,
.audiences,
.process-grid,
.financial-intelligence-grid,
.financial-intelligence-note,
.service-grid,
.regulatory-note p {
  width: min(1240px, 100%);
  margin-left: auto;
  margin-right: auto;
}

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

.compact-heading {
  margin-bottom: 26px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.solutions-grid,
.process-grid,
.quick-paths-grid,
.service-grid {
  display: grid;
  gap: 18px;
}

.solutions-grid {
  grid-template-columns: repeat(3, 1fr);
  counter-reset: solutions;
}

.solutions-grid article,
.process-grid article,
.quick-paths-grid a,
.service-grid article,
.audiences article {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  border-radius: 6px;
}

.solutions-grid article::after,
.process-grid article::after,
.quick-paths-grid a::after,
.service-grid article::after,
.audiences article::after,
.financial-intelligence-grid article::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(226, 198, 111, 0.9), rgba(226, 198, 111, 0));
  content: "";
}

.solutions-grid article,
.quick-paths-grid a,
.service-grid article,
.audiences article,
.market-grid span {
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.solutions-grid article:hover,
.quick-paths-grid a:hover,
.service-grid article:hover,
.audiences article:hover,
.market-grid span:hover {
  border-color: rgba(226, 198, 111, 0.42);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-2px);
}

.solutions-grid article::before {
  counter-increment: solutions;
  content: "0" counter(solutions);
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: 18px;
}

.solutions-grid h3,
.process-grid h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.solutions-grid p,
.process-grid p,
.about p,
.diagnostic p,
.legal-main p,
.quick-paths-grid span,
.audiences p,
.consulting p,
.service-grid p {
  margin-bottom: 0;
  color: rgba(245, 241, 232, 0.76);
  line-height: 1.7;
}

.quick-paths {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 34%),
    #091421;
}

.quick-paths-grid {
  grid-template-columns: repeat(4, 1fr);
}

.quick-paths-grid a {
  display: grid;
  gap: 12px;
  min-height: 150px;
}

.quick-paths-grid strong {
  font-family: "Cinzel", serif;
  font-size: 22px;
  font-weight: 500;
}

.audiences {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.market-access {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.05), transparent 40%),
    var(--navy-soft);
}

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

.market-grid span {
  display: grid;
  place-items: center;
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(245, 241, 232, 0.88);
  font-family: "Cinzel", serif;
  font-size: 18px;
  text-align: center;
  padding: 14px;
  border-radius: 6px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-soft);
  font-weight: 600;
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  background: var(--navy-soft);
}

.about-page {
  max-width: 980px;
  margin: 0 auto;
}

.about-page .section-heading {
  max-width: 900px;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px 30px;
  max-width: 900px;
}

.about-page-grid p {
  color: rgba(245, 241, 232, 0.76);
  line-height: 1.8;
}

.about-page-grid p:first-child {
  grid-row: span 2;
  color: rgba(245, 241, 232, 0.9);
  font-size: 20px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: 28px;
}

.consulting {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  background: var(--navy-soft);
}

.financial-intelligence {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 32%),
    #091421;
}

.financial-intelligence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.financial-intelligence-grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  border-radius: 6px;
}

.financial-intelligence-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: 28px;
}

.financial-intelligence-grid h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.financial-intelligence-grid p,
.financial-intelligence-note {
  color: rgba(245, 241, 232, 0.76);
  line-height: 1.7;
}

.financial-intelligence-note {
  margin: 28px 0 0;
  color: var(--gold-soft);
  font-size: 16px;
}

.diagnostic {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent 45%),
    #091421;
}

.service-hub {
  background: var(--navy-soft);
}

.form-note {
  margin-top: 2px;
  font-size: 12px;
}

.form-note a,
.legal-main a {
  color: var(--gold-soft);
}

.regulatory-note {
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #091421;
}

.regulatory-note p {
  max-width: 980px;
  margin: 0 auto;
  color: rgba(245, 241, 232, 0.76);
  line-height: 1.7;
}

form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(13, 27, 42, 0.86);
  border-radius: 6px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(245, 241, 232, 0.82);
  font-size: 13px;
}

input,
select {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--paper);
  font: inherit;
  padding: 0 14px;
}

.site-footer {
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.footer-grid h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-grid a,
.footer-grid button {
  display: block;
  margin-top: 10px;
  color: rgba(245, 241, 232, 0.82);
}

.footer-label {
  display: block;
  margin-top: 10px;
  color: rgba(245, 241, 232, 0.56);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  width: min(1240px, 100%);
  margin-left: auto;
  margin-right: auto;
  color: rgba(245, 241, 232, 0.56);
  font-size: 12px;
}

.footer-link-button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.footer-link-button:hover {
  color: var(--gold-soft);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f0ca64);
  color: #17202b;
  font-size: 13px;
  font-weight: 700;
  padding: 0 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  gap: 18px;
  width: min(520px, calc(100vw - 48px));
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(9, 20, 33, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  border-radius: 6px;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Cinzel", serif;
  font-size: 18px;
}

.cookie-banner p,
.cookie-options p {
  margin: 0;
  color: rgba(245, 241, 232, 0.76);
  line-height: 1.6;
}

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

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 11, 19, 0.72);
}

.cookie-modal-panel {
  position: relative;
  width: min(560px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  background: #091421;
  border-radius: 6px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-size: 28px;
  cursor: pointer;
}

.cookie-options {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.cookie-options label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 15px;
}

.cookie-options input {
  width: 20px;
  height: 20px;
}

.legal-page {
  background: #091421;
}

.legal-header {
  position: static;
}

.legal-main {
  max-width: 940px;
  margin: 0 auto;
}

.legal-main h1 {
  margin-bottom: 12px;
}

.legal-main section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-main section:first-of-type {
  margin-top: 36px;
}

.legal-main h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.legal-updated {
  color: rgba(245, 241, 232, 0.56);
}

@media (max-width: 960px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--paper);
    padding: 10px 14px;
  }

  .site-nav {
    order: 4;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 10px;
  }

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

  .hero {
    min-height: auto;
    display: block;
    padding-top: 150px;
  }

  .hero-card {
    margin: 34px 0 0;
  }

  .trust-bar,
  .quick-paths-grid,
  .audiences,
  .about-page-grid,
  .about,
  .diagnostic,
  .consulting,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    width: min(520px, calc(100vw - 48px));
  }

  .trust-bar span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-page-grid p:first-child {
    grid-row: auto;
    font-size: inherit;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .site-nav {
    gap: 18px;
    font-size: 12px;
  }

  .quick-paths-grid,
  .solutions-grid,
  .process-grid,
  .service-grid,
  .financial-intelligence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hero {
    min-height: 720px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-logo {
    width: 205px;
  }

  section[id] {
    scroll-margin-top: 96px;
  }

  .hero {
    padding-inline: 18px;
    padding-top: 126px;
    padding-bottom: 54px;
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .section-shell {
    padding: 64px 18px;
  }

  .solutions-grid,
  .process-grid,
  .financial-intelligence-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .solutions-grid article,
  .process-grid article,
  .quick-paths-grid a,
  .service-grid article,
  .audiences article,
  .financial-intelligence-grid article {
    min-height: 0;
    padding: 20px;
  }

  .market-grid span {
    min-height: 58px;
    font-size: 15px;
  }

  .site-footer {
    padding-bottom: 94px;
  }

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

  .cookie-banner {
    right: 18px;
    bottom: 18px;
    width: calc(100vw - 36px);
  }

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