:root {
  --navy-950: #031426;
  --navy-900: #05223f;
  --navy-800: #07315c;
  --navy-700: #0b4d84;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #38bdf8;
  --cyan-400: #22d3ee;
  --violet-500: #7c3aed;
  --green-600: #0aa44f;
  --green-500: #12b864;
  --teal-500: #18c9b7;
  --teal-100: #e8fbf8;
  --blue-100: #eaf4ff;
  --slate-900: #152033;
  --slate-700: #475569;
  --slate-600: #64748b;
  --slate-500: #7a8799;
  --slate-100: #f4f7fb;
  --white: #ffffff;
  --border: #e3ecf5;
  --border-strong: #cfdae7;
  --shadow-sm: 0 8px 24px rgba(3, 20, 38, .08);
  --shadow-md: 0 18px 45px rgba(3, 20, 38, .12);
  --shadow-lg: 0 28px 80px rgba(3, 20, 38, .18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

input,
select,
textarea {
  min-width: 0;
}

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

ul {
  list-style: none;
}

::selection {
  background: rgba(24, 201, 183, .25);
  color: var(--navy-950);
}

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

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  background: var(--navy-950);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

.section {
  padding: 104px 0;
}

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

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow span {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green-500), var(--teal-500));
}

.section-kicker.light {
  color: #aaf7e7;
}

.section-kicker.light::before {
  background: #aaf7e7;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: inherit;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.15rem);
  line-height: .98;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  font-weight: 800;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 800;
}

p {
  color: var(--slate-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 14px;
  padding: 13px 22px;
  font-weight: 800;
  font-size: .94rem;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}

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

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb 0%, #14b8ff 52%, #22d3ee 100%);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(37, 99, 235, .28), 0 6px 18px rgba(34, 211, 238, .16);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.34) 42%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .55s var(--ease);
}

.btn-primary:hover {
  box-shadow: 0 20px 48px rgba(37, 99, 235, .36), 0 10px 24px rgba(34, 211, 238, .2);
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-primary > * {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .1);
}

.btn-outline {
  color: var(--navy-900);
  border: 1px solid var(--border-strong);
  background: var(--white);
}

.btn-outline:hover {
  color: var(--blue-700);
  border-color: rgba(37, 99, 235, .32);
  box-shadow: var(--shadow-sm);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(227, 236, 245, .8);
  transition: box-shadow .22s ease, transform .22s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-shell {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(5, 34, 63, .13));
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--navy-900);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -.03em;
}

.brand-copy small {
  color: var(--green-600);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-link,
.nav-button {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-radius: 12px;
  background: transparent;
  color: var(--slate-700);
  font-weight: 750;
  font-size: .92rem;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-button:hover,
.nav-link.active {
  color: var(--green-600);
  background: var(--teal-100);
}

.nav-button i {
  font-size: .72rem;
  transition: transform .2s ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .nav-button i,
.nav-dropdown:focus-within .nav-button i {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: min(820px, calc(100vw - 44px));
  transform: translateX(-50%) translateY(8px);
  padding: 18px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

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

.mega-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 108px;
  padding: 18px;
  border-radius: 18px;
  background: var(--teal-100);
  color: var(--navy-900);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.mega-card.featured {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 55%, #22d3ee 100%);
  color: #ffffff;
}

.mega-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.mega-card i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .62);
  color: var(--green-600);
}

.mega-card.featured i {
  color: #2563eb;
}

.mega-card strong {
  display: block;
  font-size: .95rem;
  margin-bottom: 4px;
}

.mega-card small {
  display: block;
  color: inherit;
  opacity: .76;
  font-size: .78rem;
  line-height: 1.45;
}

.header-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
  font-size: .88rem;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 55%, #22d3ee 100%);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .24), 0 4px 16px rgba(34, 211, 238, .16);
  white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.36) 44%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s var(--ease);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(37, 99, 235, .32), 0 8px 24px rgba(34, 211, 238, .2);
}

.header-cta:hover::before {
  transform: translateX(120%);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 13px;
  background: var(--slate-100);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy-900);
  transition: transform .22s ease, opacity .22s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: calc(var(--header-height) + 72px) 0 90px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(24, 201, 183, .17), transparent 34%),
              radial-gradient(circle at 72% 32%, rgba(18, 184, 100, .14), transparent 30%),
              linear-gradient(135deg, var(--navy-950), var(--navy-900) 54%, #062f55);
  z-index: -3;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 38%, #000 0 46%, transparent 82%);
  z-index: -2;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .75;
  z-index: -1;
}

.hero-orb-a {
  right: -140px;
  top: 130px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(24, 201, 183, .22), transparent 65%);
}

.hero-orb-b {
  left: -170px;
  bottom: 40px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(18, 184, 100, .16), transparent 65%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .9fr);
  gap: 72px;
  align-items: center;
}

.hero-copy p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.08rem;
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
  color: #aaf7e7;
}

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

.hero-metrics {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 650px;
}

.hero-metrics div {
  padding: 19px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.52rem;
  line-height: 1;
  letter-spacing: -.04em;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .62);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 34px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07));
  box-shadow: 0 28px 100px rgba(0, 0, 0, .28);
  backdrop-filter: blur(22px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(24,201,183,.45), transparent 36%, rgba(255,255,255,.14));
  z-index: -1;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-logo {
  display: flex;
  align-items: center;
  gap: 13px;
}

.panel-logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.panel-logo strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
}

.panel-logo small {
  color: rgba(255, 255, 255, .62);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(8, 225, 149, .12);
  color: #b9ffe9;
  border: 1px solid rgba(185, 255, 233, .2);
  font-size: .76rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22e39b;
  box-shadow: 0 0 0 5px rgba(34, 227, 155, .12);
}

.dashboard-card {
  border: 1px solid rgba(148, 219, 255, .2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 10%, rgba(34, 211, 238, .16), transparent 34%),
    linear-gradient(180deg, rgba(4, 24, 45, .86), rgba(6, 33, 61, .58));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 44px rgba(0,0,0,.16);
}

.main-dashboard {
  padding: 18px;
  overflow: hidden;
}

.dash-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.dash-head span {
  display: block;
  color: rgba(255, 255, 255, .84);
  font-weight: 850;
}

.dash-head small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .46);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.dash-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #dffcff;
  background: rgba(14, 165, 233, .16);
  border: 1px solid rgba(125, 211, 252, .26);
  font-size: .78rem;
  white-space: nowrap;
}

.dash-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 5px rgba(34, 211, 238, .14);
}

.dash-summary {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 15px;
}

.score-ring {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0a213b 57%, transparent 58%),
    conic-gradient(#22d3ee 0 78%, #2563eb 78% 92%, rgba(255,255,255,.14) 92% 100%);
  box-shadow: inset 0 0 30px rgba(34,211,238,.1), 0 14px 28px rgba(0,0,0,.16);
}

.score-ring strong {
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.48rem;
  line-height: 1;
  letter-spacing: -.04em;
}

.score-ring small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.52);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.dash-kpis div {
  min-height: 70px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}

.dash-kpis small {
  display: block;
  color: rgba(255,255,255,.48);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.dash-kpis strong {
  display: block;
  margin-top: 7px;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .98rem;
}

.network-chart {
  position: relative;
  height: 104px;
  margin: 4px 0 14px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    rgba(255,255,255,.04);
  background-size: 100% 34px, 48px 100%, auto;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.network-chart::after {
  content: "";
  position: absolute;
  inset: auto 14px 13px 14px;
  height: 36px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(34,211,238,.22), transparent);
  filter: blur(12px);
}

.network-chart svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.chart-area {
  fill: url(#chartAreaGradient);
  opacity: .78;
}

.chart-line {
  fill: none;
  stroke: url(#chartLineGradient);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 10px rgba(34,211,238,.24));
}

.chart-dot {
  fill: #ffffff;
  stroke: #22d3ee;
  stroke-width: 3;
}

.monitor-list {
  display: grid;
  gap: 8px;
}

.monitor-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.08);
}

.monitor-item span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.72);
  font-size: .76rem;
  font-weight: 800;
}

.monitor-item i {
  color: #7dd3fc;
}

.monitor-item strong {
  color: #dffcff;
  font-size: .74rem;
  font-weight: 900;
}

.monitor-item.warning i,
.monitor-item.warning strong {
  color: #fbbf24;
}

.panel-services {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.panel-services div {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
}

.panel-services i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 201, 183, .16);
  color: #b9fff3;
}

.panel-services span {
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
  font-size: .88rem;
}

/* Trust strip */
.trust-strip {
  padding: 24px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--slate-700);
  background: var(--slate-100);
  font-weight: 800;
  font-size: .78rem;
}

/* Section headings */
.section-heading {
  margin-bottom: 54px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .62fr);
  gap: 48px;
  align-items: end;
}

.split-heading h2,
.center-heading h2 {
  margin-top: 14px;
  color: var(--navy-950);
}

.split-heading p,
.center-heading p {
  font-size: 1rem;
  color: var(--slate-600);
}

.center-heading {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.center-heading .section-kicker {
  justify-content: center;
}

.center-heading p {
  margin: 18px auto 0;
  max-width: 640px;
}

/* Services */
.services-section {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 201, 183, .38);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.service-card.featured {
  background: linear-gradient(180deg, #effffb, #ffffff);
  border-color: rgba(24, 201, 183, .32);
}

.service-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 18px;
  background: var(--teal-100);
  color: var(--green-600);
  font-size: 1.18rem;
}

.service-card h3 {
  color: var(--navy-950);
  margin-bottom: 10px;
}

.service-card p {
  font-size: .92rem;
  margin-bottom: 16px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 18px;
}

.service-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--slate-700);
  font-size: .84rem;
  line-height: 1.45;
}

.service-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  margin-top: .45em;
  background: var(--green-500);
}

.text-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-600);
  background: transparent;
  font-weight: 850;
  font-size: .88rem;
  cursor: pointer;
}

.text-link::after {
  content: "\f061";
  font: var(--fa-font-solid);
  font-size: .75rem;
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Process */
.process-section {
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(24,201,183,.15), transparent 35%),
              radial-gradient(circle at 80% 70%, rgba(18,184,100,.12), transparent 32%);
  pointer-events: none;
}

.process-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 122px;
}

.process-copy h2 {
  margin-top: 14px;
}

.process-copy p {
  color: rgba(255, 255, 255, .72);
  margin-top: 20px;
  font-size: 1.02rem;
}

.process-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .78);
  font-weight: 650;
}

.process-note i {
  color: #aaf7e7;
  margin-top: 3px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(125, 211, 252, .16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.045)),
    radial-gradient(circle at 100% 0%, rgba(56,189,248,.1), transparent 35%);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}

.timeline article:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, .34);
  background:
    linear-gradient(135deg, rgba(255,255,255,.105), rgba(255,255,255,.055)),
    radial-gradient(circle at 100% 0%, rgba(56,189,248,.16), transparent 38%);
}

.timeline span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #22d3ee);
  box-shadow: 0 12px 26px rgba(37, 99, 235, .24);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
}

.timeline article:nth-child(2) span {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.timeline article:nth-child(3) span {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.timeline article:nth-child(4) span {
  background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.timeline article:nth-child(5) span {
  background: linear-gradient(135deg, #1d4ed8, #06b6d4);
}

.timeline h3 {
  margin-bottom: 7px;
  color: var(--white);
}

.timeline p {
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
}

/* Why */
.why-section {
  background: var(--white);
}

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

.why-card {
  padding: 28px 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(24, 201, 183, .34);
}

.why-card i {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--green-600);
  background: var(--teal-100);
  font-size: 1.16rem;
}

.why-card h3 {
  color: var(--navy-950);
  margin-bottom: 10px;
}

.why-card p {
  font-size: .92rem;
}

/* About */
.about-section {
  background: #f7fbff;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, .7fr) minmax(0, 1fr);
  gap: 74px;
  align-items: center;
}

.about-card {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy-700), var(--green-500), var(--teal-500));
}

.about-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 22px;
}

.about-card h2 {
  color: var(--navy-950);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  margin-bottom: 12px;
}

.about-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.about-badges span {
  display: grid;
  gap: 3px;
  padding: 14px 10px;
  border-radius: 16px;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: .74rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.about-badges strong {
  color: var(--green-600);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -.04em;
}

.cnpj-line {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--teal-100);
  color: var(--slate-700);
  font-size: .84rem;
  font-weight: 750;
}

.cnpj-line strong {
  color: var(--navy-900);
}

.about-copy h2 {
  color: var(--navy-950);
  margin-top: 14px;
  margin-bottom: 22px;
}

.about-copy p + p {
  margin-top: 14px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* CTA */
.cta-band {
  padding: 76px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 30%, rgba(24, 201, 183, .22), transparent 34%),
              linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
              linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.cta-layout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-layout h2 {
  margin-top: 12px;
  max-width: 770px;
}

.cta-layout p {
  max-width: 720px;
  color: rgba(255,255,255,.72);
  margin-top: 12px;
}

.cta-layout .btn {
  flex: 0 0 auto;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 122px;
}

.faq-intro h2 {
  color: var(--navy-950);
  margin-top: 14px;
  margin-bottom: 16px;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(3, 20, 38, .04);
}

.faq-question {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  background: transparent;
  color: var(--navy-950);
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green-600);
  background: var(--teal-100);
  font-size: .85rem;
  transition: transform .24s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  font-size: .95rem;
}

/* Contact */
.contact-section {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(340px, .9fr);
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  color: var(--navy-950);
  margin-top: 14px;
  margin-bottom: 18px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), border-color .22s ease, box-shadow .22s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 201, 183, .36);
  box-shadow: var(--shadow-md);
}

.contact-card i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 15px;
  background: var(--teal-100);
  color: var(--green-600);
  font-size: 1.15rem;
}

.contact-card small {
  display: block;
  color: var(--slate-500);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-card strong {
  display: block;
  margin-top: 3px;
  color: var(--navy-900);
  font-size: .94rem;
}

.contact-form {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  color: var(--navy-950);
  font-size: 1.38rem;
  margin-bottom: 6px;
}

.contact-form > p {
  font-size: .92rem;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--navy-900);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: #fbfdff;
  color: var(--navy-950);
  padding: 13px 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  text-transform: none;
  letter-spacing: 0;
  font-size: .94rem;
  font-weight: 500;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(24, 201, 183, .65);
  box-shadow: 0 0 0 4px rgba(24, 201, 183, .13);
  background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa8ba;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--white);
  padding: 66px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .9fr .8fr;
  gap: 50px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, .64);
  max-width: 280px;
  font-size: .92rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #b9fff3;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .2s ease, background .2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(24,201,183,.16);
}

.site-footer h3 {
  color: var(--white);
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
  margin-bottom: 10px;
  transition: color .18s ease;
}

.site-footer a:hover {
  color: #b9fff3;
}

.footer-cnpj {
  color: rgba(255, 255, 255, .52);
  font-size: .82rem;
  margin-top: 20px;
}

.footer-cnpj strong {
  color: rgba(255, 255, 255, .76);
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.48);
  font-size: .82rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .32);
  font-size: 1.55rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 24px 54px rgba(37, 211, 102, .42);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

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

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

/* Responsive */
@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1040px) {
  :root {
    --header-height: 74px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-shell {
    justify-content: space-between;
  }

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

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 18px 20px 24px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

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

  .mobile-menu a {
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--navy-900);
    font-weight: 800;
  }

  .mobile-menu a:hover {
    background: var(--teal-100);
  }

  .mobile-menu .mobile-cta {
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 55%, #22d3ee 100%);
    box-shadow: 0 12px 28px rgba(37, 99, 235, .2);
    margin-top: 8px;
  }

  .hero-layout,
  .process-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .process-copy,
  .faq-intro {
    position: static;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

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

@media (max-width: 820px) {
  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 48px) 0 68px;
  }

  .container {
    width: min(100% - 30px, var(--container));
  }

  .brand-copy small {
    display: none;
  }

  .hero-copy p {
    font-size: 1rem;
  }

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

  .hero-metrics div {
    padding: 16px;
  }

  .hero-actions,
  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .panel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .dash-summary {
    grid-template-columns: 1fr;
  }

  .score-ring {
    width: 104px;
    height: 104px;
  }

  .dash-kpis {
    grid-template-columns: 1fr;
  }

  .network-chart {
    height: 96px;
  }

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

  .service-card {
    padding: 20px;
    border-radius: 20px;
  }

  .service-icon,
  .why-card i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .about-badges {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }

  .timeline span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: .82rem;
  }

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

  .contact-form {
    padding: 22px;
    border-radius: 22px;
  }

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

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

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 470px) {
  h1 {
    font-size: clamp(2.25rem, 14vw, 3.35rem);
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

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

  .trust-grid {
    justify-content: flex-start;
  }

  .faq-question {
    min-height: 62px;
    padding: 17px 18px;
    font-size: .94rem;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }

  .contact-card {
    padding: 14px;
  }

  .contact-card strong {
    font-size: .88rem;
    word-break: break-word;
  }
}

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

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

/* Ajustes de responsividade progressiva
   Mantém o desktop preservado e compacta blocos críticos em telas menores. */
@media (max-width: 1040px) {
  .hero-layout,
  .process-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    gap: clamp(30px, 5.5vw, 52px);
  }

  .hero-copy,
  .process-copy,
  .faq-intro,
  .contact-info {
    max-width: 760px;
  }

  .hero-panel {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  .section {
    padding: clamp(52px, 10vw, 72px) 0;
  }

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

  .split-heading,
  .center-heading,
  .process-layout {
    text-align: center;
  }

  .section-kicker,
  .center-heading .section-kicker,
  .hero-copy .eyebrow {
    justify-content: center;
  }

  h1 {
    font-size: clamp(2.05rem, 9.5vw, 3.15rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.65rem, 7.2vw, 2.45rem);
    line-height: 1.12;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 34px) 0 54px;
  }

  .hero-layout {
    gap: 30px;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-copy p {
    max-width: 58ch;
    margin: 16px auto 0;
    font-size: .96rem;
  }

  .hero-actions,
  .about-actions {
    max-width: 420px;
    margin-inline: auto;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-width: 520px;
    margin: 26px auto 0;
  }

  .hero-metrics div {
    min-height: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-radius: 16px;
    text-align: center;
  }

  .hero-metrics strong {
    font-size: clamp(1rem, 4.8vw, 1.28rem);
  }

  .hero-metrics span {
    margin-top: 6px;
    font-size: .62rem;
    line-height: 1.25;
    letter-spacing: .05em;
  }

  .hero-panel {
    width: min(100%, 560px);
    padding: 14px;
    border-radius: 22px;
  }

  .panel-top {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .panel-logo {
    gap: 10px;
  }

  .panel-logo img {
    width: 48px;
    height: 48px;
  }

  .panel-logo strong {
    font-size: .98rem;
  }

  .panel-logo small {
    font-size: .64rem;
  }

  .status-pill {
    padding: 6px 8px;
    font-size: .66rem;
    white-space: normal;
    text-align: left;
  }

  .main-dashboard {
    padding: 14px;
    border-radius: 20px;
  }

  .dash-head {
    align-items: center;
  }

  .dash-head span {
    font-size: .9rem;
    line-height: 1.25;
  }

  .dash-head small {
    font-size: .62rem;
  }

  .dash-status {
    padding: 6px 8px;
    font-size: .68rem;
  }

  .dash-summary {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
  }

  .score-ring {
    width: 92px;
    height: 92px;
  }

  .score-ring strong {
    font-size: 1.2rem;
  }

  .dash-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .dash-kpis div {
    min-height: 58px;
    padding: 8px;
  }

  .dash-kpis small {
    font-size: .58rem;
  }

  .network-chart {
    height: 70px;
    margin-bottom: 10px;
  }

  .monitor-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .monitor-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px;
  }

  .monitor-item span {
    gap: 6px;
    font-size: .64rem;
    line-height: 1.25;
  }

  .monitor-item strong {
    font-size: .65rem;
  }

  .panel-services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .panel-services div {
    min-height: auto;
    flex-direction: column;
    gap: 6px;
    padding: 10px 6px;
    text-align: center;
  }

  .panel-services i {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .panel-services span {
    font-size: .68rem;
    line-height: 1.2;
  }

  .trust-strip {
    padding: 16px 0;
  }

  .trust-grid {
    justify-content: center;
    gap: 8px;
  }

  .trust-grid span {
    min-height: 30px;
    padding: 0 10px;
    font-size: .7rem;
  }

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

  .service-card {
    padding: 18px;
    border-radius: 20px;
  }

  .service-icon,
  .why-card i {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .service-card p {
    margin-bottom: 12px;
    font-size: .86rem;
  }

  .service-card ul {
    gap: 6px;
    margin-bottom: 14px;
  }

  .service-card li {
    font-size: .78rem;
  }

  .text-link {
    font-size: .8rem;
  }

  .process-copy p {
    max-width: 58ch;
    margin: 16px auto 0;
    font-size: .94rem;
  }

  .process-note {
    max-width: 560px;
    margin: 20px auto 0;
    padding: 14px;
    text-align: left;
  }

  .timeline {
    grid-template-columns: repeat(5, minmax(255px, 1fr));
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 10px;
    margin-inline: -2px;
    -webkit-overflow-scrolling: touch;
  }

  .timeline article {
    min-width: 255px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    text-align: left;
    scroll-snap-align: center;
  }

  .timeline span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: .78rem;
  }

  .timeline h3 {
    font-size: .98rem;
  }

  .timeline p {
    font-size: .82rem;
  }

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

  .why-card {
    padding: 20px 16px;
    border-radius: 20px;
    text-align: left;
  }

  .why-card h3 {
    font-size: .95rem;
  }

  .why-card p {
    font-size: .82rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 52px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-kicker,
  .eyebrow {
    gap: 8px;
    font-size: .68rem;
    letter-spacing: .12em;
  }

  .section-kicker::before,
  .eyebrow span {
    width: 22px;
  }

  h1 {
    font-size: clamp(1.95rem, 10.8vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .hero {
    padding: calc(var(--header-height) + 26px) 0 44px;
  }

  .hero-layout {
    gap: 24px;
  }

  .hero-copy p,
  .split-heading p,
  .center-heading p {
    font-size: .9rem;
  }

  .hero-actions,
  .about-actions {
    gap: 10px;
  }

  .btn {
    min-height: 44px;
    padding: 11px 15px;
    border-radius: 13px;
    font-size: .86rem;
  }

  .hero-metrics {
    gap: 7px;
    margin-top: 20px;
  }

  .hero-metrics div {
    min-height: 68px;
    padding: 10px 5px;
    border-radius: 14px;
  }

  .hero-metrics span {
    font-size: .55rem;
    letter-spacing: .035em;
  }

  .panel-logo img {
    width: 44px;
    height: 44px;
  }

  .status-pill {
    max-width: 170px;
  }

  .dash-head {
    gap: 8px;
  }

  .dash-summary {
    grid-template-columns: 84px minmax(0, 1fr);
    margin-bottom: 10px;
  }

  .score-ring {
    width: 80px;
    height: 80px;
  }

  .score-ring strong {
    font-size: 1.06rem;
  }

  .score-ring small {
    font-size: .52rem;
  }

  .dash-kpis div {
    min-height: 52px;
    padding: 7px 6px;
    border-radius: 12px;
  }

  .dash-kpis small {
    font-size: .52rem;
  }

  .dash-kpis strong {
    margin-top: 5px;
    font-size: .82rem;
  }

  .network-chart {
    display: none;
  }

  .monitor-item {
    padding: 7px 6px;
    border-radius: 12px;
  }

  .monitor-item span {
    gap: 5px;
    font-size: .56rem;
  }

  .monitor-item strong {
    font-size: .58rem;
  }

  .panel-services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .panel-services div {
    padding: 9px 4px;
  }

  .panel-services span {
    font-size: .56rem;
  }

  .services-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 84vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 12px;
    margin-inline: -2px;
    -webkit-overflow-scrolling: touch;
  }

  .service-card {
    min-height: auto;
    scroll-snap-align: center;
  }

  .process-layout {
    gap: 24px;
  }

  .process-note {
    font-size: .88rem;
  }

  .timeline {
    grid-auto-flow: column;
    grid-auto-columns: minmax(258px, 86vw);
    grid-template-columns: none;
  }

  .timeline article {
    min-width: 0;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .why-card {
    padding: 16px 12px;
    border-radius: 18px;
  }

  .why-card i {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .why-card h3 {
    font-size: .85rem;
    line-height: 1.22;
  }

  .why-card p {
    font-size: .75rem;
    line-height: 1.45;
  }

  .services-grid::-webkit-scrollbar,
  .timeline::-webkit-scrollbar {
    height: 6px;
  }

  .services-grid::-webkit-scrollbar-thumb,
  .timeline::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(24, 201, 183, .35);
  }
}

@media (max-width: 380px) {
  .dash-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .dash-status {
    align-self: flex-start;
  }

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

  .monitor-item {
    flex-direction: row;
    align-items: center;
  }

  .why-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 86vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 12px;
    margin-inline: -2px;
    -webkit-overflow-scrolling: touch;
  }

  .why-card {
    scroll-snap-align: center;
  }
}

@media (max-width: 820px) {
  .hero-copy {
    text-align: center;
  }
}

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

  .monitor-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Ajuste específico do rodapé em telas menores
   Reduz a altura no mobile e mantém as informações organizadas. */
@media (max-width: 820px) {
  .site-footer {
    padding: 46px 0 24px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
    align-items: start;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
  }

  .footer-brand img {
    width: 52px;
    height: 52px;
    margin: 0 0 12px;
  }

  .footer-brand p {
    max-width: 360px;
    margin: 0 auto;
    font-size: .88rem;
    line-height: 1.5;
  }

  .footer-socials {
    justify-content: center;
    margin-top: 16px;
  }

  .footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: .95rem;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    text-align: left;
  }

  .site-footer h3 {
    margin-bottom: 12px;
    font-size: .72rem;
    letter-spacing: .11em;
  }

  .site-footer a {
    margin-bottom: 8px;
    font-size: .82rem;
    line-height: 1.25;
  }

  .footer-grid > div:nth-child(4) {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 12px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    background: rgba(255,255,255,.04);
  }

  .footer-grid > div:nth-child(4) h3,
  .footer-grid > div:nth-child(4) .footer-cnpj {
    flex-basis: 100%;
    text-align: center;
  }

  .footer-grid > div:nth-child(4) h3 {
    margin-bottom: 2px;
  }

  .footer-grid > div:nth-child(4) a {
    margin: 0;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    font-size: .78rem;
  }

  .footer-cnpj {
    margin: 4px 0 0;
    font-size: .76rem;
    line-height: 1.45;
  }

  .footer-bottom {
    align-items: center;
    margin-top: 26px;
    padding-top: 18px;
    text-align: center;
    font-size: .76rem;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: 36px 0 22px;
  }

  .footer-grid {
    gap: 24px 14px;
  }

  .footer-brand img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }

  .footer-brand p {
    max-width: 270px;
    font-size: .82rem;
    line-height: 1.45;
  }

  .footer-socials {
    margin-top: 12px;
  }

  .footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .site-footer h3 {
    margin-bottom: 10px;
    font-size: .66rem;
    letter-spacing: .105em;
  }

  .site-footer a {
    margin-bottom: 7px;
    font-size: .74rem;
  }

  .footer-grid > div:nth-child(4) {
    padding: 14px 12px;
    border-radius: 18px;
  }

  .footer-grid > div:nth-child(4) a {
    padding: 7px 10px;
    font-size: .72rem;
  }

  .footer-cnpj {
    font-size: .7rem;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 16px;
    gap: 6px;
    font-size: .7rem;
  }

  .footer-bottom span:last-child {
    display: none;
  }
}

@media (max-width: 360px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    text-align: center;
  }
}

/* Ajuste final do rodapé para smartphone:
   oculta navegação/serviços/redes sociais e mantém contato centralizado. */
@media (max-width: 700px) {
  .site-footer {
    padding: 34px 0 28px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .footer-brand {
    grid-column: auto;
    max-width: 320px;
    display: grid;
    justify-items: center;
  }

  .footer-brand img {
    width: 52px;
    height: 52px;
    margin: 0 0 12px;
  }

  .footer-brand p {
    max-width: 310px;
    margin: 0 auto;
    font-size: .86rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, .68);
  }

  .footer-socials,
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    display: none !important;
  }

  .footer-grid > div:nth-child(4) {
    grid-column: auto;
    width: 100%;
    max-width: 320px;
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
  }

  .footer-grid > div:nth-child(4) h3 {
    margin: 0 0 2px;
    width: 100%;
    text-align: center;
    font-size: .74rem;
    letter-spacing: .115em;
  }

  .footer-grid > div:nth-child(4) a {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, .66);
    font-size: .78rem;
    line-height: 1.35;
  }

  .footer-grid > div:nth-child(4) .footer-cnpj {
    margin: 4px 0 0;
    width: 100%;
    text-align: center;
    font-size: .72rem;
    line-height: 1.4;
  }

  .footer-bottom {
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    padding-top: 16px;
    text-align: center;
    font-size: .7rem;
    line-height: 1.35;
  }

  .footer-bottom span:first-child {
    max-width: 280px;
  }
}

@media (max-width: 380px) {
  .site-footer {
    padding-top: 30px;
  }

  .footer-brand p,
  .footer-grid > div:nth-child(4) {
    max-width: 280px;
  }

  .footer-bottom span:first-child {
    max-width: 240px;
  }
}


/* Rodapé mobile: contato em botões alinhados lado a lado
   Mantém Navegação/Serviços ocultos no smartphone e deixa WhatsApp, E-mail e Instagram clicáveis em uma linha. */
@media (max-width: 700px) {
  .footer-contact,
  .footer-grid > div:nth-child(4) {
    grid-column: auto;
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
  }

  .footer-contact h3,
  .footer-grid > div:nth-child(4) h3,
  .footer-contact .footer-cnpj,
  .footer-grid > div:nth-child(4) .footer-cnpj {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
  }

  .footer-contact h3,
  .footer-grid > div:nth-child(4) h3 {
    margin: 0 0 4px;
    font-size: .74rem;
    letter-spacing: .115em;
  }

  .footer-contact a,
  .footer-grid > div:nth-child(4) a {
    flex: 1 1 0;
    min-width: 0;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 13px;
    background: rgba(255, 255, 255, .045);
    box-shadow: 0 8px 22px rgba(2, 6, 23, .18);
    color: rgba(255, 255, 255, .76);
    font-size: .74rem;
    line-height: 1;
    white-space: nowrap;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
  }

  .footer-contact a:hover,
  .footer-contact a:focus-visible,
  .footer-grid > div:nth-child(4) a:hover,
  .footer-grid > div:nth-child(4) a:focus-visible {
    transform: translateY(-1px);
    color: #b9fff3;
    border-color: rgba(185, 255, 243, .28);
    background: rgba(255, 255, 255, .075);
  }

  .footer-contact .footer-cnpj,
  .footer-grid > div:nth-child(4) .footer-cnpj {
    margin: 6px 0 0;
    font-size: .72rem;
    line-height: 1.4;
  }
}

@media (max-width: 380px) {
  .footer-contact,
  .footer-grid > div:nth-child(4) {
    max-width: 288px;
    gap: 6px;
  }

  .footer-contact a,
  .footer-grid > div:nth-child(4) a {
    height: 36px;
    padding: 0 7px;
    border-radius: 11px;
    font-size: .68rem;
  }
}
