:root {
  --navy: #071b2d;
  --navy-2: #0f2f4c;
  --navy-3: #153d63;
  --ink: #132338;
  --muted: #5d6b7a;
  --surface: #f4f7fa;
  --surface-2: #eaf0f5;
  --white: #ffffff;
  --line: #d9e3ec;
  --orange: #f97316;
  --orange-dark: #c2410c;
  --green: #16845b;
  --green-soft: #e6f4ee;
  --shadow: 0 18px 50px rgba(7, 27, 45, 0.14);
  --radius: 8px;
}

* {
  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.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: calc(100% - 2rem);
  max-width: 1180px;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 227, 236, 0.9);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-weight: 800;
  color: var(--navy);
}

.brand-logo {
  width: 132px;
  height: 56px;
  object-fit: contain;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: inset 0 -3px 0 rgba(249, 115, 22, 0.88);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
}

.brand-name {
  display: grid;
  line-height: 1.1;
}

.brand-name span:first-child {
  font-size: 1rem;
}

.brand-name span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0.55rem 0.75rem;
  color: #26384d;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--navy);
  background: var(--surface);
}

.nav-links .nav-accent {
  color: var(--white);
  background: var(--navy);
}

.nav-links .nav-accent:hover,
.nav-links .nav-accent[aria-current="page"] {
  color: var(--white);
  background: var(--navy-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 27, 45, 0.97) 0%, rgba(7, 27, 45, 0.88) 35%, rgba(7, 27, 45, 0.38) 70%, rgba(7, 27, 45, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 27, 45, 0.3), rgba(7, 27, 45, 0.05));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-grid {
  min-height: 570px;
  display: grid;
  align-items: center;
  padding-block: 4.25rem;
}

.hero-content {
  width: 100%;
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: #bfe4d5;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.product-hero h1 {
  margin: 0;
  color: inherit;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin: 1.25rem 0 0;
  color: #f2f6f9;
  font-size: 1.28rem;
  line-height: 1.45;
}

.hero-support {
  max-width: 610px;
  margin: 1rem 0 0;
  color: #d7e0e8;
  font-size: 1.05rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1rem;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

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

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

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

.btn-dark:hover {
  background: var(--navy-2);
}

.btn-light {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.btn-light:hover {
  border-color: #c7d4e0;
  background: var(--surface);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: #16845b;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(7, 27, 45, 0.22);
  font-weight: 850;
  line-height: 1;
}

.whatsapp-float:hover {
  background: #0f6f4b;
  transform: translateY(-1px);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  max-width: 720px;
  margin-top: 2.25rem;
}

.fact {
  min-height: 100px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 27, 45, 0.52);
}

.fact strong {
  display: block;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.1;
}

.fact span {
  display: block;
  margin-top: 0.35rem;
  color: #d7e0e8;
  font-size: 0.92rem;
}

.section {
  padding-block: 5rem;
}

.section-soft {
  background: var(--surface);
}

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

.section-header {
  width: 100%;
  max-width: 780px;
  margin-bottom: 2.25rem;
}

.section-kicker {
  margin: 0 0 0.55rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: 2.35rem;
  line-height: 1.12;
}

.section-dark .section-title,
.section-dark .section-kicker {
  color: var(--white);
}

.section-copy {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-copy {
  color: #cbd7e2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.contact-card,
.legal-card,
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 27, 45, 0.06);
}

.service-card {
  min-height: 250px;
  padding: 1.2rem;
}

.service-icon,
.mini-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-icon svg,
.mini-icon svg {
  width: 24px;
  height: 24px;
}

.product-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
}

.service-card h3,
.contact-card h3,
.legal-card h2,
.support-card h2 {
  margin: 1rem 0 0.55rem;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.service-card p,
.contact-card p,
.legal-card p,
.support-card p {
  margin: 0;
  color: var(--muted);
}

.service-card ul,
.feature-list,
.legal-list,
.support-list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.feature-list li,
.legal-list li,
.support-list li {
  position: relative;
  margin-top: 0.45rem;
  padding-left: 1.1rem;
  color: #435467;
}

.service-card li::before,
.feature-list li::before,
.legal-list li::before,
.support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 99px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.card-actions .btn {
  min-height: 42px;
  padding: 0.65rem 0.8rem;
  font-size: 0.92rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-step {
  min-height: 165px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  counter-increment: process;
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  font-weight: 850;
}

.process-step h3 {
  margin: 1rem 0 0.45rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.product-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.product-panel {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.product-panel h3 {
  margin: 0 0 0.7rem;
  font-size: 1.85rem;
}

.product-panel p {
  margin: 0;
  color: #d7e0e8;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #edf4f8;
  font-size: 0.9rem;
  font-weight: 700;
}

.app-mock {
  overflow: hidden;
  border: 1px solid #cfdce7;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 50px;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--navy);
}

.mock-bar strong {
  font-size: 0.95rem;
}

.mock-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #d7e0e8;
  font-size: 0.82rem;
  font-weight: 750;
}

.mock-status::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 99px;
}

.mock-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  padding: 1rem;
  background: var(--surface);
}

.mock-card {
  min-height: 98px;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.mock-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
}

.mock-card span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.mock-card.accent {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.mock-card.accent strong,
.mock-card.accent span {
  color: var(--white);
}

.mock-line {
  height: 9px;
  margin-top: 0.7rem;
  border-radius: 99px;
  background: var(--line);
}

.mock-line.short {
  width: 65%;
}

.mock-qr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-top: 0.75rem;
}

.mock-qr i {
  aspect-ratio: 1;
  border-radius: 2px;
  background: var(--navy);
}

.about-grid,
.contact-grid,
.legal-layout,
.product-hero-grid {
  display: grid;
  gap: 2rem;
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  align-items: start;
}

.about-text p {
  margin: 0 0 1rem;
  color: #405165;
  font-size: 1.06rem;
}

.principles {
  display: grid;
  gap: 0.9rem;
}

.principle {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.principle h3 {
  margin: 0 0 0.25rem;
  color: var(--navy);
  font-size: 1rem;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 780;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd7e2;
  border-radius: var(--radius);
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--navy-3);
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 61, 99, 0.12);
}

.form-status {
  min-height: 1.5rem;
  color: var(--green);
  font-weight: 750;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-card,
.support-card {
  padding: 1.2rem;
}

.email-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--navy);
  font-weight: 800;
  word-break: break-word;
}

.email-link:hover {
  color: var(--orange-dark);
}

.page-hero,
.product-hero {
  padding-block: 4.4rem;
  color: var(--white);
  background: var(--navy);
}

.page-hero p,
.product-hero p {
  max-width: 780px;
  margin: 1rem 0 0;
  color: #d7e0e8;
  font-size: 1.1rem;
}

.product-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(350px, 0.85fr);
  align-items: center;
}

.product-hero .app-mock {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.24);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  min-height: 220px;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card h3 {
  margin: 0.9rem 0 0.45rem;
  color: var(--navy);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.legal-layout {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.35fr);
  align-items: start;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: 1.3rem;
}

.legal-card h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.legal-card h3 {
  margin: 1rem 0 0.35rem;
  color: var(--navy);
  font-size: 1.02rem;
}

.legal-card p + p {
  margin-top: 0.8rem;
}

.legal-aside {
  position: sticky;
  top: 92px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-aside h2 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-size: 1rem;
}

.legal-aside a {
  display: block;
  padding-block: 0.45rem;
  color: #405165;
  font-weight: 720;
}

.legal-aside a:hover {
  color: var(--orange-dark);
}

.updated {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-top: 1rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #d7e0e8;
  font-size: 0.88rem;
  font-weight: 750;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer {
  color: #d7e0e8;
  background: #061523;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(160px, 0.5fr));
  gap: 2rem;
  padding-block: 3rem;
}

.footer-brand {
  display: grid;
  gap: 0.85rem;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.1rem;
}

.footer-brand span,
.footer-brand a,
.footer-links a {
  color: #d7e0e8;
}

.footer-links h2 {
  margin: 0 0 0.7rem;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-links a {
  display: block;
  padding-block: 0.35rem;
  font-weight: 650;
}

.footer-links a:hover,
.footer-brand a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aab9c7;
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-band,
  .product-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid !important;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    width: 100%;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 27, 45, 0.98), rgba(7, 27, 45, 0.84)),
      linear-gradient(0deg, rgba(7, 27, 45, 0.2), rgba(7, 27, 45, 0.2));
  }

  .hero-grid {
    min-height: 500px;
    padding-block: 3.25rem;
  }

  .hero h1,
  .page-hero h1,
  .product-hero h1 {
    font-size: 3rem;
  }

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

  .hero-facts,
  .process-list,
  .feature-grid,
  .about-grid,
  .contact-grid,
  .legal-layout,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }

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

@media (max-width: 620px) {
  .container {
    width: calc(100% - 1.25rem);
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 116px;
    height: 50px;
  }

  .brand-name span:last-child {
    display: none;
  }

  .nav-links {
    inset-block-start: 66px;
  }

  .section {
    padding-block: 3.5rem;
  }

  .hero-grid {
    min-height: 470px;
    padding-block: 2.75rem;
  }

  .hero h1,
  .page-hero h1,
  .product-hero h1 {
    font-size: 2.45rem;
  }

  .hero-support,
  .page-hero p,
  .product-hero p {
    font-size: 1rem;
  }

  .hero-facts,
  .field-grid,
  .service-grid,
  .mock-content {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: auto;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .product-band,
  .product-hero-grid {
    gap: 1.25rem;
  }

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

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 54px;
    padding: 0;
    border-radius: 999px;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
