:root {
  --blue-900: #07265c;
  --blue-800: #0a3b86;
  --blue-600: #0b78dc;
  --blue-500: #0ea5ff;
  --blue-300: #7dd8ff;
  --ink: #0d1f37;
  --muted: #5e728b;
  --line: rgba(10, 65, 140, 0.12);
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(9, 74, 151, 0.16);
  color-scheme: light;
  font-family: "Roboto", Arial, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-family: "Roboto", Arial, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(125, 216, 255, 0.38), transparent 32rem),
    linear-gradient(180deg, #f8fdff 0%, #ffffff 42%, #eff9ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    url("data:image/svg+xml,%3Csvg width='220' height='260' viewBox='0 0 220 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230ea5ff' stroke-width='2' opacity='0.72'%3E%3Cg transform='translate(28 18) rotate(-16)'%3E%3Crect x='0' y='0' width='58' height='28' rx='5' fill='%23ffffff' fill-opacity='0.45'/%3E%3Ccircle cx='29' cy='14' r='8'/%3E%3Cpath d='M8 8h8M42 20h8'/%3E%3C/g%3E%3Cg transform='translate(132 86) rotate(18)'%3E%3Crect x='0' y='0' width='68' height='32' rx='6' fill='%23ffffff' fill-opacity='0.38'/%3E%3Ccircle cx='34' cy='16' r='9'/%3E%3Cpath d='M10 9h10M48 23h10'/%3E%3C/g%3E%3Cg transform='translate(48 174) rotate(10)'%3E%3Crect x='0' y='0' width='62' height='30' rx='5' fill='%23ffffff' fill-opacity='0.42'/%3E%3Ccircle cx='31' cy='15' r='8'/%3E%3Cpath d='M9 9h9M44 22h9'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 220px 260px;
  animation: money-rain 18s linear infinite;
}

body > * {
  position: relative;
  z-index: 1;
}

@keyframes money-rain {
  from {
    background-position: 0 -260px;
  }

  to {
    background-position: 0 260px;
  }
}

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

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 360px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: min(1120px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(9, 72, 145, 0.1);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 350px;
  height: 52px;
  margin-left: -64px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  color: #35516f;
  font-size: 0.84rem;
  font-weight: 700;
}

.nav a,
.nav-dropdown-toggle,
.whatsapp-cta,
.menu-toggle,
.button {
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.nav a:hover,
.nav-dropdown-toggle:hover {
  color: var(--blue-600);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.08rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 16px 34px rgba(11, 120, 220, 0.28);
}

.button-secondary {
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(14, 165, 255, 0.2);
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  min-height: 34px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  display: grid;
  min-width: 210px;
  padding: 0.48rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 46px rgba(9, 74, 151, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 0.68rem 0.72rem;
  border-radius: 7px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(14, 165, 255, 0.1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.whatsapp-cta,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #20c767, #11a451);
  box-shadow: 0 16px 34px rgba(17, 164, 81, 0.22);
  cursor: pointer;
}

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

.whatsapp-cta svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  align-content: center;
  justify-items: center;
  gap: 3px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 16px 34px rgba(11, 120, 220, 0.2);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 160ms ease;
}

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

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

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

.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(3.2rem, 6vw, 5.4rem) 0 2.5rem;
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
  width: min(920px, 100%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #c9f1ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 1.05rem;
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.55rem, 2.65vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.hero-lead,
.section-heading p,
.network-copy p,
.contact-copy p,
.benefit-card p,
.footer p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.hero-lead {
  max-width: 760px;
  font-size: clamp(0.94rem, 1.1vw, 1rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.45rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.45rem;
}

.trust-strip span {
  padding: 0.52rem 0.76rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #25435f;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}


.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2.8rem, 5.4vw, 4.8rem) 0;
}

.compact {
  padding-top: 2rem;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 1.9rem;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.82rem;
}

.benefit-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(9, 74, 151, 0.08);
}

.audience-grid .benefit-card {
  min-height: 235px;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.95rem;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-300));
}

.icon-box svg {
  width: 22px;
  fill: currentColor;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: start;
}

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

.service-grid span {
  min-height: 50px;
  padding: 0.82rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #25435f;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 12px 34px rgba(9, 74, 151, 0.06);
}


.model-section {
  padding-bottom: 3rem;
}

.network-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2.4rem, 5.2vw, 4rem);
  border-radius: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 38, 92, 0.96), rgba(11, 120, 220, 0.92)),
    radial-gradient(circle at 90% 10%, rgba(125, 216, 255, 0.7), transparent 22rem);
  box-shadow: var(--shadow);
}

.network-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
  align-content: center;
}

.network-logo-card {
  display: grid;
  place-items: center;
  min-height: 100px;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.network-logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.2);
}

.network-logo-card img {
  width: min(100%, 270px);
  max-height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
}


.network-logo-card-half {
  min-height: 108px;
}

.network-logo-card-half img {
  width: min(100%, 420px);
  max-height: 82px;
}

.seo-section {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3.4rem);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.82rem;
  margin-top: 1.6rem;
}

.seo-card {
  padding: 1.12rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(9, 74, 151, 0.08);
}

.seo-card span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 0.62rem;
  border-radius: 999px;
  color: var(--blue-800);
  background: rgba(14, 165, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.seo-card h3 {
  margin: 0.8rem 0 0.52rem;
  color: var(--blue-900);
  font-size: 1.02rem;
  line-height: 1.24;
}

.seo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.faq-section {
  padding-top: clamp(2rem, 4.4vw, 3.8rem);
}

.faq-list {
  display: grid;
  gap: 0.66rem;
  width: min(920px, 100%);
  margin: 1.65rem auto 0;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(9, 74, 151, 0.07);
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 54px;
  padding: 0.86rem 1rem;
  color: var(--blue-900);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-600);
  font-size: 1rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.82rem;
}

.stats-row div {
  padding: 1.18rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.stats-row strong {
  display: block;
  color: var(--blue-600);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1;
}

.stats-row span {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(2rem, 5vw, 4rem);
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2.8rem, 5.4vw, 4.8rem) 0;
}

.contact-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 4.6rem) 0 clamp(3rem, 5vw, 5rem);
}

.contact-hero {
  padding: clamp(2rem, 4.8vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 248, 255, 0.88)),
    radial-gradient(circle at 90% 0%, rgba(14, 165, 255, 0.24), transparent 18rem);
  box-shadow: var(--shadow);
}

.contact-hero h1 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.contact-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.quick-contact-card {
  display: grid;
  gap: 0.34rem;
  min-height: 155px;
  padding: 1.18rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(9, 74, 151, 0.07);
}

.quick-contact-card span {
  color: var(--blue-800);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-contact-card strong {
  color: var(--blue-900);
  font-size: 1.12rem;
  line-height: 1.15;
}

.quick-contact-card small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.whatsapp-card {
  border-color: rgba(32, 199, 103, 0.24);
}

.telegram-card {
  border-color: rgba(14, 165, 255, 0.28);
}

.email-card {
  border-color: rgba(10, 65, 140, 0.16);
}

.contact-page-section {
  width: 100%;
  padding-top: clamp(2rem, 5vw, 3.4rem);
  padding-bottom: 0;
}

.contact-card {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.45rem;
  padding: 1.08rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(9, 74, 151, 0.08);
}

.contact-card strong {
  color: var(--blue-900);
  font-size: 1rem;
}

.contact-card span,
.contact-card a {
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.82rem;
  padding: clamp(1rem, 2.4vw, 1.55rem);
  border: 1px solid rgba(14, 165, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
  margin: 0;
  color: #203d5a;
  font-size: 0.9rem;
  font-weight: 700;
}

.lead-form fieldset {
  grid-template-columns: repeat(2, auto);
  align-content: start;
  justify-content: start;
  column-gap: 1rem;
  padding: 0;
  border: 0;
}

.lead-form legend {
  grid-column: 1 / -1;
  margin-bottom: 0.15rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(10, 65, 140, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: #f8fcff;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14, 165, 255, 0.13);
}

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

.form-note {
  min-height: 1.5rem;
  margin: 0.2rem 0 0;
  color: var(--blue-800);
  font-weight: 760;
}

.footer {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 2rem;
  padding: 1.55rem 0 0;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 220px;
  margin-bottom: 0.8rem;
}

.footer p {
  margin-bottom: 0;
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.footer-links a {
  color: var(--blue-800);
  font-weight: 800;
}

.footer-disclaimer {
  padding: 1rem;
  border: 1px solid rgba(14, 165, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(14, 165, 255, 0.08), rgba(255, 255, 255, 0.92));
}

.footer-disclaimer strong {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
  color: var(--blue-900);
  font-size: 0.9rem;
  line-height: 1.25;
}

.footer-disclaimer p + p {
  margin-top: 0.48rem;
}

.legal-main {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 4.2rem) 0 clamp(3rem, 5vw, 5rem);
}

.legal-hero {
  padding: clamp(2rem, 4.5vw, 3.6rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 248, 255, 0.9)),
    radial-gradient(circle at 90% 0%, rgba(14, 165, 255, 0.2), transparent 18rem);
  box-shadow: var(--shadow);
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.legal-hero p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

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

.legal-block {
  min-width: 0;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(9, 74, 151, 0.07);
  overflow-x: auto;
}

.legal-block h2 {
  margin-bottom: 0.62rem;
  font-size: 1.18rem;
  line-height: 1.25;
}

.legal-block h3 {
  margin: 1rem 0 0.45rem;
  color: var(--blue-900);
  font-size: 0.98rem;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.legal-block p:last-child,
.legal-block ul:last-child,
.legal-block ol:last-child {
  margin-bottom: 0;
}

.legal-block ul,
.legal-block ol {
  margin: 0.55rem 0 0.9rem;
  padding-left: 1.15rem;
}

.legal-note {
  border-color: rgba(14, 165, 255, 0.26);
  background: linear-gradient(135deg, rgba(14, 165, 255, 0.09), rgba(255, 255, 255, 0.92));
}

.legal-warning {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.95), rgba(255, 255, 255, 0.92));
}

.legal-table {
  width: 100%;
  min-width: 620px;
  margin-top: 0.75rem;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.86rem;
}

.legal-table th,
.legal-table td {
  padding: 0.72rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--blue-900);
  background: rgba(14, 165, 255, 0.08);
}

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

.service-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 4.6rem) 0 clamp(3rem, 5vw, 5rem);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 4.8vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 248, 255, 0.88)),
    radial-gradient(circle at 90% 0%, rgba(14, 165, 255, 0.24), transparent 18rem);
  box-shadow: var(--shadow);
}

.service-hero h1 {
  max-width: 720px;
  margin-bottom: 0.9rem;
  font-size: clamp(2.05rem, 4.3vw, 3.45rem);
}

.service-hero p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.service-hero-panel {
  display: grid;
  gap: 0.72rem;
  padding: 1rem;
  border: 1px solid rgba(14, 165, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
}

.service-hero-panel span {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.72rem 0.82rem;
  border-radius: 8px;
  color: var(--blue-900);
  background: rgba(14, 165, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-hero-panel small {
  color: var(--muted);
  font-weight: 700;
}

.service-section {
  padding-top: clamp(2.6rem, 5vw, 4.4rem);
}

.service-faq-section {
  padding-bottom: clamp(1.8rem, 4vw, 3rem);
}

.service-cta {
  display: grid;
  gap: 0.78rem;
  max-width: 880px;
  margin: clamp(1rem, 3vw, 1.8rem) auto 0;
  padding: clamp(1.65rem, 4vw, 2.6rem);
  border: 1px solid rgba(14, 165, 255, 0.22);
  border-radius: 16px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(7, 38, 92, 0.97), rgba(11, 122, 224, 0.94)),
    radial-gradient(circle at 92% 0%, rgba(125, 216, 255, 0.62), transparent 18rem);
  box-shadow: var(--shadow);
}

.service-cta h2 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.service-cta p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.62;
}

.service-cta .button {
  justify-self: center;
  margin-top: 0.25rem;
}

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

.service-text-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(1.2rem, 4vw, 2.6rem);
  align-items: start;
}

.service-card {
  padding: 1.18rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(9, 74, 151, 0.07);
}

.service-card h2,
.service-card h3 {
  margin-bottom: 0.55rem;
  color: var(--blue-900);
}

.service-card h2 {
  font-size: 1.25rem;
}

.service-card p,
.service-card li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 4.6rem) 0 clamp(3rem, 5vw, 5rem);
}

.blog-hero {
  padding: clamp(2rem, 4.8vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 248, 255, 0.88)),
    radial-gradient(circle at 90% 0%, rgba(14, 165, 255, 0.24), transparent 18rem);
  box-shadow: var(--shadow);
}

.blog-hero {
  text-align: center;
}

.blog-hero h1 {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.blog-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: clamp(1.4rem, 4vw, 2.4rem);
}

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.72rem;
  min-height: 158px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(9, 74, 151, 0.07);
}

.blog-card-meta {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 0.58rem;
  border-radius: 999px;
  color: var(--blue-800);
  background: rgba(14, 165, 255, 0.09);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 0;
  color: var(--blue-900);
  font-size: 1.04rem;
  line-height: 1.22;
}

.blog-card .card-link {
  margin-top: 0.15rem;
  padding-top: 0.72rem;
  border-top: 1px solid var(--line);
}

.article-main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 4.6rem) 0 clamp(3rem, 5vw, 5rem);
}

.article-single {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
}

.article-single h1 {
  max-width: 820px;
  margin-bottom: 1.1rem;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.article-cover {
  display: grid;
  place-items: center;
  min-height: clamp(180px, 32vw, 320px);
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.2rem, 4vw, 2.4rem);
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(7, 38, 92, 0.98), rgba(11, 122, 224, 0.94)),
    radial-gradient(circle at 92% 0%, rgba(125, 216, 255, 0.62), transparent 18rem);
}

.article-cover img {
  width: min(720px, 100%);
  max-height: 220px;
  object-fit: contain;
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin: 1.45rem 0 0.55rem;
  color: var(--blue-900);
  font-size: 1.18rem;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.article-body ul,
.article-body ol {
  margin: 0.65rem 0 0;
  padding-left: 1.15rem;
}

.service-card ul,
.service-card ol {
  margin: 0.55rem 0 0;
  padding-left: 1.15rem;
}

.service-highlight {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 38, 92, 0.96), rgba(11, 120, 220, 0.92)),
    radial-gradient(circle at 90% 10%, rgba(125, 216, 255, 0.65), transparent 20rem);
}

.service-highlight h2,
.service-highlight h3,
.service-highlight p,
.service-highlight li {
  color: var(--white);
}

.service-highlight p,
.service-highlight li {
  color: rgba(255, 255, 255, 0.82);
}

.network-text-link {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.card-link {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--blue-800);
  font-size: 0.84rem;
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 24px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.36rem;
    padding: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(9, 72, 145, 0.12);
    text-align: center;
  }

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

  .nav > a,
  .nav-dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0 2.3rem;
    border-radius: 8px;
    text-align: center;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle::after {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-62%) rotate(45deg);
  }

  .nav > a:hover,
  .nav-dropdown-toggle:hover {
    background: rgba(14, 165, 255, 0.1);
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0.24rem 0 0.12rem;
    padding: 0.32rem;
    border-radius: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .nav-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    text-align: center;
    white-space: normal;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero,
  .split,
  .network-section,
  .contact-section,
  .service-hero,
  .service-text-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .benefit-grid,
  .blog-grid,
  .service-card-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .network-section {
    padding: 1.6rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 20px, 1180px);
    padding: 10px 10px 10px 0;
  }

  .brand img {
    width: 198px;
    height: 40px;
    margin-left: -12px;
  }

  .whatsapp-cta,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: clamp(2.05rem, 10.5vw, 3.05rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
    line-height: 1.1;
  }

  .hero-lead,
  .section-heading p,
  .network-copy p,
  .seo-card p,
  .faq-list p,
  .contact-copy p,
  .benefit-card p,
  .footer p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .hero,
  .section,
  .network-section,
  .contact-section,
  .footer {
    width: min(100% - 24px, 1180px);
  }

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

  .service-cta {
    width: min(100%, 100%);
    padding: 1.45rem;
    border-radius: 14px;
  }

  .service-cta .button {
    width: 100%;
  }

  .network-grid,
  .quick-contact-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    align-items: flex-start;
    min-height: 50px;
    font-size: 0.9rem;
  }

  .network-logo-card,
  .network-logo-card-half {
    grid-column: auto;
    min-height: 88px;
  }

  .network-logo-card img,
  .network-logo-card-half img {
    max-height: 64px;
  }

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

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