:root {
  --ink: #071322;
  --navy: #0b213f;
  --navy-2: #143c6d;
  --blue: #2667f4;
  --blue-deep: #174cce;
  --blue-soft: #5290ff;
  --aqua: #22c8c9;
  --mist: #edf5ff;
  --cloud: #f7faff;
  --line: #dce7f3;
  --muted: #5f6f82;
  --white: #fff;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 12px 28px rgba(17, 53, 92, .09);
  --shadow-lg: 0 28px 75px rgba(17, 53, 92, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: #fff; background: var(--blue); }
:focus-visible { outline: 3px solid rgba(38, 103, 244, .38); outline-offset: 3px; }
.skip-link {
  position: fixed; z-index: 1000; left: 16px; top: -60px; padding: 11px 16px;
  color: #fff; border-radius: 10px; background: var(--blue); font-size: 13px; font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }
.icon {
  width: 22px; height: 22px; flex: 0 0 auto;
  fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.announcement {
  min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 7px 20px; color: #dceaff; background: var(--ink);
  font-size: 11px; font-weight: 650; letter-spacing: .06em; text-align: center;
}
.announcement__dot {
  width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(34, 200, 201, .12);
  animation: pulse 2.2s ease-in-out infinite;
}
.site-header {
  position: sticky; z-index: 100; top: 0; min-height: 78px;
  border-bottom: 1px solid rgba(220, 231, 243, .72);
  background: rgba(255, 255, 255, .9); backdrop-filter: blur(18px);
  transition: min-height .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { min-height: 68px; background: rgba(255, 255, 255, .96); box-shadow: 0 11px 30px rgba(9, 35, 63, .08); }
.nav-wrap {
  width: min(1200px, calc(100% - 40px)); min-height: inherit; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 25px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; letter-spacing: -.04em; white-space: nowrap; }
.brand img { width: 38px; height: 38px; }
.brand strong { font-weight: 850; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 34px); color: #33465c; font-size: 12px; font-weight: 720; }
.desktop-nav a { position: relative; padding: 8px 0; transition: color .25s ease; }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--blue); transition: right .25s ease;
}
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--blue); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.menu-toggle {
  display: none; width: 43px; height: 43px; padding: 0; place-items: center;
  border: 1px solid var(--line); border-radius: 13px; background: #fff; cursor: pointer;
}
.menu-toggle .icon { width: 20px; }
.menu-close { display: none; }
.mobile-nav {
  display: none; position: fixed; z-index: 99; inset: 102px 0 0; padding: 25px;
  overflow-y: auto; color: var(--navy); background: rgba(255, 255, 255, .98);
}
.mobile-nav > a:not(.button) { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 17px; font-weight: 760; }
.mobile-nav .button { margin-top: 20px; }

.button {
  min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 800; white-space: nowrap; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button .icon { width: 17px; }
.button--small { min-height: 42px; padding: 0 16px; font-size: 11px; }
.button--dark { color: #fff; background: var(--ink); box-shadow: 0 8px 20px rgba(7, 19, 34, .16); }
.button--dark:hover { box-shadow: 0 14px 26px rgba(7, 19, 34, .22); }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-deep)); box-shadow: 0 14px 34px rgba(38, 103, 244, .28); }
.button--primary:hover { box-shadow: 0 20px 38px rgba(38, 103, 244, .34); }
.button--ghost { color: var(--navy); border-color: var(--line); background: rgba(255, 255, 255, .7); }
.button--outline { color: var(--navy); border-color: var(--line); background: #fff; }
.button--outline:hover, .button--ghost:hover { border-color: #adc8e9; background: var(--mist); }
.button--light { color: var(--ink); background: #fff; box-shadow: 0 14px 36px rgba(0, 0, 0, .18); }
.button--wide { width: 100%; min-height: 57px; }

.hero {
  position: relative; overflow: hidden; isolation: isolate;
  width: min(1260px, calc(100% - 40px)); min-height: 690px; margin: 0 auto; padding: 72px 30px 76px;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 42px;
  border-radius: 0 0 38px 38px;
  background: radial-gradient(circle at 11% 15%, rgba(38, 103, 244, .13), transparent 27%),
              linear-gradient(145deg, #fafdff 0%, #f2f7ff 48%, #eaf4ff 100%);
}
.hero::before {
  content: ""; position: absolute; z-index: -1; inset: 0; opacity: .35; pointer-events: none;
  background-image: radial-gradient(#9bb8d7 1px, transparent 1px); background-size: 24px 24px;
  mask-image: linear-gradient(to right, #000, transparent 42%);
}
.hero__content { position: relative; z-index: 2; max-width: 680px; padding-left: 28px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 23px; height: 2px; background: var(--aqua); }
.eyebrow--light { color: #91b7ff; }
.hero h1, .page-hero h1 {
  margin: 0; color: var(--ink); font-size: clamp(47px, 5.1vw, 76px); line-height: .99; letter-spacing: -.065em; font-weight: 840;
}
.hero h1 span, .page-hero h1 span, .payment-card h1 span { color: var(--blue); }
.hero__content > p {
  max-width: 610px; margin: 27px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 29px; color: #4f6174; font-size: 10px; font-weight: 720; }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust .icon { width: 16px; color: var(--aqua); stroke-width: 2.8; }
.hero__visual { position: relative; z-index: 1; min-height: 500px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(38, 103, 244, .17); border-radius: 50%; }
.visual-orbit--outer { width: 450px; height: 450px; animation: spin 30s linear infinite; }
.visual-orbit--outer::before, .visual-orbit--inner::before {
  content: ""; position: absolute; width: 10px; height: 10px; top: 12%; left: 15%;
  border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 8px rgba(34, 200, 201, .11);
}
.visual-orbit--inner { width: 330px; height: 330px; border-style: dashed; animation: spin-reverse 22s linear infinite; }
.visual-orbit--inner::before { top: auto; left: auto; right: 8%; bottom: 23%; width: 8px; height: 8px; background: var(--blue); }
.visual-core {
  width: 230px; height: 230px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, .92); border-radius: 68px;
  background: linear-gradient(145deg, #fff, #edf5ff); box-shadow: 0 35px 80px rgba(17, 63, 115, .18), inset 0 1px #fff;
  transform: rotate(-5deg);
}
.visual-core img { width: 112px; }
.visual-core span { margin-top: 8px; color: var(--navy); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.floating-card {
  position: absolute; z-index: 3; min-width: 218px; padding: 14px;
  display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 17px; background: rgba(255, 255, 255, .88); backdrop-filter: blur(15px);
  box-shadow: 0 20px 45px rgba(25, 64, 108, .15); animation: float 5s ease-in-out infinite;
}
.floating-card--top { top: 63px; right: 12px; }
.floating-card--bottom { bottom: 57px; left: 3px; animation-delay: -2.2s; }
.floating-card b, .floating-card small { display: block; }
.floating-card b { color: var(--navy); font-size: 11px; }
.floating-card small { margin-top: 4px; color: var(--muted); font-size: 8px; letter-spacing: .04em; }
.mini-icon { width: 41px; height: 41px; display: grid; place-items: center; color: #fff; border-radius: 12px; background: var(--blue); }
.mini-icon--aqua { background: #0eafaf; }
.mini-icon .icon { width: 20px; }
.spark { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #ffb45a; box-shadow: 0 0 0 7px rgba(255, 180, 90, .1); }
.spark--one { top: 20%; left: 13%; }
.spark--two { right: 9%; bottom: 24%; background: var(--blue); }
.spark--three { left: 26%; bottom: 9%; background: var(--aqua); }
.hero__glow { position: absolute; z-index: -1; width: 250px; height: 250px; border-radius: 50%; filter: blur(75px); pointer-events: none; }
.hero__glow--one { top: -110px; left: 22%; background: rgba(34, 200, 201, .14); }
.hero__glow--two { right: 5%; bottom: -130px; background: rgba(38, 103, 244, .13); }

.proof-strip {
  width: min(1160px, calc(100% - 60px)); margin: -1px auto 0; padding: 27px 38px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  border: 1px solid var(--line); border-top: 0; border-radius: 0 0 22px 22px; background: #fff;
}
.proof-strip div { display: flex; align-items: center; gap: 13px; color: #596b7e; font-size: 10px; font-weight: 720; }
.proof-strip strong { color: var(--blue); font-size: 9px; letter-spacing: .08em; }
.section { width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 105px 0; }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; margin-bottom: 46px; }
.section-heading h2, .about-content h2, .story-grid h2 {
  max-width: 720px; margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.08; letter-spacing: -.045em;
}
.section-heading > p, .about-content > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card {
  position: relative; overflow: hidden; min-height: 320px; padding: 29px;
  border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card::after {
  content: ""; position: absolute; right: -55px; bottom: -55px; width: 120px; height: 120px;
  border-radius: 50%; background: var(--mist); transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: #bcd2ed; box-shadow: 0 24px 55px rgba(17, 53, 92, .11); }
.service-card:hover::after { transform: scale(1.5); }
.service-card__number { float: right; color: #adbdce; font-size: 9px; font-weight: 850; letter-spacing: .1em; }
.service-card__icon {
  width: 49px; height: 49px; display: grid; place-items: center; color: var(--blue);
  border-radius: 15px; background: var(--mist);
}
.service-card__icon .icon { width: 23px; }
.service-card h3 { margin: 31px 0 12px; font-size: 18px; letter-spacing: -.025em; }
.service-card p { min-height: 69px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.72; }
.service-card a, .text-link {
  position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  margin-top: 25px; color: var(--blue); font-size: 10px; font-weight: 850;
}
.service-card a .icon, .text-link .icon { width: 15px; transition: transform .25s ease; }
.service-card:hover a .icon, .text-link:hover .icon { transform: translateX(4px); }

.dark-band { padding: 105px max(20px, calc((100% - 1160px) / 2)); color: #fff; background: var(--ink); }
.dark-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; }
.dark-grid h2 { margin: 0; font-size: clamp(42px, 5vw, 63px); line-height: 1.02; letter-spacing: -.055em; }
.dark-grid h2 span { color: var(--aqua); }
.dark-grid > div:first-child > p { max-width: 450px; margin-top: 24px; color: #92a6bc; font-size: 13px; line-height: 1.8; }
.text-link--light { color: #c9ddff; }
.process-list article { padding: 27px 0; display: grid; grid-template-columns: 54px 1fr; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.process-list article:first-child { padding-top: 5px; }
.process-list article > span { color: var(--aqua); font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.process-list h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.02em; }
.process-list p { margin: 0; color: #91a4b8; font-size: 11px; line-height: 1.7; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.about-visual {
  position: relative; min-height: 430px; display: grid; place-items: center; overflow: hidden;
  border-radius: 30px; background: linear-gradient(145deg, var(--navy), var(--navy-2));
}
.about-visual::before, .about-visual::after { content: ""; position: absolute; border-radius: 50%; }
.about-visual::before { width: 330px; height: 330px; border: 1px solid rgba(255, 255, 255, .11); }
.about-visual::after { width: 460px; height: 460px; border: 1px dashed rgba(34, 200, 201, .18); animation: spin 38s linear infinite; }
.about-panel {
  position: relative; z-index: 2; width: 72%; padding: 26px; display: flex; align-items: center; gap: 17px;
  border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .08); backdrop-filter: blur(12px);
}
.about-panel img { width: 77px; flex: 0 0 auto; }
.about-panel strong, .about-panel span { display: block; }
.about-panel strong { color: #fff; font-size: 13px; }
.about-panel span { margin-top: 6px; color: #9eb4c9; font-size: 9px; line-height: 1.5; }
.about-metric {
  position: absolute; z-index: 3; right: 25px; bottom: 24px; padding: 16px 20px;
  border-radius: 16px; background: #fff; box-shadow: 0 18px 35px rgba(0, 0, 0, .2);
}
.about-metric strong, .about-metric span { display: block; }
.about-metric strong { color: var(--blue); font-size: 25px; letter-spacing: -.04em; }
.about-metric span { margin-top: 2px; color: var(--muted); font-size: 8px; }
.about-content > p { margin-top: 24px; }
.check-list { margin: 28px 0 0; padding: 0; display: grid; gap: 13px; list-style: none; color: #33475c; font-size: 12px; font-weight: 690; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; }
.check-list .icon { width: 17px; margin-top: 1px; color: var(--aqua); stroke-width: 2.7; }
.check-list.compact { margin-top: 20px; gap: 10px; font-size: 11px; }
.about-content .button { margin-top: 28px; }

.cta {
  width: min(1160px, calc(100% - 40px)); margin: 80px auto 50px; padding: 68px;
  display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 50px;
  color: #fff; border-radius: 30px;
  background: radial-gradient(circle at 85% 10%, rgba(34, 200, 201, .22), transparent 35%),
              linear-gradient(135deg, #0e2e57, #08192c);
  box-shadow: 0 25px 75px rgba(5, 28, 52, .2);
}
.cta h2 { max-width: 700px; margin: 0; font-size: clamp(35px, 4.2vw, 55px); line-height: 1.05; letter-spacing: -.05em; }
.cta p { max-width: 620px; margin: 20px 0 0; color: #9fb5ca; font-size: 12px; line-height: 1.8; }
.cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.phone-link { display: inline-flex; align-items: center; gap: 10px; color: #b9cbe0; font-size: 11px; font-weight: 760; }
.phone-link .icon { width: 17px; color: var(--aqua); }

.site-footer { padding: 65px max(20px, calc((100% - 1160px) / 2)) 28px; color: #fff; background: #050d17; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 55px; padding-bottom: 52px; }
.brand--light { color: #fff; }
.brand--light img { border-radius: 13px; }
.footer-brand > p { max-width: 360px; margin: 20px 0; color: #71869b; font-size: 11px; line-height: 1.8; }
.footer-contact { display: flex; align-items: center; gap: 9px; margin-top: 11px; color: #9aadc0; font-size: 10px; }
.footer-contact .icon { width: 15px; color: var(--aqua); }
.footer-grid h3 { margin: 5px 0 19px; color: #fff; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) > a { display: block; margin: 12px 0; color: #70859a; font-size: 10px; transition: color .2s ease; }
.footer-grid > div:not(.footer-brand) > a:hover { color: #cfe0f2; }
.footer-bottom {
  padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  color: #536a80; border-top: 1px solid rgba(255, 255, 255, .09); font-size: 8px; letter-spacing: .045em;
}
.whatsapp-float {
  position: fixed; z-index: 90; right: 24px; bottom: 24px; min-height: 49px; padding: 0 17px;
  display: flex; align-items: center; gap: 9px; color: #fff; border-radius: 15px;
  background: #109b6b; box-shadow: 0 15px 35px rgba(14, 132, 89, .28);
  font-size: 10px; font-weight: 800; transition: transform .25s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float .icon { width: 19px; }

/* Internal page hero */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  width: min(1260px, calc(100% - 40px)); min-height: 500px; margin: 0 auto; padding: 80px 70px;
  display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 70px;
  border-radius: 0 0 38px 38px;
  background: radial-gradient(circle at 85% 20%, rgba(34, 200, 201, .13), transparent 30%),
              linear-gradient(145deg, #f9fcff, #edf5ff);
}
.page-hero::before {
  content: ""; position: absolute; z-index: -1; inset: 0; opacity: .3;
  background-image: radial-gradient(#9bb8d7 1px, transparent 1px); background-size: 24px 24px;
  mask-image: linear-gradient(to right, #000, transparent 55%);
}
.page-hero__content { max-width: 770px; }
.page-hero h1 { font-size: clamp(46px, 5.3vw, 73px); }
.page-hero p { max-width: 650px; margin: 27px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.page-hero__symbol {
  position: relative; width: 300px; height: 300px; justify-self: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid rgba(38, 103, 244, .13); border-radius: 50%;
}
.page-hero__symbol::before, .page-hero__symbol::after {
  content: ""; position: absolute; border: 1px dashed rgba(38, 103, 244, .14); border-radius: 50%; animation: spin 30s linear infinite;
}
.page-hero__symbol::before { width: 240px; height: 240px; }
.page-hero__symbol::after { width: 360px; height: 360px; animation-direction: reverse; }
.page-hero__symbol img { position: relative; z-index: 2; width: 145px; filter: drop-shadow(0 18px 28px rgba(38, 103, 244, .18)); }
.page-hero__symbol span { position: relative; z-index: 2; margin-top: 13px; color: var(--navy); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.page-hero--compact { min-height: 430px; grid-template-columns: 1fr; }
.page-hero--compact .page-hero__content { max-width: 850px; }

/* Services */
.service-detail-list { padding-top: 80px; }
.service-detail {
  padding: 48px 0; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px;
  border-bottom: 1px solid var(--line);
}
.service-detail:first-child { padding-top: 0; }
.service-detail__title { position: relative; }
.service-detail__title .service-card__icon { margin-bottom: 26px; }
.service-detail__number { position: absolute; top: 0; right: 0; color: #afc0d2; font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.service-detail h2 { max-width: 390px; margin: 0; font-size: 35px; line-height: 1.1; letter-spacing: -.04em; }
.service-detail > div:last-child > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

/* Solutions */
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.solution-card {
  min-height: 430px; padding: 42px; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 26px; background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}
.solution-card:nth-child(2), .solution-card:nth-child(3) { background: var(--cloud); }
.solution-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.solution-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.solution-card__top > span { width: 55px; height: 55px; display: grid; place-items: center; color: var(--blue); border-radius: 17px; background: var(--mist); }
.solution-card__top small { color: #a9bbcd; font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.solution-card h2 { margin: 35px 0 14px; font-size: 31px; letter-spacing: -.04em; }
.solution-card > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; }
.tag-row span { padding: 7px 10px; color: #476079; border: 1px solid var(--line); border-radius: 20px; background: #fff; font-size: 8px; font-weight: 750; }
.solution-card .text-link { margin-top: auto; padding-top: 28px; }
.mini-banner {
  margin-bottom: 80px; padding: 55px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
  border-radius: 27px; background: var(--mist);
}
.mini-banner .eyebrow { margin-bottom: 12px; }
.mini-banner h2 { max-width: 760px; margin: 0; font-size: 33px; line-height: 1.2; letter-spacing: -.04em; }

/* Process */
.timeline { padding-top: 70px; }
.timeline-item {
  position: relative; padding: 52px 0; display: grid; grid-template-columns: 110px 1fr .75fr; gap: 55px;
  border-bottom: 1px solid var(--line);
}
.timeline-number { color: var(--blue); font-size: 41px; font-weight: 820; letter-spacing: -.05em; }
.timeline-copy small { color: #9aabbd; font-size: 8px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.timeline-copy h2 { margin: 9px 0 12px; font-size: 38px; letter-spacing: -.045em; }
.timeline-copy h3 { max-width: 520px; margin: 0 0 15px; color: #354b61; font-size: 15px; }
.timeline-copy p { max-width: 610px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.timeline-item > .check-list { align-self: center; margin: 0; padding: 23px; border-radius: 18px; background: var(--cloud); }

/* Pricing */
.pricing-grid { padding-top: 78px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; align-items: stretch; }
.price-card {
  position: relative; min-height: 595px; padding: 36px; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 25px; background: #fff;
}
.price-card--featured { color: #fff; border-color: var(--navy); background: var(--navy); box-shadow: var(--shadow-lg); transform: translateY(-12px); }
.price-card > small { color: #a9bbcd; font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.price-card h2 { margin: 24px 0 13px; font-size: 32px; letter-spacing: -.04em; }
.price-card > p { min-height: 67px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.price-card--featured > p, .price-card--featured .check-list { color: #a9bfd5; }
.price-card--featured .check-list .icon { color: var(--aqua); }
.price-card__badge {
  position: absolute; top: 18px; right: 18px; padding: 7px 10px; color: #062b2c;
  border-radius: 20px; background: var(--aqua); font-size: 7px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase;
}
.quote-label { margin: 28px 0 2px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-card--featured .quote-label { border-color: rgba(255, 255, 255, .12); }
.quote-label span, .quote-label small { display: block; }
.quote-label span { font-size: 20px; font-weight: 820; letter-spacing: -.03em; }
.quote-label small { margin-top: 4px; color: #8ea1b5; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.price-card .button { width: 100%; margin-top: auto; }
.payment-note {
  margin-bottom: 80px; padding: 35px 42px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px;
  border: 1px solid var(--line); border-radius: 22px; background: var(--cloud);
}
.payment-note__icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--blue); border-radius: 16px; background: #fff; }
.payment-note h2 { margin: 0 0 5px; font-size: 19px; }
.payment-note p { margin: 0; color: var(--muted); font-size: 11px; }

/* About */
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.prose p { margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.values-band { color: #fff; background: var(--ink); }
.values-band .section { padding-top: 90px; }
.values-band .section-heading h2 { color: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, .1); }
.values-grid article { min-height: 250px; padding: 30px; background: var(--ink); }
.values-grid article > span { color: var(--aqua); font-size: 8px; font-weight: 850; letter-spacing: .12em; }
.values-grid h3 { margin: 45px 0 14px; font-size: 19px; }
.values-grid p { margin: 0; color: #8398ad; font-size: 11px; line-height: 1.75; }
.business-card {
  margin-top: 80px; margin-bottom: 80px; padding: 40px; display: grid; grid-template-columns: auto 1fr 1.3fr; align-items: center; gap: 30px;
  border: 1px solid var(--line); border-radius: 25px; box-shadow: var(--shadow-sm);
}
.business-card > div:first-child { width: 85px; height: 85px; }
.business-card small { color: #9aabbd; font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.business-card h2 { margin: 7px 0 6px; font-size: 25px; letter-spacing: -.035em; }
.business-card p { margin: 0; color: var(--muted); font-size: 10px; }
.business-card dl { margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.business-card dt { margin-bottom: 6px; color: #9aabbd; font-size: 7px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.business-card dd { margin: 0; color: #344b61; font-size: 9px; font-weight: 760; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 80px; }
.faq-intro { position: sticky; top: 110px; padding: 38px; border-radius: 24px; background: var(--cloud); }
.faq-intro h2 { margin: 30px 0 10px; font-size: 28px; letter-spacing: -.04em; }
.faq-intro p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.faq-intro .button { margin-top: 27px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 26px 2px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  color: var(--navy); font-size: 14px; font-weight: 780; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: relative; width: 28px; height: 28px; flex: 0 0 auto; border-radius: 50%; background: var(--mist); }
.faq-item summary i::before, .faq-item summary i::after {
  content: ""; position: absolute; top: 13px; left: 8px; width: 12px; height: 2px; background: var(--blue); transition: transform .2s ease;
}
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-item p { margin: -5px 45px 25px 2px; color: var(--muted); font-size: 12px; line-height: 1.8; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 18px; align-items: stretch; }
.contact-panel { padding: 48px; color: #fff; border-radius: 28px; background: var(--navy); }
.contact-panel h2 { max-width: 390px; margin: 0; font-size: 39px; line-height: 1.08; letter-spacing: -.045em; }
.contact-panel > p { margin: 17px 0 30px; color: #93a9bf; font-size: 11px; line-height: 1.7; }
.contact-panel > a {
  padding: 17px 0; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .11);
}
.contact-panel > a > span { width: 40px; height: 40px; display: grid; place-items: center; color: var(--aqua); border-radius: 12px; background: rgba(255, 255, 255, .07); }
.contact-panel > a .icon { width: 17px; }
.contact-panel > a > .icon { color: #5f7993; }
.contact-panel small, .contact-panel strong { display: block; }
.contact-panel small { margin-bottom: 4px; color: #7590aa; font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.contact-panel strong { font-size: 11px; }
.contact-location { margin-top: 28px; padding: 20px; display: flex; align-items: flex-start; gap: 13px; border-radius: 16px; background: rgba(255, 255, 255, .06); }
.contact-location > .icon { width: 18px; color: var(--aqua); }
.contact-location strong { color: #c9d7e5; font-size: 10px; line-height: 1.5; }
.contact-form { padding: 48px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.form-heading small { color: var(--blue); font-size: 8px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.form-heading h2 { margin: 10px 0 10px; font-size: 31px; letter-spacing: -.04em; }
.form-heading p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.7; }
.form-grid { margin: 30px 0 23px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid label { display: grid; gap: 8px; }
.form-grid label > span { color: #3f566d; font-size: 9px; font-weight: 800; }
.form-full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; padding: 14px 15px; color: var(--navy); border: 1px solid var(--line); border-radius: 12px;
  outline: 0; background: var(--cloud); font-size: 11px; transition: border-color .2s ease, box-shadow .2s ease;
}
.form-grid input, .form-grid select { min-height: 47px; }
.form-grid textarea { resize: vertical; min-height: 128px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue-soft); box-shadow: 0 0 0 4px rgba(38, 103, 244, .08); }
.contact-form .button { width: 100%; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 15px 0 0; color: #8c9cad; font-size: 8px; }
.form-note .icon { width: 13px; color: var(--aqua); }
.form-note a { color: var(--blue); text-decoration: underline; }

/* Payment */
.payment-hero {
  min-height: 720px; padding: 75px max(20px, calc((100% - 1040px) / 2));
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 18px;
  background: radial-gradient(circle at 15% 15%, rgba(38, 103, 244, .14), transparent 31%), var(--cloud);
}
.payment-card, .payment-aside { border: 1px solid var(--line); border-radius: 28px; background: #fff; }
.payment-card { padding: 48px; box-shadow: var(--shadow-lg); }
.payment-card__icon { width: 52px; height: 52px; margin-bottom: 25px; display: grid; place-items: center; color: #fff; border-radius: 16px; background: var(--blue); box-shadow: 0 13px 25px rgba(38, 103, 244, .26); }
.payment-card h1 { margin: 0; font-size: 47px; line-height: 1.02; letter-spacing: -.055em; }
.payment-card > p { margin: 20px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.payment-steps { margin: 29px 0; display: grid; gap: 1px; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.payment-steps div { padding: 13px 15px; display: grid; grid-template-columns: 30px 1fr; align-items: center; background: var(--cloud); }
.payment-steps span { color: var(--blue); font-size: 8px; font-weight: 850; }
.payment-steps p { margin: 0; color: #52677d; font-size: 9px; }
.payment-help { margin-top: 17px; display: flex; align-items: center; justify-content: center; gap: 7px; color: #52677d; font-size: 9px; font-weight: 760; }
.payment-help .icon { width: 15px; color: var(--aqua); }
.payment-aside { padding: 42px; background: var(--navy); color: #fff; }
.payment-aside > img { width: 90px; margin-bottom: 28px; }
.payment-aside h2 { margin: 0; font-size: 26px; letter-spacing: -.04em; }
.payment-aside .check-list { color: #a5b9cc; }
.secure-note { margin-top: 30px; padding: 18px; display: flex; align-items: flex-start; gap: 12px; border-radius: 15px; background: rgba(255, 255, 255, .07); }
.secure-note > .icon { width: 18px; color: var(--aqua); }
.secure-note strong, .secure-note small { display: block; }
.secure-note strong { margin-bottom: 5px; font-size: 10px; }
.secure-note small { color: #8299af; font-size: 8px; line-height: 1.6; }

/* Legal */
.legal-hero { padding: 85px max(20px, calc((100% - 1000px) / 2)) 55px; background: var(--cloud); }
.legal-hero h1 { margin: 0; font-size: 55px; letter-spacing: -.055em; }
.legal-hero p { margin: 12px 0 0; color: var(--muted); font-size: 10px; }
.legal-layout {
  width: min(1000px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 110px;
  display: grid; grid-template-columns: 190px 1fr; gap: 75px; align-items: start;
}
.legal-layout aside { position: sticky; top: 110px; display: grid; gap: 12px; }
.legal-layout aside strong { margin-bottom: 8px; color: var(--navy); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.legal-layout aside a { color: #76899c; font-size: 9px; }
.legal-layout aside a:hover { color: var(--blue); }
.legal-copy { max-width: 720px; }
.legal-lead { padding: 24px; color: #31485f !important; border-left: 3px solid var(--aqua); background: var(--cloud); font-size: 14px !important; }
.legal-copy h2 { margin: 40px 0 12px; scroll-margin-top: 115px; color: var(--navy); font-size: 20px; letter-spacing: -.025em; }
.legal-copy p { margin: 0 0 14px; color: var(--muted); font-size: 11px; line-height: 1.85; }
.legal-copy a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* 404 */
.not-found {
  min-height: 640px; padding: 80px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background: radial-gradient(circle, rgba(38, 103, 244, .12), transparent 36%), var(--cloud);
}
.not-found__symbol { width: 120px; height: 120px; margin-bottom: 20px; animation: float 5s ease-in-out infinite; }
.not-found > span { color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .2em; }
.not-found h1 { max-width: 690px; margin: 16px 0 14px; font-size: 49px; line-height: 1.05; letter-spacing: -.055em; }
.not-found p { margin: 0; color: var(--muted); font-size: 13px; }
.not-found > div:last-child { display: flex; gap: 10px; margin-top: 30px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .68s ease, transform .68s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .48; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }

@media (max-width: 1020px) {
  .desktop-nav { gap: 18px; }
  .payment-shortcut { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 65px; }
  .hero__content { padding-left: 0; }
  .hero__visual { min-height: 460px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading, .dark-grid, .about-split, .cta { grid-template-columns: 1fr; gap: 45px; }
  .dark-grid { gap: 60px; }
  .page-hero { padding-inline: 45px; }
  .service-detail { gap: 55px; }
  .timeline-item { grid-template-columns: 80px 1fr; }
  .timeline-item > .check-list { grid-column: 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 650px; }
  .price-card { min-height: auto; }
  .price-card--featured { transform: none; }
  .price-card .button { margin-top: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .business-card { grid-template-columns: auto 1fr; }
  .business-card dl { grid-column: 1 / -1; }
  .faq-layout { gap: 45px; }
  .contact-layout { grid-template-columns: 1fr; }
  .payment-hero { grid-template-columns: 1fr; max-width: none; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 780px) {
  .desktop-nav, .desktop-cta { display: none; }
  .payment-shortcut { display: inline-flex; }
  .menu-toggle { display: grid; }
  .site-header.menu-is-open .mobile-nav { display: grid; align-content: start; }
  .site-header.menu-is-open .menu-open { display: none; }
  .site-header.menu-is-open .menu-close { display: block; }
  .proof-strip { grid-template-columns: 1fr; gap: 13px; }
  .page-hero { min-height: 450px; grid-template-columns: 1fr; }
  .page-hero__symbol { display: none; }
  .solution-grid { grid-template-columns: 1fr; }
  .mini-banner, .payment-note { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 25px; }
  .story-grid, .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro { position: static; }
  .values-grid { grid-template-columns: 1fr; }
  .business-card { grid-template-columns: 1fr; text-align: left; }
  .business-card dl { grid-column: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-layout aside { position: static; padding: 20px; grid-template-columns: repeat(3, 1fr); border-radius: 16px; background: var(--cloud); }
  .legal-layout aside strong { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .announcement { min-height: 31px; font-size: 8px; }
  .site-header { min-height: 66px; }
  .nav-wrap { width: calc(100% - 26px); }
  .brand { font-size: 17px; }
  .brand img { width: 35px; height: 35px; }
  .payment-shortcut { display: none; }
  .mobile-nav { inset: 97px 0 0; }
  .hero { width: calc(100% - 18px); min-height: auto; padding: 52px 20px 31px; border-radius: 0 0 25px 25px; }
  .hero h1 { font-size: 44px; }
  .hero__content > p { font-size: 14px; line-height: 1.65; }
  .hero__actions { display: grid; }
  .hero__trust { display: grid; gap: 10px; }
  .hero__visual { min-height: 370px; margin: -10px -32px; transform: scale(.83); }
  .visual-orbit--outer { width: 390px; height: 390px; }
  .visual-orbit--inner { width: 285px; height: 285px; }
  .visual-core { width: 195px; height: 195px; border-radius: 56px; }
  .floating-card--top { right: 0; }
  .floating-card--bottom { left: 0; }
  .proof-strip { width: calc(100% - 36px); padding: 22px; }
  .section { width: calc(100% - 36px); padding: 78px 0; }
  .section-heading { gap: 20px; }
  .section-heading h2, .about-content h2, .story-grid h2 { font-size: 36px; }
  .service-grid { grid-template-columns: 1fr; }
  .dark-band { padding: 78px 18px; }
  .dark-grid h2 { font-size: 42px; }
  .about-visual { min-height: 350px; }
  .about-panel { width: 84%; padding: 20px; }
  .cta { width: calc(100% - 28px); margin: 55px auto 25px; padding: 41px 24px; border-radius: 24px; }
  .cta h2 { font-size: 37px; }
  .page-hero { width: calc(100% - 18px); min-height: 390px; padding: 60px 23px; border-radius: 0 0 25px 25px; }
  .page-hero h1 { font-size: 42px; }
  .page-hero p { font-size: 13px; }
  .service-detail { padding: 40px 0; }
  .service-detail h2 { font-size: 31px; }
  .solution-card { min-height: 390px; padding: 28px; }
  .mini-banner { width: calc(100% - 36px); margin-bottom: 40px; padding: 30px; }
  .timeline-item { grid-template-columns: 1fr; gap: 18px; padding: 40px 0; }
  .timeline-number { font-size: 27px; }
  .timeline-item > .check-list { grid-column: auto; }
  .pricing-grid { padding-top: 55px; }
  .price-card { padding: 29px; }
  .payment-note { width: calc(100% - 36px); margin-bottom: 40px; padding: 28px; }
  .values-band .section { padding-top: 70px; }
  .business-card { width: calc(100% - 36px); margin-top: 50px; margin-bottom: 50px; padding: 28px; }
  .business-card dl { grid-template-columns: 1fr; }
  .faq-intro { padding: 29px; }
  .contact-panel, .contact-form { padding: 29px; border-radius: 22px; }
  .contact-panel h2 { font-size: 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .payment-hero { padding: 45px 14px; }
  .payment-card, .payment-aside { padding: 29px; border-radius: 23px; }
  .payment-card h1 { font-size: 39px; }
  .legal-hero { padding: 65px 20px 40px; }
  .legal-hero h1 { font-size: 42px; }
  .legal-layout { width: calc(100% - 36px); padding: 50px 0 80px; }
  .legal-layout aside { grid-template-columns: repeat(2, 1fr); }
  .not-found h1 { font-size: 40px; }
  .not-found > div:last-child { width: 100%; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 22px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 50px; height: 50px; padding: 0; justify-content: center; border-radius: 50%; }
  .whatsapp-float span { display: none; }
}

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