:root {
  --navy-950: #07182c;
  --navy-900: #0b2748;
  --navy-800: #12385f;
  --blue-600: #2d78b8;
  --blue-100: #e8f3fb;
  --yellow-300: #f4dc86;
  --yellow-100: #fff8dc;
  --white: #ffffff;
  --ink: #17212b;
  --muted: #5d6a78;
  --line: #dbe4ec;
  --surface: #f7fafc;
  --shadow: 0 18px 60px rgba(7, 24, 44, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.section { padding: 96px 0; }
.section-tinted { background: var(--surface); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  background: var(--yellow-300);
  color: var(--navy-950);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(219,228,236,0.75);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { flex: 0 0 auto; }
.brand span { display: grid; }
.brand strong {
  color: var(--navy-900);
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 4px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav a {
  text-decoration: none;
  color: var(--navy-900);
  font-weight: 750;
  font-size: 0.95rem;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--blue-600); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: var(--blue-100);
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--navy-900);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  background:
    radial-gradient(circle at 82% 18%, rgba(244,220,134,0.28), transparent 25%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #fffaf0 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -250px;
  bottom: -270px;
  border-radius: 50%;
  border: 70px solid rgba(45,120,184,0.05);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 70px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  color: var(--navy-950);
  line-height: 1.16;
  letter-spacing: -0.035em;
}
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}
h2 { font-size: clamp(2rem, 3.5vw, 3.45rem); }
h3 { font-size: 1.35rem; }
.hero-lead {
  max-width: 690px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(45,120,184,0.28); outline-offset: 3px; }
.button-primary {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 12px 30px rgba(11,39,72,0.22);
}
.button-primary:hover { background: var(--navy-800); }
.button-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--line);
}
.button-secondary:hover { box-shadow: 0 10px 24px rgba(7,24,44,0.09); }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--navy-800);
  background: rgba(232,243,251,0.78);
  font-size: 0.82rem;
  font-weight: 700;
}
.hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(219,228,236,0.85);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(244,220,134,0.35);
}
.hero-card-mark {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--blue-100), var(--yellow-100));
}
.hero-card-mark img { width: 92px; }
.card-kicker {
  margin: 0 0 8px;
  color: var(--blue-600);
  font-weight: 850;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-card h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-bottom: 20px; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-600);
  font-weight: 900;
}

.trust-strip { background: var(--navy-950); color: var(--white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 132px;
  align-items: center;
}
.trust-grid div { padding: 22px 34px; border-left: 1px solid rgba(255,255,255,0.13); }
.trust-grid div:first-child { border-left: 0; }
.trust-grid strong { display: block; font-size: 1.12rem; color: var(--yellow-300); }
.trust-grid span { color: rgba(255,255,255,0.72); font-size: 0.9rem; }

.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 1.04rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7,24,44,0.055);
}
.service-card.featured {
  border-color: rgba(45,120,184,0.38);
  background: linear-gradient(145deg, #f9fcff, #ffffff);
}
.service-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 12px;
  color: var(--navy-900);
  background: var(--yellow-100);
  font-weight: 900;
}
.service-card h3 { margin-bottom: 14px; }
.service-card p { color: var(--muted); }
.service-card ul { margin: 20px 0 0; padding-left: 20px; color: var(--muted); }
.service-card li { margin: 8px 0; }
.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy-900);
  border-color: var(--navy-900);
}
.quote-card h3, .quote-card p { color: var(--white); }
.quote-card p { color: rgba(255,255,255,0.76); }
.quote-mark { margin: 0; font: 900 4rem/0.7 Georgia, serif; color: var(--yellow-300) !important; }
.text-link { margin-top: 8px; color: var(--yellow-300); font-weight: 850; text-decoration: none; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
}
.step > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-600);
  font-weight: 900;
}
.step h3 { margin-bottom: 12px; }
.step p { margin-bottom: 0; color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}
.about-panel {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--blue-100), #f8fcff);
}
.about-panel h2 { max-width: 750px; }
.about-panel p:not(.eyebrow) { color: #425365; font-size: 1.04rem; }
.ethics-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-950);
}
.ethics-card h3 { color: var(--yellow-300); font-size: 1.6rem; }
.ethics-card p { color: rgba(255,255,255,0.76); }
.ethics-card .disclaimer {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 0.88rem;
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 30%, rgba(45,120,184,0.35), transparent 26%),
    var(--navy-950);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 46px;
  align-items: center;
}
.contact-copy h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,0.72); font-size: 1.04rem; }
.contact-actions { margin-top: 28px; }
.button-whatsapp { color: var(--navy-950); background: var(--yellow-300); }
.button-email { color: var(--white); border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.06); }
.contact-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
}
.contact-card dl, .contact-card dd { margin: 0; }
.contact-card dl > div { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.13); }
.contact-card dl > div:first-child { border-top: 0; padding-top: 0; }
.contact-card dt { margin-bottom: 5px; color: var(--yellow-300); font-weight: 850; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-card dd, .contact-card a { color: var(--white); overflow-wrap: anywhere; }
.social-links { display: flex; gap: 18px; }

.site-footer { padding: 28px 0; background: #050f1d; color: rgba(255,255,255,0.65); }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand div { display: grid; }
.footer-brand strong { color: var(--white); }
.footer-brand span { font-size: 0.8rem; }
.site-footer p { margin: 0; font-size: 0.86rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .section { padding: 76px 0; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; padding: 16px 0; }
  .trust-grid div { border-left: 0; border-top: 1px solid rgba(255,255,255,0.13); padding: 18px 0; }
  .trust-grid div:first-child { border-top: 0; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(7,24,44,0.08);
  }
  .site-nav.open { display: grid; gap: 8px; }
  .site-nav a { padding: 11px 4px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 64px 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 44px; height: 44px; }
  .brand small { display: none; }
  .hero { padding-top: 58px; }
  .hero-actions, .contact-actions { display: grid; }
  .button { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .hero-card, .about-panel, .ethics-card, .contact-card { padding: 26px; }
  .hero-meta { display: grid; }
  .hero-meta span { width: fit-content; }
  .footer-wrap { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
