:root {
  --color-navy: #0b2f4a;
  --color-blue: #0f4c81;
  --color-blue-700: #0b3b66;
  --color-blue-100: #eaf4fb;
  --color-orange: #f26a13;
  --color-slate: #253243;
  --color-muted: #64748b;
  --color-border: #d8e1ea;
  --color-bg: #f7fafc;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 76, 129, 0.14);
  --shadow-card: 0 12px 30px rgba(11, 47, 74, 0.11);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1180px;
  --header-height: 70px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--color-slate);
  background: var(--color-white);
  font-family: var(--font-sans);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-navy);
  padding: 10px 14px;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease;
}

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

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

.visually-hidden {
  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: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(216, 225, 234, 0.75);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(11, 47, 74, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-navy);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
}

.nav-menu {
  position: fixed;
  left: 12px;
  right: 12px;
  top: calc(var(--header-height) + 10px);
  display: grid;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 10px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  color: #324154;
  font-weight: 700;
}

.nav-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-menu a {
  position: relative;
  padding: 14px 12px;
}

.nav-menu a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--color-orange);
  transition: transform 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 72px 0;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-navy);
  line-height: 1.08;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

h1 {
  max-width: 850px;
  font-size: clamp(2.25rem, 15vw, 3.8rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 24, 42, 0.88) 0%, rgba(4, 24, 42, 0.72) 42%, rgba(4, 24, 42, 0.25) 100%),
    linear-gradient(0deg, rgba(4, 24, 42, 0.28), rgba(4, 24, 42, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 70px 0;
}

.hero-subtitle {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  width: 100%;
}

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

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(242, 106, 19, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #dd5e0f;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.btn-outline {
  border-color: rgba(15, 76, 129, 0.28);
  color: var(--color-blue);
  background: var(--color-white);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--color-blue);
  background: var(--color-blue-100);
}

.hero-highlights {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 46px 0 0;
  gap: 12px;
}

.hero-highlights div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-highlights dt {
  color: var(--color-white);
  font-weight: 900;
}

.hero-highlights dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.trust-strip {
  padding: 34px 0;
  background: var(--color-white);
  box-shadow: inset 0 -1px 0 var(--color-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.trust-item {
  display: grid;
  gap: 8px;
  border-left: 3px solid var(--color-orange);
  padding: 12px 16px;
}

.trust-item h3 {
  font-size: 1rem;
  letter-spacing: 0;
}

.trust-item p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.trust-icon {
  color: var(--color-blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 58px;
  align-items: center;
}

.section-media img,
.contact-info img,
.comparison-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.section-copy > p,
.section-heading p,
.comparison-copy p,
.contact-info > p {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.tabs {
  margin-top: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.tab-list {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}

.tab-button {
  border: 0;
  border-bottom: 1px solid var(--color-border);
  padding: 14px 10px;
  background: transparent;
  color: var(--color-slate);
  font-weight: 900;
}

.tab-button:last-child {
  border-bottom: 0;
}

.tab-button.is-active {
  color: var(--color-white);
  background: var(--color-blue);
}

.tab-panel {
  padding: 24px;
}

.tab-panel h3 {
  margin-bottom: 12px;
}

.tab-panel p + p {
  margin-top: 12px;
}

.value-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.services,
.faq {
  background: var(--color-bg);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  min-height: 270px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(11, 47, 74, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(15, 76, 129, 0.28);
  box-shadow: var(--shadow-card);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(15, 76, 129, 0.11));
}

.service-card p {
  margin-top: 12px;
  color: var(--color-muted);
}

.comparison-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 38px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.compare-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.compare-card h3 {
  margin-bottom: 18px;
}

.compare-card ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 26px;
  color: #334155;
}

.compare-card li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-white);
  font-size: 0.76rem;
  font-weight: 900;
}

.compare-positive {
  border: 1px solid rgba(15, 76, 129, 0.16);
  background: linear-gradient(180deg, #ffffff, #eef7fd);
}

.compare-positive li::before {
  content: "✓";
  background: var(--color-blue);
}

.compare-risk {
  border: 1px solid rgba(242, 106, 19, 0.22);
  background: linear-gradient(180deg, #ffffff, #fff4ec);
}

.compare-risk li::before {
  content: "!";
  background: var(--color-orange);
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(11, 47, 74, 0.04);
}

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

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

.contact {
  background:
    linear-gradient(180deg, rgba(234, 244, 251, 0.7), rgba(255, 255, 255, 1));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: start;
}

.contact-info img {
  margin-top: 28px;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-style: normal;
}

address a {
  color: var(--color-blue);
  font-weight: 800;
}

.map-card {
  position: relative;
  width: 100%;
  min-height: 300px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-blue-100);
  box-shadow: var(--shadow-card);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full {
  grid-column: 1 / -1;
}

label {
  color: var(--color-navy);
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--color-white);
  color: var(--color-slate);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-muted);
  font-weight: 600;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 18px;
}

.privacy-check a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 24px;
  color: #b42318;
  font-weight: 800;
}

.form-status.is-success {
  color: #087443;
}

.site-footer {
  padding: 54px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.footer-brand,
.site-footer h2 {
  color: var(--color-white);
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-top: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-white);
}

.site-footer p {
  max-width: 420px;
  margin-top: 14px;
}

.footer-bottom {
  display: grid;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

.creator-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: inherit;
  text-decoration: none;
  transition: transform 500ms ease;
}

.creator-credit-label {
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 500ms ease;
}

.creator-credit-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(31, 41, 55, 0.42);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  backdrop-filter: blur(8px);
  transition: background 500ms ease, border-color 500ms ease, box-shadow 500ms ease;
}

.creator-credit-brand svg {
  color: #10b981;
  animation: creator-pulse 2s infinite ease-in-out;
}

.creator-credit-brand span span {
  color: #10b981;
}

.creator-credit:hover,
.creator-credit:focus-visible {
  transform: scale(1.05);
}

.creator-credit:hover .creator-credit-label,
.creator-credit:focus-visible .creator-credit-label {
  color: #10b981;
}

.creator-credit:hover .creator-credit-brand,
.creator-credit:focus-visible .creator-credit-brand {
  border-color: rgba(16, 185, 129, 0.42);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

@keyframes creator-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.72;
    transform: scale(0.94);
  }
}

.whatsapp-float {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-radius: 999px;
  padding: 11px 14px;
  background: #25d366;
  color: var(--color-white);
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float img {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

.whatsapp-float span {
  font-size: 0.86rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
  background: #128c7e;
  box-shadow: 0 20px 38px rgba(37, 211, 102, 0.42);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.legal-page {
  background: var(--color-bg);
}

.legal-hero {
  padding: 72px 0 32px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
  color: var(--color-white);
}

.legal-hero h1 {
  color: var(--color-white);
}

.legal-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.legal-content {
  padding: 52px 0 80px;
}

.legal-card {
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin-top: 22px;
  font-size: 1.05rem;
}

.legal-card p,
.legal-card li {
  color: #46576c;
}

.legal-card a {
  color: var(--color-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card p {
  margin-top: 12px;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

@media (min-width: 641px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero-actions,
  .legal-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .btn {
    width: auto;
  }

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

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

  .tab-button {
    border-right: 1px solid var(--color-border);
    border-bottom: 0;
  }

  .tab-button:last-child {
    border-right: 0;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px;
  }

  .compare-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-card {
    padding: 34px;
  }
}

@media (min-width: 381px) {
  .whatsapp-float {
    right: 22px;
    bottom: 22px;
    min-height: 54px;
    padding: 12px 18px;
  }

  .whatsapp-float span {
    font-size: 0.94rem;
  }
}

@media (min-width: 861px) {
  :root {
    --header-height: 78px;
  }

  .brand img,
  .footer-brand img {
    width: 54px;
    height: 54px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 26px;
    width: auto;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

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

  .section {
    padding: 96px 0;
  }

  .hero-content {
    padding: 96px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 6vw, 5.5rem);
  }

  .hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-column {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .comparison-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .comparison-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }

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

@media (min-width: 1025px) {
  .trust-grid,
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
