:root {
  --navy-950: #061525;
  --navy-900: #09213a;
  --navy-800: #0f3458;
  --blue: #126ef5;
  --blue-dark: #0752b8;
  --orange: #ff9f1c;
  --cyan: #20c7bd;
  --green: #18a660;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --line: #dbe5ef;
  --text: #0c1b2a;
  --muted: #5e6f80;
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 8px;
  --shadow: 0 20px 55px rgba(6, 21, 37, .14);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, .34);
  --container: 1180px;
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-family: var(--font-heading);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 5rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

p:last-child {
  margin-bottom: 0;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  flex: none;
  line-height: 1;
  text-align: center;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--cyan));
}

.site-header {
  position: sticky;
  z-index: 900;
  top: 0;
  background: rgba(6, 21, 37, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 21, 37, .98);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .26);
}

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

.brand {
  width: 174px;
  flex: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.desktop-nav a {
  position: relative;
  padding: 29px 13px;
  color: #d8e4f0;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 800;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 22px;
  left: 13px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e9f2fb;
  font-family: var(--font-heading);
  font-size: .86rem;
  font-weight: 800;
}

.header-phone .icon {
  color: var(--orange);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

.btn-large {
  min-height: 56px;
  padding-inline: 26px;
}

.btn-full {
  width: 100%;
}

.btn-accent {
  color: var(--navy-950);
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 159, 28, .26);
}

.btn-accent:hover {
  background: #ffb545;
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(18, 110, 245, .22);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-light {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .34);
}

.btn-light:hover {
  background: rgba(255, 255, 255, .2);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.menu-toggle .icon {
  font-size: 1.25rem;
}

.mobile-panel {
  position: fixed;
  z-index: 1100;
  inset: 0;
  pointer-events: none;
  visibility: hidden;
}

.mobile-panel.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(2, 8, 15, .72);
  opacity: 0;
  backdrop-filter: blur(6px);
  transition: opacity .24s ease;
}

.mobile-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(90vw, 410px);
  height: 100%;
  padding: 22px;
  background: var(--navy-950);
  box-shadow: -28px 0 70px rgba(0, 0, 0, .38);
  transform: translateX(105%);
  transition: transform .28s ease;
}

.mobile-panel.is-open .mobile-backdrop {
  opacity: 1;
}

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

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mobile-drawer-head img {
  width: 150px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.mobile-nav {
  display: grid;
  padding-block: 20px;
}

.mobile-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #e4eef8;
  font-family: var(--font-heading);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 82svh;
  color: #fff;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 21, 37, .96) 0%, rgba(6, 21, 37, .84) 46%, rgba(6, 21, 37, .48) 100%),
    linear-gradient(180deg, rgba(6, 21, 37, .1), rgba(6, 21, 37, .9));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 74%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 82svh;
  padding-block: 86px 118px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  color: #fff;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 32px;
  color: #d2dfed;
  font-size: 1.18rem;
}

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

.hero-proof {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 890px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-proof div {
  padding: 22px 26px;
  background: rgba(6, 21, 37, .6);
}

.hero-proof strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: #b7c7d8;
  font-size: .82rem;
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

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

.trust-grid > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 5px 16px;
  align-items: center;
  padding: 30px;
  border-left: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid .icon {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  font-size: 30px;
  color: var(--blue);
}

.trust-grid strong {
  color: var(--navy-950);
  font-family: var(--font-heading);
}

.trust-grid span {
  color: var(--muted);
  font-size: .86rem;
}

.section {
  padding-block: 104px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 46px;
  max-width: none;
}

.section-head-split > div {
  max-width: 720px;
}

.section-head-split > p {
  max-width: 410px;
  color: var(--muted);
}

.services {
  background: var(--bg);
}

.service-swiper {
  overflow: visible;
}

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

.swiper-initialized .service-wrapper {
  display: flex;
  gap: 0;
}

.service-card {
  height: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(6, 21, 37, .08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(18, 110, 245, .35);
  box-shadow: var(--shadow);
}

.service-image {
  position: relative;
  display: block;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-body {
  position: relative;
  padding: 30px;
}

.service-index {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #e5ecf4;
  font-family: var(--font-heading);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--navy-950);
  background: var(--orange);
}

.service-icon .icon {
  font-size: 1.45rem;
}

.service-body h3,
.service-body p,
.service-body ul {
  position: relative;
}

.service-body p {
  color: var(--muted);
}

.service-body ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-body li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #34475a;
  font-size: .9rem;
  font-weight: 600;
}

.service-body li .icon {
  width: 19px;
  height: 19px;
  font-size: 17px;
  color: var(--green);
}

.slider-controls {
  display: none;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.slider-controls .icon-btn {
  color: var(--navy-950);
  border-color: var(--line);
  background: #fff;
}

.process {
  color: #d7e4f1;
  background:
    linear-gradient(135deg, rgba(6, 21, 37, .98), rgba(9, 33, 58, .96)),
    url("../images/bg-content.jpg") center / cover fixed;
}

.process h2,
.process h3 {
  color: #fff;
}

.process-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 68px;
  align-items: center;
}

.process-copy p:not(.eyebrow) {
  color: #adbed0;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 28px;
  width: 2px;
  background: linear-gradient(var(--orange), var(--cyan));
}

.timeline > div {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 4px 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.timeline span {
  position: relative;
  z-index: 1;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--orange);
  font-family: var(--font-heading);
  font-weight: 800;
}

.timeline strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.timeline p {
  margin: 0;
  color: #aebfd0;
  font-size: .9rem;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(18, 110, 245, .08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f5f8fc 100%);
}

.gallery-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(9, 33, 58, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(9, 33, 58, .025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.gallery-section .container {
  position: relative;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.filter-group[hidden] {
  display: none;
}

.filter-btn {
  min-height: 44px;
  padding: 9px 17px;
  border: 1px solid #cfdae6;
  border-radius: 999px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 6px 18px rgba(6, 21, 37, .05);
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.filter-btn:hover {
  border-color: rgba(18, 110, 245, .45);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.filter-btn.is-active {
  color: #fff;
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 10px 24px rgba(18, 110, 245, .24);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(9, 33, 58, .12);
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: 0 16px 38px rgba(6, 21, 37, .12);
  isolation: isolate;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.gallery-item::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 13, 24, .02) 30%, rgba(3, 13, 24, .88) 100%);
  transition: background .3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1), filter .3s ease;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item.is-filter-entering {
  animation: gallery-item-in .32s ease both;
}

.gallery-copy {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: grid;
  gap: 6px;
  color: #fff;
}

.gallery-copy small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  color: #cde2ff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gallery-copy strong {
  max-width: calc(100% - 48px);
  font-family: var(--font-heading);
  font-size: 1.02rem;
  line-height: 1.28;
}

.gallery-view {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  color: #fff;
  background: rgba(6, 21, 37, .6);
  opacity: 0;
  backdrop-filter: blur(10px);
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: rgba(18, 110, 245, .5);
  box-shadow: 0 22px 48px rgba(6, 21, 37, .2);
  transform: translateY(-4px);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.055);
}

.gallery-item:hover .gallery-view,
.gallery-item:focus-visible .gallery-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gallery-item-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.about {
  background: var(--bg);
}

.about-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.lead {
  color: #304256;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-list > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-list .icon {
  width: 24px;
  height: 24px;
  font-size: 22px;
  color: var(--green);
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  font-family: var(--font-heading);
}

.feature-list small {
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  color: var(--navy-950);
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button .icon {
  transition: transform .2s ease;
}

.faq-item.is-open button .icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .24s ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 22px;
  color: var(--muted);
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.contact {
  background: var(--navy-950);
  color: #d5e2ef;
}

.contact h2,
.contact h3 {
  color: #fff;
}

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

.contact-copy p:not(.eyebrow) {
  max-width: 760px;
  color: #aebfd0;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.contact-list a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}

.contact-list .icon {
  width: 24px;
  height: 24px;
  font-size: 22px;
  color: var(--orange);
}

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

.contact-list small {
  color: #96a9bd;
  font-size: .72rem;
}

.contact-list strong {
  color: #fff;
  font-size: .92rem;
  line-height: 1.4;
}

.contact-form {
  position: relative;
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-dark);
}

.form-head {
  margin-bottom: 24px;
}

.form-head span {
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 800;
}

.form-head h2 {
  margin: 7px 0 0;
  font-size: 2rem;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--navy-950);
  font-size: .86rem;
  font-weight: 800;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: #f8fafc;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(18, 110, 245, .12);
}

.field-error {
  min-height: 17px;
  color: #c8322b;
  font-size: .72rem;
  font-weight: 700;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: .8rem;
}

.consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.btn-submit {
  width: 100%;
  margin-top: 12px;
  border: 0;
}

.btn-submit.is-loading {
  pointer-events: none;
  opacity: .75;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .72rem;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  color: #9fb1c3;
  background: #020b14;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 48px;
  padding-block: 62px;
}

.footer-inner img {
  width: 180px;
  margin-bottom: 18px;
}

.footer-inner p {
  max-width: 360px;
  color: #8fa2b6;
  font-size: .86rem;
}

.footer-inner nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-inner a {
  color: #d7e4f1;
  font-size: .86rem;
}

.footer-inner a:hover {
  color: var(--orange);
}

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

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 18px;
}

.footer-bottom p {
  margin: 0;
  font-size: .75rem;
}

.footer-bottom a {
  color: #fff;
}

.floating-whatsapp,
.scroll-top {
  position: fixed;
  z-index: 700;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(6, 21, 37, .28);
}

.floating-whatsapp {
  bottom: 22px;
  gap: 8px;
  min-height: 52px;
  padding-inline: 18px;
  border-radius: 999px;
  color: #fff;
  background: #18b76a;
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 800;
}

.floating-whatsapp .icon {
  font-size: 1.35rem;
}

.scroll-top {
  bottom: 88px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--navy-900);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
  cursor: pointer;
}

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

.toast-region {
  position: fixed;
  z-index: 2400;
  top: 18px;
  right: 18px;
  display: grid;
  gap: 10px;
  width: min(390px, calc(100vw - 36px));
}

.toast {
  padding: 15px 17px;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  color: var(--text);
  background: #fff;
  box-shadow: var(--shadow);
  font-size: .84rem;
  transform: translateX(110%);
  transition: transform .22s ease;
}

.toast.is-visible {
  transform: translateX(0);
}

.toast.is-error {
  border-color: #c8322b;
}

.toast.is-success {
  border-color: var(--green);
}

.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  border: 0;
  color: #fff;
  background: transparent;
  overflow: hidden;
}

.lightbox:not([open]) {
  display: none;
}

.lightbox[open] {
  display: grid;
  place-items: center;
  animation: lightbox-open .2s ease both;
}

.lightbox::backdrop {
  background: rgba(1, 7, 13, .92);
  backdrop-filter: blur(14px);
}

.lightbox-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(100%, 840px);
  max-height: calc(100dvh - 36px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(15, 52, 88, .97), rgba(4, 16, 29, .98) 66%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .58);
  overflow: hidden;
}

.lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px 18px 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .035);
}

.lightbox-heading {
  display: grid;
  min-width: 0;
}

.lightbox-heading span {
  color: #86b7ff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lightbox-heading strong {
  overflow: hidden;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lightbox-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.lightbox-counter {
  min-width: 64px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: #d8e6f5;
  background: rgba(255, 255, 255, .06);
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.lightbox-stage {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 16px;
  min-height: 0;
  padding: 16px 20px 8px;
  touch-action: pan-y pinch-zoom;
}

.lightbox figure {
  width: min(100%, 660px, calc(100dvh - 260px));
  min-width: 0;
  margin: 0;
  justify-self: center;
  text-align: center;
}

.lightbox-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background:
    radial-gradient(circle at center, rgba(32, 199, 189, .06), transparent 44%),
    rgba(0, 0, 0, .28);
  overflow: hidden;
}

.lightbox-media > img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin-inline: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity .18s ease, transform .22s ease;
}

.lightbox-shell.is-loading .lightbox-media > img {
  opacity: .16;
  transform: scale(.992);
}

.lightbox-loader {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, .22);
  border-top-color: var(--orange);
  border-radius: 50%;
  opacity: 0;
  animation: lightbox-spin .75s linear infinite;
  transition: opacity .15s ease;
}

.lightbox-shell.is-loading .lightbox-loader {
  opacity: 1;
}

.lightbox figcaption {
  min-height: 32px;
  padding-top: 9px;
  color: #cbd9e8;
  font-size: .86rem;
  line-height: 1.5;
}

.lightbox .icon-btn {
  width: 48px;
  height: 48px;
  flex: none;
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.lightbox .icon-btn:hover:not(:disabled) {
  color: var(--navy-950);
  border-color: var(--orange);
  background: var(--orange);
  transform: scale(1.05);
}

.lightbox .icon-btn:disabled {
  opacity: .32;
  cursor: not-allowed;
}

.lightbox-thumbs {
  display: flex;
  gap: 9px;
  padding: 11px 24px 17px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: rgba(255, 255, 255, .3) transparent;
  scrollbar-width: thin;
}

.lightbox-thumb {
  position: relative;
  width: 74px;
  height: 56px;
  padding: 2px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  opacity: .62;
  overflow: hidden;
  flex: 0 0 auto;
  cursor: pointer;
  transition: border-color .18s ease, opacity .18s ease, transform .18s ease;
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.lightbox-thumb:hover,
.lightbox-thumb.is-active {
  border-color: var(--orange);
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes lightbox-open {
  from {
    opacity: 0;
    transform: scale(.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.has-js [data-animate] {
  opacity: 0;
  transform: translateY(24px);
}

.has-js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .process-layout,
  .about-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .slider-controls {
    display: flex;
  }
}

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

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

  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 150px;
  }

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

  .hero,
  .hero-inner {
    min-height: 78svh;
  }

  .hero-inner {
    padding-block: 58px 150px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    right: 17px;
    bottom: 17px;
    left: 17px;
  }

  .hero-proof div {
    padding: 13px 16px;
  }

  .hero-proof strong {
    font-size: 1.35rem;
  }

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

  .trust-grid > div {
    border-right: 1px solid var(--line);
    padding: 22px;
  }

  .section {
    padding-block: 76px;
  }

  .section-head-split {
    display: block;
  }

  .filter-group {
    justify-content: flex-start;
    margin-top: 22px;
  }

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

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

  .about-media img {
    height: 420px;
  }

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

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

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

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.85rem;
  }

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

  .hero-proof {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 74svh;
  }

  .hero-inner {
    padding-block: 48px 76px;
  }

  .service-image {
    height: 220px;
  }

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

  .timeline > div {
    grid-template-columns: 48px 1fr;
    padding: 16px;
  }

  .timeline span {
    width: 48px;
    height: 48px;
  }

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

  .about-media img {
    height: 330px;
  }

  .floating-whatsapp {
    width: 52px;
    padding: 0;
    right: 16px;
    bottom: 16px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .scroll-top {
    right: 20px;
    bottom: 80px;
  }

  .lightbox {
    padding: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  }

  .lightbox-shell {
    width: 100%;
    max-height: calc(100dvh - 16px);
    border-radius: 16px;
  }

  .lightbox-toolbar {
    min-height: 66px;
    padding: 10px 10px 10px 15px;
  }

  .lightbox-heading span {
    font-size: .62rem;
  }

  .lightbox-heading strong {
    max-width: 180px;
    font-size: .86rem;
  }

  .lightbox-toolbar-actions {
    gap: 7px;
  }

  .lightbox-counter {
    min-width: 54px;
    padding-inline: 8px;
  }

  .lightbox-stage {
    display: block;
    padding: 10px 9px 2px;
  }

  .lightbox-media {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }

  .lightbox figure {
    width: min(100%, calc(100dvh - 230px));
    margin-inline: auto;
  }

  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-65%);
  }

  .lightbox .lightbox-prev:hover:not(:disabled),
  .lightbox .lightbox-next:hover:not(:disabled) {
    transform: translateY(-65%) scale(1.05);
  }

  .lightbox-prev {
    left: 17px;
  }

  .lightbox-next {
    right: 17px;
  }

  .lightbox figcaption {
    min-height: 38px;
    padding: 8px 50px 0;
    font-size: .78rem;
  }

  .lightbox .icon-btn {
    width: 46px;
    height: 46px;
  }

  .lightbox-thumbs {
    gap: 7px;
    padding: 8px 10px 12px;
  }

  .lightbox-thumb {
    width: 62px;
    height: 48px;
  }
}

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

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

  .has-js [data-animate] {
    opacity: 1;
    transform: none;
  }
}
