:root {
  --navy-950: #050c15;
  --navy-900: #07111e;
  --navy-850: #0a1727;
  --navy-800: #0d1e32;
  --navy-700: #17314e;
  --gold-500: #d6a958;
  --gold-400: #e4bd73;
  --gold-300: #f0d39d;
  --cyan-400: #3ad7e7;
  --white: #ffffff;
  --slate-50: #f7f8fa;
  --slate-100: #edf0f3;
  --slate-200: #dfe4e9;
  --slate-300: #c8d0d8;
  --slate-500: #697786;
  --slate-600: #536170;
  --slate-700: #344252;
  --text: #172230;
  --success: #3ad19b;
  --danger: #d44444;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 12px 35px rgba(8, 21, 36, .08);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, .26);
  --container: 1180px;
  --header-height: 82px;
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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;
}

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  padding: 10px 14px;
  color: var(--navy-900);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

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

.topbar {
  position: relative;
  z-index: 120;
  color: #dce7f2;
  background: var(--navy-950);
  font-size: .78rem;
  letter-spacing: .015em;
}

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

.topbar p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--gold-300);
}

.status-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(58, 209, 155, .12);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(7, 17, 30, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 30, .98);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
  width: 228px;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  color: #e8eef5;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold-400);
  transition: transform .2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  color: white;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav__actions {
  display: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 14px 28px rgba(214, 169, 88, .2);
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 36px rgba(214, 169, 88, .27);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(58, 215, 231, .55);
  outline-offset: 3px;
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: .84rem;
}

.button--ghost {
  color: white;
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: none;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, .09);
  box-shadow: none;
}

.button--dark {
  color: white;
  background: var(--navy-900);
  box-shadow: 0 14px 30px rgba(7, 17, 30, .18);
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 76% 35%, rgba(58, 215, 231, .12), transparent 26%),
    radial-gradient(circle at 20% 75%, rgba(214, 169, 88, .10), transparent 27%),
    linear-gradient(135deg, var(--navy-950) 0%, #09182a 52%, #0d233b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(58, 215, 231, .12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(58, 215, 231, .025),
    0 0 0 140px rgba(58, 215, 231, .018);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
  align-items: center;
  gap: clamp(45px, 6vw, 90px);
  padding-block: 82px 90px;
}

.eyebrow,
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-400);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow__icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(214, 169, 88, .32);
  border-radius: 50%;
  background: rgba(214, 169, 88, .08);
}

.hero h1 {
  max-width: 720px;
  margin: 22px 0;
  font-size: clamp(3rem, 5.2vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 650px;
  margin: 0;
  color: #c9d5e1;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 25px;
}

.hero__trust div {
  min-width: 0;
  padding-right: 22px;
}

.hero__trust div + div {
  border-left: 1px solid rgba(255, 255, 255, .12);
  padding-left: 22px;
}

.hero__trust strong,
.hero__trust span {
  display: block;
}

.hero__trust strong {
  margin-bottom: 2px;
  color: white;
  font-size: .95rem;
}

.hero__trust span {
  color: #8799aa;
  font-size: .78rem;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 30px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.4deg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .35), transparent 45%);
}

.hero-card__top,
.hero-card__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
}

.hero-card__top {
  color: var(--navy-900);
  border-bottom: 1px solid #e5e9ed;
  font-size: .82rem;
  font-weight: 800;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #13775b;
  background: #e8f8f2;
  font-size: .7rem;
}

.live-pill i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(58, 209, 155, .15);
}

.hero-card__image {
  min-height: 335px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px 20px 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(58, 215, 231, .12), transparent 42%),
    #edf0f2;
}

.hero-card__image img {
  width: 100%;
  max-height: 335px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-card__bottom {
  color: var(--navy-900);
  border-top: 1px solid #e5e9ed;
}

.hero-card__bottom strong,
.hero-card__bottom span {
  display: block;
}

.mini-label {
  margin-bottom: 2px;
  color: var(--slate-500);
  font-size: .72rem;
}

.shield-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  padding: 13px 16px;
  color: white;
  background: rgba(7, 17, 30, .86);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
}

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

.floating-card small {
  color: #91a3b5;
  font-size: .68rem;
}

.floating-card strong {
  font-size: .78rem;
}

.floating-card__icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--gold-300);
  background: rgba(214, 169, 88, .12);
}

.floating-card--alarm {
  top: 48px;
  left: -25px;
}

.floating-card--camera {
  right: -32px;
  bottom: 48px;
}

.trust-strip {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--slate-200);
  background: white;
}

.trust-strip .container {
  min-height: 130px;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 35px;
}

.trust-strip p {
  margin: 0;
  color: var(--slate-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 35px;
}

.brand-row img {
  width: 100%;
  height: 45px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .56;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.brand-row img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.section {
  padding-block: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .62fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}

.section-heading h2,
.about h2,
.offer h2,
.faq h2,
.contact h2 {
  margin: 12px 0 0;
  font-size: clamp(2.1rem, 3.7vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading p {
  margin: 0;
  color: var(--slate-600);
  font-size: 1.02rem;
}

.section-heading--center {
  max-width: 800px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center p {
  max-width: 620px;
  margin: 18px auto 0;
}

.services {
  background:
    radial-gradient(circle at 95% 5%, rgba(214, 169, 88, .08), transparent 22%),
    var(--slate-50);
}

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

.service-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 30px;
  background: white;
  box-shadow: 0 10px 35px rgba(8, 21, 36, .025);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  border-radius: 0 0 0 100%;
  background: linear-gradient(135deg, rgba(214, 169, 88, .08), transparent);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 169, 88, .5);
  box-shadow: var(--shadow-sm);
}

.service-card--featured {
  color: white;
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0, rgba(58, 215, 231, .16), transparent 34%),
    linear-gradient(140deg, var(--navy-900), var(--navy-800));
}

.service-card--featured::before {
  background: linear-gradient(135deg, rgba(214, 169, 88, .16), transparent);
}

.service-card--featured p {
  color: #bfcbd7 !important;
}

.service-card--featured a {
  color: var(--gold-300) !important;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--navy-900);
  background: linear-gradient(135deg, #f5e6c7, var(--gold-400));
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-number {
  position: absolute;
  top: 29px;
  right: 28px;
  color: var(--slate-300);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.service-card--featured .service-number {
  color: rgba(255, 255, 255, .38);
}

.service-card h3 {
  margin: 26px 0 9px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: .92rem;
  line-height: 1.7;
}

.service-card a {
  position: absolute;
  right: 30px;
  bottom: 27px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  color: var(--navy-800);
  font-size: .82rem;
  font-weight: 800;
}

.about {
  overflow: hidden;
  background: white;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.about__visual {
  position: relative;
}

.about__visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -28px;
  left: -28px;
  width: 48%;
  height: 46%;
  border-radius: 22px;
  background: rgba(214, 169, 88, .16);
}

.about__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 545px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.experience-card {
  position: absolute;
  z-index: 2;
  right: -24px;
  bottom: 32px;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 18px 20px;
  color: white;
  background: rgba(7, 17, 30, .92);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}

.experience-card strong {
  color: var(--gold-300);
  font-size: 2rem;
  letter-spacing: -.04em;
}

.experience-card span {
  color: #bec9d3;
  font-size: .76rem;
  line-height: 1.45;
}

.about__content .lead {
  margin: 25px 0 15px;
  color: var(--slate-700);
  font-size: 1.08rem;
  font-weight: 600;
}

.about__content > p:not(.lead) {
  color: var(--slate-600);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--slate-700);
  font-size: .92rem;
  font-weight: 600;
}

.check-list li > span {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #986d27;
  background: #f8ebd3;
}

.check-list svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.5;
}

.license-note {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--slate-200);
  padding-top: 24px;
}

.license-note > svg {
  width: 31px;
  height: 31px;
  color: var(--gold-500);
}

.license-note strong,
.license-note span {
  display: block;
}

.license-note strong {
  font-size: .9rem;
}

.license-note span {
  color: var(--slate-500);
  font-size: .78rem;
}

.process {
  color: white;
  background:
    radial-gradient(circle at 20% 10%, rgba(214, 169, 88, .08), transparent 24%),
    radial-gradient(circle at 90% 90%, rgba(58, 215, 231, .08), transparent 24%),
    var(--navy-900);
}

.process .section-heading p {
  color: #98a8b8;
}

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

.process-grid::before {
  content: "";
  position: absolute;
  top: 67px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 169, 88, .55), transparent);
}

.process-grid article {
  position: relative;
  z-index: 1;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: 28px;
  background: rgba(255, 255, 255, .035);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.process-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 169, 88, .38);
  background: rgba(255, 255, 255, .06);
}

.process-step {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(255, 255, 255, .25);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.process-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 169, 88, .28);
  border-radius: 50%;
  color: var(--gold-300);
  background: var(--navy-900);
}

.process-icon svg {
  width: 29px;
  height: 29px;
}

.process-grid h3 {
  margin: 29px 0 10px;
  font-size: 1.08rem;
}

.process-grid p {
  margin: 0;
  color: #a8b6c4;
  font-size: .88rem;
}

.offer {
  background: var(--slate-50);
}

.offer__card {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .86fr);
  align-items: center;
  gap: 50px;
  overflow: hidden;
  border-radius: 32px;
  padding: clamp(40px, 6vw, 75px);
  color: white;
  background:
    radial-gradient(circle at 85% 15%, rgba(58, 215, 231, .14), transparent 25%),
    linear-gradient(135deg, var(--navy-950), #102b48);
  box-shadow: var(--shadow-lg);
}

.offer-tag {
  display: inline-flex;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 7px 11px;
  color: #cad5df;
  background: rgba(255, 255, 255, .05);
  font-size: .7rem;
  font-weight: 800;
}

.offer h2 {
  max-width: 690px;
  margin-top: 14px;
}

.offer__content > p {
  max-width: 640px;
  color: #b9c6d2;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 27px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #d8e0e7;
  font-size: .9rem;
}

.feature-list li span {
  color: var(--gold-300);
  font-weight: 900;
}

.offer__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link {
  color: white;
  font-size: .85rem;
  font-weight: 800;
}

.offer__visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.offer__visual::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 215, 231, .17), transparent 66%);
  filter: blur(2px);
}

.offer__visual img {
  position: relative;
  z-index: 2;
  width: 118%;
  max-width: 640px;
  mix-blend-mode: screen;
  filter: contrast(1.05) brightness(1.35);
}

.offer-orbit {
  position: absolute;
  border: 1px solid rgba(58, 215, 231, .23);
  border-radius: 50%;
}

.offer-orbit--one {
  width: 430px;
  height: 270px;
  transform: rotate(-12deg);
}

.offer-orbit--two {
  width: 320px;
  height: 420px;
  transform: rotate(38deg);
}

.offer-stat {
  position: absolute;
  z-index: 4;
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  padding: 12px 15px;
  background: rgba(7, 17, 30, .82);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
}

.offer-stat small,
.offer-stat strong {
  display: block;
}

.offer-stat small {
  color: #8fa1b2;
  font-size: .66rem;
}

.offer-stat strong {
  margin-top: 2px;
  color: var(--gold-300);
  font-size: 1.05rem;
}

.offer-stat--top {
  top: 40px;
  right: 0;
}

.offer-stat--bottom {
  bottom: 25px;
  left: -5px;
}

.faq {
  background: white;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(50px, 8vw, 105px);
}

.faq__intro {
  position: sticky;
  top: 125px;
}

.faq__intro p {
  margin: 22px 0 28px;
  color: var(--slate-600);
}

.accordion {
  border-top: 1px solid var(--slate-200);
}

.accordion-item {
  border-bottom: 1px solid var(--slate-200);
}

.accordion-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 25px 0;
  color: var(--navy-900);
  background: transparent;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.accordion-item button i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--slate-200);
  border-radius: 50%;
}

.accordion-item button i::before,
.accordion-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--navy-900);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.accordion-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

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

.accordion-panel > p {
  overflow: hidden;
  margin: 0;
  color: var(--slate-600);
  font-size: .93rem;
}

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

.accordion-item.is-open .accordion-panel > p {
  padding: 0 48px 25px 0;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: 105px;
  color: white;
  background:
    radial-gradient(circle at 0 100%, rgba(214, 169, 88, .12), transparent 25%),
    radial-gradient(circle at 100% 0, rgba(58, 215, 231, .11), transparent 30%),
    var(--navy-900);
}

.contact::before {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -270px;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, .018),
    0 0 0 160px rgba(255, 255, 255, .012);
}

.contact__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 115px);
}

.overline--light {
  color: var(--gold-300);
}

.contact__content > p {
  max-width: 510px;
  color: #aebdca;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-methods a {
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 15px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, .035);
  transition: background .2s ease, border-color .2s ease;
}

.contact-methods a:hover {
  border-color: rgba(214, 169, 88, .36);
  background: rgba(255, 255, 255, .065);
}

.contact-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--gold-300);
  background: rgba(214, 169, 88, .12);
}

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

.contact-methods small {
  color: #92a3b3;
  font-size: .68rem;
}

.contact-methods strong {
  color: white;
  font-size: .88rem;
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: clamp(25px, 4vw, 42px);
  color: var(--text);
  background: white;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 17px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--slate-700);
  font-size: .78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 11px;
  padding: 12px 13px;
  color: var(--text);
  background: #fbfcfd;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input,
.field select {
  min-height: 48px;
}

.field textarea {
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--slate-300);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-500);
  background: white;
  box-shadow: 0 0 0 4px rgba(214, 169, 88, .11);
  outline: none;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--danger);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: .78;
  transform: none;
}

.field-error {
  display: none;
  margin-top: 6px;
  color: var(--danger);
  font-size: .7rem;
}

.field.is-invalid .field-error,
.consent-error.is-visible {
  display: block;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 20px;
  color: var(--slate-600);
  font-size: .73rem;
  cursor: pointer;
}

.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--navy-900);
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--slate-600);
  text-align: center;
  font-size: .78rem;
}

.form-status.is-success {
  color: #13775b;
}

.form-status.is-error {
  color: var(--danger);
}

.site-footer {
  color: #a9b8c5;
  background: var(--navy-950);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, .72fr);
  gap: 60px;
  padding-block: 70px 55px;
}

.footer__brand img {
  width: 230px;
}

.footer__brand p {
  max-width: 360px;
  margin-top: 20px;
  color: #8799aa;
  font-size: .84rem;
}

.footer__grid h2 {
  margin: 0 0 18px;
  color: white;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer__grid > div:not(.footer__brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__grid a,
.footer__grid span {
  margin-bottom: 9px;
  color: #8fa0b0;
  font-size: .8rem;
  transition: color .2s ease;
}

.footer__grid a:hover {
  color: var(--gold-300);
}

.footer__bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #66798b;
  font-size: .72rem;
}

.footer__bottom p {
  margin: 0;
}

.mobile-call {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25);
}

.mobile-call svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.4vw, 4.2rem);
  }

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

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

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

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

  .offer__visual {
    min-height: 360px;
  }

  .contact__grid {
    grid-template-columns: minmax(0, .75fr) minmax(430px, 1fr);
    gap: 50px;
  }

  .footer__grid {
    grid-template-columns: 1.3fr repeat(2, .8fr);
  }

  .footer__grid > div:last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .topbar__inner p {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .site-header {
    /* A filtered ancestor can trap position:fixed descendants on mobile.
       Keeping the header opaque avoids that browser behaviour and makes the
       menu reliably fill the viewport. */
    background: var(--navy-900);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .brand {
    width: 205px;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 102;
  }

  .primary-nav {
    position: fixed;
    z-index: 101;
    top: var(--mobile-menu-top, var(--header-height));
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--mobile-menu-top, var(--header-height)));
    height: calc(100dvh - var(--mobile-menu-top, var(--header-height)));
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: clamp(26px, 4vh, 42px) max(24px, calc((100vw - var(--container)) / 2)) calc(28px + env(safe-area-inset-bottom));
    color: white;
    background:
      radial-gradient(circle at 100% 100%, rgba(58, 215, 231, .10), transparent 34%),
      radial-gradient(circle at 0 0, rgba(214, 169, 88, .08), transparent 30%),
      var(--navy-950);
    box-shadow: 0 28px 55px rgba(0, 0, 0, .42);
    opacity: 0;
    transform: translateY(-14px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .28s ease, visibility .28s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    counter-reset: mobile-menu;
  }

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

  .primary-nav > a:not(.mobile-nav__cta):not(.mobile-nav__phone) {
    min-height: 66px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    padding: 14px 8px;
    color: #edf3f8;
    font-size: clamp(1.12rem, 4.7vw, 1.38rem);
    font-weight: 750;
    white-space: normal;
    counter-increment: mobile-menu;
  }

  .primary-nav > a:not(.mobile-nav__cta):not(.mobile-nav__phone)::before {
    content: "0" counter(mobile-menu);
    color: var(--gold-400);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .12em;
  }

  .primary-nav > a:not(.mobile-nav__cta):not(.mobile-nav__phone)::after {
    content: "→";
    position: static;
    width: auto;
    height: auto;
    display: block;
    color: rgba(255, 255, 255, .48);
    background: none;
    font-size: 1.15rem;
    line-height: 1;
    transform: none;
    transition: color .2s ease, transform .2s ease;
  }

  .primary-nav > a:not(.mobile-nav__cta):not(.mobile-nav__phone):hover,
  .primary-nav > a:not(.mobile-nav__cta):not(.mobile-nav__phone):focus-visible,
  .primary-nav > a:not(.mobile-nav__cta):not(.mobile-nav__phone).is-active {
    color: var(--gold-300);
  }

  .primary-nav > a:not(.mobile-nav__cta):not(.mobile-nav__phone):hover::after,
  .primary-nav > a:not(.mobile-nav__cta):not(.mobile-nav__phone):focus-visible::after {
    color: var(--gold-300);
    transform: translateX(4px);
  }

  .mobile-nav__actions {
    display: grid;
    gap: 13px;
    margin-top: auto;
    padding-top: clamp(28px, 5vh, 52px);
  }

  .mobile-nav__cta {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 999px;
    padding: 14px 20px;
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    box-shadow: 0 14px 28px rgba(214, 169, 88, .20);
    font-size: .92rem;
    font-weight: 900;
  }

  .mobile-nav__phone {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 17px;
    padding: 11px 16px;
    color: white;
    background: rgba(255, 255, 255, .045);
  }

  .mobile-nav__phone-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    color: var(--gold-300);
    background: rgba(214, 169, 88, .12);
  }

  .mobile-nav__phone small,
  .mobile-nav__phone strong {
    display: block;
  }

  .mobile-nav__phone small {
    color: #8fa1b2;
    font-size: .68rem;
  }

  .mobile-nav__phone strong {
    font-size: .94rem;
  }

  body.menu-open .mobile-call {
    opacity: 0;
    pointer-events: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 75px 90px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    min-height: 540px;
  }

  .trust-strip .container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 30px;
    text-align: center;
  }

  .brand-row {
    gap: 24px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__visual {
    max-width: 680px;
    margin-inline: auto;
  }

  .faq__intro {
    position: static;
  }

  .contact__content {
    max-width: 680px;
  }

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

  .contact-methods a {
    max-width: none;
  }

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

  .footer__grid > div:last-child {
    grid-column: auto;
  }

  .mobile-call {
    display: grid;
    transition: opacity .2s ease;
  }
}

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

  .topbar {
    font-size: .72rem;
  }

  .topbar__inner {
    min-height: 34px;
  }

  .header__inner {
    gap: 14px;
  }

  .brand {
    width: 180px;
  }

  .hero__inner {
    padding-block: 58px 72px;
  }

  .hero h1 {
    margin-block: 18px;
    font-size: clamp(2.35rem, 11.5vw, 3.45rem);
    line-height: 1.04;
    letter-spacing: -.045em;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero__trust div,
  .hero__trust div + div {
    border-left: 0;
    padding: 0 0 0 18px;
    border-left: 2px solid rgba(214, 169, 88, .45);
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero-card {
    border-radius: 22px;
    transform: none;
  }

  .hero-card__top,
  .hero-card__bottom {
    padding: 15px 17px;
  }

  .hero-card__image {
    min-height: 235px;
    padding: 8px;
  }

  .floating-card {
    display: none;
  }

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

  .brand-row img {
    height: 34px;
  }

  .brand-row img:nth-child(4),
  .brand-row img:nth-child(5) {
    grid-column: span 1;
  }

  .section {
    padding-block: 78px;
  }

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

  .section-heading h2,
  .about h2,
  .offer h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

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

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

  .about__visual img {
    min-height: 390px;
  }

  .experience-card {
    right: 15px;
    bottom: 15px;
  }

  .offer__card {
    min-height: auto;
    border-radius: 24px;
    padding: 30px 22px;
  }

  .offer__visual {
    min-height: 280px;
  }

  .offer-orbit--one {
    width: 290px;
    height: 180px;
  }

  .offer-orbit--two {
    width: 210px;
    height: 280px;
  }

  .offer-stat {
    min-width: 125px;
    padding: 9px 11px;
  }

  .offer-stat--top {
    top: 18px;
  }

  .offer-stat--bottom {
    bottom: 5px;
  }

  .accordion-item.is-open .accordion-panel > p {
    padding-right: 0;
  }

  .contact {
    padding-block: 78px;
  }

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

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

  .contact-form {
    padding: 24px 18px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 55px 42px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px 90px;
  }
}

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

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