:root {
  --navy: #0b1d33;
  --navy-2: #08243e;
  --navy-3: #0f2f4e;
  --teal: #18b5a6;
  --teal-dark: #079d91;
  --green: #24c262;
  --gold: #fac542;
  --ink: #101828;
  --muted: #667085;
  --line: #dde3ea;
  --soft: #f2f4f7;
  --soft-2: #eaf4f5;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(11, 29, 51, 0.14);
  --shadow-soft: 0 8px 22px rgba(11, 29, 51, 0.1);
  --radius: 8px;
  --shell-radius: 18px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(24, 181, 166, 0.12), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(250, 197, 66, 0.13), transparent 24%),
    linear-gradient(135deg, #eef2f6 0%, #ffffff 42%, #eef3f5 100%);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 8vw, 5.9rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 850;
}

h3 {
  font-size: 1.08rem;
  font-weight: 850;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(250, 197, 66, 0.95);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 4px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: var(--scroll-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  box-shadow: 0 0 18px rgba(24, 181, 166, 0.6);
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 22px auto 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(221, 227, 234, 0.9);
  border-radius: var(--shell-radius);
  box-shadow: 0 26px 70px rgba(11, 29, 51, 0.18);
}

.container {
  width: min(1010px, calc(100% - 52px));
  margin: 0 auto;
}

.section {
  padding: 62px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--teal);
}

.brand-mark svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 750;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--teal-dark);
}

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

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  gap: 4px;
  padding: 11px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  padding: 0.78rem 1.22rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 13px 25px rgba(24, 181, 166, 0.28);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.28) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 480ms ease;
}

.btn-primary span {
  position: relative;
  transition: transform 180ms ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #22c8b8, #078c83);
  box-shadow: 0 16px 32px rgba(24, 181, 166, 0.36), 0 0 24px rgba(24, 181, 166, 0.16);
}

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

.btn-primary:hover span {
  transform: translateX(4px);
}

.btn-secondary,
.btn-outline {
  color: var(--navy);
  background: var(--white);
  border-color: #bfc9d6;
  box-shadow: 0 7px 16px rgba(11, 29, 51, 0.08);
}

.btn-secondary::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 55%, var(--green) 0 3px, transparent 4px),
    linear-gradient(45deg, transparent 42%, var(--green) 42% 56%, transparent 56%);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--teal);
}

.nav-cta,
.nav-whatsapp {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  padding: 58px 0 52px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 24% 80%, rgba(24, 181, 166, 0.24), transparent 32%),
    radial-gradient(circle at 88% 15%, rgba(24, 181, 166, 0.16), transparent 25%),
    linear-gradient(135deg, #071a2f 0%, #0b1d33 56%, #062135 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  opacity: 0.36;
  background-image:
    radial-gradient(circle, rgba(24, 181, 166, 0.65) 1px, transparent 1.4px),
    linear-gradient(90deg, rgba(24, 181, 166, 0.08), transparent);
  background-size: 16px 16px, 100% 100%;
  transform: perspective(500px) rotateX(58deg) translateY(35px);
  transform-origin: bottom;
  animation: gridDrift 18s linear infinite;
}

.circuit-lines {
  position: absolute;
  top: 62px;
  right: -26px;
  width: 320px;
  height: 190px;
  opacity: 0.72;
  pointer-events: none;
}

.circuit-lines span {
  position: absolute;
  right: 0;
  width: 260px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0 15%, rgba(24, 181, 166, 0.32) 15% 34%, var(--teal) 48%, rgba(24, 181, 166, 0.32) 66% 100%);
  background-size: 220% 100%;
  animation: circuitPulse 4.6s linear infinite;
}

.circuit-lines span::before,
.circuit-lines span::after {
  content: "";
  position: absolute;
  border: 1px solid var(--teal);
  border-right: 0;
  border-bottom: 0;
}

.circuit-lines span::after {
  width: 7px;
  height: 7px;
  right: 42px;
  top: -3px;
  background: var(--teal);
  border: 0;
  border-radius: 50%;
  animation: nodeBlink 2.8s ease-in-out infinite;
}

.circuit-lines span:nth-child(1) {
  top: 10px;
}

.circuit-lines span:nth-child(1)::before {
  width: 38px;
  height: 34px;
  left: 52px;
  top: -33px;
}

.circuit-lines span:nth-child(2) {
  top: 58px;
  width: 300px;
  animation-delay: -1.2s;
}

.circuit-lines span:nth-child(2)::before {
  width: 62px;
  height: 28px;
  left: 78px;
  top: -27px;
}

.circuit-lines span:nth-child(3) {
  top: 112px;
  animation-delay: -2.1s;
}

.circuit-lines span:nth-child(3)::before {
  width: 42px;
  height: 30px;
  left: 44px;
  top: 1px;
  transform: scaleY(-1);
}

.circuit-lines span:nth-child(4) {
  top: 158px;
  width: 285px;
  animation-delay: -3s;
}

.floating-badges {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-badges span {
  position: absolute;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(24, 181, 166, 0.22);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(24, 181, 166, 0.12);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 850;
  animation: badgeFloat 7.5s ease-in-out infinite;
}

.floating-badges span:nth-child(1) {
  top: 18%;
  left: 8%;
}

.floating-badges span:nth-child(2) {
  top: 77%;
  right: 9%;
  left: auto;
  animation-delay: -2.4s;
}

.floating-badges span:nth-child(3) {
  top: 22%;
  right: 11%;
  animation-delay: -1.4s;
}

.floating-badges span:nth-child(4) {
  right: 24%;
  bottom: 16%;
  animation-delay: -3.6s;
}

.circuit-lines span:nth-child(4)::before {
  width: 76px;
  height: 36px;
  left: 92px;
  top: -35px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 70px;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.founder-line {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 850;
}

.tagline {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 850;
  line-height: 1.16;
}

.tagline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: var(--teal);
  border-radius: 999px;
}

.hero-text {
  max-width: 670px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
}

.eyebrow {
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 18px;
}

.trust-line {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-stats span {
  min-width: 112px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 750;
}

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

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

.portrait-card {
  position: relative;
  width: min(100%, 290px);
  overflow: hidden;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0 42%, rgba(24, 181, 166, 0.26) 49%, rgba(255, 255, 255, 0.72) 50%, rgba(24, 181, 166, 0.22) 51%, transparent 58% 100%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateY(-100%);
  animation: portraitScan 6s ease-in-out infinite;
  pointer-events: none;
}

.portrait-photo {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef6fb 0%, #f7fafc 100%);
}

.portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 28%;
}

.portrait-label {
  position: relative;
  padding: 16px 18px 18px;
  text-align: center;
  background: var(--white);
}

.portrait-label strong,
.portrait-label span {
  display: block;
}

.portrait-label strong {
  color: var(--navy);
  font-size: 1.36rem;
  line-height: 1.08;
  font-weight: 900;
}

.portrait-label span {
  margin-top: 6px;
  color: var(--teal-dark);
  font-weight: 850;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 8px 0 16px;
  padding-bottom: 13px;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--teal);
  border-radius: 999px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
}

.problem-section,
.testimonials-section,
.process-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

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

.card {
  border: 1px solid rgba(221, 227, 234, 0.96);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.problem-card,
.service-card,
.pricing-card,
.testimonial-card {
  padding: 22px;
}

.problem-card {
  min-height: 158px;
}

.problem-card h3 {
  margin-top: 18px;
  font-size: 0.98rem;
}

.card-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(24, 181, 166, 0.25), 0 0 0 0 rgba(24, 181, 166, 0.32);
  transition: box-shadow 220ms ease, filter 220ms ease, transform 220ms ease;
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
}

.icon-laptop::before {
  width: 24px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-laptop::after {
  width: 30px;
  height: 2px;
  bottom: 12px;
  background: currentColor;
  border-radius: 999px;
}

.icon-shield::before {
  width: 22px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 14px 14px;
  clip-path: polygon(50% 0, 100% 16%, 92% 70%, 50% 100%, 8% 70%, 0 16%);
}

.icon-shield::after {
  width: 9px;
  height: 15px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(40deg);
}

.icon-cloud::before {
  width: 28px;
  height: 15px;
  bottom: 14px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 14px 14px;
}

.icon-cloud::after {
  width: 24px;
  height: 16px;
  top: 14px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.icon-backup::before {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-left-color: transparent;
}

.icon-backup::after {
  top: 13px;
  right: 13px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(35deg);
}

.icon-network::before {
  width: 26px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-network::after {
  width: 30px;
  height: 12px;
  bottom: 9px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.icon-systems::before {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-systems::after {
  width: 30px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -8px 0 currentColor, 0 8px 0 currentColor;
}

.service-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card:hover .card-icon,
.problem-card:hover .card-icon {
  transform: translateY(-1px) scale(1.04);
  filter: saturate(1.18);
  box-shadow: 0 12px 24px rgba(24, 181, 166, 0.28), 0 0 0 9px rgba(24, 181, 166, 0.1), 0 0 28px rgba(24, 181, 166, 0.28);
}

.service-card h3,
.service-card p {
  grid-column: 2;
}

.service-card .card-icon {
  grid-row: 1 / span 2;
}

.service-card p,
.pricing-card p,
.testimonial-note,
.pricing-note {
  color: var(--muted);
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
}

.service-card h3,
.pricing-card h3 {
  margin-bottom: 8px;
}

.offer-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(11, 29, 51, 0.96), rgba(9, 88, 92, 0.9)),
    var(--navy);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.62fr) minmax(220px, 0.58fr);
  align-items: center;
  gap: 28px;
}

.offer-section h2,
.offer-section p,
.offer-section .eyebrow {
  color: var(--white);
}

.offer-section h2 {
  margin: 8px 0 16px;
}

.offer-section p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.offer-section .btn {
  margin-top: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.34em;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.95;
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 6px;
  width: 6px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(40deg);
}

.security-dashboard {
  display: grid;
  gap: 12px;
  padding: 20px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(9, 33, 53, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.dashboard-header,
.dashboard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-header {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.dashboard-dot {
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(24, 181, 166, 0.12);
}

.dashboard-row {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 0.86rem;
}

.dashboard-row strong {
  color: #7ff6e9;
  font-size: 0.78rem;
}

.dashboard-row.warning strong {
  color: var(--gold);
}

.readiness-meter {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  justify-self: center;
  position: relative;
  margin: 4px 0;
  color: var(--white);
  background:
    radial-gradient(circle at center, rgba(11, 29, 51, 0.94) 0 54%, transparent 55%),
    conic-gradient(var(--teal) 0 82%, rgba(255, 255, 255, 0.18) 82% 100%);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(24, 181, 166, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.readiness-meter::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.readiness-meter span,
.readiness-meter small {
  position: relative;
  z-index: 1;
}

.readiness-meter span {
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.readiness-meter small {
  margin-top: 42px;
  position: absolute;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}

.featured-card {
  border-color: rgba(250, 197, 66, 0.7);
  box-shadow: 0 18px 42px rgba(11, 29, 51, 0.16);
}

.badge {
  margin: -22px -22px 16px;
  padding: 7px 12px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #f7b824);
  font-size: 0.78rem;
  font-weight: 900;
}

.best-for {
  min-height: 70px;
  font-size: 0.88rem;
}

.pricing-card ul {
  display: grid;
  gap: 9px;
  margin: 7px 0 22px;
  color: var(--ink);
  list-style: none;
  text-align: left;
}

.pricing-card li {
  position: relative;
  padding-left: 23px;
  font-size: 0.88rem;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 13px;
  height: 13px;
  border: 1.5px solid var(--teal-dark);
  border-radius: 50%;
}

.pricing-card li::after {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 4px;
  width: 4px;
  height: 7px;
  border-right: 1.5px solid var(--teal-dark);
  border-bottom: 1.5px solid var(--teal-dark);
  transform: rotate(40deg);
}

.price {
  margin-top: auto;
  color: var(--teal-dark) !important;
  font-size: 1.72rem;
  font-weight: 900;
}

.price span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card .btn {
  width: 100%;
  min-height: 40px;
  margin-top: 8px;
  padding: 0.62rem 1rem;
}

.pricing-note {
  max-width: 820px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 0.9rem;
}

.about-section {
  background: #ffffff;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 52px;
  align-items: start;
}

.about-grid p {
  color: #40566d;
  font-size: 1rem;
}

.values-panel {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f8fafb);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.values-panel h3 {
  margin-bottom: 18px;
}

.compact li {
  color: var(--navy);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(24, 181, 166, 0.22), var(--teal), rgba(24, 181, 166, 0.22), transparent);
  background-size: 220% 100%;
  animation: processFlow 6s linear infinite;
}

.process-list li {
  position: relative;
  z-index: 1;
  min-height: 136px;
  padding: 18px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-weight: 850;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(24, 181, 166, 0.12), 0 12px 22px rgba(24, 181, 166, 0.2);
}

.testimonial-card {
  margin: 0;
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 750;
}

.testimonial-card h3 {
  margin-bottom: 10px;
}

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

.testimonial-card figcaption {
  color: var(--muted);
  font-weight: 800;
}

.testimonial-note {
  margin-top: 20px;
  text-align: center;
}

.faq-section {
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(820px, 100%);
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8fafb);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--navy);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 850;
}

.faq-question span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef7f8 100%);
  color: var(--ink);
}

.contact-section h2,
.contact-section .eyebrow {
  color: var(--ink);
}

.contact-copy p {
  color: #40566d;
  font-size: 1rem;
}

.contact-details {
  display: grid;
  gap: 11px;
  margin: 24px 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-details p {
  position: relative;
  margin: 0;
  padding-left: 28px;
}

.contact-details p::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.contact-details a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(24, 181, 166, 0.46);
}

.contact-graphic {
  position: relative;
  min-height: 150px;
  margin: 18px 0 24px;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(24, 181, 166, 0.12), rgba(250, 197, 66, 0.12));
  border: 1px solid rgba(24, 181, 166, 0.18);
  border-radius: var(--radius);
}

.mini-laptop {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: 180px;
  height: 104px;
  border: 7px solid var(--navy-3);
  border-bottom-width: 14px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f9fbfd, #dfeff1);
  box-shadow: 0 14px 30px rgba(11, 29, 51, 0.16);
}

.mini-laptop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -25px;
  width: 220px;
  height: 10px;
  transform: translateX(-50%);
  background: var(--navy-3);
  border-radius: 0 0 12px 12px;
}

.mini-shield {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 54px;
  height: 64px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  clip-path: polygon(50% 0, 100% 18%, 90% 72%, 50% 100%, 10% 72%, 0 18%);
}

.mini-shield::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 14px;
  height: 26px;
  border-right: 5px solid var(--white);
  border-bottom: 5px solid var(--white);
  transform: rotate(40deg);
}

.mini-plant {
  position: absolute;
  left: 30px;
  bottom: 28px;
  width: 38px;
  height: 40px;
  border-bottom: 18px solid var(--navy-3);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}

.mini-plant::before,
.mini-plant::after {
  content: "";
  position: absolute;
  bottom: 18px;
  width: 38px;
  height: 18px;
  background: var(--teal);
  border-radius: 100% 0;
}

.mini-plant::before {
  right: 14px;
  transform: rotate(36deg);
}

.mini-plant::after {
  left: 14px;
  transform: rotate(-36deg) scaleX(-1);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label,
.full-field,
.form-status,
.form-actions {
  grid-column: span 2;
}

.contact-form label:nth-of-type(1),
.contact-form label:nth-of-type(2),
.contact-form label:nth-of-type(3),
.contact-form label:nth-of-type(4),
.contact-form label:nth-of-type(5) {
  grid-column: span 1;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input.invalid,
.contact-form textarea.invalid {
  border-color: #b42318;
  background: #fff7f6;
}

.error-message {
  min-height: 1.15rem;
  color: #b42318;
  font-size: 0.84rem;
  font-weight: 750;
}

.form-status {
  display: none;
  padding: 13px 14px;
  border-radius: var(--radius);
  font-weight: 850;
}

.form-status.success {
  display: block;
  color: #073b32;
  background: #dff9f3;
  border: 1px solid #9de7d9;
}

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

.site-footer {
  padding: 36px 0 24px;
  color: #dbe6ec;
  background: var(--navy);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.site-footer .brand strong,
.site-footer nav a {
  color: var(--white);
}

.site-footer .brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer p {
  margin: 12px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: flex-start;
}

.site-footer nav a {
  font-weight: 800;
}

.copyright {
  width: min(1010px, calc(100% - 52px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.56);
}

.mobile-cta-bar {
  display: none;
}

.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 24px;
}

.whatsapp-modal.open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 24, 43, 0.62);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.modal-panel h2 {
  margin: 6px 0 18px;
  font-size: 1.45rem;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  color: var(--navy);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
}

.whatsapp-options {
  display: grid;
  gap: 10px;
}

.whatsapp-options button {
  min-height: 52px;
  padding: 13px 15px;
  color: var(--navy);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  font-weight: 850;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.whatsapp-options button:hover {
  transform: translateY(-2px);
  background: #eefaf8;
  border-color: var(--teal);
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 96px, 0 0;
  }
}

@keyframes circuitPulse {
  from {
    background-position: 120% 0;
    filter: drop-shadow(0 0 0 rgba(24, 181, 166, 0));
  }

  50% {
    filter: drop-shadow(0 0 8px rgba(24, 181, 166, 0.8));
  }

  to {
    background-position: -120% 0;
    filter: drop-shadow(0 0 0 rgba(24, 181, 166, 0));
  }
}

@keyframes nodeBlink {
  0%,
  100% {
    opacity: 0.46;
    box-shadow: 0 0 0 rgba(24, 181, 166, 0);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 18px rgba(24, 181, 166, 0.8);
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes portraitScan {
  0%,
  66%,
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }

  72% {
    opacity: 0.82;
  }

  84% {
    opacity: 0;
    transform: translateY(100%);
  }
}

@keyframes processFlow {
  from {
    background-position: 140% 0;
  }

  to {
    background-position: -140% 0;
  }
}

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

@media (max-width: 1030px) {
  .site-shell {
    width: min(100% - 22px, 1120px);
    margin-top: 12px;
  }

  .nav-panel {
    position: fixed;
    inset: calc(var(--header-height) + 14px) 22px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

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

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    display: flex;
    min-height: 46px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-links a.active,
  .nav-links a:hover {
    color: var(--teal);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta,
  .nav-whatsapp {
    width: 100%;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-grid,
  .offer-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual {
    min-height: 330px;
    place-items: start center;
  }

  .security-dashboard {
    max-width: 420px;
  }

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

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

  .process-list::before {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .site-shell {
    width: min(100% - 16px, 1120px);
    margin: 8px auto 24px;
    border-radius: 22px;
  }

  .container {
    width: min(100% - 28px, 1010px);
  }

  .section {
    padding: 50px 0;
  }

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

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

  .brand strong {
    font-size: 1.28rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 42px;
  }

  .circuit-lines {
    display: none;
  }

  .floating-badges {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.2rem);
  }

  .founder-line {
    font-size: 1.18rem;
  }

  .tagline {
    font-size: 1.42rem;
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .form-actions .btn,
  .contact-copy .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats span {
    min-width: 0;
    padding: 10px;
  }

  .portrait-card {
    width: min(100%, 292px);
  }

  .four-grid,
  .service-grid,
  .pricing-grid,
  .testimonial-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 18px;
  }

  .contact-form,
  .contact-form label:nth-of-type(1),
  .contact-form label:nth-of-type(2),
  .contact-form label:nth-of-type(3),
  .contact-form label:nth-of-type(4),
  .contact-form label:nth-of-type(5) {
    grid-template-columns: 1fr;
    grid-column: span 1;
  }

  .contact-form label,
  .full-field,
  .form-status,
  .form-actions {
    grid-column: span 1;
  }

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

  .site-footer {
    padding-bottom: 104px;
  }

  .mobile-cta-bar {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(11, 29, 51, 0.2);
    backdrop-filter: blur(14px);
  }

  .mobile-cta-bar .btn {
    min-height: 44px;
    padding: 0.68rem 0.7rem;
    font-size: 0.82rem;
  }

  .mini-laptop {
    right: 18px;
    width: 150px;
  }
}
