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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #37425a;
  background: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: #071c3f;
  line-height: 1.18;
  margin: 0 0 1rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.05rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: #1668c4;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #ff5f2e;
}

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

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

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #071c3f;
  color: #ffffff;
  padding: 1rem 1.5rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

.section {
  padding-block: 4.5rem;
}
.section--alt {
  background: #f5f8fc;
}
.section--tight {
  padding-block: 3rem;
}

.section__head {
  max-width: 640px;
  margin-bottom: 3rem;
}
.section__head--split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.section__head--split > div {
  max-width: 560px;
}
.section__head p {
  color: #57647c;
  margin-bottom: 0;
}

.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8451a;
  margin-bottom: 0.5rem;
}

.icon {
  flex-shrink: 0;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #071c3f;
  color: #ffffff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(10, 38, 80, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 60;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top:hover {
  background: #ff5f2e;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn .icon {
  width: 18px;
  height: 18px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--accent {
  background: linear-gradient(135deg, #ff5f2e 0%, #e8451a 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 95, 46, 0.32);
}
.btn--accent:hover {
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(255, 95, 46, 0.4);
}
.btn--primary {
  background: #1668c4;
  color: #ffffff;
}
.btn--primary:hover {
  color: #ffffff;
  background: #124f9c;
}
.btn--outline {
  border-color: #b6d9ff;
  color: #1668c4;
  background: #ffffff;
}
.btn--outline:hover {
  border-color: #ff5f2e;
  color: #ff5f2e;
}
.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background: transparent;
}
.btn--outline-light:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.btn--sm {
  padding: 0.58rem 1.1rem;
  font-size: 0.85rem;
}
.btn--lg {
  padding: 1rem 1.8rem;
  font-size: 1rem;
}
.btn--block {
  width: 100%;
}

.topbar {
  background: #071c3f;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
}
.topbar__contact {
  display: flex;
  gap: 1.5rem;
}
.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
}
.topbar__contact a .icon {
  width: 14px;
  height: 14px;
}
.topbar__contact a:hover {
  color: #ff9c6b;
}
.topbar__tag {
  display: none;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.6);
}
.topbar__tag .icon {
  width: 14px;
  height: 14px;
}
@media (min-width: 768px) {
  .topbar__tag {
    display: inline-flex;
  }
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}
@media (min-width: 768px) {
  .brand-lockup {
    gap: 0.65rem;
  }
}
.brand-lockup--stacked {
  flex-direction: column;
  text-align: center;
  gap: 0.3rem;
}

.brand-mark {
  flex-shrink: 0;
  width: 34px;
  height: auto;
}
@media (min-width: 768px) {
  .brand-mark {
    width: 42px;
  }
}

.brand-word {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(0.82rem, 3.4vw, 1.15rem);
  letter-spacing: 0;
  line-height: 1.05;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .brand-word {
    font-size: 1.15rem;
  }
}
@media (min-width: 992px) {
  .brand-word {
    font-size: 1.28rem;
  }
}
.brand-word--stacked {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  white-space: normal;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(10, 38, 80, 0.07);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(10, 38, 80, 0.1);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .brand-logo-img {
    height: 44px;
  }
}
@media (min-width: 992px) {
  .brand-logo-img {
    height: 50px;
  }
}

.main-nav {
  display: none;
}
@media (min-width: 992px) {
  .main-nav {
    display: block;
  }
}

.main-nav__list {
  display: flex;
  gap: 2rem;
}

.main-nav__link {
  position: relative;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #37425a;
  padding-block: 0.3rem;
}
.main-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: #ff5f2e;
  transition: right 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav__link:hover, .main-nav__link.is-active {
  color: #071c3f;
}
.main-nav__link:hover::after, .main-nav__link.is-active::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-actions .btn--accent {
  display: none;
}
@media (min-width: 768px) {
  .header-actions .btn--accent {
    display: inline-flex;
  }
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #dfe5ee;
  background: #ffffff;
  cursor: pointer;
  color: #071c3f;
}
@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}
.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 28, 63, 0.55);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: #ffffff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 24px 55px rgba(10, 38, 80, 0.18);
}
.mobile-nav.is-open .mobile-nav__panel {
  transform: none;
}
.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  border-bottom: 1px solid #edf1f7;
  margin-bottom: 1rem;
}
.mobile-nav__close {
  border: none;
  background: #edf1f7;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #071c3f;
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
}
.mobile-nav__link {
  display: block;
  padding: 0.9rem 0.2rem;
  border-bottom: 1px solid #edf1f7;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 600;
  color: #071c3f;
}
.mobile-nav__link.is-active {
  color: #ff5f2e;
}
.mobile-nav__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}

.hero-grid-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero-grid-canvas {
    display: none;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #4aa2f5 0%, #124f9c 55%, #071c3f 100%);
  color: #ffffff;
  padding-block: 4.5rem 6rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
  }
}
.hero h1 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.hero h1 span {
  color: #ff9c6b;
  display: inline;
}
.hero__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero__points {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}
.hero__points li .icon {
  color: #ff9c6b;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.hero__visual {
  position: relative;
  min-height: 320px;
  display: none;
}
@media (min-width: 992px) {
  .hero__visual {
    display: block;
  }
}
.hero__unit {
  position: absolute;
  right: 6%;
  bottom: 4%;
  width: 78%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 55px rgba(10, 38, 80, 0.18);
}
.hero__unit img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__unit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(7, 28, 63, 0.3) 75%);
}
.hero__card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #ffffff;
  color: #071c3f;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  box-shadow: 0 24px 55px rgba(10, 38, 80, 0.18);
  white-space: nowrap;
}
.hero__card .icon {
  color: #ff5f2e;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.hero__card strong {
  display: block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.84rem;
}
.hero__card span {
  font-size: 0.72rem;
  color: #57647c;
}
.hero__card--primary {
  top: 6%;
  left: 0;
}
.hero__card--float {
  bottom: 10%;
  right: 2%;
  animation: floatY 4.5s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #4aa2f5 0%, #124f9c 55%, #071c3f 100%);
  color: #ffffff;
  padding-block: 4.5rem 3rem;
  text-align: left;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: #ffffff;
  max-width: 760px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  font-size: 1.05rem;
  margin: 0;
}

.service-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid #edf1f7;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(10, 38, 80, 0.07);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(10, 38, 80, 0.1);
  border-color: #dbeafe;
}
.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef6ff 0%, #dbeafe 100%);
  color: #124f9c;
  margin-bottom: 1rem;
}
.service-card__icon .icon {
  width: 26px;
  height: 26px;
}
.service-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}
.service-card p {
  color: #57647c;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #e8451a;
}
.service-card a .icon {
  width: 15px;
  height: 15px;
}

.why {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .why {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4.5rem;
  }
}

.why__visual {
  display: none;
}
@media (min-width: 992px) {
  .why__visual {
    display: block;
  }
}

.why__frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(135deg, #4aa2f5 0%, #124f9c 55%, #071c3f 100%);
  box-shadow: 0 24px 55px rgba(10, 38, 80, 0.18);
  overflow: hidden;
}
.why__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(200deg, rgba(7, 28, 63, 0) 45%, rgba(7, 28, 63, 0.75) 100%), radial-gradient(circle at 25% 15%, rgba(74, 162, 245, 0.35), transparent 55%), radial-gradient(circle at 80% 85%, rgba(255, 95, 46, 0.3), transparent 55%);
}

.why__frame-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why__badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: #071c3f;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(10, 38, 80, 0.1);
}
.why__badge .icon {
  color: #ff5f2e;
  width: 18px;
  height: 18px;
}

.why__list {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 576px) {
  .why__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why__item {
  display: flex;
  gap: 0.8rem;
}
.why__item > span {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffe4d6;
  color: #e8451a;
}
.why__item > span .icon {
  width: 22px;
  height: 22px;
}
.why__item h4 {
  margin-bottom: 0.2rem;
}
.why__item p {
  font-size: 0.9rem;
  color: #57647c;
  margin: 0;
}

.process {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}
@media (min-width: 576px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process__step {
  position: relative;
  padding: 1.5rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #edf1f7;
}

.process__num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5f2e 0%, #e8451a 100%);
  color: #ffffff;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 800;
  margin-bottom: 1rem;
}

.brands__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.brands__item {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #124f9c;
  background: #ffffff;
  border: 1px solid #dbeafe;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
}

.section--alt .brands__item {
  background: #ffffff;
}

.gallery-preview {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .gallery-preview {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-preview__item {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #edf1f7;
}
.gallery-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-preview__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 28, 63, 0.75), transparent 55%);
}
.gallery-preview__item:hover img {
  transform: scale(1.06);
}

.gallery-preview__label {
  position: absolute;
  left: 0.8rem;
  bottom: 0.7rem;
  z-index: 1;
  color: #ffffff;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
}

.cta-strip {
  background: #ffffff;
  padding-block: 0 4.5rem;
  margin-top: 6rem;
}

.cta-band {
  background: #071c3f;
  background-image: linear-gradient(135deg, #4aa2f5 0%, #124f9c 55%, #071c3f 100%);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #ffffff;
  box-shadow: 0 24px 55px rgba(10, 38, 80, 0.18);
}
.cta-band h2 {
  color: #ffffff;
  margin-bottom: 0.3rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.gallery-filter__btn {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #dfe5ee;
  background: #ffffff;
  color: #57647c;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-filter__btn:hover {
  border-color: #ff9c6b;
  color: #e8451a;
}
.gallery-filter__btn.is-active {
  background: linear-gradient(135deg, #ff5f2e 0%, #e8451a 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 95, 46, 0.32);
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-grid__item {
  margin: 0;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #edf1f7;
  box-shadow: 0 2px 8px rgba(10, 38, 80, 0.07);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-grid__item.is-hidden {
  display: none;
}

.gallery-grid__link {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  background: #edf1f7;
  overflow: hidden;
}
.gallery-grid__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid__zoom {
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(7, 28, 63, 0.55);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid__link:hover img {
  transform: scale(1.07);
}

.gallery-grid__link:hover .gallery-grid__zoom {
  opacity: 1;
}

.gallery-grid__item figcaption {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.gallery-grid__item figcaption strong {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: #071c3f;
  font-size: 0.98rem;
}
.gallery-grid__item figcaption span {
  font-size: 0.85rem;
  color: #57647c;
}

.gallery-grid__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e8451a;
  background: #ffe4d6;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.2rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 12, 24, 0.92);
  padding: 1.5rem;
}
.lightbox.is-open {
  display: flex;
}

.lightbox__figure {
  margin: 0;
  max-width: min(900px, 92vw);
  text-align: center;
}
.lightbox__figure img {
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
  border-radius: 14px;
  box-shadow: 0 24px 55px rgba(10, 38, 80, 0.18);
}
.lightbox__figure figcaption {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1rem;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.95rem;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.lightbox__close:hover {
  background: #ff5f2e;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.lightbox__nav:hover {
  background: #ff5f2e;
}
.lightbox__nav--prev {
  left: 1.5rem;
}
.lightbox__nav--prev .icon {
  transform: rotate(180deg);
}
.lightbox__nav--next {
  right: 1.5rem;
}
@media (max-width: 575px) {
  .lightbox__nav {
    display: none;
  }
}

.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  border: 1px solid #edf1f7;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 8px rgba(10, 38, 80, 0.07);
  color: #37425a;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-card__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef6ff 0%, #dbeafe 100%);
  color: #124f9c;
}
.contact-card > div {
  min-width: 0;
}
.contact-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
  overflow-wrap: break-word;
}
.contact-card span {
  font-size: 0.88rem;
  color: #57647c;
  overflow-wrap: break-word;
}
.contact-card[href]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(10, 38, 80, 0.1);
  color: #37425a;
}

.contact-form-wrap {
  background: #ffffff;
  border: 1px solid #edf1f7;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(10, 38, 80, 0.07);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.form-row label {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #071c3f;
}
.form-row--split {
  flex-direction: row;
  gap: 1rem;
}
.form-row--split > div {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
@media (max-width: 575px) {
  .form-row--split {
    flex-direction: column;
  }
}

input, textarea, select {
  width: 100%;
  min-width: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.96rem;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px solid #dfe5ee;
  background: #f5f8fc;
  color: #37425a;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  resize: vertical;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #ff5f2e;
  background: #ffffff;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2357647c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 18px;
  padding-right: 2.4rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form__note {
  font-size: 0.78rem;
  color: #7c88a0;
  margin: 0;
}

.alert {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.alert--success {
  background: #e7f8ee;
  color: #1b7a43;
}
.alert--error {
  background: #fdeceb;
  color: #b9331c;
}

.map-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 38, 80, 0.1);
  line-height: 0;
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
  }
}

.about-grid__badges {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #37425a;
}
.about-badge .icon {
  color: #ff5f2e;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.about-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(10, 38, 80, 0.18);
  aspect-ratio: 4/5;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid #edf1f7;
  box-shadow: 0 2px 8px rgba(10, 38, 80, 0.07);
}
.value-card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffe4d6;
  color: #e8451a;
  margin-bottom: 1rem;
}
.value-card p {
  font-size: 0.9rem;
  color: #57647c;
  margin: 0;
}

.towns-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.towns-grid__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #dbeafe;
  color: #124f9c;
  font-weight: 600;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
}
.towns-grid__item .icon {
  width: 16px;
  height: 16px;
}
.towns-grid__item--more {
  background: linear-gradient(135deg, #eef6ff 0%, #dbeafe 100%);
  color: #0e3b78;
}

.service-detail {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .service-detail {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
  }
}
@media (min-width: 992px) {
  .service-detail--reverse .service-detail__media {
    order: 2;
  }
  .service-detail--reverse .service-detail__text {
    order: 1;
  }
}

.service-detail__icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef6ff 0%, #dbeafe 100%);
  color: #124f9c;
  margin-bottom: 1rem;
}
.service-detail__icon .icon {
  width: 28px;
  height: 28px;
}

.service-detail__media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(10, 38, 80, 0.18);
  aspect-ratio: 4/3;
}
.service-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.94rem;
  color: #37425a;
}
.check-list .icon {
  color: #ff5f2e;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
@media (min-width: 992px) {
  .calc-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

.calc-card {
  min-width: 0;
  background: #ffffff;
  border: 1px solid #edf1f7;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(10, 38, 80, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calc-result {
  min-width: 0;
  background: linear-gradient(135deg, #4aa2f5 0%, #124f9c 55%, #071c3f 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 24px 55px rgba(10, 38, 80, 0.18);
}
.calc-result .section__kicker {
  color: #ff9c6b;
}
.calc-result p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  margin-bottom: 0;
}
.calc-result .check-list li {
  color: rgba(255, 255, 255, 0.88);
}
.calc-result .check-list .icon {
  color: #ff9c6b;
}
.calc-result .hero__actions {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.calc-price {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
}
.calc-price strong {
  display: block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}

.calc-price__label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.15rem;
}

.calc-price__note {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.2rem;
}

.calc-disclaimer {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.5rem;
}

.calc-result__value {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin: 0.5rem 0 0.5rem;
  flex-wrap: wrap;
}
.calc-result__value strong {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
}
.calc-result__value span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

.not-found__inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.not-found__code {
  display: block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 10vw, 6rem);
  background: linear-gradient(135deg, #ff5f2e 0%, #e8451a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}

.not-found .hero__actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  font-size: 1.15rem;
  color: #071c3f;
  margin: 2rem 0 0.5rem;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p {
  margin-bottom: 1rem;
  color: #37425a;
}
.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: #37425a;
}
.legal-content ul li {
  margin-bottom: 0.4rem;
}
.legal-content strong {
  color: #071c3f;
}

.site-footer {
  background: #071c3f;
  color: rgba(255, 255, 255, 0.72);
  padding-block: 3rem 1.5rem;
  font-size: 0.92rem;
}

.site-footer__top {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.5rem;
  }
}

.site-footer__brand {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.site-footer__desc {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__social {
  display: flex;
  gap: 0.6rem;
}
.site-footer__social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.site-footer__social a:hover {
  background: #ff5f2e;
  color: #ffffff;
}

.site-footer__top h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.site-footer__links a, .site-footer__links span {
  color: rgba(255, 255, 255, 0.68);
}
.site-footer__links a:hover {
  color: #ff9c6b;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.site-footer__contact-item .icon {
  color: #ff9c6b;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.site-footer__contact-item a {
  color: rgba(255, 255, 255, 0.78);
}
.site-footer__contact-item a:hover {
  color: #ff9c6b;
}

.site-footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.site-footer__brands span:first-child {
  color: rgba(255, 255, 255, 0.7);
  margin-right: 0.2rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 1rem;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner[hidden] {
  display: block;
}

.mobile-nav.is-open ~ .cookie-banner {
  display: none;
}

.cookie-fab {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #071c3f;
  color: #ffffff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(10, 38, 80, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 60;
}
.cookie-fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.cookie-fab:hover {
  background: #ff5f2e;
}

.mobile-nav.is-open ~ .cookie-fab {
  display: none;
}

.cookie-banner__inner {
  max-width: 960px;
  margin-inline: auto;
  background: #071c3f;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  box-shadow: 0 24px 55px rgba(10, 38, 80, 0.18);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.cookie-banner__text strong {
  display: block;
  color: #ffffff;
  font-family: "Poppins", "Segoe UI", sans-serif;
  margin-bottom: 0.3rem;
}
.cookie-banner__text p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-banner__link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-settings-link {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  padding: 0;
}
