:root {
  color-scheme: dark;
  --bg: #070b12;
  --bg-soft: #0a101a;
  --surface: #0d1420;
  --surface-2: #111a28;
  --surface-3: #151f2e;
  --line: rgba(151, 176, 210, 0.14);
  --line-strong: rgba(151, 176, 210, 0.25);
  --text: #f4f8ff;
  --muted: #93a3b8;
  --blue: #1682ff;
  --blue-bright: #35b4ff;
  --navy: #06172d;
  --green: #37d68d;
  --danger: #ff6b75;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: white;
  background: rgba(22, 130, 255, 0.65);
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #06101d;
  background: white;
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.utility-bar {
  position: relative;
  z-index: 51;
  min-height: 34px;
  color: #b8c6d8;
  background: #05080d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.availability,
.utility-links {
  display: flex;
  align-items: center;
  gap: 9px;
}

.availability i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--green);
}

.utility-links a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.utility-links a:hover {
  color: white;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 74px;
  background: rgba(7, 11, 18, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header.scrolled {
  background: rgba(7, 11, 18, 0.96);
  border-bottom-color: var(--line);
}

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

.brand {
  width: 145px;
  flex: 0 0 145px;
  text-decoration: none;
}

.brand-mark,
.footer-logo {
  position: relative;
  display: block;
  overflow: hidden;
  width: 145px;
  height: 48px;
  background: white;
  border-radius: 8px;
}

.brand-mark img,
.footer-logo img {
  position: absolute;
  width: 100%;
  height: auto;
  max-width: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.98);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 1.55vw, 25px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #a6b3c4;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: white;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #5d6a7a;
  font-size: 11px;
  font-weight: 800;
}

.language-switcher button {
  padding: 5px 2px;
  color: #68778b;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.language-switcher button.active {
  color: white;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 35px rgba(22, 130, 255, 0.2);
}

.button-primary:hover {
  background: #2a91ff;
  border-color: #2a91ff;
  box-shadow: 0 18px 45px rgba(22, 130, 255, 0.3);
}

.button-secondary {
  color: #e5edf8;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.27);
}

.button-ghost {
  color: #b6c4d6;
  background: transparent;
  border-color: var(--line);
}

.button-sm {
  min-height: 38px;
  padding: 10px 14px;
  font-size: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  background: white;
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 74px;
  left: 0;
  width: 100%;
  height: calc(100vh - 74px);
  padding: 28px 24px 40px;
  background: rgba(7, 11, 18, 0.99);
  border-top: 1px solid var(--line);
  overflow-y: auto;
}

.mobile-menu a:not(.button) {
  display: block;
  padding: 15px 4px;
  color: #d9e2ef;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 650;
  text-decoration: none;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 24px;
}

.hero {
  position: relative;
  min-height: 770px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  top: -190px;
  right: -150px;
  width: 730px;
  height: 730px;
  background: radial-gradient(circle, rgba(22, 130, 255, 0.18) 0%, rgba(22, 130, 255, 0.04) 42%, transparent 70%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.21;
  background-image: linear-gradient(rgba(117, 158, 211, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(117, 158, 211, 0.12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, black 0, transparent 75%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
  padding-block: 92px 86px;
}

.eyebrow,
.section-kicker,
.card-label {
  color: var(--blue-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.eyebrow > span:first-child {
  width: 28px;
  height: 1px;
  background: var(--blue-bright);
}

.hero h1,
.section-head h2,
.business-copy h2,
.courier-title h2,
.about-copy h2,
.faq-aside h2,
.contact-head h2 {
  margin: 0;
  color: #f7faff;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 690;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em,
.section-head h2 em,
.business-copy h2 em,
.courier-title h2 em,
.about-copy h2 em,
.faq-aside h2 em,
.contact-head h2 em {
  color: #708096;
  font-style: normal;
  font-weight: 560;
}

.hero-lead {
  max-width: 660px;
  margin: 27px 0 31px;
  color: #a5b3c5;
  font-size: 17px;
  line-height: 1.75;
}

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

.hero-actions .button {
  min-height: 52px;
}

.button-arrow {
  font-size: 16px;
}

.inline-whatsapp {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
  color: #b3c0d0;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.inline-whatsapp:hover {
  color: white;
}

.wa-mini {
  color: var(--green);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 49px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  padding-right: 18px;
}

.hero-proof div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: #eef4fc;
  font-size: 11px;
}

.hero-proof span {
  margin-top: 4px;
  color: #647387;
  font-size: 10px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.diagnostic-card {
  position: relative;
  z-index: 2;
  width: min(100%, 510px);
  overflow: hidden;
  padding: 22px;
  background: linear-gradient(150deg, rgba(17, 27, 42, 0.98), rgba(8, 14, 23, 0.98));
  border: 1px solid rgba(111, 154, 209, 0.22);
  border-radius: 28px;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.55), 0 0 70px rgba(22, 130, 255, 0.07);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.diagnostic-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
  color: #74849a;
  border-bottom: 1px solid var(--line);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.diagnostic-top > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.diagnostic-top i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(55, 214, 141, 0.75);
}

.hero-logo-frame,
.about-logo-frame {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-logo-frame {
  height: 240px;
  margin: 17px 0;
  border-radius: 18px;
}

.hero-logo-frame::after,
.about-logo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.hero-logo-frame img,
.about-logo-frame img {
  position: absolute;
  width: 100%;
  height: auto;
  max-width: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  color: #93a3b8;
  font-size: 9px;
}

.progress-label strong {
  color: var(--blue-bright);
}

.progress-bar {
  height: 3px;
  margin-top: 9px;
  overflow: hidden;
  background: #202a38;
  border-radius: 4px;
}

.progress-bar i {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(22, 130, 255, 0.75);
}

.diagnostic-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 21px;
}

.diagnostic-stats div {
  min-height: 70px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.diagnostic-stats span {
  color: var(--blue-bright);
  font-size: 9px;
  font-weight: 800;
}

.diagnostic-stats p {
  margin: 13px 0 0;
  color: #c7d2e0;
  font-size: 9px;
  font-weight: 700;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(34, 136, 255, 0.16);
  border-radius: 50%;
}

.orbit-one {
  width: 530px;
  height: 530px;
}

.orbit-two {
  width: 410px;
  height: 410px;
  border-style: dashed;
  animation: spin 26s linear infinite;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: rgba(15, 24, 37, 0.94);
  border: 1px solid rgba(136, 166, 202, 0.22);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.floating-chip small,
.floating-chip strong {
  display: block;
}

.floating-chip small {
  color: #68778a;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.floating-chip strong {
  margin-top: 3px;
  color: #dce6f3;
  font-size: 9px;
}

.chip-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  background: rgba(22, 130, 255, 0.1);
  border: 1px solid rgba(22, 130, 255, 0.22);
  border-radius: 8px;
}

.chip-top {
  top: 27px;
  right: -45px;
}

.chip-bottom {
  bottom: 26px;
  left: -49px;
}

.trust-strip {
  background: #080d15;
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  min-height: 122px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 23px 25px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon,
.service-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  background: rgba(22, 130, 255, 0.08);
  border: 1px solid rgba(22, 130, 255, 0.18);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 15px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: #e6edf7;
  font-size: 11px;
}

.trust-item span {
  margin-top: 4px;
  color: #68778a;
  font-size: 9px;
  line-height: 1.45;
}

.section {
  position: relative;
  padding: 118px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.62fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 53px;
}

.section-kicker {
  display: block;
  margin-bottom: 18px;
}

.section-head h2,
.business-copy h2,
.courier-title h2,
.about-copy h2,
.faq-aside h2,
.contact-head h2 {
  font-size: clamp(39px, 4vw, 59px);
  line-height: 1.02;
}

.section-head > p,
.courier-title > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.services {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

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

.service-card {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px 27px 25px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.service-card:hover {
  background: #101824;
  border-color: rgba(50, 144, 255, 0.32);
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-icon {
  width: 47px;
  height: 47px;
  border-radius: 12px;
  font-size: 20px;
}

.service-index {
  color: #354154;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin: 27px 0 9px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.service-card > p {
  min-height: 43px;
  margin: 0 0 23px;
  color: #7e8da1;
  font-size: 11px;
  line-height: 1.65;
}

.service-tags {
  margin: 0 0 24px;
  color: var(--blue-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 17px;
  color: #a8b4c4;
  font-size: 10.5px;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

.service-more {
  margin-top: auto;
  padding-top: 20px;
  color: #6f8095;
  font-size: 9px;
  font-weight: 750;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 35px;
  color: #738297;
  font-size: 12px;
}

.section-cta p {
  margin: 0;
}

.section-cta a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #e6eef9;
  font-size: 11px;
  font-weight: 780;
  text-decoration: none;
}

.business-section {
  overflow: hidden;
  background: #070b12;
}

.business-section::before {
  content: "B2B";
  position: absolute;
  top: 58px;
  right: -30px;
  color: rgba(255, 255, 255, 0.018);
  font-size: 310px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.business-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.82fr);
  gap: clamp(65px, 9vw, 125px);
  align-items: center;
}

.business-copy > p {
  max-width: 620px;
  margin: 27px 0 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.business-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.business-list span {
  min-height: 51px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: #afbac9;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.business-list span::before {
  content: "+";
  color: var(--blue-bright);
  font-weight: 800;
}

.business-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 24px;
  color: #68778a;
  font-size: 10px;
  line-height: 1.6;
}

.business-note span {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  border: 1px solid rgba(22, 130, 255, 0.35);
  border-radius: 50%;
  font-size: 9px;
}

.business-note p {
  margin: 2px 0 0;
}

.premium-form {
  padding: 31px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-head span,
.secure-badge {
  color: var(--blue-bright);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.form-head h3 {
  margin: 7px 0 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.secure-badge {
  padding: 7px 9px;
  color: #6f8197 !important;
  border: 1px solid var(--line);
  border-radius: 6px;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 13px;
}

.form-grid label,
.tracking-card label {
  display: block;
}

.form-grid label > span,
.tracking-card label > span {
  display: block;
  margin-bottom: 7px;
  color: #8291a5;
  font-size: 9px;
  font-weight: 700;
}

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

.form-grid input,
.form-grid textarea,
.form-grid select,
.tracking-card input {
  width: 100%;
  min-height: 45px;
  padding: 11px 12px;
  color: #edf3fb;
  background: #090f18;
  border: 1px solid #202b3a;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus,
.tracking-card input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 130, 255, 0.11);
}

.form-grid input.invalid,
.form-grid textarea.invalid,
.form-grid select.invalid,
.tracking-card input.invalid {
  border-color: var(--danger);
}

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

.form-feedback {
  min-height: 0;
  margin-top: 0;
  color: #90a0b5;
  font-size: 10px;
}

.form-feedback:not(:empty) {
  margin-top: 13px;
  padding: 10px 12px;
  background: rgba(55, 214, 141, 0.06);
  border: 1px solid rgba(55, 214, 141, 0.18);
  border-radius: 8px;
  color: #a7eaca;
}

.form-feedback.error:not(:empty) {
  color: #ffc0c5;
  background: rgba(255, 107, 117, 0.06);
  border-color: rgba(255, 107, 117, 0.2);
}

.courier-section {
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.courier-title {
  max-width: 820px;
  margin-bottom: 58px;
}

.courier-title > p {
  max-width: 660px;
  margin-top: 25px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  position: relative;
  min-height: 245px;
  padding: 28px 24px 25px;
}

.process-step + .process-step {
  border-left: 1px solid var(--line);
}

.process-step::after {
  content: "→";
  position: absolute;
  z-index: 1;
  top: 39px;
  right: -9px;
  color: var(--blue-bright);
  font-size: 13px;
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  color: var(--blue-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin: 34px 0 11px;
  font-size: 16px;
}

.process-step p {
  margin: 0;
  color: #7d8ca0;
  font-size: 10.5px;
  line-height: 1.65;
}

.courier-actions {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 15px;
  margin-top: 44px;
}

.shipping-card,
.tracking-card {
  min-height: 455px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.shipping-card h3,
.tracking-card h3,
.contact-card h3 {
  margin: 14px 0 10px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.shipping-card > p {
  color: #a5b2c2;
  font-size: 13px;
}

.shipping-card > p a {
  color: var(--blue-bright);
  text-decoration: none;
}

.shipping-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 25px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.shipping-card li {
  position: relative;
  padding-left: 18px;
  color: #8796aa;
  font-size: 10px;
}

.shipping-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}

.shipping-card > small {
  display: block;
  margin-top: 13px;
  color: #58677b;
  font-size: 8.5px;
}

.tracking-card {
  position: relative;
  background: #0b121d;
}

.tracking-icon {
  position: absolute;
  top: 30px;
  right: 31px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  background: rgba(22, 130, 255, 0.08);
  border: 1px solid rgba(22, 130, 255, 0.2);
  border-radius: 11px;
}

.tracking-card > p {
  max-width: 420px;
  margin: 0 0 24px;
  color: #7e8da1;
  font-size: 11px;
}

.tracking-card label {
  margin-top: 14px;
}

.tracking-card .button {
  width: 100%;
  margin-top: 18px;
}

.tracking-result {
  display: grid;
  gap: 4px;
}

.tracking-result strong {
  color: white;
  font-size: 12px;
}

.prices-section {
  background: #070b12;
}

.price-panel {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #090f18;
  border-bottom: 1px solid var(--line);
}

.price-tabs button {
  min-height: 65px;
  padding: 15px;
  color: #6f7f94;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

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

.price-tabs button[aria-selected="true"] {
  color: white;
  background: rgba(22, 130, 255, 0.08);
  box-shadow: inset 0 -2px var(--blue);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 18px 25px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table th {
  color: #5f7085;
  background: rgba(255, 255, 255, 0.012);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.price-table th:last-child,
.price-table td:last-child {
  width: 32%;
  text-align: right;
}

.price-table td {
  color: #aebaca;
  font-size: 11.5px;
}

.price-table td:last-child {
  color: #e6edf7;
  font-weight: 750;
}

.price-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 900px;
  margin: 24px auto 0;
  color: #6c7c90;
  font-size: 10px;
  line-height: 1.7;
}

.price-disclaimer span {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  border: 1px solid rgba(22, 130, 255, 0.3);
  border-radius: 50%;
  font-size: 9px;
}

.price-disclaimer p {
  margin: 1px 0 0;
}

.about-section {
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(390px, 0.85fr) minmax(0, 1fr);
  gap: clamp(65px, 8vw, 115px);
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 500px;
}

.about-visual::before {
  content: "";
  position: absolute;
  top: 5%;
  right: 5%;
  width: 75%;
  height: 75%;
  background: rgba(22, 130, 255, 0.08);
  border-radius: 50%;
  filter: blur(80px);
}

.about-logo-frame {
  position: absolute;
  top: 0;
  right: 7%;
  bottom: 48px;
  left: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-logo-frame img {
  transform: translate(-50%, -50%) scale(0.98);
}

.about-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 285px;
  padding: 20px;
  background: #111a27;
  border: 1px solid rgba(22, 130, 255, 0.25);
  border-left: 3px solid var(--blue);
  border-radius: 13px;
  box-shadow: var(--shadow);
}

.about-badge strong,
.about-badge span {
  display: block;
}

.about-badge strong {
  font-size: 11px;
}

.about-badge span {
  margin-top: 6px;
  color: #748399;
  font-size: 9px;
  line-height: 1.55;
}

.about-lead {
  margin: 27px 0 35px;
  color: #98a7ba;
  font-size: 14px;
  line-height: 1.85;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-item {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  background: var(--bg-soft);
}

.value-item span {
  color: var(--blue-bright);
  font-size: 11px;
}

.value-item strong {
  font-size: 10px;
}

.faq-section {
  background: #070b12;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 135px);
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: 120px;
}

.faq-aside > p {
  margin: 24px 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: #dfe7f2;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-size: 13px;
  font-weight: 680;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 710px;
  padding: 0 45px 24px 0;
  color: #7f8ea2;
  font-size: 11.5px;
  line-height: 1.75;
}

.faq-answer p {
  margin: 0;
}

.contact-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.contact-head {
  margin-bottom: 48px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 15px;
}

.contact-info {
  display: grid;
  gap: 15px;
}

.contact-card,
.hours-card {
  padding: 29px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card > p {
  color: #8b9aae;
  font-size: 12px;
}

.contact-direct {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 21px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-direct a {
  display: block;
  padding: 14px;
  background: var(--surface);
  text-decoration: none;
}

.contact-direct small,
.contact-direct strong {
  display: block;
}

.contact-direct small {
  color: #68778b;
  font-size: 8px;
  text-transform: uppercase;
}

.contact-direct strong {
  margin-top: 3px;
  color: #d9e3ef;
  font-size: 11px;
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.contact-buttons .button:last-child {
  grid-column: 1 / -1;
}

.hours-card {
  min-height: 150px;
}

.hours-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: #dce5ef;
  font-size: 11px;
  font-weight: 750;
}

.hours-status i {
  width: 7px;
  height: 7px;
  background: #6d7b8e;
  border-radius: 50%;
}

.hours-card > p {
  margin: 10px 0 0;
  color: #66768b;
  font-size: 9.5px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 16px;
  color: #718096;
  font-size: 9px;
  cursor: pointer;
}

.consent input {
  width: 15px;
  height: 15px;
  margin-top: 0;
  accent-color: var(--blue);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.map-wrap {
  position: relative;
  height: 370px;
  margin-top: 15px;
  overflow: hidden;
  background: #111822;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.9) brightness(0.72) hue-rotate(175deg);
}

.map-open {
  position: absolute;
  right: 17px;
  bottom: 17px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 15px;
  color: white;
  background: rgba(8, 15, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.site-footer {
  color: #77869b;
  background: #05080e;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.65fr);
  gap: 55px;
  padding-top: 68px;
  padding-bottom: 60px;
}

.footer-logo {
  width: 180px;
  height: 59px;
}

.footer-brand p {
  max-width: 290px;
  margin: 21px 0 0;
  color: #6f7f93;
  font-size: 11px;
  line-height: 1.7;
}

.footer-identity {
  max-width: 310px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.footer-identity > span,
.footer-identity strong,
.footer-identity small {
  display: block;
}

.footer-identity > span {
  color: var(--blue-bright);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-identity strong {
  margin-top: 7px;
  color: #dbe7f0;
  font-size: 9px;
  line-height: 1.55;
}

.footer-identity small {
  margin-top: 5px;
  color: #718096;
  font-size: 8px;
  line-height: 1.6;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-column h3 {
  margin: 0 0 9px;
  color: #dbe3ef;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.footer-column a,
.footer-column p,
.legal-link {
  margin: 0;
  padding: 0;
  color: #718095;
  background: transparent;
  border: 0;
  font-size: 10px;
  line-height: 1.55;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-column a:hover,
.legal-link:hover {
  color: white;
}

.consumer-protection {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(500px, 1.28fr);
  gap: 55px;
  align-items: center;
  padding-top: 27px;
  padding-bottom: 27px;
  border-top: 1px solid var(--line);
}

.consumer-kicker {
  display: block;
  color: var(--blue-bright);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.consumer-protection-copy strong {
  display: block;
  margin-top: 7px;
  color: #e4ebf5;
  font-size: 13px;
}

.consumer-protection-copy p {
  max-width: 480px;
  margin: 7px 0 0;
  color: #708095;
  font-size: 9px;
  line-height: 1.65;
}

.consumer-protection-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.anpc-sal-badge {
  width: 250px;
  height: 50px;
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  background: white;
  border-radius: 22px;
  outline-offset: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.anpc-sal-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.anpc-sal-badge img {
  width: 250px;
  height: 50px;
  object-fit: fill;
}

.consumer-official-links {
  min-width: 230px;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.consumer-official-links a {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 8px 11px;
  color: #8d9caf;
  font-size: 8.5px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.consumer-official-links a + a {
  border-top: 1px solid var(--line);
}

.consumer-official-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.03);
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  font-size: 9px;
}

.social-placeholder {
  display: flex;
  gap: 7px;
  margin-left: auto;
}

.social-placeholder span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #77869a;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 8px;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  color: #06140d;
  background: #48df93;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  box-shadow: 0 14px 40px rgba(14, 80, 47, 0.4);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: white;
  background: #138b52;
  border-radius: 8px;
}

.whatsapp-float em {
  font-style: normal;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 860px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  align-items: center;
  margin: auto;
  padding: 20px;
  background: #111923;
  border: 1px solid rgba(118, 150, 188, 0.3);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: white;
  font-size: 12px;
}

.cookie-banner p {
  margin: 0;
  color: #8291a5;
  font-size: 9px;
  line-height: 1.55;
}

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

.cookie-actions .button {
  min-height: 40px;
  padding: 10px 13px;
  font-size: 9px;
}

.legal-modal {
  width: min(calc(100% - 32px), 700px);
  max-height: min(82vh, 760px);
  padding: 38px;
  color: var(--text);
  background: #101823;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.legal-modal::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(7px);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  color: #a6b3c3;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.legal-modal h2 {
  margin: 7px 0 22px;
  font-size: 28px;
}

.legal-modal h3 {
  margin: 24px 0 8px;
  font-size: 14px;
}

.legal-modal p,
.legal-modal li {
  color: #92a1b5;
  font-size: 11px;
  line-height: 1.75;
}

.legal-modal a {
  color: var(--blue-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1140px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

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

  .service-card {
    min-height: 500px;
  }

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

  .process-step:nth-child(4),
  .process-step:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .process-step:nth-child(4) {
    border-left: 0;
  }

  .process-step:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-block: 75px;
  }

  .hero-copy {
    max-width: 730px;
  }

  .hero-visual {
    width: min(100%, 630px);
    margin: 0 auto;
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section-head,
  .business-layout,
  .about-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .section-head {
    align-items: start;
  }

  .section-head > p {
    max-width: 650px;
  }

  .business-copy {
    max-width: 720px;
  }

  .courier-actions,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    width: min(100%, 590px);
  }

  .faq-aside {
    position: static;
    max-width: 620px;
  }

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

  .consumer-protection {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .consumer-protection-actions {
    justify-content: flex-start;
  }

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .utility-bar {
    display: none;
  }

  .site-header {
    height: 66px;
  }

  .brand {
    width: 126px;
    flex-basis: 126px;
  }

  .brand-mark {
    width: 126px;
    height: 42px;
  }

  .header-cta {
    display: none;
  }

  .nav-actions {
    gap: 12px;
  }

  .mobile-menu {
    top: 66px;
    height: calc(100vh - 66px);
  }

  .hero-grid-bg {
    background-size: 42px 42px;
  }

  .hero-layout {
    gap: 55px;
    padding-block: 61px 67px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 57px);
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

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

  .inline-whatsapp {
    width: auto;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 36px;
  }

  .hero-proof div {
    padding: 12px 0;
  }

  .hero-proof div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-visual {
    min-height: 390px;
  }

  .diagnostic-card {
    width: 96%;
    padding: 15px;
    border-radius: 20px;
    transform: none;
  }

  .hero-logo-frame {
    height: 174px;
    border-radius: 12px;
  }

  .diagnostic-stats div {
    min-height: 61px;
    padding: 9px;
  }

  .diagnostic-stats p {
    font-size: 8px;
  }

  .orbit-one {
    width: 390px;
    height: 390px;
  }

  .orbit-two {
    width: 310px;
    height: 310px;
  }

  .floating-chip {
    min-width: 158px;
    padding: 9px;
  }

  .chip-top {
    top: -2px;
    right: 0;
  }

  .chip-bottom {
    bottom: -8px;
    left: 1px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 92px;
    padding: 17px 8px;
  }

  .trust-item + .trust-item,
  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-head {
    gap: 26px;
    margin-bottom: 36px;
  }

  .section-head h2,
  .business-copy h2,
  .courier-title h2,
  .about-copy h2,
  .faq-aside h2,
  .contact-head h2 {
    font-size: 39px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .section-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-list {
    grid-template-columns: 1fr;
  }

  .premium-form,
  .shipping-card,
  .tracking-card,
  .contact-card,
  .hours-card {
    padding: 23px 20px;
  }

  .form-head {
    gap: 10px;
  }

  .secure-badge {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .full {
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
    padding: 25px 8px 27px;
  }

  .process-step + .process-step,
  .process-step:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-step::after {
    top: auto;
    right: 10px;
    bottom: -11px;
    transform: rotate(90deg);
  }

  .process-step:nth-child(3)::after {
    display: block;
  }

  .process-step h3 {
    margin-top: 16px;
  }

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

  .price-tabs button:nth-child(2) {
    border-right: 0;
  }

  .price-tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .price-table th,
  .price-table td {
    padding: 15px 14px;
  }

  .price-table td {
    font-size: 10px;
  }

  .price-table th:last-child,
  .price-table td:last-child {
    width: 40%;
  }

  .about-visual {
    min-height: 410px;
  }

  .about-logo-frame {
    right: 0;
    bottom: 55px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    grid-template-columns: 1fr;
  }

  .contact-buttons .button:last-child {
    grid-column: auto;
  }

  .map-wrap {
    height: 315px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
    padding-top: 53px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding-block: 20px;
  }

  .consumer-protection-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .consumer-official-links {
    width: 100%;
  }

  .social-placeholder {
    margin: 8px 0 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding-right: 10px;
  }

  .whatsapp-float em {
    display: none;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .legal-modal {
    padding: 32px 23px;
  }
}

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

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

/* Header status button - outlined variant to sit next to primary CTA */
.button.header-status {
  background: transparent;
  color: #cfe1ff;
  border: 1px solid rgba(207, 225, 255, 0.35);
}
.button.header-status:hover {
  background: rgba(207, 225, 255, 0.12);
  color: #ffffff;
  border-color: rgba(207, 225, 255, 0.75);
  transform: none;
}
@media (max-width: 900px) {
  .header-status { display: none; }
}

/* Tracking form inline result */
.tracking-result {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(18, 103, 214, 0.12);
  border: 1px solid rgba(18, 103, 214, 0.35);
  display: grid;
  gap: 6px;
}
.tracking-result strong { color: #cfe1ff; font-size: 15px; }
.tracking-result span { color: rgba(255, 255, 255, 0.8); font-size: 13px; }
.tracking-result.done {
  background: rgba(40, 167, 69, 0.15);
  border-color: rgba(40, 167, 69, 0.5);
}
.tracking-result.done strong { color: #dbf7e5; }
.tracking-result-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.tracking-link {
  color: #cfe1ff;
  text-decoration: underline;
  font-size: 13px;
  font-weight: 600;
}
.tracking-link:hover { color: #ffffff; }

/* Both ANPC badges (SAL + SOL) stack together in the footer */
.anpc-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
}
@media (max-width: 900px) {
  .anpc-badges { width: 100%; }
  .anpc-badges .anpc-sal-badge { width: 100%; max-width: 250px; }
}

/* Full legal documents (Terms / Privacy) inside the footer modal */
#legal-content {
  max-height: min(56vh, 520px);
  overflow-y: auto;
  padding-right: 8px;
}
#legal-content .legal-subtitle {
  margin: 0 0 14px;
  color: var(--blue-bright);
  font-size: 11.5px;
  font-weight: 700;
}
#legal-content .legal-intro {
  margin: 0 0 16px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(22, 130, 255, 0.08);
  border-left: 3px solid var(--blue-bright);
  border-radius: 0 8px 8px 0;
  font-size: 11.5px;
}
#legal-content h3:first-of-type { margin-top: 0; }
#legal-content .legal-list-title {
  margin-top: 10px;
  color: var(--text);
  font-weight: 700;
}
#legal-content ul { margin: 0 0 10px; padding-left: 20px; }
#legal-content li { margin-bottom: 4px; }
