:root {
  --ink: #0A1F3A;
  --ink-2: #0F2D52;
  --ink-3: #051227;
  --blue: #1E88E5;
  --blue-2: #42A5F5;
  --blue-3: #64B5F6;
  --blue-light: #4FC3F7;
  --blue-dark: #1565C0;
  --black: #000000;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-2: #F1F5F9;
  --text: #1E293B;
  --muted: #64748B;
  --muted-2: #94A3B8;
  --border: #E2E8F0;
  --border-2: #CBD5E1;
  --green: #25D366;
  --shadow: 0 24px 70px rgba(5, 18, 39, .14);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --container: 1240px;
  --gutter: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 4px;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + (var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding: 56px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink), var(--black));
  color: var(--white);
}

.split,
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--blue);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--blue-light);
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(79, 195, 247, .7);
  border-radius: inherit;
  animation: pulse 2s infinite;
  content: "";
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: 2.7rem;
}

h2 {
  font-size: 2.15rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.hero h1,
.hero h2,
.hero h3 {
  color: var(--white);
}

.section-dark .lead,
.section-dark p,
.hero .lead {
  color: rgba(255, 255, 255, .74);
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

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

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 13px 22px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30, 136, 229, .32);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}

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

.btn.secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.btn.secondary:hover {
  background: var(--blue);
  color: var(--white);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, .24);
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.btn.ghost:hover {
  border-color: var(--blue-light);
  background: rgba(255, 255, 255, .08);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform .3s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(0, 0, 0, .9);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  padding: 5px;
  background: var(--white);
}

.brand span {
  color: var(--white);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 6px;
}

.desktop-nav a,
.lang a {
  min-height: 44px;
  border-radius: 100px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, .76);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: .92rem;
  font-weight: 600;
  transition: color .25s var(--ease), background .25s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.lang a:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.lang a[aria-current="page"] {
  background: var(--blue);
  color: var(--white);
}

.lang a[tabindex="-1"] {
  opacity: .45;
  pointer-events: none;
  cursor: default;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.lang {
  display: flex;
  gap: 2px;
}

.menu-toggle {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  content: "";
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.nav-open .menu-toggle span {
  transform: rotate(45deg);
}

.nav-open .menu-toggle span::before {
  transform: translateY(7px) rotate(90deg);
}

.nav-open .menu-toggle span::after {
  opacity: 0;
}

.mobile-drawer {
  position: fixed;
  z-index: 45;
  inset: 76px 0 0;
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 26px 20px 40px;
  background: var(--black);
  color: var(--white);
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}

.nav-open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer a {
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding: 12px 0;
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 20px;
}

.mobile-drawer .mobile-lang a {
  display: inline-flex;
  min-width: 58px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 100px;
  padding: 0 14px;
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
  line-height: 1;
}

.mobile-drawer .mobile-lang a[aria-current="page"] {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: #000;
  color: var(--white);
}

.hero::before,
.hero::after,
.section-dark::before,
.cta-band::before,
.cta-band::after {
  position: absolute;
  pointer-events: none;
  content: "";
  border-radius: 50%;
  filter: blur(4px);
}

.hero::before {
  top: -280px;
  left: 50%;
  width: 780px;
  height: 480px;
  background: radial-gradient(circle, rgba(30, 136, 229, .22), transparent 68%);
  transform: translateX(-50%);
}

.hero::after {
  right: -220px;
  bottom: -200px;
  width: 620px;
  height: 420px;
  background: radial-gradient(circle, rgba(79, 195, 247, .12), transparent 68%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-position: center;
  background-size: 56px 56px;
  opacity: .52;
  mask-image: radial-gradient(circle at 50% 25%, #000 20%, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 76px);
  padding-block: 40px 56px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 22px;
  max-width: 680px;
  width: 100%;
  padding: 24px 0;
}

.hero-copy h1 {
  font-size: 3rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-copy .lead {
  max-width: 650px;
  overflow-wrap: anywhere;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 100px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
}

.hero-visual {
  position: absolute;
  z-index: 2;
  inset: 0;
  min-height: 430px;
  pointer-events: none;
}

.system-disc {
  position: absolute;
  top: 92px;
  right: 16%;
  width: 276px;
  height: 276px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, #0A1F3A, #1E5BB8, #2196F3, #4FC3F7, #0F3A6E, #0A1F3A);
  box-shadow: 0 0 80px rgba(30, 136, 229, .28);
  animation: rotate 30s linear infinite;
}

.system-disc::after {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: inherit;
  background: rgba(0, 0, 0, .72);
  content: "";
}

.hero-panel {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 150px;
  width: min(48vw, 500px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  padding: 18px;
  background: rgba(5, 18, 39, .76);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
  backdrop-filter: blur(14px);
}

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

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .32);
}

.status-pill {
  border-radius: 100px;
  padding: 6px 10px;
  background: rgba(79, 195, 247, .13);
  color: var(--blue-light);
  font-size: .78rem;
  font-weight: 700;
}

.flow-lines {
  display: grid;
  gap: 12px;
}

.flow-line {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, .06);
}

.flow-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
}

.flow-line strong {
  display: block;
  color: var(--white);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.2;
}

.flow-line span {
  color: rgba(255, 255, 255, .6);
  font-size: .88rem;
}

.flow-value {
  color: var(--blue-light);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.float-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .09);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
  animation: float 10s ease-in-out infinite;
}

.float-card strong {
  display: block;
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.2;
}

.float-card small {
  color: rgba(255, 255, 255, .65);
}

.float-one {
  right: 410px;
  top: 72px;
}

.float-two {
  right: 90px;
  top: auto;
  bottom: 34px;
  animation-delay: -2s;
}

.float-three {
  right: 355px;
  bottom: 76px;
  animation-delay: -4s;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: var(--black);
  color: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee span {
  padding: 18px 28px;
  color: rgba(255, 255, 255, .8);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  padding: 24px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--ink), var(--blue), var(--blue-light));
  content: "";
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.card:hover {
  border-color: rgba(30, 136, 229, .4);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.card:hover::before {
  opacity: 1;
}

.service-card {
  display: grid;
  min-height: 330px;
  align-content: start;
  gap: 18px;
}

.icon-tile {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--ink), var(--blue), var(--blue-light));
  color: var(--white);
  transition: transform .4s var(--ease);
}

.card:hover .icon-tile {
  transform: rotate(-6deg);
}

.icon-tile svg,
.mini-icon svg,
.contact-icon svg {
  width: 28px;
  height: 28px;
}

.tag-list,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.chip {
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 10px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: .88rem;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: .42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  box-shadow: inset 0 0 0 4px var(--white);
}

.feature-band {
  display: grid;
  gap: 24px;
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border-radius: 24px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.metric-row {
  display: grid;
  gap: 14px;
}

.metric {
  border-left: 3px solid var(--blue);
  padding: 2px 0 2px 16px;
}

.metric strong {
  display: block;
  color: var(--ink);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}

.metric span {
  color: var(--muted);
}

.process-grid {
  display: grid;
  gap: 16px;
  counter-reset: process;
}

.process-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  background: var(--white);
  counter-increment: process;
}

.process-card::before {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  content: counter(process);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.case-card {
  display: grid;
  gap: 18px;
}

.case-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.case-kicker {
  color: var(--blue);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-results {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  color: var(--muted);
}

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

.client-category {
  margin-top: 48px;
}

.client-category:first-of-type {
  margin-top: 0;
}

.client-category h3 {
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 3px solid var(--blue);
  color: var(--ink);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}

.client-category-count {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 10px;
  border-radius: 100px;
  background: var(--bg-2);
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: 0;
  text-transform: none;
}

.client-tile {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  background: var(--white);
  color: var(--ink);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.client-tile:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.client-tile svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  transition: transform .3s var(--ease);
}

.client-tile:hover svg {
  transform: translateX(3px);
}

.price-card {
  display: grid;
  gap: 20px;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 24px 70px rgba(30, 136, 229, .16);
}

.price {
  color: var(--ink);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: .95rem;
  font-weight: 500;
}

.service-detail {
  display: grid;
  gap: 22px;
  align-items: start;
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.service-detail:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.service-detail h2 {
  font-size: 1.85rem;
  line-height: 1.15;
  word-break: break-word;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.detail-number {
  color: var(--blue);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.about-pillars {
  display: grid;
  gap: 16px;
}

.pillar {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  background: var(--white);
}

.contact-layout {
  display: grid;
  gap: 24px;
}

.legal-content {
  max-width: 900px;
}

.legal-content .card {
  display: grid;
  gap: 12px;
}

.legal-content h2 {
  font-size: 1.35rem;
}

.legal-content a {
  color: var(--blue);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-icon,
.mini-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: var(--bg-2);
  color: var(--blue);
}

.contact-row strong {
  display: block;
  color: var(--ink);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--ink);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  background: var(--bg-soft);
  color: var(--text);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30, 136, 229, .18);
  outline: 0;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.5em;
  color: var(--muted);
  font-size: .95rem;
}

.form-status[data-state="success"] {
  color: #166534;
}

.form-status[data-state="error"] {
  color: #B91C1C;
}

.btn:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.map-card {
  min-height: 320px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--ink), var(--black));
  color: var(--white);
  position: relative;
}

.map-card::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  opacity: .4;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  gap: 6px;
  min-width: 210px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 18px;
  background: rgba(0, 0, 0, .55);
  transform: translate(-50%, -50%);
}

.map-pin strong {
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 36px 22px;
  background: linear-gradient(135deg, var(--ink), var(--black));
  color: var(--white);
  text-align: center;
}

.cta-band::before {
  top: -160px;
  right: -120px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(30, 136, 229, .28), transparent 68%);
}

.cta-band::after {
  left: -120px;
  bottom: -160px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(79, 195, 247, .18), transparent 68%);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 760px;
  gap: 18px;
  margin-inline: auto;
  justify-items: center;
}

.cta-band h2,
.cta-band h3 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, .82);
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .82);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.footer-social a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-brand img {
  width: 158px;
  margin-bottom: 18px;
  border-radius: 16px;
  padding: 12px;
  background: var(--white);
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid a,
.footer-grid p {
  color: rgba(255, 255, 255, .68);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 20px;
  color: rgba(255, 255, 255, .58);
  font-size: .92rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(37, 211, 102, .42);
}

.whatsapp-float::before {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(37, 211, 102, .42);
  border-radius: inherit;
  content: "";
  animation: ring 2.4s infinite;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: #000;
  color: var(--white);
  padding: 72px 0;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center;
  content: "";
  opacity: .36;
}

.page-hero::after {
  position: absolute;
  top: -220px;
  right: -120px;
  width: 520px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 136, 229, .24), transparent 68%);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 900px;
  gap: 18px;
}

.page-hero h1 {
  color: var(--white);
}

.breadcrumb {
  color: rgba(255, 255, 255, .62);
  font-size: .94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

@keyframes pulse {
  0% {
    opacity: .85;
    transform: scale(.7);
  }
  70% {
    opacity: 0;
    transform: scale(2.2);
  }
  100% {
    opacity: 0;
    transform: scale(2.2);
  }
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes ring {
  0% {
    transform: scale(.9);
    opacity: .75;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Base styles target small mobile first (under 480px) */

/* Hero stacks the visual under the copy on every screen below desktop */
@media (max-width: 1023px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 32px 48px;
  }

  .hero-visual {
    position: relative;
    z-index: 4;
    display: grid;
    inset: auto;
    min-height: auto;
    gap: 14px;
    margin-top: 28px;
    pointer-events: auto;
  }

  .system-disc,
  .hero-panel,
  .float-card {
    position: relative;
    inset: auto;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .system-disc {
    width: 240px;
    height: 240px;
    margin-inline: auto;
  }

  .hero-panel {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }

  .float-card {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    animation: none;
  }
}

/* Small mobile (under 480px) */
@media (max-width: 479px) {
  :root {
    --gutter: 16px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .section {
    padding: 44px 0;
  }

  .actions .btn {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 1.7rem;
    line-height: 1.08;
  }

  .hero-copy {
    gap: 18px;
    max-width: calc(100vw - 40px);
    padding: 16px 0;
  }

  .hero-proof {
    gap: 10px;
  }

  .proof-item {
    font-size: .85rem;
    padding: 6px 12px;
  }

  .hero-copy .lead {
    max-width: calc(100vw - 40px);
    font-size: .9rem;
    line-height: 1.7;
  }

  .hero-panel,
  .flow-line,
  .float-card {
    min-width: 0;
  }

  .system-disc {
    width: 200px;
    height: 200px;
  }

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

  .cta-band {
    padding: 32px 18px;
    border-radius: 22px;
  }

  .price {
    font-size: 2rem;
  }

  .nav-wrap {
    min-height: 64px;
  }

  .mobile-drawer {
    inset: 64px 0 0;
  }

  .mobile-drawer a {
    font-size: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Standard mobile (480 to 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .section {
    padding: 56px 0;
  }

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

  .actions .btn {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 1.55rem;
    line-height: 1.08;
  }

  .hero-copy .lead {
    font-size: .95rem;
    line-height: 1.7;
  }

  .grid-2,
  .split {
    grid-template-columns: 1fr;
  }

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

/* Tablet (768 to 1023px) */
@media (min-width: 768px) {
  :root {
    --gutter: 24px;
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .grid-2,
  .split,
  .feature-band,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .metric-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cta-band {
    padding: 48px;
  }

  .page-hero {
    padding: 88px 0;
  }

  .hero-copy h1 {
    font-size: 3.4rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Tablet-specific tweaks: keep hero stacked but give the visual breathing room */
  .hero-visual {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .system-disc {
    width: 260px;
    height: 260px;
    margin: 0;
  }

  .hero-panel {
    margin: 0;
    max-width: none;
  }

  .float-card {
    max-width: none;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Small laptop and up (1024 to 1279px) */
@media (min-width: 1024px) {
  .section {
    padding: 96px 0;
  }

  .desktop-nav,
  .nav-actions {
    display: flex;
  }

  .menu-toggle,
  .mobile-drawer {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 76px);
  }

  .hero-inner {
    min-height: calc(100vh - 76px);
    padding-block: 40px 56px;
  }

  .hero-copy h1 {
    font-size: 4.2rem;
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
  }

  .service-detail {
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 56px;
  }

  .about-pillars {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* Large desktop (1280px and up) */
@media (min-width: 1280px) {
  .hero-copy h1 {
    font-size: 4.5rem;
  }

  .client-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

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