:root {
  --bg: #f5f8ff;
  --panel: #fff;
  --card: rgba(255, 255, 255, 0.82);
  --line: rgba(15, 23, 42, 0.1);
  --text: #101827;
  --muted: #64748b;
  --blue: #2563eb;
  --cyan: #0ea5e9;
  --navy: #071a45;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(37, 99, 235, 0.16), transparent 34%),
    radial-gradient(circle at 100% 8%, rgba(14, 165, 233, 0.16), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.24;
  pointer-events: none;
}

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

img,
svg {
  display: block;
}

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

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

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-logo {
  width: 32px;
  height: 32px;
}

.brand-logo .logo-bars {
  stroke: #fff;
  stroke-width: 4.8;
  stroke-linecap: round;
}

.brand-logo .logo-arrow {
  stroke: var(--blue);
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 20;
  pointer-events: none;
}

.header-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 14px 12px 18px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 17px;
  background: transparent;
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.22);
  overflow: visible;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0 0 0 -6px;
  z-index: -1;
  border-radius: 18px 17px 17px 18px;
  background: var(--navy);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.brand-title {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
}

.brand-subtitle {
  display: block;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-button {
  border: 0;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.header-actions > .btn-outline {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 850;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn > svg.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn > svg.whatsapp-icon {
  stroke-width: 1.8;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 46%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  opacity: 0;
  transition: left 0.55s ease, opacity 0.2s ease;
}

.btn:hover::after {
  left: 120%;
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.24);
}

.btn-outline {
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  overflow-y: auto;
  background: var(--blue);
  color: #080808;
}

.menu-overlay.open {
  display: block;
}

.menu-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 105% -8%, rgba(255, 255, 255, 0.26), transparent 30%),
    radial-gradient(circle at -10% 100%, rgba(0, 0, 0, 0.18), transparent 32%);
  pointer-events: none;
}

.menu-overlay::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.45) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.12;
  pointer-events: none;
}

.menu-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1240px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 28px 0;
}

.menu-top {
  position: relative;
  top: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(79, 131, 255, 0.86);
  padding-bottom: 20px;
  backdrop-filter: blur(18px);
}

.menu-brand .brand-mark {
  border-radius: 999px;
  background: var(--navy);
}

.menu-brand .brand-title {
  color: #080808;
  text-transform: lowercase;
}

.menu-brand .brand-subtitle {
  color: rgba(0, 0, 0, 0.55);
}

.close-menu {
  background: #080808;
  color: #fff;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 40px;
  flex: 1;
  padding-top: 48px;
}

.menu-small-label {
  margin-bottom: 28px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.menu-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: clamp(14px, 2.2vw, 20px) 0;
}

.menu-link-left {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 16px;
}

.menu-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
}

.menu-link:hover .menu-icon {
  background: #000;
  color: #fff;
}

.menu-link-title {
  overflow-wrap: anywhere;
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.menu-index {
  color: rgba(0, 0, 0, 0.42);
  font-size: 12px;
  font-weight: 950;
}

.menu-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(28px, 4vw, 56px);
}

.menu-contact-card {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
}

.menu-contact-card .menu-icon {
  margin-bottom: 20px;
  background: #000;
  color: #fff;
}

.menu-contact-title {
  overflow-wrap: anywhere;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.15;
}

.menu-contact-label {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 14px;
}

.menu-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.menu-cta,
.social-card,
.big-word {
  border-radius: 32px;
}

.menu-cta {
  min-height: 320px;
  background: #000;
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-cta h3 {
  margin: 0;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.menu-cta p {
  color: rgba(255, 255, 255, 0.62);
}

.menu-cta .btn {
  justify-content: space-between;
  background: #fff;
  color: #000;
}

.social-card,
.big-word {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.15);
  padding: 28px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 999px;
  background: #000;
  color: #fff;
}

.big-word {
  font-size: clamp(54px, 7vw, 78px);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 48px;
  align-items: center;
  padding: 86px 0 78px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 900;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

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

.hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--card);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.hero-card img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  opacity: 0.82;
}

.hero-card-content {
  padding: 26px;
}

.section {
  padding: 74px 0;
}

.section-head {
  max-width: 800px;
  margin-bottom: 34px;
}

.label {
  margin-bottom: 12px;
  color: #8fb2ff;
  font-weight: 850;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--card);
  padding: 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(143, 178, 255, 0.18), transparent 30%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(143, 178, 255, 0.42);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 70px rgba(79, 131, 255, 0.12);
}

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

.card p,
.rich-text p,
li {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.72;
}

.num {
  color: #8fb2ff;
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.image-panel {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--card);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, opacity 0.35s ease;
}

.image-panel:hover img,
.hero-card:hover img {
  transform: scale(1.06);
}

.cta-box {
  border-radius: 38px;
  background: linear-gradient(135deg, #1746b8, #061b55 58%, #00a7c8);
  padding: clamp(32px, 6vw, 58px);
  text-align: center;
}

.cta-box p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 58px 0 28px;
  color: rgba(255, 255, 255, 0.52);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.footer-brand p {
  max-width: 380px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-col {
  display: grid;
  gap: 10px;
}

.footer-col h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a,
.footer-bottom a,
.legal-row a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover,
.footer-bottom a:hover,
.legal-row a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-row a {
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(0, 0, 0, 0.08);
  color: #050505;
  font-weight: 800;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.055);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

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

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.checkbox-field {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(1, 7, 23, 0.68);
  color: #fff;
  outline: 0;
  padding: 15px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(143, 178, 255, 0.75);
  background: rgba(1, 7, 23, 0.9);
  box-shadow: 0 0 0 4px rgba(79, 131, 255, 0.14);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.checkbox-field a {
  color: #8fb2ff;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.lead-status {
  margin: -12px 0 22px;
  color: #ffb7b7;
  font-weight: 800;
}

.lead-form {
  max-width: 980px;
  margin-inline: auto;
}

.lead-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 30px;
}

.lead-progress span {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.lead-progress span::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 0.28s ease;
}

.lead-progress span.is-active::before {
  width: 100%;
}

.lead-step {
  display: none;
  animation: stepIn 0.32s ease both;
}

.lead-step.is-active {
  display: block;
}

.lead-step-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.lead-step-head span {
  display: inline-block;
  margin-bottom: 10px;
  color: #8fb2ff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.lead-step-head h3 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.lead-step-head p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

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

.choice-card {
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-content {
  display: block;
  min-height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  padding: 22px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.choice-content strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 19px;
}

.choice-content small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.choice-card:hover .choice-content {
  transform: translateY(-3px);
  border-color: rgba(143, 178, 255, 0.45);
  background: rgba(255, 255, 255, 0.075);
}

.choice-card input:checked + .choice-content {
  border-color: rgba(0, 180, 216, 0.85);
  background: linear-gradient(135deg, rgba(79, 131, 255, 0.25), rgba(0, 180, 216, 0.12));
  box-shadow: 0 22px 60px rgba(79, 131, 255, 0.16);
}

.choice-grid.has-error .choice-content,
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea,
.checkbox-field.has-error {
  border-color: rgba(255, 105, 105, 0.7);
}

.lead-url {
  margin-top: 18px;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.lead-actions .btn:only-child {
  margin-left: auto;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.legal-list .card h3 {
  margin-bottom: 8px;
}

.hero-card {
  transition: transform 0.3s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 178, 255, 0.42);
  box-shadow: 0 34px 100px rgba(79, 131, 255, 0.16);
}

.hero-card img {
  transition: transform 0.65s ease, opacity 0.35s ease;
}

.menu-link,
.menu-contact-card,
.social-row a {
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.menu-link:hover,
.menu-contact-card:hover {
  transform: translateY(-3px);
}

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

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(79, 131, 255, 0.28), transparent 28%),
    #02081a;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  width: min(86vw, 380px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.055);
  padding: 34px;
  text-align: center;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(24px);
}

.loader-logo {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 55px rgba(79, 131, 255, 0.28);
  animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader-logo .brand-logo {
  width: 58px;
  height: 58px;
}

.loader-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.loader-title {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.loader-text {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.loader-bar {
  overflow: hidden;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.loader-bar span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff, var(--blue), var(--cyan));
  animation: loaderBar 1.15s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 48px rgba(79, 131, 255, 0.22);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 80px rgba(0, 180, 216, 0.32);
  }
}

@keyframes loaderBar {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(260%);
  }
}

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

  .page-loader {
    display: none;
  }
}

@media (max-width: 920px) {
  .hero,
  .split,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

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

  .menu-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .big-word {
    grid-column: 1 / -1;
  }
}

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

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

  .header-actions {
    width: 100%;
  }

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

  .menu-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .close-menu {
    width: 100%;
  }

  .menu-links,
  .menu-contact-grid,
  .menu-aside,
  .footer-grid,
  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-link-title {
    font-size: clamp(28px, 9vw, 42px);
  }

  h1 {
    font-size: 42px;
  }

  .hero {
    padding-top: 54px;
  }

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

  .hero-card img {
    height: 300px;
  }
}

/* White/blue redesign sync for all subpages */
.hero {
  padding-top: 150px;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

h1,
h2,
h3,
.num,
.stat-value {
  color: var(--text);
}

.lead,
.card p,
.rich-text p,
.stat-label,
.feature-list li,
.footer p,
.footer a,
.footer-col a,
.choice-content p,
.legal-copy {
  color: var(--muted);
}

.card,
.hero-card,
.image-panel,
.contact-form,
.faq-item,
.legal-box {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.card {
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card h3::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 11px;
  background:
    linear-gradient(90deg, transparent 12px, #fff 12px 17px, transparent 17px),
    linear-gradient(transparent 12px, #fff 12px 17px, transparent 17px),
    linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.card::before {
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(37, 99, 235, 0.15), transparent 38%);
}

.card:hover {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 30px 76px rgba(37, 99, 235, 0.14);
}

.num {
  color: var(--blue);
}

.hero-card {
  box-shadow: 0 30px 90px rgba(37, 99, 235, 0.12);
}

.hero-card-content,
.rich-text,
.cta-box {
  background: #fff;
  color: var(--text);
}

.cta-box {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 30px 90px rgba(7, 26, 69, 0.22);
}

.cta-box h2,
.cta-box p {
  color: #fff;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-col h3 {
  color: var(--navy);
}

.menu-overlay {
  background: linear-gradient(135deg, #dbeafe 0%, #2563eb 48%, #0ea5e9 100%);
  color: #071a45;
}

.menu-top {
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.menu-brand {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  padding: 10px 14px 10px 10px;
  backdrop-filter: blur(16px);
}

.menu-layout {
  grid-template-columns: 1.35fr 0.65fr;
  gap: 42px;
  padding-top: 52px;
}

.menu-brand .brand-title,
.menu-brand .brand-subtitle {
  color: var(--navy);
}

.menu-links {
  gap: 10px 24px;
}

.menu-link {
  justify-content: space-between;
  gap: 18px;
  border-bottom-color: rgba(7, 26, 69, 0.18);
  padding: 18px 0;
  color: var(--navy);
  letter-spacing: -0.06em;
}

.menu-link:hover {
  transform: translateX(8px);
  color: #fff;
}

.menu-link-left {
  gap: 16px;
}

.menu-link-title {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.menu-link:hover .menu-link-title {
  color: #fff;
}

.menu-index {
  color: rgba(7, 26, 69, 0.55);
  font-size: 13px;
}

.menu-icon,
.menu-contact-card,
.social-card,
.big-word {
  border-color: rgba(7, 26, 69, 0.16);
  background: rgba(255, 255, 255, 0.36);
  color: var(--navy);
}

.menu-link:hover .menu-icon,
.menu-contact-card .menu-icon,
.close-menu {
  background: var(--navy);
  color: #fff;
}

.menu-link:hover .menu-icon {
  transform: rotate(-8deg) scale(1.06);
}

.menu-cta {
  background: var(--navy);
  color: #fff;
}

.menu-cta p {
  color: rgba(255, 255, 255, 0.68);
}

.menu-card {
  border-radius: 32px;
  background: var(--navy);
  color: #fff;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(7, 26, 69, 0.22);
}

.menu-card h3 {
  margin: 0 0 18px;
  color: #fff;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.menu-card p {
  color: rgba(255, 255, 255, 0.68);
}

.menu-card .btn-light {
  background: #fff;
  color: var(--navy);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-links a {
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  padding: 9px 13px;
  font-weight: 900;
}

.choice-content,
.form-field input,
.form-field textarea,
.form-field select {
  border-color: rgba(37, 99, 235, 0.14);
  background: #f8fbff;
  color: var(--navy);
}

.choice-card:hover .choice-content,
.choice-card input:checked + .choice-content {
  border-color: rgba(37, 99, 235, 0.52);
  background: #eef6ff;
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.12);
}

.choice-content strong {
  color: var(--navy);
}

.page-loader {
  background:
    radial-gradient(circle at 50% 42%, rgba(37, 99, 235, 0.2), transparent 28%),
    #f5f8ff;
}

.loader-card {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  box-shadow: 0 34px 110px rgba(37, 99, 235, 0.18);
}

.loader-text {
  color: var(--muted);
}

.loader-bar {
  background: #eaf1fb;
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
  }

  .header-inner {
    align-items: center;
    flex-direction: row;
    padding: 10px 12px;
  }

  .brand-subtitle {
    display: none;
  }

  .header-actions {
    width: auto;
  }

  .header-actions .btn {
    width: auto;
  }

.menu-button {
  width: 50px;
  min-height: 46px;
  padding: 0;
  font-size: 0;
}

.menu-button .icon {
  width: 23px;
  height: 23px;
}

/* Premium motion layer */
body.is-loading {
  overflow: hidden;
}

body:not(.site-ready) main,
body:not(.site-ready) .site-header,
body:not(.site-ready) .site-footer {
  filter: blur(8px);
  transform: scale(0.992);
}

body.site-ready main,
body.site-ready .site-header,
body.site-ready .site-footer {
  filter: blur(0);
  transform: scale(1);
  transition: filter 0.7s ease, transform 0.7s ease;
}

.page-loader {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(14, 165, 233, 0.34), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(37, 99, 235, 0.2), transparent 28%),
    linear-gradient(135deg, #020817 0%, #06163f 48%, #020817 100%);
}

.loader-noise {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 48%, #000, transparent 70%);
  animation: gridDrift 7s linear infinite;
}

.loader-orbit {
  position: absolute;
  width: min(72vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  animation: loaderFloat 4s ease-in-out infinite;
}

.loader-orbit span {
  position: absolute;
  inset: calc(var(--i, 0) * 26px);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-top-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: orbitSpin 2.8s linear infinite;
}

.loader-orbit span:nth-child(2) {
  --i: 1;
  animation-duration: 3.8s;
  animation-direction: reverse;
}

.loader-orbit span:nth-child(3) {
  --i: 2;
  animation-duration: 5.2s;
}

.loader-card {
  position: relative;
  z-index: 1;
  transform: translateY(10px) scale(0.98);
  animation: loaderCardIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.loader-logo {
  position: relative;
}

.loader-logo::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent, rgba(14, 165, 233, 0.9), transparent 34%);
  z-index: -1;
  filter: blur(6px);
  animation: orbitSpin 1.9s linear infinite;
}

.loader-title {
  color: #fff;
}

.loader-text {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.loader-text span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  animation: wordPulse 1.8s ease-in-out infinite;
}

.loader-text span:nth-child(2) {
  animation-delay: 0.18s;
}

.loader-text span:nth-child(3) {
  animation-delay: 0.36s;
}

.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible,
.reveal.visible {
  animation: premiumReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.btn,
.analysis-option,
.choice,
.focus-link,
.area-item,
.service-card,
.process-card {
  position: relative;
  overflow: hidden;
}

.btn::after,
.analysis-option::after,
.choice::after,
.focus-link::after,
.area-item::after,
.service-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.42), transparent 34%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.btn:hover::after,
.analysis-option:hover::after,
.choice:hover::after,
.focus-link:hover::after,
.area-item:hover::after,
.service-card:hover::before,
.process-card:hover::before {
  opacity: 1;
}

.service-icon,
.process-icon,
.menu-icon {
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.service-icon svg,
.process-icon svg,
.menu-icon svg {
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.service-card:hover .service-icon svg,
.process-card:hover .process-icon svg,
.menu-link:hover .menu-icon svg {
  transform: scale(1.08) rotate(-5deg);
  filter: drop-shadow(0 8px 14px rgba(14, 165, 233, 0.26));
}

.motion-ring {
  position: absolute;
  inset: -7px;
  z-index: 1;
  border: 1px solid rgba(14, 165, 233, 0.38);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.86) rotate(0deg);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.motion-dot {
  position: absolute;
  z-index: 3;
  right: 4px;
  top: 4px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(14, 165, 233, 0.8);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-card:hover .motion-ring,
.process-card:hover .motion-ring,
.menu-link:hover .motion-ring {
  opacity: 1;
  transform: scale(1) rotate(180deg);
  animation: orbitSpin 1.4s linear infinite;
}

.service-card:hover .motion-dot,
.process-card:hover .motion-dot,
.menu-link:hover .motion-dot {
  opacity: 1;
  transform: scale(1);
  animation: dotBreathe 1s ease-in-out infinite;
}

@keyframes premiumReveal {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes loaderCardIn {
  to {
    transform: translateY(0) scale(1);
  }
}

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

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.025);
  }
}

@keyframes gridDrift {
  to {
    background-position: 54px 54px;
  }
}

@keyframes wordPulse {
  0%,
  100% {
    opacity: 0.62;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes dotBreathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.35);
  }
}

/* Balanced service hero visuals */
.hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(430px, 0.82fr) !important;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.hero > *,
.hero-card {
  min-width: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.2vw, 62px) !important;
  line-height: 1.02;
  letter-spacing: -0.045em;
  hyphens: auto;
  overflow-wrap: break-word;
}

.hero-card {
  width: 100%;
  max-width: 540px;
  justify-self: end;
  border-radius: 34px;
}

.hero-card img {
  height: clamp(300px, 33vw, 390px);
  object-fit: contain;
  padding: clamp(18px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 72% 18%, rgba(14, 165, 233, 0.15), transparent 34%),
    linear-gradient(135deg, #f8fbff, #dbeafe);
  opacity: 1;
}

.hero-card-content {
  display: grid;
  gap: 8px;
  padding: 24px 26px 28px;
}

.hero-card-content strong,
.hero-card-content p {
  max-width: 34ch;
}

.image-panel img {
  object-fit: contain;
  padding: clamp(18px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 70% 15%, rgba(14, 165, 233, 0.14), transparent 34%),
    linear-gradient(135deg, #f8fbff, #dbeafe);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr !important;
    padding-top: 128px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 10vw, 68px);
  }

  .hero-card {
    max-width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
    letter-spacing: -0.045em;
  }

  .hero-card img {
    height: 260px;
  }

  .hero-card-content strong,
  .hero-card-content p {
    max-width: none;
  }
}

}

/* Final burger sync with homepage */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  overflow-y: auto;
  background: linear-gradient(135deg, #dbeafe 0%, #2563eb 48%, #0ea5e9 100%);
  color: var(--navy);
}

.menu-overlay.open {
  display: block;
}

.menu-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 105% -8%, rgba(255, 255, 255, 0.26), transparent 30%),
    radial-gradient(circle at -10% 100%, rgba(7, 26, 69, 0.18), transparent 32%);
  pointer-events: none;
}

.menu-overlay::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 26, 69, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 69, 0.22) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.1;
  pointer-events: none;
}

.menu-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px 0;
}

.menu-top {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 0;
  background: transparent;
  padding-bottom: 20px;
  backdrop-filter: none;
}

.menu-brand {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  padding: 10px 14px 10px 10px;
  backdrop-filter: blur(16px);
}

.menu-brand .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 17px;
  background: var(--navy);
}

.menu-brand .brand-title {
  color: var(--navy);
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.menu-brand .brand-subtitle {
  color: var(--blue);
  font-size: 0;
}

.close-menu {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  padding: 0 24px;
  box-shadow: none;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: start;
  flex: initial;
  padding: 52px 0 40px;
}

.menu-small-label {
  margin: 0 0 18px;
  color: rgba(7, 26, 69, 0.62);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  border-bottom: 1px solid rgba(7, 26, 69, 0.18);
  padding: 18px 0;
  color: var(--navy);
  line-height: 0.95;
  letter-spacing: -0.06em;
  transform: none;
}

.menu-link:hover {
  transform: translateX(8px);
  color: #fff;
}

.menu-link-left {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
  flex: 1 1 auto;
}

.menu-link-title {
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
  color: var(--navy);
  font-size: clamp(30px, 3.28vw, 52px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.menu-link:hover .menu-link-title {
  color: #fff;
}

.menu-index {
  flex: 0 0 auto;
  color: rgba(7, 26, 69, 0.55);
  font-size: 13px;
  font-weight: 950;
}

.menu-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(7, 26, 69, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: var(--navy);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.menu-icon .icon,
.menu-icon svg {
  width: 22px;
  height: 22px;
}

.menu-link:hover .menu-icon {
  background: var(--navy);
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
}

.menu-card {
  border: 0;
  border-radius: 32px;
  background: var(--navy);
  color: #fff;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(7, 26, 69, 0.22);
}

.menu-card h3 {
  margin: 0 0 18px;
  color: #fff;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.menu-card p {
  color: rgba(255, 255, 255, 0.68);
}

.menu-card .btn-light {
  background: #fff;
  color: var(--navy);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-links a {
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  padding: 9px 13px;
  font-weight: 900;
}

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

  .menu-link-title {
    font-size: clamp(30px, 6vw, 52px);
  }
}

@media (max-width: 640px) {
  .menu-links {
    grid-template-columns: 1fr;
  }

  .menu-link-title {
    white-space: normal;
    font-size: clamp(28px, 9vw, 42px);
  }

  .menu-top {
    align-items: center;
    flex-direction: row;
  }

  .menu-brand {
    max-width: calc(100% - 106px);
  }

  .menu-brand .brand-subtitle {
    display: none;
  }

  .close-menu {
    min-width: 96px;
    padding: 0 18px;
  }
}

.menu-button {
  width: 50px;
  min-height: 46px;
  padding: 0;
  font-size: 0;
}

.menu-button .icon {
  width: 23px;
  height: 23px;
}
