:root {
  --mobile-nav-top: 116px;
  --navy-950: #041a3a;
  --navy-900: #082b63;
  --navy-800: #0b3f83;
  --blue-700: #0869c8;
  --blue-600: #0b7ddd;
  --blue-500: #1597e5;
  --blue-100: #dff2ff;
  --blue-50: #eef8ff;
  --silver: #aeb7c4;
  --ink: #172033;
  --muted: #52647c;
  --line: #dce6f1;
  --white: #ffffff;
  --green: #1fbf72;
  --shadow-sm: 0 10px 30px rgba(8, 43, 99, 0.08);
  --shadow-md: 0 24px 65px rgba(8, 43, 99, 0.14);
  --shadow-lg: 0 35px 90px rgba(3, 25, 58, 0.24);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: #142238;
  background: var(--white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.76;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy-950);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.022em;
}

p {
  margin: 0;
  line-height: 1.76;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--white);
  background: var(--blue-700);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.25s ease;
}

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

.topbar {
  position: relative;
  z-index: 1002;
  color: rgba(255, 255, 255, 0.9);
  background: var(--navy-950);
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar a {
  transition: color 0.25s ease;
}

.topbar a:hover {
  color: #7fd3ff;
}

.topbar i {
  color: #55b9f0;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 88px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(8, 43, 99, 0.08);
  transition: height 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(14px);
}

.site-header.scrolled {
  height: 76px;
  box-shadow: 0 14px 40px rgba(8, 43, 99, 0.1);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  width: 208px;
  display: block;
}

.brand img {
  width: 100%;
  height: 68px;
  object-fit: contain;
  object-position: left center;
}

.site-header.scrolled .brand img {
  height: 58px;
}

.primary-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 27px;
}

.primary-nav > a:not(.btn) {
  position: relative;
  color: #25344a;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.primary-nav > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.primary-nav > a:not(.btn):hover,
.primary-nav > a:not(.btn).active {
  color: var(--blue-700);
}

.primary-nav > a:not(.btn):hover::after,
.primary-nav > a:not(.btn).active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: var(--blue-50);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--navy-900);
  border-radius: 5px;
  transition: transform 0.25s ease, opacity 0.25s 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);
}

.nav-backdrop {
  display: none;
}

.btn {
  position: relative;
  min-height: 50px;
  padding: 13px 23px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.btn::before {
  position: absolute;
  top: -45%;
  left: -55%;
  width: 35%;
  height: 190%;
  content: "";
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(20deg);
  transition: left 0.55s ease;
}

.btn:hover::before {
  left: 125%;
}

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

.btn-sm {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 13px;
}

.btn-lg {
  min-height: 56px;
  padding: 16px 27px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 12px 28px rgba(8, 105, 200, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(8, 105, 200, 0.32);
}

.btn-outline {
  color: var(--blue-700);
  background: var(--white);
  border-color: rgba(8, 105, 200, 0.32);
}

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

.btn-white {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(4, 26, 58, 0.18);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: 720px;
  color: var(--white);
  background: var(--navy-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 22%, rgba(21, 151, 229, 0.25), transparent 29%),
    linear-gradient(108deg, rgba(4, 26, 58, 0.98) 0%, rgba(6, 37, 82, 0.98) 49%, rgba(7, 56, 112, 0.94) 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 54px;
  padding-top: 64px;
  padding-bottom: 82px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin-bottom: 17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-700);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow i {
  font-size: 13px;
}

.eyebrow.light {
  color: #8dd6ff;
}

.hero-company-name {
  margin: -2px 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.2;
}

.hero-company-name > span {
  width: 34px;
  height: 3px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, #1597e5, #65c6fb);
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(101, 198, 251, 0.45);
}

.hero h1 {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(44px, 4.3vw, 67px);
  line-height: 1.05;
}

.hero h1 span,
.page-hero h1 span {
  color: #65c6fb;
}

.hero-copy > p {
  max-width: 655px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-proof {
  margin-top: 37px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 27px;
}

.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero-proof i {
  color: #66c9ff;
  font-size: 22px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px 9px 34px 9px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-2deg);
}

.hero-image-frame::before {
  position: absolute;
  z-index: -1;
  inset: -24px 28px 28px -24px;
  content: "";
  border: 1px solid rgba(101, 198, 251, 0.32);
  border-radius: 34px 9px 34px 9px;
}

.hero-image-frame > img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: 64% center;
  border-radius: 25px 5px 25px 5px;
}

.floating-verify-card {
  position: absolute;
  bottom: 30px;
  left: -34px;
  min-width: 245px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transform: rotateY(2deg);
}

.floating-verify-card .verify-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(8, 105, 200, 0.27);
}

.floating-verify-card small,
.floating-verify-card strong {
  display: block;
  line-height: 1.4;
}

.floating-verify-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-verify-card strong {
  color: var(--navy-900);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.security-chip {
  position: absolute;
  top: 25px;
  right: -20px;
  padding: 9px 14px;
  color: #dff6ff;
  background: rgba(4, 26, 58, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.security-chip i {
  margin-right: 6px;
  color: #58c5ff;
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll span {
  width: 23px;
  height: 36px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 15px;
}

.hero-scroll span::after {
  width: 4px;
  height: 7px;
  margin: 7px auto;
  display: block;
  content: "";
  background: #8dd6ff;
  border-radius: 5px;
  animation: scrollDot 1.7s ease infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  25% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

.trust-strip {
  position: relative;
  z-index: 5;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-item {
  min-height: 50px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #41516a;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item i {
  color: var(--blue-700);
  font-size: 21px;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-tint {
  background:
    radial-gradient(circle at 90% 20%, rgba(21, 151, 229, 0.08), transparent 25%),
    var(--blue-50);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 86px;
}

.media-composition {
  position: relative;
  padding: 0 32px 34px 0;
}

.image-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--blue-50);
  border-radius: 10px 42px 10px 42px;
  box-shadow: var(--shadow-md);
}

.image-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(4, 26, 58, 0.22), transparent 42%);
}

.image-panel img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.image-panel-tall img {
  height: 530px;
}

.experience-card {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  width: 215px;
  padding: 19px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border: 7px solid var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.experience-card i {
  font-size: 29px;
}

.experience-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.45;
}

.experience-card strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.dot-field {
  position: absolute;
  z-index: 1;
  right: 0;
  top: -28px;
  width: 120px;
  height: 120px;
  opacity: 0.5;
  background-image: radial-gradient(var(--blue-500) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
}

.section-copy h2,
.section-heading h2 {
  font-size: clamp(34px, 3.3vw, 49px);
}

.section-copy h2 span,
.section-heading h2 span {
  color: var(--blue-700);
}

.section-copy > p,
.section-heading > p {
  margin-top: 20px;
  color: var(--muted);
}

.section-copy .lead {
  color: #3f5069;
  font-size: 18px;
}

.section-copy .btn {
  margin-top: 30px;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.feature-stack {
  margin: 28px 0 24px;
  display: grid;
  gap: 17px;
}

.mini-feature {
  padding: 16px;
  display: flex;
  gap: 15px;
  background: var(--blue-50);
  border: 1px solid #deedf8;
  border-radius: 14px;
}

.mini-feature > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-700);
  background: var(--white);
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(8, 105, 200, 0.1);
}

.mini-feature h3 {
  margin-bottom: 4px;
  font-size: 15px;
}

.mini-feature p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.text-link i {
  transition: transform 0.25s ease;
}

.text-link:hover i {
  transform: translateX(5px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px 30px 29px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8, 105, 200, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px rgba(8, 43, 99, 0.065);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.service-card::after {
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  content: "";
  background: var(--blue-50);
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.service-card:hover {
  border-color: rgba(8, 105, 200, 0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-9px);
}

.service-card:hover::after {
  transform: scale(1.3);
}

.service-number {
  position: absolute;
  top: 25px;
  right: 26px;
  color: #c5d6e8;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-500));
  border-radius: 18px 5px 18px 5px;
  box-shadow: 0 12px 25px rgba(8, 105, 200, 0.24);
  font-size: 25px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(-5deg) scale(1.06);
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 19px;
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.service-card > a:not(.btn) {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card > a:not(.btn) i {
  transition: transform 0.25s ease;
}

.service-card > a:not(.btn):hover i {
  transform: translateX(5px);
}

.service-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(101, 198, 251, 0.25), transparent 27%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.service-card-cta::after {
  background: rgba(255, 255, 255, 0.07);
}

.service-card-cta h3 {
  color: var(--white);
  font-size: 25px;
}

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

.service-card-cta .btn {
  position: relative;
  z-index: 2;
  align-self: flex-start;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.process-line::before {
  position: absolute;
  z-index: 0;
  top: 70px;
  right: 10%;
  left: 10%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue-100), var(--blue-500), var(--blue-100));
}

.process-card {
  position: relative;
  z-index: 2;
  padding: 22px;
  text-align: center;
}

.step-badge {
  margin-bottom: 17px;
  display: inline-flex;
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--white);
  border: 6px solid var(--blue-50);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #c9e2f5, 0 10px 25px rgba(8, 105, 200, 0.12);
  font-size: 24px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.process-card:hover .process-icon {
  color: var(--white);
  background: var(--blue-700);
  transform: translateY(-5px);
}

.process-card h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

.process-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.62;
}

.centered-action {
  margin-top: 35px;
  text-align: center;
}

.protection-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(21, 151, 229, 0.21), transparent 23%),
    linear-gradient(125deg, var(--navy-950), #0a3977);
}

.protection-section::after {
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.018);
}

.protection-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 84px;
}

.protection-copy h2 {
  color: var(--white);
  font-size: clamp(36px, 3.8vw, 53px);
}

.protection-copy > p {
  margin: 22px 0 27px;
  color: rgba(255, 255, 255, 0.7);
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #46566d;
  font-size: 14px;
}

.check-list i {
  width: 23px;
  height: 23px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 50%;
  font-size: 10px;
}

.light-list {
  margin-bottom: 32px;
}

.light-list li {
  color: rgba(255, 255, 255, 0.8);
}

.light-list i {
  color: var(--white);
  background: rgba(101, 198, 251, 0.2);
}

.risk-panel {
  padding: 31px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.risk-header {
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.risk-header > span {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), #58c5ff);
  border-radius: 16px;
  font-size: 24px;
}

.risk-header small,
.risk-header strong {
  display: block;
}

.risk-header small {
  color: #8dd6ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.risk-header strong {
  margin-top: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.risk-item {
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-item > i {
  color: #ffcf70;
}

.risk-item span {
  display: flex;
  flex-direction: column;
}

.risk-item strong {
  font-size: 13px;
}

.risk-item small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.risk-status {
  margin-top: 21px;
  padding: 13px;
  color: #a8e4ff;
  background: rgba(21, 151, 229, 0.12);
  border: 1px solid rgba(101, 198, 251, 0.2);
  border-radius: 11px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.risk-status i {
  margin-right: 7px;
}

.vision-home {
  padding-top: 86px;
  padding-bottom: 86px;
}

.vision-card {
  position: relative;
  padding: 44px 52px;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  background: linear-gradient(120deg, var(--white), var(--blue-50));
  border: 1px solid #d9eaf6;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.vision-card::after {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid rgba(8, 105, 200, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(8, 105, 200, 0.035);
}

.vision-mark {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-500));
  border-radius: 25px 7px 25px 7px;
  box-shadow: 0 17px 34px rgba(8, 105, 200, 0.24);
  font-size: 37px;
}

.vision-card h2 {
  margin-bottom: 13px;
  font-size: 32px;
}

.vision-card p {
  max-width: 830px;
  color: var(--muted);
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(101, 198, 251, 0.24), transparent 25%),
    linear-gradient(120deg, var(--blue-700), var(--navy-900));
}

.cta-section::before {
  position: absolute;
  top: -90px;
  left: -60px;
  width: 240px;
  height: 240px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.035);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-inner h2 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(31px, 3vw, 43px);
}

.cta-inner p {
  max-width: 690px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 11px;
}

.page-hero {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(4, 26, 58, 0.98), rgba(8, 69, 139, 0.94)),
    url("assets/images/verify-hero.png") center 45% / cover no-repeat;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.page-hero-inner {
  position: relative;
  z-index: 3;
  padding-top: 65px;
  padding-bottom: 65px;
}

.page-hero h1 {
  max-width: 800px;
  color: var(--white);
  font-size: clamp(42px, 4.8vw, 65px);
}

.page-hero p {
  max-width: 670px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.71);
  font-size: 17px;
}

.page-hero-orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.orb-one {
  right: -90px;
  top: -130px;
  width: 350px;
  height: 350px;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.025);
}

.orb-two {
  right: 260px;
  bottom: -140px;
  width: 240px;
  height: 240px;
}

.breadcrumbs {
  margin-top: 29px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.breadcrumbs a {
  color: #8dd6ff;
}

.breadcrumbs i {
  font-size: 8px;
}

.about-signature {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.signature-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 50%;
}

.about-signature strong,
.about-signature small {
  display: block;
}

.about-signature strong {
  color: var(--navy-900);
  font-family: "Manrope", sans-serif;
}

.about-signature small {
  color: var(--muted);
}

.purpose-panel {
  padding: 39px;
  background: var(--white);
  border: 1px solid #dbe9f4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.purpose-top {
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 19px;
  border-bottom: 1px solid var(--line);
}

.purpose-top > span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-500));
  border-radius: 20px 6px 20px 6px;
  font-size: 28px;
}

.purpose-top small {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.purpose-top h3 {
  margin-top: 4px;
  font-size: 22px;
}

.purpose-list {
  padding: 27px 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.purpose-list div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #45546b;
  font-size: 13px;
  font-weight: 600;
}

.purpose-list i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 50%;
  font-size: 9px;
}

.purpose-note {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--navy-900);
  background: var(--blue-50);
  border-radius: 13px;
  font-size: 12px;
  font-weight: 700;
}

.purpose-note i {
  color: var(--blue-600);
  font-size: 19px;
}

.vision-mission-section {
  color: var(--white);
  background: var(--navy-950);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 27px;
}

.vm-card {
  position: relative;
  min-height: 385px;
  padding: 45px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

.vm-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 43px rgba(255, 255, 255, 0.02);
}

.mission-card-full {
  background: linear-gradient(145deg, rgba(8, 105, 200, 0.23), rgba(255, 255, 255, 0.055));
}

.vm-label {
  color: #7bcfff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vm-icon {
  width: 66px;
  height: 66px;
  margin: 25px 0 23px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: 18px;
  font-size: 27px;
}

.vm-card h2 {
  color: var(--white);
  font-size: 34px;
}

.vm-card p {
  position: relative;
  z-index: 2;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.67);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  padding: 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.value-card > span {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 14px;
  font-size: 20px;
}

.value-card h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.value-card p {
  color: var(--muted);
  font-size: 13px;
}

.why-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 30%, rgba(21, 151, 229, 0.2), transparent 27%),
    var(--navy-950);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.why-section .section-copy h2 {
  color: var(--white);
}

.why-section .section-copy > p {
  color: rgba(255, 255, 255, 0.67);
}

.why-points {
  display: grid;
  gap: 14px;
}

.why-points > div {
  padding: 19px 22px;
  display: flex;
  align-items: center;
  gap: 19px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
}

.why-points span {
  color: #78ceff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.why-points p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.why-points strong {
  color: var(--white);
}

.service-jump-section {
  padding: 55px 0;
}

.service-jump-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.service-jump-grid > a {
  min-height: 128px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #405067;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  transition: color 0.25s ease, border 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-jump-grid > a:hover {
  color: var(--blue-700);
  border-color: #b9dafa;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-jump-grid > a > span {
  color: var(--blue-700);
  font-size: 23px;
}

.service-jump-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
}

.service-jump-grid > a > i {
  color: #a5b5c9;
  font-size: 10px;
}

.service-detail {
  scroll-margin-top: 118px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 86px;
}

.service-detail-grid.alternate {
  grid-template-columns: 1.12fr 0.88fr;
}

.service-detail-heading {
  position: relative;
}

.service-index {
  position: absolute;
  top: -40px;
  right: 10px;
  color: rgba(8, 105, 200, 0.08);
  font-family: "Manrope", sans-serif;
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
}

.detail-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin-bottom: 25px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-500));
  border-radius: 20px 6px 20px 6px;
  box-shadow: 0 14px 29px rgba(8, 105, 200, 0.23);
  font-size: 27px;
}

.service-detail-heading h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(35px, 3.3vw, 48px);
}

.service-detail-heading h2 span {
  color: var(--blue-700);
}

.service-detail-heading > p {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  color: var(--muted);
}

.service-detail-heading .btn {
  margin-top: 28px;
}

.detail-list {
  display: grid;
  gap: 13px;
}

.detail-list article {
  padding: 19px 21px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.detail-list article:hover {
  border-color: #bdddf6;
  box-shadow: var(--shadow-sm);
  transform: translateX(7px);
}

.detail-list article > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 12px;
}

.detail-list h3 {
  margin-bottom: 4px;
  font-size: 15px;
}

.detail-list p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.appointment-card {
  padding: 33px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.appointment-grid div {
  min-height: 107px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: #45546b;
  background: var(--blue-50);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
}

.appointment-grid i {
  color: var(--blue-700);
  font-size: 20px;
}

.independent-note {
  margin-top: 19px;
  padding: 15px 17px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #637187;
  background: #f7f9fc;
  border-radius: 11px;
  font-size: 10px;
  line-height: 1.55;
}

.independent-note i {
  margin-top: 2px;
  color: var(--blue-700);
}

.service-showcase {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(101, 198, 251, 0.21), transparent 26%),
    linear-gradient(120deg, var(--navy-950), #0b428a);
}

.service-showcase-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.service-showcase h2 {
  color: var(--white);
}

.service-showcase .service-detail-heading > p {
  color: rgba(255, 255, 255, 0.7);
}

.light-index {
  color: rgba(255, 255, 255, 0.06);
}

.light-detail-icon {
  color: var(--navy-900);
  background: var(--white);
}

.web-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.web-capabilities > div {
  min-height: 170px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.web-capabilities > div:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.web-capabilities i {
  margin-bottom: 17px;
  color: #7fd4ff;
  font-size: 25px;
}

.web-capabilities strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.web-capabilities small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.partnership-wheel {
  position: relative;
  width: 440px;
  height: 440px;
  margin: 0 auto;
  border: 1px dashed #b7d7ef;
  border-radius: 50%;
}

.partnership-wheel::before {
  position: absolute;
  inset: 58px;
  content: "";
  border: 1px solid #d5e9f7;
  border-radius: 50%;
}

.wheel-center,
.wheel-item {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.wheel-center {
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 145px;
  height: 145px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-500));
  transform: translate(-50%, -50%);
}

.wheel-center i {
  font-size: 35px;
}

.wheel-center span {
  margin-top: -18px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.wheel-item {
  width: 82px;
  height: 82px;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid #d6e8f5;
}

.wheel-item i {
  font-size: 20px;
}

.wheel-item span {
  margin-top: -14px;
  color: #52627a;
  font-size: 9px;
  font-weight: 800;
}

.wheel-one { top: -8px; left: 50%; transform: translateX(-50%); }
.wheel-two { top: 88px; right: -12px; }
.wheel-three { right: 42px; bottom: 12px; }
.wheel-four { bottom: 12px; left: 42px; }
.wheel-five { top: 88px; left: -12px; }

.process-main-section {
  overflow: hidden;
}

.process-timeline {
  position: relative;
  max-width: 990px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.process-timeline::before {
  position: absolute;
  top: 62px;
  bottom: 62px;
  left: 73px;
  width: 2px;
  content: "";
  background: linear-gradient(var(--blue-200, #bde1f8), var(--blue-500));
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 146px 1fr;
  align-items: start;
  gap: 24px;
}

.timeline-marker {
  position: sticky;
  z-index: 3;
  top: 120px;
  width: 146px;
  height: 146px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--white);
  border: 8px solid var(--blue-50);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #c2e0f5, var(--shadow-sm);
}

.timeline-marker span {
  position: absolute;
  top: 17px;
  color: #93acc5;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.timeline-marker i {
  margin-top: 14px;
  font-size: 33px;
}

.timeline-content {
  padding: 36px 39px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.timeline-title {
  margin-bottom: 18px;
}

.timeline-title > span {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.timeline-title h2 {
  margin-top: 3px;
  font-size: 29px;
}

.timeline-content > p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 14px;
}

.timeline-tags,
.payment-methods {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.timeline-tags span,
.payment-methods span {
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-900);
  background: var(--blue-50);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
}

.timeline-tags i,
.payment-methods i {
  color: var(--blue-700);
}

.info-note {
  margin-top: 17px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #5e6d83;
  background: #f7f9fc;
  border-radius: 10px;
  font-size: 10px;
  line-height: 1.55;
}

.info-note i {
  margin-top: 3px;
  color: var(--blue-700);
}

.receipt-preview {
  max-width: 470px;
  margin-top: 23px;
  padding: 19px;
  background: var(--blue-50);
  border: 1px dashed #9fc9e8;
  border-radius: 14px;
}

.receipt-top {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #d4e7f5;
}

.receipt-top > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.receipt-top small,
.receipt-top strong {
  display: block;
}

.receipt-top small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.receipt-top strong {
  color: var(--navy-900);
  font-size: 13px;
}

.receipt-row {
  padding-top: 11px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
}

.receipt-row strong {
  color: #405067;
}

.report-includes {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.report-includes > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #45546b;
  font-size: 12px;
  font-weight: 600;
}

.report-includes i {
  color: var(--blue-700);
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 28px;
}

.checklist-card,
.privacy-card {
  padding: 43px;
  border-radius: var(--radius-lg);
}

.checklist-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.checklist-card h2,
.privacy-card h2 {
  margin-bottom: 27px;
  font-size: 32px;
}

.privacy-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.privacy-card::after {
  position: absolute;
  right: -60px;
  top: -50px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.025);
}

.privacy-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 25px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 18px;
  font-size: 26px;
}

.privacy-card h2 {
  color: var(--white);
}

.privacy-card > p {
  color: rgba(255, 255, 255, 0.67);
}

.privacy-points {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.privacy-points span {
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c7edff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 700;
}

.expectations-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.expectations-card {
  padding: 37px 42px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 25px;
  background: #fffaf0;
  border: 1px solid #f2dfb8;
  border-radius: var(--radius-md);
}

.expectation-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: #9a6410;
  background: #fff0cc;
  border-radius: 17px;
  font-size: 27px;
}

.expectations-card h2 {
  font-size: 27px;
}

.expectations-card p {
  margin-top: 10px;
  color: #78694f;
  font-size: 13px;
}

.process-start-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.quick-start {
  display: grid;
  gap: 13px;
}

.quick-start > a {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: border 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.quick-start > a:hover {
  border-color: #b8dafa;
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.quick-start > a > span {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 12px;
}

.quick-start strong,
.quick-start small {
  display: block;
}

.quick-start strong {
  color: var(--navy-900);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.quick-start small {
  color: var(--muted);
  font-size: 11px;
}

.quick-start > a > i {
  color: var(--blue-700);
}

.contact-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(21, 151, 229, 0.08), transparent 23%),
    var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 38px;
}

.contact-sidebar {
  position: sticky;
  top: 105px;
  padding: 40px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(101, 198, 251, 0.22), transparent 24%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-sidebar::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.02);
}

.contact-sidebar h2 {
  color: var(--white);
  font-size: 35px;
}

.contact-sidebar > p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.contact-methods {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  display: grid;
  gap: 10px;
}

.contact-methods > a,
.contact-static {
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-methods > a:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(4px);
}

.contact-methods > a > span,
.contact-static > span {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  color: #9ce0ff;
  background: rgba(101, 198, 251, 0.1);
  border-radius: 10px;
}

.contact-methods small,
.contact-methods strong {
  display: block;
}

.contact-methods small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 12px;
  overflow-wrap: anywhere;
}

.contact-methods > a > i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.contact-social-card {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding: 16px;
  background: linear-gradient(130deg, rgba(225, 48, 108, 0.26), rgba(131, 58, 180, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.contact-social-card > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.contact-social-card > div > i {
  font-size: 25px;
}

.contact-social-card small,
.contact-social-card strong {
  display: block;
}

.contact-social-card small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.contact-social-card strong {
  font-size: 11px;
}

.contact-social-card > a {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d9f3ff;
  font-size: 10px;
  font-weight: 700;
}

.availability {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.status-dot {
  width: 10px;
  height: 10px;
  display: block;
  background: #3dde8b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(61, 222, 139, 0.14);
  animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(61, 222, 139, 0.14); }
  50% { box-shadow: 0 0 0 9px rgba(61, 222, 139, 0.05); }
}

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

.availability strong {
  font-size: 11px;
}

.availability small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}

.form-card {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-heading {
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.form-heading h2 {
  font-size: 34px;
}

.form-heading p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.verification-form {
  padding-top: 29px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px 17px;
}

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

.field label {
  margin-bottom: 7px;
  display: block;
  color: #3e4d62;
  font-size: 11px;
  font-weight: 700;
}

.field label span,
.consent-check strong {
  color: #d24c4c;
}

.input-wrap {
  position: relative;
}

.input-wrap > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 15px;
  color: #94a7ba;
  font-size: 13px;
  transform: translateY(-50%);
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #d9e4ef;
  border-radius: 11px;
  outline: none;
  transition: border 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.input-wrap input,
.input-wrap select {
  height: 52px;
  padding: 0 14px 0 42px;
}

.input-wrap textarea {
  min-height: 132px;
  padding: 14px 15px 14px 42px;
  resize: vertical;
}

.phone-composite {
  display: grid;
  grid-template-columns: minmax(132px, 0.88fr) minmax(0, 1.12fr);
}

.country-code-control,
.phone-number-control {
  position: relative;
  min-width: 0;
}

.country-code-control > i,
.phone-number-control > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 14px;
  color: #7f95aa;
  font-size: 13px;
  pointer-events: none;
  transform: translateY(-50%);
}

.country-code-control select,
.phone-number-control input {
  position: relative;
  z-index: 1;
  padding-left: 39px;
}

.country-code-control select {
  padding-right: 30px;
  border-radius: 11px 0 0 11px;
}

.country-code-control::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 12px;
  content: "\f078";
  color: #7f95aa;
  font-family: "Font Awesome 6 Free";
  font-size: 9px;
  font-weight: 900;
  pointer-events: none;
  transform: translateY(-50%);
}

.phone-number-control input {
  border-left: 0;
  border-radius: 0 11px 11px 0;
}

.phone-composite:focus-within {
  border-radius: 11px;
  box-shadow: 0 0 0 4px rgba(21, 151, 229, 0.1);
}

.phone-composite .country-code-control select:focus,
.phone-composite .phone-number-control input:focus {
  box-shadow: none;
}

.textarea-wrap > i {
  top: 20px;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(21, 151, 229, 0.1);
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: #a3afbf;
}

.select-wrap select {
  appearance: none;
  cursor: pointer;
}

.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 16px;
  content: "\f078";
  color: #94a7ba;
  font-family: "Font Awesome 6 Free";
  font-size: 10px;
  font-weight: 900;
  pointer-events: none;
  transform: translateY(-50%);
}

.file-wrap input {
  padding-top: 13px;
  font-size: 11px;
}

.file-wrap input::file-selector-button {
  margin-right: 10px;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 0;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.file-note {
  margin-top: 5px;
  display: block;
  color: #8190a3;
  font-size: 9px;
  line-height: 1.45;
}

.field-error {
  min-height: 16px;
  margin-top: 4px;
  display: block;
  color: #ce3e3e;
  font-size: 9px;
}

.field.has-error .input-wrap input,
.field.has-error .input-wrap select,
.field.has-error .input-wrap textarea {
  border-color: #e27a7a;
  box-shadow: 0 0 0 3px rgba(226, 122, 122, 0.08);
}

.consent-check {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent-check input {
  position: absolute;
  opacity: 0;
}

.consent-check > span {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: transparent;
  background: var(--white);
  border: 1px solid #cbd8e5;
  border-radius: 5px;
  font-size: 9px;
  transition: all 0.2s ease;
}

.consent-check input:checked + span {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.consent-check input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(21, 151, 229, 0.15);
}

.consent-check small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
}

.form-security {
  margin-top: 13px;
  color: #7e8da1;
  font-size: 9px;
  text-align: center;
}

.form-security i {
  margin-right: 5px;
  color: var(--blue-700);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 70px;
}

.accordion {
  display: grid;
  gap: 11px;
}

.accordion-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.accordion-item.is-open {
  border-color: #badcf5;
  box-shadow: var(--shadow-sm);
}

.accordion-item button {
  width: 100%;
  padding: 19px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy-900);
  background: none;
  border: 0;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.accordion-item button i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 8px;
  font-size: 10px;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.accordion-item.is-open button i {
  color: var(--white);
  background: var(--blue-700);
  transform: rotate(45deg);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.accordion-content > p {
  min-height: 0;
  padding: 0 21px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  transition: padding 0.32s ease;
}

.accordion-item.is-open .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-content > p {
  padding-bottom: 20px;
}

.office-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.office-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.office-map {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background:
    linear-gradient(45deg, transparent 48%, rgba(8, 105, 200, 0.08) 48%, rgba(8, 105, 200, 0.08) 52%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(8, 105, 200, 0.06) 48%, rgba(8, 105, 200, 0.06) 52%, transparent 52%),
    var(--blue-50);
  background-size: 90px 90px;
}

.map-lines {
  position: absolute;
  inset: 18%;
  border: 2px dashed rgba(8, 105, 200, 0.26);
  border-radius: 48% 52% 42% 58%;
  transform: rotate(-8deg);
}

.map-pin {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 52%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-500));
  border: 8px solid var(--white);
  border-radius: 50% 50% 50% 10%;
  box-shadow: var(--shadow-md);
  font-size: 25px;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin i {
  transform: rotate(45deg);
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--blue-500);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(8, 105, 200, 0.18);
}

.dot-a { top: 25%; left: 25%; }
.dot-b { right: 19%; top: 27%; }
.dot-c { bottom: 19%; left: 33%; }

.office-copy {
  padding: 53px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.office-copy h2 {
  font-size: 34px;
}

.office-copy p {
  margin: 17px 0 26px;
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.67);
  background: #03152f;
}

.footer-grid {
  padding-top: 75px;
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 0.95fr 1fr;
  gap: 50px;
}

.footer-logo {
  width: 220px;
  padding: 7px 12px;
  background: var(--white);
  border-radius: 10px;
}

.footer-logo img {
  height: 68px;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 20px;
  font-size: 12px;
}

.social-links {
  margin-top: 22px;
  display: flex;
  gap: 9px;
}

.social-links a {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: #9ddfff;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
  color: var(--white);
  background: var(--blue-700);
  transform: translateY(-3px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 15px;
}

.footer-column a,
.footer-column > span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover {
  color: #83d6ff;
  transform: translateX(3px);
}

.footer-contact a,
.footer-contact > span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact i {
  width: 15px;
  margin-top: 4px;
  color: #65c6fb;
  text-align: center;
}

.footer-disclaimer {
  padding: 19px 23px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  font-size: 9px;
  line-height: 1.6;
}

.footer-disclaimer i {
  margin-top: 2px;
  color: #65c6fb;
}

.footer-bottom {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.footer-bottom .container {
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 23px;
  height: 56px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: #22c66f;
  border-radius: 30px;
  box-shadow: 0 14px 35px rgba(20, 151, 81, 0.3);
  font-size: 11px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float::before {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(34, 198, 111, 0.65);
  border-radius: 30px;
  animation: whatsappPulse 2.2s ease infinite;
}

.whatsapp-float:hover {
  box-shadow: 0 18px 43px rgba(20, 151, 81, 0.4);
  transform: translateY(-4px);
}

.whatsapp-float i {
  font-size: 23px;
}

@keyframes whatsappPulse {
  0% { opacity: 0.8; transform: scale(1); }
  70%, 100% { opacity: 0; transform: scale(1.18); }
}

.back-to-top {
  position: fixed;
  z-index: 890;
  right: 29px;
  bottom: 92px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast {
  position: fixed;
  z-index: 2000;
  right: 25px;
  bottom: 92px;
  max-width: 360px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--navy-950);
  border-left: 4px solid var(--blue-500);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal.animate-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.delay-1.animate-ready {
  transition-delay: 0.1s;
}

.delay-2.animate-ready {
  transition-delay: 0.2s;
}

.delay-3.animate-ready {
  transition-delay: 0.3s;
}

[aria-disabled="true"] {
  cursor: not-allowed;
}

:focus-visible {
  outline: 3px solid rgba(21, 151, 229, 0.55);
  outline-offset: 3px;
}

/* Typography clarity upgrades */
.primary-nav > a:not(.btn) {
  font-size: 14px;
  font-weight: 700;
}

.btn {
  font-size: 14.5px;
  letter-spacing: 0.005em;
}

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.105em;
}

.hero-copy > p,
.page-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  font-weight: 500;
}

.hero-proof span,
.hero-proof strong {
  font-size: 13px;
}

.floating-verify-card small,
.security-chip,
.hero-scroll,
.step-badge,
.risk-header small,
.risk-status,
.purpose-top small,
.vm-label,
.timeline-marker span,
.timeline-title > span,
.receipt-top small,
.privacy-points span,
.contact-social-card > a,
.file-wrap input,
.file-wrap input::file-selector-button,
.whatsapp-float {
  font-size: 12px;
}

.breadcrumbs {
  font-size: 13px;
}

.trust-item {
  color: #354860;
  font-size: 14px;
}

.section-copy > p,
.section-heading > p {
  color: #52647c;
  font-size: 16px;
}

.section-copy .lead {
  color: #344962;
  font-size: 18px;
  font-weight: 500;
}

.mini-feature h3,
.detail-list h3 {
  font-size: 16px;
}

.mini-feature p,
.detail-list p,
.process-card p,
.value-card p,
.service-card p {
  color: #53657d;
  font-size: 14px;
  line-height: 1.7;
}

.service-card h3 {
  font-size: 20px;
}

.service-card > a:not(.btn),
.text-link {
  font-size: 13px;
}

.service-jump-grid strong {
  font-size: 13px;
}

.wheel-item span {
  font-size: 10.5px;
}

.protection-copy > p,
.cta-inner p,
.vm-card p,
.service-showcase .service-detail-heading > p,
.contact-sidebar > p,
.why-section .section-copy > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.risk-item strong {
  font-size: 14px;
}

.risk-item small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.vision-card p,
.service-detail-heading > p,
.office-copy p {
  color: #52647c;
  font-size: 16px;
}

.purpose-list div,
.check-list li,
.report-includes > div {
  font-size: 14px;
}

.purpose-note,
.appointment-grid div,
.web-capabilities small,
.timeline-tags span,
.payment-methods span,
.quick-start small {
  font-size: 12.5px;
}

.independent-note,
.info-note,
.receipt-row,
.file-note,
.form-security,
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.65;
}

.timeline-content > p,
.expectations-card p {
  color: #52647c;
  font-size: 15px;
}

.quick-start strong {
  font-size: 15px;
}

.contact-methods small,
.contact-social-card small,
.availability small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.contact-methods strong,
.contact-social-card strong,
.availability strong {
  font-size: 13px;
}

.form-heading p {
  color: #52647c;
  font-size: 14px;
}

.field label {
  color: #31445c;
  font-size: 13px;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  color: #142238;
  font-size: 15px;
}

.field-error,
.consent-check small {
  font-size: 12px;
}

.accordion-item button {
  font-size: 14.5px;
}

.accordion-content > p {
  color: #52647c;
  font-size: 14px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
}

.footer-column h3 {
  font-size: 16px;
}

.footer-column a,
.footer-column > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
}

.footer-bottom .container {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11.5px;
}

@media (max-width: 1160px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a:not(.btn) {
    font-size: 13px;
  }

  .brand {
    width: 185px;
  }

  .hero-inner {
    gap: 35px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-proof {
    gap: 17px;
  }

  .service-detail-grid,
  .service-detail-grid.alternate {
    gap: 55px;
  }
}

@media (max-width: 1020px) {
  .site-header,
  .site-header.scrolled {
    height: 78px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1001;
    display: block;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-900), var(--blue-500));
    border: 1px solid rgba(8, 105, 200, 0.12);
    box-shadow: 0 9px 22px rgba(8, 43, 99, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  .menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(8, 43, 99, 0.22);
  }

  .menu-toggle.is-open {
    background: var(--navy-950);
  }

  .menu-toggle span {
    background: var(--white);
  }

  .primary-nav {
    position: fixed;
    z-index: 999;
    top: calc(var(--mobile-nav-top) + 10px);
    right: 14px;
    bottom: auto;
    left: 14px;
    width: auto;
    height: auto;
    max-height: calc(100dvh - var(--mobile-nav-top) - 24px);
    padding: 17px;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background:
      radial-gradient(circle at 92% 0, rgba(21, 151, 229, 0.11), transparent 25%),
      rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(8, 105, 200, 0.13);
    border-radius: 20px;
    box-shadow: 0 28px 75px rgba(4, 26, 58, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px) scale(0.975);
    transform-origin: top center;
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease,
      transform 0.34s cubic-bezier(0.2, 0.72, 0.2, 1);
    overscroll-behavior: contain;
  }

  .site-header.scrolled .primary-nav {
    top: calc(var(--mobile-nav-top) + 10px);
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .primary-nav::before {
    padding: 3px 5px 10px;
    content: "Verify Global Solutions";
    color: #8293a9;
    border-bottom: 1px solid var(--line);
    font-family: "Manrope", sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .primary-nav > a:not(.btn) {
    min-height: 52px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2c3f59;
    background: #f8fbfe;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    transition:
      color 0.24s ease,
      background 0.24s ease,
      border-color 0.24s ease,
      transform 0.24s ease;
  }

  .primary-nav > a:not(.btn)::after {
    display: none;
  }

  .primary-nav > a:not(.btn)::before {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--blue-700);
    background: var(--white);
    border: 1px solid #dceaf5;
    border-radius: 10px;
    box-shadow: 0 5px 14px rgba(8, 43, 99, 0.07);
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    font-weight: 900;
  }

  .primary-nav > a[data-nav="home"]::before {
    content: "\f015";
  }

  .primary-nav > a[data-nav="about"]::before {
    content: "\f05a";
  }

  .primary-nav > a[data-nav="services"]::before {
    content: "\f0ae";
  }

  .primary-nav > a[data-nav="process"]::before {
    content: "\f542";
  }

  .primary-nav > a[data-nav="contact"]::before {
    content: "\f2b6";
  }

  .primary-nav > a:not(.btn):hover {
    color: var(--blue-700);
    background: var(--blue-50);
    border-color: #cce5f7;
    transform: translateX(4px);
  }

  .primary-nav > a:not(.btn).active {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(8, 105, 200, 0.2);
  }

  .primary-nav > a:not(.btn).active::before {
    color: var(--blue-700);
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .primary-nav .nav-cta {
    width: 100%;
    min-height: 53px;
    margin-top: 5px;
    border-radius: 13px;
  }

  .nav-backdrop {
    position: fixed;
    z-index: 998;
    inset: var(--mobile-nav-top) 0 0;
    display: block;
    background: rgba(3, 21, 47, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    backdrop-filter: blur(5px);
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 82px;
    text-align: center;
  }

  .hero-copy {
    max-width: 770px;
    margin: 0 auto;
  }

  .hero-company-name {
    justify-content: center;
  }

  .hero-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    width: min(720px, 92%);
    margin: 18px auto 0;
  }

  .hero-home,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-bottom: 110px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 0;
  }

  .trust-item {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: 0;
  }

  .split-grid,
  .protection-grid,
  .why-grid,
  .service-detail-grid,
  .service-detail-grid.alternate,
  .service-showcase-inner,
  .process-start-grid {
    gap: 55px;
  }

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

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

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

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

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

  .partnership-wheel {
    width: 370px;
    height: 370px;
  }

  .wheel-center {
    width: 125px;
    height: 125px;
  }

  .wheel-item {
    width: 74px;
    height: 74px;
  }

  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .contact-sidebar,
  .form-card {
    padding: 31px;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
  }

  .footer-contact h3 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 95px;
  }

  .topbar-left > span {
    display: none;
  }

  .section {
    padding: 86px 0;
  }

  .split-grid,
  .protection-grid,
  .why-grid,
  .service-detail-grid,
  .service-detail-grid.alternate,
  .service-showcase-inner,
  .process-start-grid,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .reverse-mobile > :first-child {
    order: 2;
  }

  .media-composition {
    width: min(650px, 100%);
    margin: 0 auto;
  }

  .protection-grid {
    gap: 45px;
  }

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

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .vm-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

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

  .service-detail-grid.alternate .detail-list {
    order: 2;
  }

  .partnership-wheel {
    margin-top: 25px;
  }

  .timeline-step {
    grid-template-columns: 105px 1fr;
  }

  .timeline-marker {
    width: 105px;
    height: 105px;
  }

  .process-timeline::before {
    left: 52px;
  }

  .timeline-marker i {
    font-size: 27px;
  }

  .timeline-marker span {
    top: 10px;
  }

  .contact-sidebar {
    position: relative;
    top: auto;
  }

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

  .office-map {
    min-height: 300px;
  }
}

@media (max-width: 650px) {
  .hero-company-name {
    gap: 9px;
    font-size: 19px;
  }

  .hero-company-name > span {
    width: 25px;
  }

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

  .topbar-inner {
    min-height: 36px;
  }

  .topbar-left a,
  .topbar-social {
    font-size: 11.5px;
  }

  .topbar-social span {
    display: none;
  }

  .site-header,
  .site-header.scrolled {
    height: 72px;
  }

  .brand {
    width: 164px;
  }

  .brand img,
  .site-header.scrolled .brand img {
    height: 61px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .primary-nav {
    top: calc(var(--mobile-nav-top) + 8px);
    right: 10px;
    left: 10px;
    width: auto;
    max-height: calc(100dvh - var(--mobile-nav-top) - 18px);
    padding: 14px;
    border-radius: 18px;
  }

  .hero-inner {
    padding-top: 65px;
    padding-bottom: 93px;
  }

  .hero h1 {
    font-size: clamp(37px, 11vw, 49px);
  }

  .hero-copy > p {
    font-size: 16.5px;
  }

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

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

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  .hero-proof > div {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-image-frame > img {
    min-height: 350px;
  }

  .floating-verify-card {
    left: 11px;
    bottom: 18px;
    min-width: 220px;
  }

  .security-chip {
    right: 11px;
  }

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

  .trust-item,
  .trust-item:nth-child(3) {
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-bottom: 0;
  }

  .section {
    padding: 74px 0;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .media-composition {
    padding-right: 16px;
    padding-bottom: 28px;
  }

  .image-panel img,
  .image-panel-tall img {
    height: 365px;
  }

  .experience-card {
    right: 0;
    width: 190px;
    padding: 14px;
  }

  .service-grid,
  .process-line,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 315px;
  }

  .process-card {
    padding: 10px;
  }

  .vision-card {
    padding: 35px 26px;
  }

  .vision-mark {
    width: 74px;
    height: 74px;
  }

  .cta-actions,
  .cta-actions .btn {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .purpose-panel,
  .vm-card,
  .checklist-card,
  .privacy-card {
    padding: 29px;
  }

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

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

  .service-jump-grid > a {
    min-height: 117px;
  }

  .service-detail-heading h2 {
    font-size: 35px;
  }

  .service-index {
    top: -20px;
    font-size: 85px;
  }

  .appointment-grid,
  .web-capabilities {
    grid-template-columns: 1fr;
  }

  .partnership-wheel {
    width: 310px;
    height: 310px;
  }

  .wheel-center {
    width: 110px;
    height: 110px;
  }

  .wheel-item {
    width: 66px;
    height: 66px;
  }

  .wheel-two { top: 70px; right: -5px; }
  .wheel-five { top: 70px; left: -5px; }
  .wheel-three { right: 25px; bottom: 7px; }
  .wheel-four { left: 25px; bottom: 7px; }

  .timeline-step {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .process-timeline::before {
    left: 50px;
  }

  .timeline-marker {
    position: relative;
    top: auto;
    width: 102px;
    height: 102px;
  }

  .timeline-content {
    margin-left: 22px;
    padding: 28px 24px;
  }

  .report-includes {
    grid-template-columns: 1fr;
  }

  .expectations-card {
    padding: 28px;
    grid-template-columns: 1fr;
  }

  .form-card,
  .contact-sidebar {
    padding: 26px 22px;
  }

  .contact-sidebar h2 {
    font-size: 31px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .office-copy {
    padding: 34px 26px;
  }

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

  .footer-contact {
    grid-column: auto;
    display: flex;
  }

  .footer-contact h3 {
    grid-column: auto;
  }

  .footer-bottom .container {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 55px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .back-to-top {
    right: 21px;
    bottom: 81px;
  }

  .toast {
    right: 14px;
    bottom: 82px;
    left: 14px;
    max-width: none;
  }
}

@media (max-width: 380px) {
  .brand {
    width: 148px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 35px;
  }

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

  .partnership-wheel {
    transform: scale(0.9);
    transform-origin: center;
  }
}

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

  .reveal.animate-ready {
    opacity: 1;
    transform: none;
  }
}
