:root {
  --brand-cyan: #03bbfb;
  --brand-blue: #0472f6;
  --brand-green: #39a935;
  --brand-green-dark: #237d32;
  --gradient-brand: linear-gradient(110deg, #03bbfb 0%, #0472f6 42%, #39a935 100%);
  --ink: #202327;
  --ink-soft: #41464b;
  --muted: #68717c;
  --paper: #ffffff;
  --surface: #f6f8fb;
  --surface-strong: #eef3f8;
  --navy: #07101f;
  --line: #e1e7ee;
  --line-strong: #cdd7e3;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 24px 70px rgba(32, 35, 39, 0.12);
  --shadow-soft: 0 12px 34px rgba(32, 35, 39, 0.08);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --site-font: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(3, 187, 251, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 4%, rgba(57, 169, 53, 0.1), transparent 26rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--site-font);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(3, 187, 251, 0.22);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

.hero .container {
  width: min(100% - 120px, 1520px);
}

.site-header,
.central-header {
  position: fixed;
  z-index: 20;
  inset: 18px 20px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(3, 12, 24, 0.22);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 60px rgba(3, 7, 13, 0.22);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius-md);
}

.brand img {
  width: 214px;
  height: 48px;
  object-fit: contain;
  padding: 4px 8px;
  border-radius: var(--radius-md);
  background: #fff;
}

.site-header .brand img {
  width: 258px;
  height: 58px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.44));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-nav a {
  transition:
    color 180ms var(--ease-out),
    transform 160ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.central-header {
  border-color: rgba(205, 215, 227, 0.88);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 60px rgba(32, 35, 39, 0.12);
}

.central-link,
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy), #0a3150);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(57, 169, 53, 0.26) inset;
}

.live-badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-cyan);
  box-shadow: 0 0 18px rgba(3, 187, 251, 0.8);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: max(760px, 100dvh);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 122px 0 54px;
  background: var(--navy);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-media {
  --hero-media-scroll: 0px;
  --hero-media-mouse-x: 0px;
  --hero-media-mouse-y: 0px;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.28) contrast(1.12) brightness(1.16);
  transform:
    translate3d(
      calc(var(--hero-media-mouse-x) * 1px),
      calc((var(--hero-media-scroll) + var(--hero-media-mouse-y)) * 1px),
      0
    )
    scale(1.035);
  transform-origin: center center;
  transition: transform 420ms var(--ease-out);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 0% 52%, rgba(1, 5, 12, 0.98) 0%, rgba(1, 5, 12, 0.9) 18%, rgba(1, 5, 12, 0.38) 38%, transparent 58%),
    radial-gradient(circle at 87% 4%, rgba(255, 255, 255, 0.48), transparent 16rem),
    radial-gradient(circle at 94% 93%, rgba(2, 185, 255, 0.18), transparent 20rem),
    linear-gradient(90deg, rgba(2, 10, 20, 1) 0%, rgba(2, 10, 20, 0.9) 18%, rgba(2, 10, 20, 0.48) 36%, rgba(2, 10, 20, 0.16) 56%, rgba(2, 10, 20, 0.02) 80%),
    linear-gradient(0deg, rgba(2, 8, 16, 0.38) 0%, transparent 32%);
  pointer-events: none;
}

.hero-leaves {
  --leaf-scroll: 0px;
  --leaf-mouse-x: 0px;
  --leaf-mouse-y: 0px;
  position: absolute;
  inset: -3% -3% -4%;
  z-index: 1;
  width: 106%;
  height: 108%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  opacity: 0.78;
  filter: saturate(1.1) contrast(1.05);
  transform:
    translate3d(
      calc(var(--leaf-mouse-x) * 1px),
      calc((var(--leaf-scroll) + var(--leaf-mouse-y)) * 1px),
      0
    )
    scale(1.015);
  transform-origin: center center;
  transition: transform 260ms var(--ease-out);
  will-change: transform;
}

.hero-circuit {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  grid-template-rows: 1fr auto;
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
  min-height: calc(max(760px, 100dvh) - 176px);
}

.hero-copy h1,
.section h2,
.central-hero h1 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 520px;
  color: #fff;
  font-family: var(--site-font) !important;
  font-size: clamp(3.25rem, 4.8vw, 5.1rem);
  font-weight: 900 !important;
  line-height: 0.92;
  text-transform: none;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
}

.hero-copy h1 span {
  color: #05a9ff;
  text-shadow: 0 0 36px rgba(3, 187, 251, 0.18);
}

.hero-copy p {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.22;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.hero-kicker {
  max-width: none !important;
  margin: 0 0 34px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.7rem !important;
  font-weight: 850;
  letter-spacing: 0.42em;
  line-height: 1.5 !important;
  text-transform: uppercase;
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 470px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(2, 12, 24, 0.28);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.24);
}

.hero-services article {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 88px;
  padding: 14px 10px;
  color: #fff;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 720;
  line-height: 1.1;
}

.hero-services article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-services svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #19baff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 10px rgba(3, 187, 251, 0.28));
}

.hero-actions,
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-md);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition:
    transform 160ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    background 180ms var(--ease-out);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gradient-brand);
  box-shadow: 0 16px 36px rgba(4, 114, 246, 0.24);
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.hero-whatsapp {
  min-height: 52px;
  min-width: min(100%, 306px);
  gap: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #24d34e 0%, #13c946 52%, #31db5c 100%);
  color: #fff;
  box-shadow:
    0 20px 42px rgba(23, 207, 75, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.32) inset;
  text-transform: none;
  font-size: 0.92rem;
  letter-spacing: 0;
}

.hero-whatsapp span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1;
}

.hero-whatsapp strong {
  font-size: 1.2rem;
}

.hero-client {
  min-height: 52px;
  border-radius: 999px;
  text-transform: none;
}

.btn-disabled,
.is-disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.hero-proof {
  display: grid;
  grid-column: 1 / 2;
  grid-row: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 500px;
  margin: 26px 0 0;
}

.hero-proof div {
  position: relative;
  padding: 0 0 0 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-proof div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 30px;
  height: 30px;
  border: 2px solid #1bbcff;
  border-radius: 11px;
  box-shadow: 0 0 18px rgba(3, 187, 251, 0.24);
}

.hero-proof div::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 13px;
  width: 11px;
  height: 6px;
  border-left: 2px solid #1bbcff;
  border-bottom: 2px solid #1bbcff;
  transform: rotate(-45deg);
}

.hero-proof dt {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.05;
}

.hero-proof dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.12;
}

.hero-signature {
  position: absolute;
  right: clamp(30px, 5vw, 78px);
  bottom: 72px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(1.55rem, 2.75vw, 2.65rem);
  line-height: 0.82;
  text-align: right;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
  transform: rotate(-8deg);
}

.hero-signature span {
  color: #22bfff;
}

.hero-signature::after {
  content: "";
  display: block;
  width: 178px;
  height: 2px;
  margin: 18px 0 0 auto;
  background: #22bfff;
  transform: skewX(-28deg);
}

.monitor-visual,
.assessment-form,
.central-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.feature-list p,
.project-shell p {
  color: var(--muted);
}

.trust-strip {
  display: none;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, var(--navy), #004b7a 48%, #238233);
}

.trust-track {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 70px);
  padding: 18px 20px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 128px) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(3, 187, 251, 0.08), transparent 28rem),
    var(--paper);
}

.section:nth-of-type(even) {
  background:
    radial-gradient(circle at 86% 20%, rgba(57, 169, 53, 0.08), transparent 24rem),
    var(--surface);
}

.section-stack {
  max-width: 760px;
}

.section h2,
.central-hero h1 {
  font-family: var(--site-font) !important;
  font-size: clamp(2.4rem, 5vw, 4.55rem);
  font-weight: 800 !important;
  text-transform: uppercase;
}

.section-stack > p,
.statement-copy p,
.about-grid p,
.central-hero p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.solutions-layout,
.project-shell,
.central-grid {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 7vw, 80px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(3, 187, 251, 0.18), transparent 26rem),
    radial-gradient(circle at 84% 72%, rgba(57, 169, 53, 0.16), transparent 24rem),
    linear-gradient(135deg, #56f604 0%, rgba(190, 251, 3, 0.6) 48%, #13b500 100%);
  isolation: isolate;
}

.process-section::before {
  display: none;
}

.process-section .section-stack {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.process-section .section-stack h2 {
  color: #fff;
  font-size: clamp(2.45rem, 4.7vw, 4.25rem);
}

.process-section .section-stack p {
  margin-inline: auto;
  color: rgba(230, 244, 255, 0.76);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 34px);
  margin-top: clamp(36px, 5.5vw, 36px);
  padding-block: 2px 10px;
}

.process-grid::before {
  display: none;
}

.process-grid.is-visible::before {
  transform: scaleX(1);
}

.process-flow {
  position: absolute;
  inset: -4px 1% auto;
  z-index: 0;
  width: 98%;
  height: 210px;
  overflow: visible;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 700ms var(--ease-out),
    transform 900ms var(--ease-out);
  pointer-events: none;
}

.process-grid.is-visible .process-flow {
  opacity: 1;
  transform: translateY(0);
}

.process-flow-base,
.process-flow-energy {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-flow-base {
  stroke: rgba(3, 187, 251, 0.22);
  stroke-width: 2;
  stroke-dasharray: 8 16;
}

.process-flow-energy {
  stroke: url(#processFlowGradient);
  stroke-width: 5;
  stroke-dasharray: 92 780;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 12px rgba(3, 187, 251, 0.54));
  animation: processEnergy 3.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.process-flow-node {
  fill: #03101e;
  stroke: rgba(57, 169, 53, 0.9);
  stroke-width: 5;
  filter:
    drop-shadow(0 0 10px rgba(57, 169, 53, 0.42))
    drop-shadow(0 0 18px rgba(3, 187, 251, 0.24));
  animation: processNodeGlow 3.4s ease-in-out infinite;
}

.process-flow-node:nth-of-type(2) {
  animation-delay: 0.8s;
}

.process-flow-node:nth-of-type(3) {
  animation-delay: 1.6s;
}

.process-grid article,
.solutions-layout article,
.scenario-list article,
.project-shell article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(32, 35, 39, 0.055);
}

.process-grid article {
  z-index: 1;
  min-height: 218px;
  padding: 0 20px 24px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(3, 187, 251, 0.08), transparent 40%),
    transparent;
  box-shadow: none;
}

.process-grid.is-visible article {
  animation: processStepIn 760ms var(--ease-out) both;
}

.process-grid article:nth-of-type(2),
.process-grid article:nth-of-type(4) {
  padding-top: 54px;
}

.process-grid article:nth-of-type(2) {
  animation-delay: 120ms;
}

.process-grid article:nth-of-type(3) {
  animation-delay: 240ms;
}

.process-grid article:nth-of-type(4) {
  animation-delay: 360ms;
}

.process-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 92px;
  height: 92px;
  background: linear-gradient(135deg, rgba(3, 187, 251, 0.18), rgba(3, 16, 30, 0.98));
  clip-path: polygon(18% 0, 100% 0, 100% 78%, 78% 100%, 0 100%, 0 18%);
  box-shadow:
    0 0 0 1px rgba(3, 187, 251, 0.46),
    0 18px 38px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  pointer-events: none;
}

.process-grid article:nth-of-type(2)::before,
.process-grid article:nth-of-type(4)::before {
  top: 54px;
}

.process-grid article::after {
  content: "";
  position: absolute;
  top: 13px;
  left: calc(50% + 22px);
  z-index: 3;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(3, 187, 251, 0.62);
  border-radius: 50%;
  background: #03101e;
  box-shadow: 0 0 0 5px rgba(3, 187, 251, 0.08);
}

.process-grid article:nth-of-type(2)::after,
.process-grid article:nth-of-type(4)::after {
  top: 67px;
}

.process-card-top {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 28px;
}

.process-grid span {
  position: absolute;
  top: 13px;
  left: calc(50% + 22px);
  z-index: 5;
  display: inline-flex;
  justify-content: center;
  width: 31px;
  color: var(--brand-cyan);
  font-size: 0.66rem;
  font-weight: 950;
  line-height: 31px;
  letter-spacing: 0.04em;
}

.process-grid article:nth-of-type(2) span,
.process-grid article:nth-of-type(4) span {
  top: 13px;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--brand-cyan);
}

.process-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(3, 187, 251, 0.28);
  clip-path: polygon(18% 0, 100% 0, 100% 78%, 78% 100%, 0 100%, 0 18%);
  animation: processPulse 2.8s ease-out infinite;
}

.process-icon svg {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid h3,
.solutions-layout h3,
.scenario-list h3,
.central-grid h2 {
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.15;
  font-size: 1.18rem;
}

.process-grid h3 {
  max-width: 13ch;
  margin-inline: auto;
  color: #fff;
  text-align: center;
  font-size: clamp(1.4rem, 2vw, 1.72rem);
  text-transform: uppercase;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
}

.process-grid p,
.solutions-layout p,
.scenario-list p,
.central-grid p {
  margin: 0;
  color: var(--muted);
}

.process-grid p {
  max-width: 27ch;
  margin-inline: auto;
  color: rgba(230, 244, 255, 0.72);
  text-align: center;
}

.process-grid article:nth-of-type(odd) h3,
.process-grid article:nth-of-type(odd) p {
  text-align: left;
}

.process-grid article:nth-of-type(even) h3,
.process-grid article:nth-of-type(even) p {
  text-align: right;
}

@keyframes processPulse {
  0% {
    opacity: 0.9;
    transform: scale(0.92);
    filter: drop-shadow(0 0 0 rgba(3, 187, 251, 0));
  }

  70% {
    opacity: 0.12;
    transform: scale(1.16);
    filter: drop-shadow(0 0 14px rgba(3, 187, 251, 0.52));
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes processEnergy {
  0% {
    stroke-dashoffset: 840;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  78% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -160;
    opacity: 0;
  }
}

@keyframes processNodeGlow {
  0%,
  100% {
    stroke: rgba(57, 169, 53, 0.82);
    transform: scale(1);
  }

  42% {
    stroke: rgba(3, 187, 251, 1);
    transform: scale(1.08);
  }
}

@keyframes processStepIn {
  0% {
    opacity: 0.24;
    transform: translateY(24px);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.statement-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.22), transparent 22rem),
    linear-gradient(135deg, #0472f6 0%, #0069b5 46%, #004b7a 100%) !important;
  color: #fff;
  isolation: isolate;
}

.statement-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 32, 72, 0.18), transparent 42%),
    radial-gradient(circle at 82% 50%, rgba(57, 169, 53, 0.18), transparent 24rem);
  pointer-events: none;
}

.business-section {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.2), transparent 24rem),
    linear-gradient(135deg, #237d32 0%, #39a935 48%, #0472f6 100%) !important;
  color: #fff;
}

.statement-section h2,
.business-section h2,
.business-section .section-stack > p {
  color: #fff;
}

.statement-brand {
  position: absolute;
  left: clamp(18px, 5vw, 78px);
  bottom: clamp(16px, 4vw, 54px);
  z-index: 0;
  width: min(54vw, 720px);
  transform: translate3d(-3%, 9%, 0);
  opacity: 0.12;
  pointer-events: none;
}

.statement-logo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  filter: drop-shadow(0 28px 80px rgba(0, 0, 0, 0.24));
}

.statement-section .statement-grid {
  position: relative;
  z-index: 2;
}

.statement-grid,
.assessment-grid,
.monitoring-grid,
.audience-grid,
.business-grid,
.app-grid,
.about-grid,
.faq-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.statement-copy {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 30px;
}

.statement-copy p {
  color: #d9e5f4;
}

.solutions-layout {
  grid-template-columns: 1.25fr repeat(2, 1fr);
  align-items: stretch;
}

.photo-solution {
  --solution-border: linear-gradient(135deg, rgba(57, 169, 53, 0.98), rgba(3, 187, 251, 0.78));
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  padding: 28px !important;
  border: 0 !important;
  border-radius: 26px !important;
  background: #020812 !important;
  box-shadow: 0 24px 60px rgba(2, 8, 16, 0.18) !important;
  transform: translateY(18px);
  opacity: 0.78;
  transition:
    transform 760ms var(--ease-out),
    opacity 760ms var(--ease-out),
    box-shadow 760ms var(--ease-out);
}

.photo-solution::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(2, 8, 16, 0.06) 0%, rgba(2, 8, 16, 0.18) 70%, rgba(2, 8, 16, 0.74) 80%, rgba(2, 8, 16, 0.98) 100%),
    linear-gradient(90deg, rgba(2, 8, 16, 0.72) 0%, rgba(2, 8, 16, 0.36) 45%, rgba(2, 8, 16, 0.08) 100%),
    var(--solution-image) center / cover no-repeat;
  transition: transform 900ms var(--ease-out), filter 900ms var(--ease-out);
}

.photo-solution::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 2px;
  border-radius: inherit;
  background: var(--solution-border);
  opacity: 0.72;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 760ms var(--ease-out), filter 760ms var(--ease-out);
}

.photo-solution.is-visible {
  --solution-border: linear-gradient(135deg, rgba(57, 169, 53, 1), rgba(3, 187, 251, 1) 54%, rgba(4, 114, 246, 0.95));
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 30px 80px rgba(2, 8, 16, 0.24) !important;
}

.photo-solution.is-visible::after {
  opacity: 1;
  filter: drop-shadow(0 0 18px rgba(3, 187, 251, 0.28));
}

.photo-solution:hover::before {
  transform: scale(1.055);
  filter: saturate(1.1);
}

.photo-solution h3,
.photo-solution p {
  position: relative;
  z-index: 1;
}

.photo-solution h3 {
  max-width: 13ch;
  margin-bottom: 12px !important;
  color: #fff !important;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem) !important;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
}

.photo-solution p {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.solution-feature,
.solution-feature.compact {
  min-height: 360px;
}

.assessment-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.budget-callout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
  min-height: 320px;
  padding: clamp(26px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(3, 187, 251, 0.28);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 15% 12%, rgba(3, 187, 251, 0.18), transparent 13rem),
    radial-gradient(circle at 88% 88%, rgba(57, 169, 53, 0.17), transparent 16rem),
    #fff;
  box-shadow: 0 24px 60px rgba(2, 16, 28, 0.1);
}

.budget-visual {
  display: grid;
  place-items: center;
  min-height: 210px;
}

.budget-visual svg {
  width: min(100%, 230px);
  overflow: visible;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.budget-sheet {
  fill: rgba(255, 255, 255, 0.88);
  stroke: #0472f6;
  stroke-width: 5;
  filter: drop-shadow(0 16px 20px rgba(4, 114, 246, 0.14));
}

.budget-fold,
.budget-line {
  stroke: #0b557d;
  stroke-width: 5;
}

.budget-line {
  stroke-dasharray: 2 11;
}

.budget-coin {
  fill: #2cab43;
  stroke: #fff;
  stroke-width: 6;
  filter: drop-shadow(0 12px 16px rgba(57, 169, 53, 0.24));
  animation: budgetFloat 3.8s ease-in-out infinite;
}

.budget-mark {
  stroke: #fff;
  stroke-width: 4;
}

.budget-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  letter-spacing: -0.035em;
}

.budget-copy p {
  max-width: 34ch;
  margin: 12px 0 22px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.budget-button {
  width: fit-content;
  gap: 14px;
}

.budget-button strong {
  font-size: 1.15rem;
}

.budget-copy > span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.83rem;
}

@keyframes budgetFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

legend,
label {
  color: var(--ink);
  font-weight: 850;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.property-grid label {
  position: relative;
}

.property-grid input {
  position: absolute;
  opacity: 0;
}

.property-grid span {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.property-grid input:checked + span {
  border-color: rgba(4, 114, 246, 0.75);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(3, 187, 251, 0.14);
}

input,
select {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink);
}

input::placeholder {
  color: #8a95a3;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(3, 187, 251, 0.45);
  outline-offset: 3px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.monitor-visual {
  padding: clamp(8px, 1.2vw, 16px);
  background:
    linear-gradient(145deg, #ffffff, #edf4fb),
    var(--paper);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(8px, 1vw, 12px);
}

.monitor-frame {
  position: relative;
  min-width: 0;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--navy);
}

.monitor-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.monitor-frame figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 36px 14px 14px;
  background: linear-gradient(transparent, rgba(3, 14, 26, 0.9));
  color: #fff;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 700;
  line-height: 1.4;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-list p {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.feature-list strong {
  display: block;
  color: var(--ink);
}

.scenario-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.business-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.business-list li {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(10px);
}

.about-facts span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 22px rgba(32, 35, 39, 0.05);
}

.app-phones {
  position: relative;
  isolation: isolate;
  min-height: 520px;
}

@keyframes phoneFloatBack {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
  50% { transform: translate3d(0, -15px, 0) rotate(-5deg); }
}

@keyframes phoneFloatFront {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(7deg); }
  50% { transform: translate3d(0, -19px, 0) rotate(4deg); }
}

.app-phones::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% 6% 8%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(3, 187, 251, 0.22), rgba(57, 169, 53, 0.12) 42%, transparent 70%);
  filter: blur(20px);
}

.app-phone {
  position: absolute;
  width: min(62%, 280px);
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(2, 16, 28, 0.2));
  will-change: transform;
}

.app-phone-back {
  top: 34px;
  left: 8%;
  z-index: 1;
  transform: rotate(-8deg);
  animation: phoneFloatBack 5.6s ease-in-out infinite;
}

.app-phone-front {
  top: 0;
  right: 5%;
  z-index: 2;
  transform: rotate(7deg);
  animation: phoneFloatFront 5.6s ease-in-out -2.2s infinite;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  min-height: 52px;
  padding: 8px 15px;
  border: 1px solid rgba(2, 16, 28, 0.12);
  border-radius: 13px;
  background: #071521;
  color: #fff;
  box-shadow: 0 12px 24px rgba(2, 16, 28, 0.13);
  text-decoration: none;
}

.store-badge[aria-disabled="true"] {
  cursor: default;
}

.store-badge svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-badge span {
  display: grid;
  line-height: 1.04;
}

.store-badge small {
  font-size: 0.65rem;
  font-weight: 700;
}

.store-badge strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.store-badge:not([aria-disabled="true"]):hover {
  transform: translateY(-3px);
  background: #0d2639;
}

.client-central-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(3, 187, 251, 0.13), transparent 24rem),
    radial-gradient(circle at 86% 84%, rgba(57, 169, 53, 0.12), transparent 28rem),
    #f7fbff;
}

.central-home-intro {
  max-width: 760px;
}

.central-home-intro h2 {
  max-width: 15ch;
}

.central-home-intro p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.central-home-intro .live-badge {
  margin-top: 22px;
}

.central-home-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  grid-auto-rows: 1fr;
}

.central-grid.central-home-grid article {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 28px;
  border-color: rgba(4, 114, 246, 0.14);
  box-shadow: 0 18px 42px rgba(6, 36, 58, 0.08);
}

.central-home-grid h3 {
  color: var(--ink);
}

.central-grid.central-home-grid .btn {
  width: 100%;
  margin-top: auto;
  padding: 12px 16px;
  text-align: center;
  line-height: 1.3;
}

.central-home-note {
  max-width: 84ch;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.location-section {
  background: #f7fbff;
}

/* Ritmo cromático entre as seções: mantém a página clara, mas cria pausas visuais. */
.solutions-section {
  background:
    radial-gradient(circle at 88% 14%, rgba(3, 187, 251, 0.18), transparent 24rem),
    radial-gradient(circle at 12% 88%, rgba(57, 169, 53, 0.12), transparent 25rem),
    linear-gradient(135deg, #f5fcff 0%, #edf8ff 58%, #f4fbf5 100%);
}

.assessment-section {
  background:
    radial-gradient(circle at 8% 82%, rgba(57, 169, 53, 0.18), transparent 28rem),
    radial-gradient(circle at 94% 14%, rgba(3, 187, 251, 0.13), transparent 22rem),
    linear-gradient(135deg, #f1faf3 0%, #e9f7ef 100%);
}

.monitoring-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(4, 114, 246, 0.16), transparent 25rem),
    radial-gradient(circle at 10% 92%, rgba(3, 187, 251, 0.1), transparent 24rem),
    linear-gradient(135deg, #f1f9ff 0%, #eaf4fb 100%);
}

.client-central-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(3, 187, 251, 0.18), transparent 24rem),
    radial-gradient(circle at 86% 84%, rgba(57, 169, 53, 0.16), transparent 28rem),
    linear-gradient(135deg, #edf9ff 0%, #edf8f2 100%);
}

.condo-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f7fbff 0%, #fff 53%, #edf9f1 100%) !important;
}

.condo-section::before {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: -12rem;
  top: -16rem;
  border: 1px solid rgba(4, 114, 246, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(4, 114, 246, 0.025), 0 0 0 12rem rgba(57, 169, 53, 0.025);
  pointer-events: none;
}

.condo-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.condo-copy h2 {
  margin: 14px 0 20px;
  color: #06243a;
  font-size: clamp(2.35rem, 4vw, 4.1rem) !important;
  line-height: 1.1;
}

.condo-copy > p {
  max-width: 52ch;
  margin: 0 0 30px;
}

.condo-app-visual {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 590px;
  min-height: 310px;
  margin: 0 0 22px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 62% 50%, rgba(3, 187, 251, 0.12), transparent 55%), radial-gradient(circle at 30% 75%, rgba(57, 169, 53, 0.09), transparent 48%);
}

.condo-app-visual img {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(6, 36, 58, 0.1));
}

.condo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.condo-eyebrow::before {
  content: "";
  width: 25px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-green);
}

.condo-panel {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(4, 114, 246, 0.12);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 28px 70px rgba(6, 36, 58, 0.12);
}

.condo-photo {
  display: block;
  width: 100%;
  height: clamp(210px, 25vw, 285px);
  margin-bottom: 22px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center 55%;
}

.condo-panel-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.condo-panel-mark {
  display: grid;
  flex: 0 0 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  background: var(--gradient-brand);
}

.condo-panel-mark img {
  display: block;
  width: 88%;
  height: 72%;
  object-fit: contain;
}

.condo-panel-heading strong,
.condo-panel-heading span:last-child {
  display: block;
}

.condo-panel-heading strong {
  color: #06243a;
  font-size: 1.05rem;
}

.condo-panel-heading span:last-child {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.35;
}

.condo-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 20px;
}

.condo-features article {
  min-width: 0;
  padding: 21px;
  border: 1px solid #e3ecf3;
  border-radius: var(--radius-lg);
  background: #f8fbfd;
}

.condo-features svg {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  stroke: var(--brand-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.condo-features article:nth-child(even) svg {
  stroke: var(--brand-green-dark);
}

.condo-features h3 {
  margin: 0 0 5px;
  color: #06243a;
  font-size: 1rem;
  line-height: 1.25;
}

.condo-features p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .condo-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .condo-features {
    grid-template-columns: 1fr;
  }

  .condo-features article {
    padding: 16px;
  }

  .condo-app-visual {
    min-height: 0;
  }

  .condo-copy h2 {
    font-size: clamp(2.1rem, 9vw, 3rem) !important;
  }
}

.app-section {
  background:
    radial-gradient(circle at 14% 14%, rgba(57, 169, 53, 0.15), transparent 23rem),
    radial-gradient(circle at 88% 80%, rgba(3, 187, 251, 0.16), transparent 28rem),
    linear-gradient(135deg, #f0fbf5 0%, #edf8ff 100%);
}

.about-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(4, 114, 246, 0.13), transparent 24rem),
    linear-gradient(135deg, #f4faff 0%, #edf5fa 100%);
}

.projects-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(3, 187, 251, 0.16), transparent 25rem),
    radial-gradient(circle at 92% 84%, rgba(57, 169, 53, 0.12), transparent 26rem),
    linear-gradient(135deg, #f2faff 0%, #eef8f4 100%);
}

.location-section {
  background:
    radial-gradient(circle at 86% 14%, rgba(57, 169, 53, 0.16), transparent 24rem),
    radial-gradient(circle at 10% 88%, rgba(3, 187, 251, 0.14), transparent 25rem),
    linear-gradient(135deg, #eff9f4 0%, #eaf7fb 100%);
}

.faq-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(3, 187, 251, 0.15), transparent 24rem),
    radial-gradient(circle at 8% 86%, rgba(57, 169, 53, 0.12), transparent 25rem),
    linear-gradient(135deg, #f3faff 0%, #eef6f9 100%);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
}

.location-grid .section-stack {
  max-width: 460px;
}

.location-map {
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(3, 187, 251, 0.34);
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 56px rgba(2, 16, 28, 0.12);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 410px;
  border: 0;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

/* Sobre: presença local e operação aparecem antes da lista de capacidades. */
.about-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
}

.about-grid > div:first-child {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.about-grid > div:first-child::after {
  content: "";
  width: min(100%, 180px);
  height: 2px;
  margin-top: auto;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan), var(--brand-green));
}

.about-grid > div:last-child {
  align-self: center;
  max-width: 640px;
}

.about-grid p {
  max-width: 60ch;
  margin: 0;
  color: #385360;
  line-height: 1.72;
}

.about-grid p + p {
  margin-top: 18px;
}

.about-facts {
  gap: 10px;
  margin-top: 34px;
}

.about-facts span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 16px;
  border-color: rgba(4, 114, 246, 0.14);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
  color: #173f52;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.28;
}

.about-facts span:first-child {
  grid-column: 1 / -1;
  min-height: 72px;
  border: 0;
  background: linear-gradient(110deg, #06243a, #075f80 58%, #237d32);
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
}

@media (max-width: 980px) {
  .about-grid > div:first-child {
    min-height: auto;
    gap: 28px;
  }

  .about-grid > div:first-child::after {
    margin-top: 0;
  }
}

.project-shell {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .project-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.project-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  padding: 26px !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: #020812 !important;
  box-shadow: 0 26px 70px rgba(2, 8, 16, 0.16) !important;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(2, 8, 16, 0.04) 0%, rgba(2, 8, 16, 0.18) 34%, rgba(2, 8, 16, 0.72) 72%, rgba(2, 8, 16, 0.96) 100%),
    linear-gradient(90deg, rgba(2, 8, 16, 0.64) 0%, rgba(2, 8, 16, 0.28) 50%, rgba(2, 8, 16, 0.08) 100%),
    var(--project-image) center / cover no-repeat;
  transition: transform 900ms var(--ease-out), filter 900ms var(--ease-out);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(57, 169, 53, 0.96), rgba(3, 187, 251, 0.86));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.project-card:hover::before {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.project-card h3,
.project-card p {
  position: relative;
  z-index: 1;
}

.project-card h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.46);
}

.project-card p {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.46);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 22px rgba(32, 35, 39, 0.05);
}

summary {
  padding: 18px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

/* Perguntas frequentes: tipografia de leitura, com hierarquia clara entre pergunta e resposta. */
.faq-grid {
  align-items: start;
}

.faq-section .section-stack {
  padding-top: 8px;
}

.faq-section .section-stack > p {
  max-width: 46ch;
  line-height: 1.68;
}

.faq-list {
  max-width: 720px;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  border-color: rgba(4, 114, 246, 0.16);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 248, 255, 0.84));
  box-shadow: 0 12px 30px rgba(6, 36, 58, 0.06);
  transition:
    border-color 180ms var(--ease-out),
    background-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.faq-list summary {
  position: relative;
  padding: 21px 62px 21px 24px;
  color: #06243a;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  font-weight: 850;
  letter-spacing: -0.014em;
  line-height: 1.38;
  list-style: none;
}

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

.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
  transform: translateY(-68%) rotate(45deg);
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.faq-list details[open] {
  border-color: rgba(3, 187, 251, 0.68);
  background: linear-gradient(135deg, #f0fbff 0%, #effaf2 100%);
  box-shadow: 0 18px 38px rgba(3, 111, 158, 0.13);
}

.faq-list details[open] summary {
  padding-bottom: 14px;
  color: #035c88;
}

.faq-list details[open] summary::after {
  border-color: var(--brand-green-dark);
  transform: translateY(-34%) rotate(225deg);
}

.faq-list details[open] p {
  animation: faqAnswerReveal 280ms var(--ease-out) both;
}

.faq-list details p {
  max-width: 66ch;
  padding: 0 58px 24px 24px;
  color: #31515f;
  font-size: 1rem;
  line-height: 1.72;
}

@keyframes faqAnswerReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.faq-list summary:focus-visible {
  outline-offset: -4px;
}

@media (hover: hover) and (pointer: fine) {
  .faq-list details:hover {
    border-color: rgba(3, 187, 251, 0.42);
    box-shadow: 0 16px 34px rgba(6, 36, 58, 0.09);
  }
}

@media (max-width: 760px) {
  .faq-section .section-stack {
    padding-top: 0;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-list summary {
    padding: 18px 52px 18px 18px;
    font-size: 1rem;
  }

  .faq-list summary::after {
    right: 20px;
  }

  .faq-list details p {
    padding: 0 18px 21px;
    font-size: 0.98rem;
    line-height: 1.66;
  }
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 104px) 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(3, 187, 251, 0.26), transparent 22rem),
    radial-gradient(circle at 8% 92%, rgba(255, 255, 255, 0.16), transparent 20rem),
    linear-gradient(135deg, #0e5e28 0%, #24b846 46%, #087833 100%);
  color: #fff;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 17%, rgba(255, 255, 255, 0.13) 17% 17.15%, transparent 17.15% 100%),
    linear-gradient(0deg, transparent 0 74%, rgba(255, 255, 255, 0.11) 74% 74.25%, transparent 74.25% 100%);
  mask-image: linear-gradient(110deg, transparent 2%, #000 25%, #000 78%, transparent 98%);
  background-size: 420px 100%, 100% 180px;
  animation: ctaCircuitShift 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.final-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.final-cta-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.64);
}

.final-cta h2 {
  max-width: 660px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.65rem, 5.3vw, 5.35rem);
  line-height: 0.95;
}

.final-cta p:not(.final-cta-kicker) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

@keyframes ctaCircuitShift {
  from { background-position: 0 0, 0 0; opacity: 0.54; }
  to { background-position: 240px 0, 0 90px; opacity: 0.9; }
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.site-footer {
  padding: 72px 0 112px;
  background:
    radial-gradient(circle at 22% 0%, rgba(3, 187, 251, 0.08), transparent 30rem),
    linear-gradient(135deg, #020812 0%, #051422 58%, #02070d 100%);
  color: #fff;
}

.site-footer .footer-grid {
  grid-template-columns: 1.2fr 0.8fr 1fr 1.15fr;
  align-items: start;
}

.site-footer img {
  width: min(100%, 280px);
  height: auto;
}

.site-footer p,
.site-footer span {
  color: rgba(232, 244, 255, 0.68);
}

.footer-brand p {
  max-width: 360px;
  margin: 24px 0 16px;
}

.footer-brand span {
  display: block;
  font-size: 0.86rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-title {
  margin: 0 0 10px !important;
  color: rgba(232, 244, 255, 0.52) !important;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-weight: 760;
  line-height: 1.45;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.mobile-actionbar {
  position: fixed;
  z-index: 25;
  display: none;
  inset: auto 12px calc(10px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 50px rgba(32, 35, 39, 0.14);
}

.mobile-actionbar a,
.mobile-actionbar button {
  min-height: 46px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: #fff;
  font-weight: 950;
}

.mobile-actionbar a:first-child {
  display: grid;
  place-items: center;
  background: var(--gradient-brand);
}

.central-page {
  background:
    radial-gradient(circle at 70% 0%, rgba(3, 187, 251, 0.14), transparent 30rem),
    radial-gradient(circle at 15% 12%, rgba(57, 169, 53, 0.08), transparent 26rem),
    var(--paper);
}

.central-main {
  padding: 130px 0 76px;
}

.quote-page .central-header {
  justify-content: space-between;
}

.quote-back {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.78rem;
}

.quote-hero {
  padding: 58px 0 30px;
}

.quote-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 5vw, 4.85rem);
  letter-spacing: -0.05em;
  line-height: 0.92;
  text-transform: uppercase;
}

.quote-hero p {
  max-width: 56ch;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.quote-form-shell {
  max-width: 760px;
}

.quote-form-shell .assessment-form {
  padding: clamp(24px, 4vw, 42px);
}

@media (max-width: 760px) {
  .budget-callout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .budget-visual {
    min-height: 170px;
  }

  .budget-visual svg {
    width: 185px;
  }

  .budget-button {
    width: 100%;
  }

  .quote-back {
    width: auto;
    min-height: 38px;
  }

  .quote-hero {
    padding-top: 38px;
  }
}

.central-hero {
  padding: 58px 0 24px;
}

.central-hero .container {
  display: grid;
  gap: 18px;
}

.central-hero p {
  max-width: 680px;
  margin: 0;
}

.central-grid {
  grid-template-columns: repeat(3, 1fr);
}

.central-grid article {
  padding: 24px;
}

.central-grid article:first-child {
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient-brand) border-box;
}

.central-grid .btn {
  width: 100%;
  margin-top: 22px;
  font-size: 0.82rem;
}

.emergency-note {
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(57, 169, 53, 0.28);
  border-radius: var(--radius-lg);
  color: var(--ink-soft);
  background: rgba(57, 169, 53, 0.07);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .site-nav a:hover {
    transform: translateY(-1px);
  }
}

@media (max-width: 1240px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    display: grid;
    inset: calc(100% + 10px) 0 auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink-soft);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 180ms var(--ease-out),
      transform 180ms var(--ease-out);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .statement-grid,
  .assessment-grid,
  .monitoring-grid,
  .audience-grid,
  .business-grid,
  .app-grid,
  .about-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .solutions-layout,
  .central-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .process-grid article:nth-of-type(2),
  .process-grid article:nth-of-type(4) {
    padding-top: 0;
  }

  .process-grid article:nth-of-type(2)::before,
  .process-grid article:nth-of-type(4)::before,
  .process-grid article:nth-of-type(2)::after,
  .process-grid article:nth-of-type(4)::after {
    top: 0;
  }

  .process-grid article:nth-of-type(even) h3,
  .process-grid article:nth-of-type(even) p {
    text-align: left;
  }

  .hero-copy h1 {
    max-width: 490px;
    font-size: clamp(3.05rem, 7.4vw, 4.65rem);
  }

  .hero-services {
    max-width: 490px;
  }

  .hero-signature {
    display: none;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer img {
    width: min(100%, 240px);
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1240px);
  }

  .hero .container {
    width: min(100% - 32px, 1240px);
  }

  .site-header,
  .central-header {
    inset: 10px 10px auto;
    min-height: 64px;
  }

  .brand img {
    width: 168px;
    height: 42px;
  }

  .site-header .brand img {
    width: 200px;
    height: 50px;
  }

  .hero {
    min-height: 100dvh;
    padding-top: 112px;
    padding-bottom: 116px;
    align-items: end;
  }

  .hero-grid {
    display: grid;
    gap: 0;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    object-position: 58% center;
  }

  .hero-overlay {
    display: block;
    background:
      radial-gradient(ellipse at 0% 48%, rgba(1, 5, 12, 0.98) 0%, rgba(1, 5, 12, 0.92) 24%, rgba(1, 5, 12, 0.5) 52%, transparent 78%),
      radial-gradient(circle at 84% 0%, rgba(255, 255, 255, 0.28), transparent 12rem),
      linear-gradient(90deg, rgba(3, 7, 13, 0.98) 0%, rgba(3, 7, 13, 0.88) 52%, rgba(3, 7, 13, 0.42) 100%),
      linear-gradient(0deg, rgba(3, 7, 13, 0.58) 0%, transparent 48%);
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 11.5vw, 3.55rem);
    line-height: 0.95;
  }

  .hero-copy p {
    max-width: 330px;
    font-size: 0.94rem;
  }

  .hero-kicker {
    margin-bottom: 22px !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.28em;
  }

  .hero-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    margin-top: 20px;
  }

  .hero-services article {
    min-height: 82px;
  }

  .hero-services article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-services article:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-actions,
  .store-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
    font-size: 0.78rem;
  }

  .hero-proof,
  .process-grid,
  .solutions-layout,
  .scenario-list,
  .business-list,
  .about-facts,
  .project-shell,
  .central-grid,
  .property-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .process-section .section-stack {
    text-align: left;
  }

  .process-section .section-stack p {
    margin-left: 0;
  }

  .process-grid {
    gap: 0;
    margin-top: 42px;
    padding-left: 94px;
  }

  .process-flow {
    display: none;
  }

  .process-grid::after {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 40px;
    left: 34px;
    width: 1px;
    background-image: linear-gradient(180deg, rgba(3, 187, 251, 0.56) 50%, transparent 0);
    background-size: 1px 18px;
  }

  .process-grid article {
    min-height: 0;
    padding: 2px 0 42px !important;
  }

  .process-card-top {
    position: absolute;
    top: 0;
    left: -94px;
    width: 68px;
    height: 68px;
    margin: 0;
  }

  .process-grid article::before {
    top: 0;
    left: -94px;
    width: 68px;
    height: 68px;
    transform: none;
  }

  .central-home-intro {
    display: grid;
    align-items: start;
  }

  .central-home-grid {
    grid-template-columns: 1fr;
  }

  .app-phones {
    min-height: 420px;
    width: min(100%, 400px);
    margin-inline: auto;
  }

  .app-phone {
    width: min(66%, 250px);
  }

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

  .location-map,
  .location-map iframe {
    min-height: 320px;
  }

  .process-grid article::after {
    top: -8px;
    left: -42px;
    width: 28px;
    height: 28px;
  }

  .process-grid span {
    top: -8px;
    left: 52px;
    width: 28px;
    line-height: 28px;
  }

  .process-icon svg {
    width: 30px;
    height: 30px;
  }

  .process-grid h3,
  .process-grid p,
  .process-grid article:nth-of-type(odd) h3,
  .process-grid article:nth-of-type(odd) p,
  .process-grid article:nth-of-type(even) h3,
  .process-grid article:nth-of-type(even) p {
    max-width: none;
    margin-left: 0;
    text-align: left;
  }

  .process-grid h3 {
    padding-top: 4px;
    font-size: 1.48rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }

  .hero-signature {
    right: 18px;
    bottom: 74px;
    font-size: 1.55rem;
    opacity: 0.92;
  }

  .hero-signature::after {
    width: 120px;
    margin-top: 10px;
  }

  .hero-leaves {
    inset: -2% -24% -4% -18%;
    width: 142%;
    height: 108%;
    opacity: 0.68;
  }

  .trust-track {
    justify-content: flex-start;
    width: max-content;
    animation: drift 22s linear infinite;
  }

  .process-grid article {
    position: relative;
  }

  .process-card-top {
    margin-bottom: 24px;
  }

  .process-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .process-icon svg {
    width: 32px;
    height: 32px;
  }

  .process-grid article::before {
    content: "";
    position: absolute;
    inset: 24px auto 24px 56px;
    width: 1px;
    background: var(--gradient-brand);
  }

  .statement-copy {
    padding-left: 0;
    border-left: 0;
  }

  .final-cta {
    padding: 78px 0 86px;
  }

  .final-cta h2 {
    font-size: clamp(2.8rem, 13vw, 4.05rem);
  }

  .final-cta-actions {
    display: grid;
  }

  .mobile-actionbar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 120px;
  }
}

/* Fluxo operacional: sequência leve, com leitura alta sobre o fundo verde. */
.process-section .section-stack h2 {
  color: #06243a;
}

.process-section .section-stack p {
  color: rgba(6, 36, 58, 0.82);
}

.process-flow {
  display: none;
}

.process-grid {
  gap: clamp(10px, 2vw, 28px);
  min-height: 284px;
  margin-top: clamp(30px, 4vw, 46px);
  padding: 0;
}

.process-grid::before {
  display: block;
  top: 142px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(6, 36, 58, 0.56) 0 7px, transparent 7px 15px);
  opacity: 0.68;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease-out);
}

.process-grid.is-visible::before {
  transform: scaleX(1);
}

/* Overdrive: um pulso percorre a operação uma vez quando o fluxo entra em cena. */
.process-grid::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 134px;
  right: 8%;
  left: 8%;
  height: 18px;
  background:
    radial-gradient(circle, #fff 0 16%, rgba(3, 187, 251, 0.95) 22%, rgba(3, 187, 251, 0.28) 48%, transparent 74%)
    0 center / 18px 18px no-repeat;
  opacity: 0;
  pointer-events: none;
}

.process-grid.is-visible::after {
  animation: processSignalTraverse 1.4s var(--ease-out) 900ms both;
}

@keyframes processSignalTraverse {
  0% {
    opacity: 0;
    background-position: 0 center;
  }

  12%,
  76% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    background-position: 100% center;
  }
}

/* Central 24h: o quadro em foco ganha prioridade e os demais recuam. */
.screen-grid {
  isolation: isolate;
}

.monitor-frame {
  z-index: 0;
  transition:
    transform 320ms var(--ease-out),
    filter 260ms var(--ease-out),
    box-shadow 320ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .screen-grid:has(.monitor-frame:hover) .monitor-frame:not(:hover) {
    filter: brightness(0.62) saturate(0.72);
    transform: scale(0.955);
  }

  .monitor-frame:hover {
    z-index: 2;
    transform: scale(1.055);
    box-shadow: 0 20px 38px rgba(3, 69, 108, 0.26);
  }
}

.process-grid article {
  display: grid;
  grid-template-rows: 1fr 116px 1fr;
  align-items: center;
  min-height: 284px;
  padding: 0 12px;
  background: transparent;
}

.process-grid article:nth-of-type(2),
.process-grid article:nth-of-type(4) {
  padding-top: 0;
}

.process-grid article::before,
.process-grid article::after {
  display: none;
}

.process-card-top {
  grid-row: 2;
  position: relative;
  width: 108px;
  height: 108px;
  margin: 0 auto;
  border: 4px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: linear-gradient(145deg, #082b42, #09567a);
  box-shadow: 0 14px 28px rgba(6, 36, 58, 0.22), 0 0 0 3px rgba(6, 36, 58, 0.22);
}

.process-grid article:nth-of-type(2) .process-card-top,
.process-grid article:nth-of-type(4) .process-card-top {
  background: linear-gradient(145deg, #0a4b35, #147e44);
}

.process-grid span {
  top: -12px;
  left: auto;
  right: -10px;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #06243a;
  color: #fff;
  line-height: 28px;
}

.process-grid article:nth-of-type(2) span,
.process-grid article:nth-of-type(4) span {
  top: -12px;
}

.process-icon {
  color: #fff;
}

.process-icon::before {
  inset: 14px;
  border-color: rgba(255, 255, 255, 0.25);
  clip-path: none;
  border-radius: 50%;
}

.process-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.1;
}

.process-grid h3,
.process-grid p {
  max-width: 25ch;
  margin-inline: auto;
  text-align: center !important;
}

.process-grid h3 {
  grid-row: 1;
  align-self: end;
  margin-bottom: 10px;
  color: #06243a;
  font-size: clamp(1.06rem, 1.55vw, 1.34rem);
  text-shadow: none;
}

.process-grid p {
  grid-row: 3;
  align-self: start;
  color: rgba(6, 36, 58, 0.88);
  font-size: 0.92rem;
  line-height: 1.48;
}

.process-grid article:nth-of-type(even) h3 {
  grid-row: 1;
  align-self: end;
  margin-top: 0;
  margin-bottom: 10px;
}

.process-grid article:nth-of-type(even) p {
  grid-row: 3;
  align-self: start;
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .process-section {
    padding: 58px 0;
  }

  .process-section .section-stack {
    text-align: left;
  }

  .process-grid {
    min-height: 0;
    margin-top: 36px;
    padding-left: 0;
  }

  .process-grid::before {
    top: 18px;
    bottom: 40px;
    left: 40px;
    right: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(180deg, rgba(6, 36, 58, 0.56) 0 7px, transparent 7px 15px);
    transform: scaleY(0);
    transform-origin: top;
  }

  .process-grid.is-visible::before {
    transform: scaleY(1);
  }

  .process-grid::after {
    top: 18px;
    right: auto;
    bottom: 40px;
    left: 32px;
    width: 18px;
    height: auto;
    background-position: center 0;
  }

  .process-grid.is-visible::after {
    animation-name: processSignalTraverseMobile;
  }

  .process-grid article,
  .process-grid article:nth-of-type(2),
  .process-grid article:nth-of-type(4) {
    display: grid;
    grid-template-columns: 82px 1fr;
    grid-template-rows: auto auto;
    min-height: 128px;
    padding: 0 0 34px !important;
    overflow: visible;
  }

  .process-card-top {
    grid-column: 1;
    grid-row: 1 / span 2;
    position: relative;
    top: 0;
    left: 0;
    width: 76px;
    height: 76px;
    margin: 0;
    align-self: start;
  }

  .process-grid h3,
  .process-grid article:nth-of-type(even) h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin: 0 0 7px;
    text-align: left !important;
  }

  .process-grid p,
  .process-grid article:nth-of-type(even) p {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin: 0;
    text-align: left !important;
  }

  .process-grid span {
    top: -9px;
    right: -8px;
    width: 27px;
    height: 27px;
    line-height: 23px;
  }
}

@keyframes processSignalTraverseMobile {
  0% {
    opacity: 0;
    background-position: center 0;
  }

  12%,
  76% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    background-position: center 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-grid::before,
  .process-grid::after,
  .process-grid article,
  .process-icon::before,
  .process-flow-energy,
  .process-flow-node,
  .app-phone,
  .final-cta::before,
  .monitor-frame {
    animation: none !important;
    transition: none !important;
  }

  .monitor-frame,
  .screen-grid:has(.monitor-frame:hover) .monitor-frame:not(:hover),
  .monitor-frame:hover {
    filter: none;
    transform: none;
  }
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-38%); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .hero-leaves {
    transform: none !important;
  }

  .hero-media {
    transform: none !important;
  }

  .photo-solution {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

