:root {
  --bg: #f4f7fb;
  --bg-soft: #eaf1f8;
  --surface: #ffffff;
  --surface-blue: #edf6ff;
  --ink: #10243a;
  --ink-soft: #3e5b73;
  --muted: #5d7487;
  --line: rgba(32, 86, 128, 0.17);
  --navy-950: #071a2b;
  --navy-900: #0a253c;
  --navy-800: #123b5d;
  --blue-700: #1769a4;
  --blue-500: #2f82c5;
  --cyan: #16c4d4;
  --teal: #08777d;
  --orange: #b45f08;
  --orange-strong: #9e4b00;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(10, 37, 60, 0.09);
  --shadow-md: 0 22px 54px rgba(10, 37, 60, 0.15);
  --shadow-dark: 0 24px 68px rgba(6, 24, 40, 0.25);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  --header-height: 88px;
  --ease: 0.22s ease;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid #f2a44e;
  outline-offset: 3px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy-950);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform var(--ease);
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 26, 43, 0.99), rgba(10, 37, 60, 0.97)),
    var(--navy-950);
  border-bottom: 1px solid rgba(122, 193, 233, 0.14);
  box-shadow: 0 8px 28px rgba(4, 18, 31, 0.2);
  transition:
    height var(--ease),
    box-shadow var(--ease),
    background var(--ease);
}

.topbar.is-scrolled {
  height: 76px;
  background: rgba(7, 26, 43, 0.97);
  box-shadow: 0 12px 36px rgba(4, 18, 31, 0.3);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(144, 208, 241, 0.34);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: width var(--ease), height var(--ease);
}

.topbar.is-scrolled .brand img {
  width: 48px;
  height: 48px;
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

.brand-copy strong {
  font-size: 1.03rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: #a7d5ee;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.main-nav > a:not(.nav-cta) {
  padding: 10px 13px;
  border-radius: 8px;
  color: #d7e9f4;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--ease), background var(--ease);
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a:not(.nav-cta):focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(177, 220, 243, 0.25);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background var(--ease),
    border-color var(--ease);
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-strong));
  box-shadow: 0 10px 24px rgba(184, 98, 8, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 15px 30px rgba(184, 98, 8, 0.34);
}

.btn-secondary {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(22, 105, 164, 0.28);
  box-shadow: 0 10px 24px rgba(10, 37, 60, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--white);
  border-color: rgba(22, 105, 164, 0.46);
  box-shadow: var(--shadow-sm);
}

.btn-large {
  min-height: 52px;
  padding: 13px 21px;
}

.mobile-only {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-height) + 78px) 0 78px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(112deg, rgba(244, 249, 253, 0.99) 0%, rgba(244, 249, 253, 0.96) 45%, rgba(232, 244, 252, 0.9) 100%),
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 130px;
  background: linear-gradient(to bottom, transparent, rgba(214, 231, 244, 0.5));
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(28, 111, 164, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 111, 164, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(16px);
  pointer-events: none;
}

.hero-glow-one {
  top: 170px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: rgba(42, 135, 194, 0.12);
}

.hero-glow-two {
  right: -80px;
  bottom: 60px;
  width: 420px;
  height: 420px;
  background: rgba(22, 196, 212, 0.13);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: 38px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 22px;
  color: var(--navy-950);
  font-size: clamp(2.45rem, 5vw, 4.65rem);
  letter-spacing: -0.045em;
}

.hero-subtitle {
  max-width: 64ch;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-note {
  max-width: 62ch;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  padding: 7px 11px;
  border: 1px solid rgba(27, 111, 167, 0.17);
  border-radius: 999px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 7px 18px rgba(10, 37, 60, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(43, 126, 181, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-dark);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
  pointer-events: none;
}

.visual-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.visual-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(37, 113, 165, 0.22);
  border-radius: 999px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(10, 37, 60, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #13a86e;
  box-shadow: 0 0 0 5px rgba(19, 168, 110, 0.13);
  animation: statusPulse 2.4s ease-in-out infinite;
}

.focus-section {
  position: relative;
  padding: 92px 0 102px;
  background:
    radial-gradient(circle at 13% 20%, rgba(47, 130, 197, 0.08), transparent 30%),
    var(--surface);
}

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

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

.section-head h2 {
  margin-bottom: 17px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.035em;
}

.section-head > p:last-child {
  max-width: 68ch;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

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

.focus-card {
  position: relative;
  min-height: 250px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 253, 0.86)),
    var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--ease),
    border-color var(--ease),
    box-shadow var(--ease);
}

.focus-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -52px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 196, 212, 0.18), transparent 68%);
  pointer-events: none;
}

.focus-card:hover {
  transform: translateY(-5px);
  border-color: rgba(25, 113, 170, 0.32);
  box-shadow: var(--shadow-md);
}

.focus-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.focus-card h3 {
  margin-bottom: 12px;
  color: var(--navy-900);
  font-size: 1.3rem;
}

.focus-card p {
  margin: 0;
  color: var(--ink-soft);
}

.section-block {
  position: relative;
  padding: 96px 0;
}

.section-head-left {
  max-width: 840px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-head-left .section-kicker {
  justify-content: flex-start;
}

.section-head-left > p:last-child {
  margin-left: 0;
}

.problem-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(22, 196, 212, 0.11), transparent 25%),
    linear-gradient(180deg, var(--bg-soft), #f7fafd);
}

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

.problem-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  min-height: 180px;
  padding: 23px;
  border: 1px solid rgba(31, 99, 148, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(10, 37, 60, 0.07);
  transition:
    transform var(--ease),
    border-color var(--ease),
    box-shadow var(--ease);
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 113, 170, 0.31);
  box-shadow: var(--shadow-sm);
}

.problem-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(29, 117, 176, 0.19);
  border-radius: 13px;
  color: var(--blue-700);
  background: linear-gradient(145deg, #ffffff, #e7f3fb);
  box-shadow: 0 8px 18px rgba(10, 37, 60, 0.08);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.problem-card h3 {
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 1.05rem;
}

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

.services-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(7, 26, 43, 0.99), rgba(10, 48, 75, 0.98)),
    var(--navy-950);
}

.services-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(93, 185, 231, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 185, 231, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 96%);
  pointer-events: none;
}

.services-section .container {
  position: relative;
}

.services-section .section-kicker {
  color: #76cbe8;
}

.services-section .section-head h2 {
  color: var(--white);
}

.services-section .section-head > p:last-child {
  color: #bed3df;
}

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

.service-family-card {
  position: relative;
  min-height: 380px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid rgba(145, 211, 242, 0.17);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(5, 25, 42, 0.54);
  box-shadow: 0 22px 52px rgba(2, 16, 28, 0.24);
  transition:
    transform var(--ease),
    border-color var(--ease),
    background var(--ease);
}

.service-family-card::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 180, 200, 0.2), transparent 67%);
  pointer-events: none;
}

.service-family-card:hover {
  transform: translateY(-5px);
  border-color: rgba(129, 212, 247, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(5, 25, 42, 0.62);
}

.service-family-card.is-featured {
  border-color: rgba(213, 123, 26, 0.54);
  background:
    linear-gradient(145deg, rgba(213, 123, 26, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(5, 25, 42, 0.62);
}

.service-family-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 42px;
}

.service-family-code {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-family-label {
  padding: 6px 10px;
  border: 1px solid rgba(145, 211, 242, 0.18);
  border-radius: 999px;
  color: #9ed7ed;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-family-card h3 {
  max-width: 19ch;
  margin-bottom: 13px;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.service-family-card > p {
  max-width: 57ch;
  margin-bottom: 22px;
  color: #b9cfdb;
}

.service-family-card ul,
.client-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-family-card li {
  position: relative;
  padding-left: 20px;
  color: #e0edf3;
  font-size: 0.9rem;
}

.service-family-card li::before {
  content: "";
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--cyan));
}

.services-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 22px;
  padding: 25px 27px;
  border: 1px solid rgba(145, 211, 242, 0.17);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.services-cta strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.06rem;
}

.services-cta p {
  margin: 0;
  color: #b9cfdb;
  font-size: 0.9rem;
}

.clients-section {
  background:
    radial-gradient(circle at 10% 90%, rgba(47, 130, 197, 0.1), transparent 27%),
    var(--surface);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.client-card {
  position: relative;
  min-height: 430px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--white), #eef6fc);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.client-card:hover {
  transform: translateY(-5px);
  border-color: rgba(25, 113, 170, 0.34);
  box-shadow: var(--shadow-md);
}

.client-card.is-primary {
  color: var(--white);
  border-color: rgba(24, 121, 181, 0.54);
  background:
    radial-gradient(circle at 95% 5%, rgba(22, 196, 212, 0.2), transparent 32%),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow-dark);
}

.client-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 50px;
}

.client-badge {
  padding: 7px 11px;
  border: 1px solid rgba(31, 112, 166, 0.2);
  border-radius: 999px;
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.client-index {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.client-card h3 {
  margin-bottom: 14px;
  color: var(--navy-950);
  font-size: 1.45rem;
}

.client-card > p {
  min-height: 108px;
  margin-bottom: 21px;
  color: var(--ink-soft);
}

.client-card li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-top: 1px solid rgba(34, 92, 134, 0.12);
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 700;
}

.client-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.client-card.is-primary .client-badge {
  color: #c3ecf8;
  border-color: rgba(166, 225, 248, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.client-card.is-primary h3,
.client-card.is-primary li {
  color: var(--white);
}

.client-card.is-primary > p {
  color: #bed3df;
}

.client-card.is-primary li {
  border-top-color: rgba(166, 225, 248, 0.12);
}

.client-card.is-primary li::before {
  color: #5ee0d5;
}

.benefits-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 30%, rgba(27, 137, 187, 0.25), transparent 29%),
    radial-gradient(circle at 90% 75%, rgba(15, 144, 143, 0.2), transparent 27%),
    linear-gradient(120deg, #061a2b, #0b304b);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: 60px;
}

.section-kicker-light {
  color: #7ed2ec;
}

.benefits-copy h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.035em;
}

.benefits-copy > p:not(.section-kicker) {
  margin-bottom: 26px;
  color: #b9cfdb;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 12px;
  min-height: 105px;
  padding: 18px;
  border: 1px solid rgba(150, 215, 242, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.benefit-list li > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.benefit-list strong,
.benefit-list small {
  display: block;
}

.benefit-list strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.95rem;
}

.benefit-list small {
  color: #abc4d2;
  font-size: 0.78rem;
  line-height: 1.45;
}

.pricing-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(22, 196, 212, 0.11), transparent 25%),
    linear-gradient(180deg, #f5f9fc, #eaf2f8);
}

.pricing-browser {
  overflow: hidden;
  border: 1px solid rgba(27, 99, 150, 0.19);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.pricing-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 8px;
  border-bottom: 1px solid rgba(27, 99, 150, 0.14);
  background: #e7f0f7;
}

.pricing-tab {
  display: grid;
  gap: 3px;
  min-height: 76px;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  color: var(--ink-soft);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    color var(--ease),
    background var(--ease),
    box-shadow var(--ease);
}

.pricing-tab span {
  font-size: 0.92rem;
  font-weight: 900;
}

.pricing-tab small {
  font-size: 0.74rem;
  font-weight: 600;
}

.pricing-tab:hover {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.65);
}

.pricing-tab.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--blue-700));
  box-shadow: 0 9px 22px rgba(10, 52, 82, 0.22);
}

.pricing-panel {
  min-height: 850px;
  padding: 31px;
  outline: none;
}

.pricing-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 27px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(27, 99, 150, 0.14);
}

.pricing-segment-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(12, 133, 139, 0.22);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(12, 133, 139, 0.07);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pricing-panel-head h3 {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 1.65rem;
}

.pricing-panel-head p {
  max-width: 74ch;
  margin: 0;
  color: var(--ink-soft);
}

.pricing-segment-cta {
  padding: 10px 13px;
  border: 1px solid rgba(27, 99, 150, 0.21);
  border-radius: 9px;
  color: var(--blue-700);
  background: var(--surface-blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

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

.project-price-card {
  min-height: 390px;
  padding: 21px;
  border: 1px solid rgba(27, 99, 150, 0.16);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, #ffffff, #f0f7fc);
  box-shadow: 0 10px 25px rgba(10, 37, 60, 0.07);
}

.project-price-label {
  min-height: 22px;
  margin-bottom: 24px;
  color: var(--orange-strong);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-price-card h4 {
  min-height: 48px;
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: 1.08rem;
  line-height: 1.3;
}

.project-price {
  min-height: 58px;
  margin-bottom: 5px;
  color: var(--blue-700);
  font-size: clamp(1.22rem, 2vw, 1.48rem);
  font-weight: 900;
  line-height: 1.2;
}

.project-recommended {
  min-height: 38px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.project-description {
  min-height: 82px;
  margin-bottom: 15px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.project-price-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-price-card li {
  position: relative;
  padding-left: 18px;
  color: var(--navy-800);
  font-size: 0.77rem;
  font-weight: 700;
}

.project-price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.recurring-prices {
  margin-top: 18px;
  padding: 21px;
  border-radius: var(--radius-md);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 10%, rgba(22, 196, 212, 0.17), transparent 25%),
    linear-gradient(120deg, var(--navy-900), var(--navy-950));
}

.recurring-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}

.recurring-title span {
  padding: 5px 8px;
  border-radius: 999px;
  color: #9bdcf0;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recurring-title strong {
  font-size: 0.98rem;
}

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

.recurring-grid article {
  min-height: 138px;
  padding: 15px;
  border: 1px solid rgba(156, 217, 241, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.recurring-grid h4 {
  min-height: 39px;
  margin: 0 0 8px;
  color: #e5f2f7;
  font-size: 0.82rem;
}

.recurring-grid p {
  margin-bottom: 7px;
  color: #6dd8e5;
  font-size: 0.88rem;
  font-weight: 900;
}

.recurring-grid small {
  color: #abc5d3;
  font-size: 0.7rem;
  line-height: 1.45;
}

.pricing-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 19px;
  padding: 23px 25px;
  border: 1px solid rgba(213, 123, 26, 0.27);
  border-radius: var(--radius-md);
  background: #fff9f1;
}

.pricing-notice-main {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.notice-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}

.pricing-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
}

.pricing-notice p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.extras-section {
  background: var(--white);
}

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

.extra-card {
  min-height: 235px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, #ffffff, #eff7fc);
  box-shadow: 0 9px 24px rgba(10, 37, 60, 0.07);
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}

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

.extra-index {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.extra-card h3 {
  min-height: 48px;
  margin-bottom: 9px;
  color: var(--navy-900);
  font-size: 1.03rem;
}

.extra-price {
  margin-bottom: 9px;
  color: var(--blue-700);
  font-weight: 900;
}

.extra-card > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.commercial-rules {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: 34px;
  margin-top: 42px;
  padding: 31px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 8% 90%, rgba(22, 196, 212, 0.17), transparent 25%),
    linear-gradient(120deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-dark);
}

.commercial-rules-head h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.6rem;
}

.commercial-rules-head .section-kicker {
  color: #82d5ec;
}

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

.commercial-rule-grid article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(153, 216, 241, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.commercial-rule-grid article > span {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
}

.commercial-rule-grid strong {
  display: block;
  margin-bottom: 3px;
  color: #eff8fb;
  font-size: 0.83rem;
}

.commercial-rule-grid p {
  margin: 0;
  color: #aac5d3;
  font-size: 0.72rem;
  line-height: 1.43;
}

.process-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(47, 130, 197, 0.1), transparent 25%),
    linear-gradient(180deg, #eef5fa, #f9fbfd);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 35px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 111, 166, 0.26), transparent);
}

.process-step {
  position: relative;
  min-height: 285px;
  padding: 24px;
  border: 1px solid rgba(27, 99, 150, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 11px 29px rgba(10, 37, 60, 0.07);
}

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  place-items: center;
  border: 5px solid #f5f9fc;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--teal));
  box-shadow: 0 9px 20px rgba(18, 94, 143, 0.22);
  font-size: 0.72rem;
  font-weight: 900;
}

.process-label {
  margin-bottom: 8px;
  color: var(--orange-strong);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 1.18rem;
}

.process-step > div > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.demo-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(125deg, #061a2b, #0b304c);
}

.demo-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(97, 192, 232, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 192, 232, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.demo-section .container {
  position: relative;
}

.demo-section .section-kicker {
  color: #7bd3eb;
}

.demo-section .section-head h2 {
  color: var(--white);
}

.demo-section .section-head > p:last-child {
  color: #b9ceda;
}

.demo-browser {
  overflow: hidden;
  border: 1px solid rgba(148, 215, 241, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 66px rgba(1, 14, 25, 0.36);
}

.demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid rgba(148, 215, 241, 0.13);
  background: rgba(255, 255, 255, 0.035);
}

.demo-tab {
  padding: 9px 13px;
  border: 1px solid rgba(148, 215, 241, 0.15);
  border-radius: 9px;
  color: #b9ceda;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.79rem;
  font-weight: 800;
  cursor: pointer;
}

.demo-tab.is-active {
  color: var(--white);
  border-color: rgba(213, 123, 26, 0.54);
  background: linear-gradient(135deg, var(--orange), var(--orange-strong));
}

.demo-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 30px;
  min-height: 540px;
  padding: 30px;
}

.demo-product {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 6px 10px;
  border: 1px solid rgba(120, 211, 235, 0.18);
  border-radius: 999px;
  color: #89d8eb;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.demo-copy h3 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.demo-copy > p {
  margin-bottom: 22px;
  color: #b9ceda;
}

.demo-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-copy li {
  padding: 7px 10px;
  border: 1px solid rgba(148, 215, 241, 0.13);
  border-radius: 999px;
  color: #d9eaf1;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.72rem;
  font-weight: 700;
}

.demo-image-button {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 218, 242, 0.18);
  border-radius: 18px;
  background: #eaf2f7;
  box-shadow: 0 24px 54px rgba(1, 14, 25, 0.32);
  cursor: zoom-in;
}

.demo-image-button img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.demo-image-button:hover img {
  transform: scale(1.018);
}

.demo-image-button > span {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 8px 11px;
  border-radius: 9px;
  color: var(--white);
  background: rgba(7, 26, 43, 0.88);
  font-size: 0.72rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.demo-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 17px;
  color: #a9c5d3;
  font-size: 0.78rem;
  text-align: center;
}

.demo-disclaimer span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: #5ce0d2;
  background: rgba(92, 224, 210, 0.09);
  font-weight: 900;
}

.demo-disclaimer p {
  margin: 0;
}

.faq-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 130, 197, 0.09), transparent 25%),
    var(--white);
}

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

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.faq-intro h2 {
  margin-bottom: 16px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.035em;
}

.faq-intro > p:not(.section-kicker) {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(27, 99, 150, 0.16);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, #ffffff, #f3f8fc);
  box-shadow: 0 8px 22px rgba(10, 37, 60, 0.055);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 18px 55px 18px 20px;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  font-size: 0.96rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-symbol {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--blue-700);
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.faq-answer {
  padding: 0 20px 18px;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.faq-answer p {
  margin: 0;
}

.final-contact-section {
  background:
    radial-gradient(circle at 10% 70%, rgba(22, 196, 212, 0.16), transparent 28%),
    linear-gradient(180deg, #e9f2f8, #f7fafc);
}

.final-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: 46px;
  padding: 48px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 5%, rgba(22, 196, 212, 0.2), transparent 27%),
    linear-gradient(125deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-dark);
}

.final-contact-copy h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.038em;
}

.final-contact-copy > p:not(.section-kicker) {
  margin-bottom: 22px;
  color: #bdd2dd;
}

.final-contact-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.final-contact-copy li {
  padding: 7px 10px;
  border: 1px solid rgba(152, 218, 243, 0.14);
  border-radius: 999px;
  color: #dcebf2;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.74rem;
  font-weight: 800;
}

.contact-action-card {
  display: grid;
  gap: 10px;
  padding: 25px;
  border: 1px solid rgba(158, 219, 243, 0.17);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
}

.btn-contact-mail {
  color: var(--white);
  border-color: rgba(172, 225, 246, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.contact-details {
  display: grid;
  gap: 9px;
  margin-top: 9px;
  padding-top: 17px;
  border-top: 1px solid rgba(158, 219, 243, 0.14);
}

.contact-details p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.contact-details span {
  color: #88cfe6;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details a {
  color: #e7f3f7;
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.demo-modal[hidden] {
  display: none;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 22px;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 26, 0.86);
  backdrop-filter: blur(8px);
}

.demo-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1260px, 96vw);
  max-height: 92vh;
  padding: 20px;
  overflow: auto;
  border: 1px solid rgba(159, 219, 243, 0.2);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  outline: none;
}

.demo-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(7, 26, 43, 0.84);
  font-size: 1.35rem;
  cursor: pointer;
}

.demo-modal-kicker {
  margin-bottom: 4px;
  color: #79d4e9;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-modal-panel h2 {
  margin-bottom: 15px;
  padding-right: 50px;
  color: var(--white);
  font-size: 1.35rem;
}

.demo-modal-panel img {
  width: 100%;
  border-radius: 12px;
  background: var(--white);
}

.site-footer {
  padding: 46px 0;
  color: #d5e7f1;
  background:
    linear-gradient(115deg, rgba(7, 26, 43, 0.98), rgba(11, 47, 73, 0.98)),
    var(--navy-950);
  border-top: 1px solid rgba(135, 202, 236, 0.13);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.05rem;
}

.footer-brand p {
  max-width: 47ch;
  margin: 7px 0 0;
  color: #a9c3d3;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 17px;
}

.footer-links a {
  color: #c8deea;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  color: #9eb9c9;
  font-size: 0.82rem;
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: var(--white);
  background: #1daa61;
  box-shadow: 0 14px 34px rgba(8, 54, 34, 0.3);
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(8, 54, 34, 0.38);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease;
}

.reveal[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

.reveal[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

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

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(19, 168, 110, 0.13);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(19, 168, 110, 0.04);
  }
}

@media (max-width: 1060px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero h1 {
    max-width: 850px;
  }

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

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

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

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

  .client-card {
    min-height: 0;
  }

  .client-card > p {
    min-height: 0;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .pricing-panel {
    min-height: 0;
  }

  .commercial-rules {
    grid-template-columns: 1fr;
  }

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

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

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .final-contact-card {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1060px) {
  :root {
    --header-height: 78px;
  }

  .topbar.is-scrolled {
    height: 70px;
  }

  .topbar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

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

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 5px;
    padding: 16px 20px 22px;
    border-top: 1px solid rgba(151, 211, 242, 0.13);
    border-bottom: 1px solid rgba(151, 211, 242, 0.18);
    background: rgba(7, 26, 43, 0.985);
    box-shadow: 0 20px 44px rgba(3, 18, 31, 0.34);
    transform: translateY(-125%);
    visibility: hidden;
    opacity: 0;
    transition: none;
  }

  .topbar.is-scrolled .main-nav {
    top: 70px;
  }

  .topbar .main-nav.is-open {
    transform: translateY(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .main-nav > a:not(.nav-cta) {
    padding: 12px 13px;
  }

  .nav-cta {
    margin-top: 5px;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--orange-strong));
    box-shadow: 0 10px 24px rgba(184, 98, 8, 0.24);
  }

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

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

  .service-family-card {
    min-height: 0;
  }

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

  .pricing-tabs {
    grid-template-columns: 1fr;
  }

  .pricing-panel-head,
  .pricing-notice {
    grid-template-columns: 1fr;
  }

  .pricing-segment-cta {
    width: fit-content;
  }

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

  .focus-card {
    min-height: 0;
  }
}

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

  .brand {
    gap: 9px;
  }

  .brand img,
  .topbar.is-scrolled .brand img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

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

  .brand-copy small {
    font-size: 0.62rem;
    letter-spacing: 0.055em;
  }

  .hero {
    padding-top: calc(var(--header-height) + 53px);
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.45rem);
  }

  .hero-subtitle {
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .visual-frame {
    border-radius: 20px;
  }

  .visual-frame img {
    height: min(520px, 86vw);
    object-fit: cover;
    object-position: 61% center;
  }

  .visual-label {
    top: 12px;
    left: 12px;
    font-size: 0.72rem;
  }

  .focus-section {
    padding: 72px 0 80px;
  }

  .section-block {
    padding: 76px 0;
  }

  .section-head {
    text-align: left;
  }

  .section-head .section-kicker {
    justify-content: flex-start;
  }

  .section-head > p:last-child {
    margin-left: 0;
  }

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

  .problem-card {
    min-height: 0;
  }

  .service-family-card,
  .client-card {
    padding: 23px;
    border-radius: 19px;
  }

  .service-family-top,
  .client-card-header {
    margin-bottom: 34px;
  }

  .services-cta {
    padding: 22px;
  }

  .services-cta .btn {
    width: 100%;
  }

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

  .benefits-copy .btn {
    width: 100%;
  }

  .pricing-panel {
    padding: 19px;
  }

  .project-price-grid,
  .recurring-grid,
  .extras-grid,
  .commercial-rule-grid {
    grid-template-columns: 1fr;
  }

  .project-price-card {
    min-height: 0;
  }

  .project-price-card h4,
  .project-price,
  .project-recommended,
  .project-description,
  .recurring-grid h4,
  .extra-card h3 {
    min-height: 0;
  }

  .pricing-notice .btn,
  .pricing-segment-cta {
    width: 100%;
    text-align: center;
  }

  .commercial-rules {
    padding: 23px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
  }

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

  .demo-tab {
    text-align: center;
  }

  .demo-panel {
    min-height: 0;
    padding: 20px;
  }

  .demo-image-button img {
    aspect-ratio: 1.2 / 1;
  }

  .faq-intro .btn {
    width: 100%;
  }

  .final-contact-card {
    width: min(100% - 28px, var(--container));
    padding: 27px;
    border-radius: 21px;
  }

  .contact-action-card {
    padding: 18px;
  }

  .contact-action-card .btn {
    width: 100%;
  }

  .demo-modal {
    padding: 10px;
  }

  .demo-modal-panel {
    width: 100%;
    padding: 14px;
    border-radius: 16px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .footer-copy {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 390px) {
  .brand-copy small {
    max-width: 150px;
  }

  .hero-badges li {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (forced-colors: active) {
  .btn,
  .pricing-tab,
  .demo-tab,
  .faq-question,
  .menu-toggle {
    border: 1px solid ButtonText;
  }

  .status-dot,
  .service-family-card li::before {
    forced-color-adjust: none;
  }
}
