:root {
  --navy: #061b3d;
  --navy-2: #0b2a55;
  --blue: #134b86;
  --gold: #c5962d;
  --gold-2: #e0b957;
  --teal: #2d9c8f;
  --ink: #152338;
  --muted: #607088;
  --line: #dfe6ef;
  --paper: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(6, 27, 61, 0.16);
  --radius: 8px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  min-width: 0;
}

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  vector-effect: non-scaling-stroke;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 4px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 230, 239, 0.72);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(6, 27, 61, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 184px;
}

.brand img {
  width: 138px;
  height: auto;
  object-fit: contain;
}

.brand span {
  display: none;
  line-height: 1.05;
}

.brand strong {
  color: var(--navy);
  font-size: 1rem;
  text-transform: uppercase;
}

.brand small {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: 6px;
  padding: 12px 13px;
  color: #25334a;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  background: #eef3f8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn svg {
  width: 1.08rem;
  height: 1.08rem;
}

.btn-brand-icon {
  display: block;
  width: 1.08rem;
  height: 1.08rem;
  object-fit: contain;
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 34px rgba(197, 150, 45, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

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

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(720px, calc(100vh - 52px));
  padding: 126px 0 56px;
  color: var(--white);
  background: var(--navy);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 27, 61, 0.95) 0%, rgba(6, 27, 61, 0.88) 38%, rgba(6, 27, 61, 0.38) 72%, rgba(6, 27, 61, 0.2) 100%),
    linear-gradient(180deg, rgba(6, 27, 61, 0.35), rgba(6, 27, 61, 0.68));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  min-width: 0;
  max-width: 690px;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.legal-content h1 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.35rem, 5.5vw, 4.08rem);
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.13rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.quick-form,
.contact-form {
  min-width: 0;
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quick-form {
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.quick-title {
  margin: 0;
  color: var(--navy);
  font-size: 1.32rem;
  font-weight: 900;
}

.quick-copy {
  margin: 4px 0 18px;
  color: var(--muted);
}

.quick-form label,
.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quick-form input,
.quick-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cad5e3;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.quick-form input:focus,
.quick-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(19, 75, 134, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.quick-form small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.signal-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 14px;
}

.signal-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.signal-grid span:first-child {
  border-left: 0;
}

.section {
  scroll-margin-top: 110px;
  padding: 86px 0;
}

.section h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

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

.section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.two-column,
.proof-inner,
.faq-layout,
.contact-grid,
.fit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.company {
  background:
    linear-gradient(180deg, var(--white), #f9fbfd);
}

.rich-text p,
.proof-list p,
.contact-lead,
.legal-content p {
  color: var(--muted);
  font-size: 1.04rem;
}

.rich-text p:first-child {
  margin-top: 0;
}

.fit {
  background: var(--paper);
}

.fit-items {
  display: grid;
  gap: 14px;
}

.fit-items article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
}

.fit-items span,
.step span {
  color: var(--gold);
  font-weight: 900;
}

.fit-items h3,
.step h3,
.solution-card h3,
.differential-grid h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.2;
}

.fit-items p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

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

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

.solution-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(6, 27, 61, 0.06);
}

.solution-card:nth-child(2),
.solution-card:nth-child(4) {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.icon-box {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 8px;
  color: var(--gold-2);
  background:
    linear-gradient(145deg, rgba(6, 27, 61, 0.98), rgba(19, 75, 134, 0.94));
  box-shadow: 0 14px 30px rgba(6, 27, 61, 0.16);
}

.icon-box svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.7;
}

.solution-card .card-label {
  margin-top: 22px;
  color: var(--gold);
}

.solution-card p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: #2b3a50;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.process {
  background:
    linear-gradient(180deg, rgba(6, 27, 61, 0.94), rgba(11, 42, 85, 0.96)),
    radial-gradient(circle at 85% 15%, rgba(224, 185, 87, 0.2), transparent 34%);
  color: var(--white);
}

.process .section-kicker,
.process h2 {
  color: var(--white);
}

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

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

.step h3 {
  margin-top: 14px;
  color: var(--white);
}

.step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.differentials {
  background: var(--paper);
}

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

.differential-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}

.differential-grid svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  stroke-width: 1.75;
}

.differential-grid h3 {
  margin-top: 18px;
}

.differential-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof {
  padding: 70px 0;
  background: #fffaf0;
}

.proof-inner {
  align-items: center;
}

.proof-list {
  border-left: 4px solid var(--gold);
  padding: 6px 0 6px 24px;
}

.proof-list p {
  margin: 12px 0;
}

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

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

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

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.contact {
  background:
    linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.contact-info {
  display: grid;
  gap: 11px;
  margin-top: 28px;
  font-style: normal;
  color: var(--muted);
}

.contact-info a {
  color: var(--blue);
  font-weight: 800;
}

.contact-form {
  border: 1px solid var(--line);
  background: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  border: 3px solid var(--white);
  box-shadow: 0 14px 34px rgba(6, 27, 61, 0.24), 0 8px 18px rgba(37, 211, 102, 0.26);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(6, 27, 61, 0.28), 0 10px 24px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-footer {
  padding: 48px 0 30px;
  background:
    linear-gradient(180deg, #071f46 0%, var(--navy) 100%);
  color: var(--white);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 640px;
}

.footer-logo-card {
  display: grid;
  width: 168px;
  min-width: 168px;
  min-height: 118px;
  place-items: center;
  border: 1px solid rgba(224, 185, 87, 0.32);
  border-radius: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.footer-logo-card img {
  width: 142px;
  height: auto;
}

.footer-grid p {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 900;
}

.footer-grid small {
  color: rgba(255, 255, 255, 0.68);
}

.footer-legal {
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-legal strong {
  color: inherit;
  font-weight: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.privacy-page {
  background: var(--paper);
}

.privacy-page .site-header {
  position: sticky;
}

.privacy-nav {
  margin-left: auto;
}

.legal-main {
  padding: 70px 0;
}

.legal-content {
  max-width: 820px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  background: var(--white);
}

.legal-content h1 {
  color: var(--navy);
  font-size: 3rem;
}

.legal-content h2 {
  margin: 32px 0 8px;
  color: var(--navy);
}

.legal-content a:not(.btn) {
  color: var(--blue);
  font-weight: 800;
}

.legal-content .btn {
  margin-top: 24px;
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 14px;
  }

  .brand {
    min-width: 150px;
  }

  .brand img {
    width: 128px;
  }

  .site-nav a {
    padding-inline: 9px;
    font-size: 0.88rem;
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(100% - 28px, 720px);
  }

  .header-inner {
    position: relative;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 4px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    padding: 104px 0 34px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(6, 27, 61, 0.95), rgba(6, 27, 61, 0.76)),
      linear-gradient(90deg, rgba(6, 27, 61, 0.72), rgba(6, 27, 61, 0.42));
  }

  .hero-content,
  .two-column,
  .proof-inner,
  .faq-layout,
  .contact-grid,
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quick-form,
  .contact-form {
    padding: 22px;
  }

  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 0;
  }

  .signal-grid span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .signal-grid span:nth-child(-n + 2) {
    border-top: 0;
  }

  .section {
    padding: 64px 0;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .brand img {
    width: 116px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .btn {
    white-space: normal;
    text-align: center;
    width: 100%;
    padding-inline: 14px;
  }

  .form-row,
  .solution-grid,
  .steps,
  .differential-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid span,
  .signal-grid span:nth-child(-n + 2) {
    border-top: 1px solid var(--line);
  }

  .signal-grid span:first-child {
    border-top: 0;
  }

  .fit-items article {
    grid-template-columns: 1fr;
  }

  .fit-items p {
    grid-column: auto;
  }

  .section h2 {
    font-size: 2.05rem;
  }

  .legal-content {
    padding: 28px;
  }

  .legal-content h1 {
    font-size: 2.2rem;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-logo-card {
    width: 150px;
    min-width: 150px;
    min-height: 104px;
  }

  .footer-logo-card img {
    width: 128px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .floating-whatsapp img {
    width: 31px;
    height: 31px;
  }
}

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