:root {
  --blue-950: #04152e;
  --blue-900: #061f46;
  --blue-800: #073071;
  --blue-700: #0757c5;
  --blue-600: #0b6fe8;
  --cyan-500: #05afe7;
  --cyan-400: #30cdf2;
  --sky-100: #e8f7ff;
  --sky-50: #f4fbff;
  --ink: #0d223b;
  --muted: #5c6f86;
  --line: #d9ebf6;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 28, 68, 0.16);
  --shadow-soft: 0 16px 44px rgba(3, 28, 68, 0.1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

body,
button,
input,
textarea {
  -webkit-text-size-adjust: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(230px, auto) 1fr auto;
  gap: clamp(22px, 3.2vw, 46px);
  align-items: center;
  min-height: 112px;
  padding: 16px clamp(22px, 5vw, 82px);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 74%, #f4fbff 100%);
  border-bottom: 1px solid #c8e1f2;
  box-shadow: 0 18px 48px rgba(3, 28, 68, 0.1);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan-500), var(--blue-700));
  content: "";
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(248px, 18vw, 310px);
  min-height: 78px;
  padding: 6px 0;
  border-radius: 8px;
  background: var(--white);
}

.brand img,
.site-footer img {
  width: 100%;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #cce6f5;
  border-radius: 999px;
  padding: 7px;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 38px rgba(3, 28, 68, 0.09);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--blue-900);
}

.main-nav a {
  position: relative;
  border-radius: 999px;
  padding: 11px 16px;
  background: #f7fcff;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.main-nav a:hover {
  background: var(--blue-700);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(7, 87, 197, 0.22);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-action {
  min-height: 50px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(7, 87, 197, 0.28);
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(3, 28, 68, 0.18);
}

.button.primary {
  background: var(--cyan-500);
  color: var(--blue-950);
  box-shadow: 0 12px 30px rgba(5, 175, 231, 0.28);
}

.button.secondary {
  border-color: rgba(7, 87, 197, 0.24);
  background: var(--white);
  color: var(--blue-800);
}

.button.whatsapp {
  gap: 10px;
  background: #0fbf74;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(15, 191, 116, 0.28);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button.wide {
  width: 100%;
}

.section,
.section-band {
  padding: clamp(68px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section {
  max-width: 1240px;
  margin: 0 auto;
}

.section-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 24%, rgba(48, 205, 242, 0.16), transparent 30%),
    linear-gradient(135deg, var(--sky-50), #ffffff 46%, #eaf8ff);
}

.hero {
  min-height: calc(100vh - 112px);
  position: relative;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
  content: "";
}

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

.eyebrow.light {
  color: var(--cyan-400);
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  color: var(--blue-950);
  font-size: clamp(2.45rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 1.16rem;
}

.lead {
  max-width: 720px;
  color: #29445f;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--white);
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(3, 28, 68, 0.06);
}

.hero-visual {
  align-self: start;
  padding-top: clamp(42px, 6vw, 86px);
}

.cloud-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(7, 87, 197, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 255, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(7, 87, 197, 0.04) 46px 47px);
  box-shadow: var(--shadow);
  animation: panelFloat 7s ease-in-out infinite;
}

.cloud-panel::before,
.cloud-panel::after {
  position: absolute;
  left: -24%;
  width: 148%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 175, 231, 0.5), transparent);
  content: "";
  animation: dataLine 5.8s linear infinite;
}

.cloud-panel::before {
  top: 34%;
}

.cloud-panel::after {
  top: 54%;
  animation-delay: -2.4s;
}

.datacenter-panel {
  min-height: 540px;
  background:
    radial-gradient(circle at 24% 24%, rgba(5, 175, 231, 0.15), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(7, 87, 197, 0.13), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 255, 0.94));
}

.datacenter-map {
  position: absolute;
  top: 48px;
  right: 34px;
  left: 34px;
  height: 256px;
}

.replication-line {
  position: absolute;
  top: 126px;
  left: 12%;
  width: 76%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(7, 87, 197, 0.34), rgba(5, 175, 231, 0.62), rgba(7, 87, 197, 0.34), transparent);
}

.replication-line.secondary {
  top: 96px;
  left: 24%;
  width: 52%;
  opacity: 0.72;
  transform: rotate(-12deg);
}

.datacenter-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 87, 197, 0.18);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(3, 28, 68, 0.13);
}

.datacenter-node.main {
  left: 50%;
  top: 26px;
  width: 170px;
  height: 172px;
  transform: translateX(-50%);
  border-radius: 8px;
  animation: cloudFloat 5.5s ease-in-out infinite;
}

.datacenter-node.main::before {
  position: absolute;
  inset: 18px 18px auto;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan-500));
  content: "";
}

.datacenter-node.main span {
  width: 112px;
  height: 30px;
  border: 1px solid rgba(7, 87, 197, 0.14);
  border-radius: 6px;
  background:
    radial-gradient(circle at 16px 50%, var(--cyan-500) 0 4px, transparent 5px),
    linear-gradient(90deg, rgba(7, 87, 197, 0.12), rgba(5, 175, 231, 0.08));
}

.datacenter-node.mirror {
  top: 108px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.datacenter-node.mirror::before {
  width: 44px;
  height: 44px;
  border: 8px solid var(--cyan-500);
  border-right-color: rgba(5, 175, 231, 0.18);
  border-radius: 50%;
  content: "";
}

.datacenter-node.mirror.left {
  left: 5%;
}

.datacenter-node.mirror.right {
  right: 5%;
}

.data-pulse {
  position: absolute;
  top: 120px;
  left: 18%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 9px rgba(5, 175, 231, 0.13);
  animation: dataPulse 4.8s linear infinite;
}

.data-pulse.two {
  animation-delay: -2.4s;
}

.cloud-shape {
  position: absolute;
  top: 66px;
  left: 50%;
  width: min(76%, 440px);
  height: 230px;
  transform: translateX(-50%);
  animation: cloudFloat 5.5s ease-in-out infinite;
}

.cloud-dot {
  position: absolute;
  display: block;
  border: 18px solid var(--blue-700);
  background: var(--white);
}

.cloud-dot.one {
  right: 22px;
  bottom: 28px;
  width: 168px;
  height: 130px;
  border-radius: 72px;
}

.cloud-dot.two {
  left: 88px;
  top: 4px;
  width: 210px;
  height: 190px;
  border-radius: 120px;
}

.cloud-dot.three {
  left: 4px;
  bottom: 18px;
  width: 154px;
  height: 126px;
  border-radius: 72px;
}

.backup-ring {
  position: absolute;
  right: 118px;
  bottom: 38px;
  width: 134px;
  height: 134px;
  border: 20px solid var(--cyan-500);
  border-right-color: transparent;
  border-radius: 50%;
  animation: ringRotate 8s linear infinite;
}

.backup-ring::after {
  position: absolute;
  right: -18px;
  top: 16px;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 34px solid var(--cyan-500);
  content: "";
}

.status-list {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 10px;
}

.status-list div,
.portal-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(7, 87, 197, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--white);
}

.status-list div {
  box-shadow: 0 10px 28px rgba(3, 28, 68, 0.08);
  animation: statusRise 4.8s ease-in-out infinite;
}

.status-list div:nth-child(2) {
  animation-delay: 0.45s;
}

.status-list div:nth-child(3) {
  animation-delay: 0.9s;
}

.infra-list div {
  align-items: center;
  min-height: 66px;
}

.status-list span,
.portal-row span {
  color: var(--muted);
}

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

.section-heading p:not(.eyebrow),
.split p,
.contact-copy p,
.contact-panel p,
.plan-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card,
.plan-card,
.benefit-columns > div,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover,
.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 175, 231, 0.45);
  box-shadow: 0 22px 54px rgba(3, 28, 68, 0.14);
}

.icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--sky-100);
}

.icon.backup {
  background:
    radial-gradient(circle at 50% 50%, var(--white) 0 23%, transparent 24%),
    conic-gradient(from 40deg, var(--cyan-500), var(--blue-700), var(--cyan-500));
}

.icon.shield {
  clip-path: polygon(50% 0, 88% 18%, 80% 74%, 50% 100%, 20% 74%, 12% 18%);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
}

.icon.chart {
  background:
    linear-gradient(to top, var(--blue-700) 0 56%, transparent 57%),
    linear-gradient(to top, var(--cyan-500) 0 76%, transparent 77%),
    linear-gradient(to top, var(--blue-800) 0 42%, transparent 43%);
  background-position: 8px 10px, 20px 2px, 32px 16px;
  background-size: 8px 30px, 8px 38px, 8px 24px;
  background-repeat: no-repeat;
  background-color: var(--sky-100);
}

.icon.restore {
  border: 8px solid var(--cyan-500);
  border-right-color: transparent;
  border-radius: 50%;
}

.section-blue {
  max-width: none;
  background:
    linear-gradient(90deg, rgba(5, 175, 231, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 175, 231, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  background-size: 44px 44px, 44px 44px, auto;
  color: var(--white);
}

.section-blue > * {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

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

.section-blue p {
  color: #c7e6f7;
}

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

.process-step {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(48, 205, 242, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.process-step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--cyan-500);
  color: var(--blue-950);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.client-area-layout {
  align-items: center;
}

.compat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.compat-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--sky-50);
  color: var(--blue-900);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(3, 28, 68, 0.06);
}

.section-soft {
  max-width: none;
  background: var(--sky-50);
}

.section-soft > * {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.benefit-columns,
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.benefit-columns > div,
.plan-card,
.contact-panel {
  padding: clamp(24px, 4vw, 36px);
}

ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.plan-card.highlighted {
  display: flex;
  flex-direction: column;
  border-color: rgba(5, 175, 231, 0.55);
  background: linear-gradient(180deg, #ffffff, #f0fbff);
}

.plan-card.highlighted ul {
  margin-top: 26px;
  margin-bottom: 34px;
}

.plan-card.highlighted .button {
  margin-top: auto;
}

.plan-label {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--sky-100);
  color: var(--blue-800);
  font-size: 0.8rem;
  font-weight: 900;
}

.price {
  margin-bottom: 0;
  color: var(--blue-900) !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
}

.portal-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 620px);
  justify-self: center;
  align-items: center;
  justify-content: center;
}

.portal-row {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.portal-row strong {
  color: var(--white);
}

.portal-action {
  display: flex;
  min-height: 240px;
  aspect-ratio: 1 / 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 28px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.portal-action:hover {
  transform: translateY(-5px);
  border-color: rgba(48, 205, 242, 0.72);
  background:
    linear-gradient(180deg, rgba(5, 175, 231, 0.26), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.22);
}

.portal-action.accent {
  background:
    linear-gradient(145deg, rgba(5, 175, 231, 0.32), rgba(7, 87, 197, 0.28)),
    rgba(255, 255, 255, 0.1);
}

.portal-action strong {
  color: var(--white);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.18;
}

.portal-action small {
  margin-top: 12px;
  color: #c7e6f7;
  font-weight: 700;
}

.portal-icon {
  position: relative;
  display: block;
  width: 66px;
  height: 66px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.portal-icon.client::before,
.portal-icon.client::after,
.portal-icon.platform::before,
.portal-icon.platform::after {
  position: absolute;
  content: "";
}

.portal-icon.client::before {
  top: 12px;
  left: 19px;
  width: 20px;
  height: 20px;
  border: 4px solid var(--cyan-400);
  border-radius: 50%;
}

.portal-icon.client::after {
  right: 11px;
  bottom: 10px;
  left: 11px;
  height: 18px;
  border: 4px solid var(--cyan-400);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.portal-icon.platform::before {
  inset: 12px 9px 17px;
  border: 4px solid var(--cyan-400);
  border-radius: 6px;
}

.portal-icon.platform::after {
  right: 17px;
  bottom: 11px;
  left: 17px;
  height: 4px;
  border-radius: 999px;
  background: var(--cyan-400);
  box-shadow: 0 7px 0 rgba(48, 205, 242, 0.7);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(3, 28, 68, 0.05);
}

summary {
  cursor: pointer;
  color: var(--blue-950);
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  background:
    linear-gradient(120deg, #ffffff, var(--sky-50) 52%, #e8f7ff),
    var(--white);
}

.contact-panel small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.contact-emails {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.contact-emails a {
  width: fit-content;
  color: var(--blue-800);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-emails a:hover {
  color: var(--blue-700);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 87, 197, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-800);
  box-shadow: 0 10px 24px rgba(3, 28, 68, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(5, 175, 231, 0.55);
  color: var(--cyan-600);
  box-shadow: 0 14px 28px rgba(3, 28, 68, 0.12);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-links svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

.site-footer img {
  width: 178px;
}

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

.site-footer a:hover {
  color: var(--blue-700);
}

.policy-page {
  background: var(--sky-50);
}

.policy-main {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) clamp(18px, 5vw, 48px);
}

.policy-main h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
}

.policy-main h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.policy-main p,
.policy-main li {
  color: #29445f;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 4px;
  font-size: 0.95rem;
}

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

.policy-table th {
  background: var(--sky-100);
  color: var(--blue-950);
}

.policy-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue-800);
  font-weight: 900;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 60;
  display: flex;
  max-width: 980px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(7, 87, 197, 0.22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(3, 28, 68, 0.22);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  max-width: 720px;
}

.cookie-banner__content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-950);
  font-size: 1rem;
}

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

.cookie-banner__content a {
  color: var(--blue-800);
  font-weight: 800;
  text-decoration: underline;
}

.cookie-banner__button {
  min-height: 44px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--blue-700);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cookie-banner__button:hover {
  background: var(--blue-800);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 104px;
  z-index: 55;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(15, 191, 116, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.92);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-whatsapp:hover {
  box-shadow: 0 22px 52px rgba(15, 191, 116, 0.5);
  transform: translateY(-2px) scale(1.03);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 104px;
    row-gap: 14px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    margin: 0;
    border-radius: 8px;
  }

  .section-band,
  .split,
  .feature-grid,
  .process,
  .benefit-columns,
  .plans {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-visual {
    padding-top: 0;
  }

  .cloud-panel {
    min-height: 380px;
  }

  .datacenter-panel {
    min-height: 500px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 90px;
    padding: 10px 14px 12px;
  }

  .header-action {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .brand {
    justify-self: center;
    width: min(250px, 78vw);
    min-height: 58px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    font-size: 0.82rem;
    gap: 5px;
    padding: 6px;
  }

  .main-nav a {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    text-align: center;
    white-space: normal;
  }

  .section,
  .section-band {
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(2.12rem, 12vw, 3.35rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.72rem, 9vw, 2.45rem);
    line-height: 1.08;
  }

  .lead,
  .section-heading p:not(.eyebrow),
  .split p,
  .contact-copy p,
  .contact-panel p,
  .plan-card p {
    font-size: 1rem;
  }

  .hero-actions,
  .trust-strip,
  .compat-list,
  .portal-preview {
    display: grid;
    grid-template-columns: 1fr;
  }

  .portal-action {
    min-height: 154px;
    aspect-ratio: auto;
    padding: 22px 18px;
  }

  .portal-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .button {
    width: 100%;
  }

  .cloud-shape {
    top: 44px;
    width: 330px;
    max-width: 88%;
    transform: translateX(-50%) scale(0.82);
    transform-origin: top center;
  }

  .datacenter-map {
    top: 36px;
    right: 14px;
    left: 14px;
    height: 220px;
  }

  .datacenter-panel {
    min-height: 540px;
  }

  .datacenter-node.main {
    width: 142px;
    height: 148px;
  }

  .datacenter-node.main span {
    width: 94px;
    height: 26px;
  }

  .datacenter-node.mirror {
    top: 100px;
    width: 68px;
    height: 68px;
  }

  .datacenter-node.mirror::before {
    width: 32px;
    height: 32px;
    border-width: 6px;
  }

  .status-list {
    right: 14px;
    bottom: 18px;
    left: 14px;
  }

  .status-list div,
  .portal-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .status-list div {
    min-height: 74px;
    padding: 12px 14px;
  }

  .contact-panel,
  .feature-card,
  .plan-card,
  .benefit-columns > div {
    padding: 22px 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 26px 16px;
  }

  .policy-table {
    display: block;
    overflow-x: auto;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .cookie-banner__button {
    width: 100%;
  }

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

@media (max-width: 340px) {
  .brand {
    width: min(232px, 82vw);
  }

  .main-nav {
    grid-template-columns: 1fr;
  }

  .datacenter-node.mirror.left {
    left: 0;
  }

  .datacenter-node.mirror.right {
    right: 0;
  }

  .datacenter-panel {
    min-height: 560px;
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes cloudFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

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

@keyframes dataLine {
  from {
    transform: translateX(-20%);
    opacity: 0;
  }

  18%,
  70% {
    opacity: 1;
  }

  to {
    transform: translateX(20%);
    opacity: 0;
  }
}

@keyframes dataPulse {
  from {
    transform: translateX(0);
    opacity: 0;
  }

  14%,
  78% {
    opacity: 1;
  }

  to {
    transform: translateX(260px);
    opacity: 0;
  }
}

@keyframes statusRise {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@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;
  }
}
