:root {
  --ink: #050713;
  --panel: #0b1022;
  --panel-soft: #111935;
  --line: #27324f;
  --text: #f7f9ff;
  --muted: #b7bfd3;
  --blue: #1d61d6;
  --blue-bright: #3f82ff;
  --silver: #d9deea;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(135deg, rgba(29, 97, 214, 0.2), transparent 34%),
    radial-gradient(circle at 82% 4%, rgba(217, 222, 234, 0.12), transparent 30%),
    var(--ink);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.topbar {
  background: #02030a;
  border-bottom: 1px solid rgba(217, 222, 234, 0.14);
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a,
.footer a,
.contact-link {
  text-decoration: none;
}

.topbar a:hover,
.footer a:hover,
.contact-link:hover {
  color: var(--blue-bright);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 7, 19, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 222, 234, 0.14);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 210px;
}

.brand img {
  width: 118px;
  height: 54px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  padding: 9px 11px;
  color: var(--muted);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(63, 130, 255, 0.16);
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.button {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(29, 97, 214, 0.28);
}

.button:hover {
  background: var(--blue-bright);
}

.button-secondary {
  border-color: rgba(217, 222, 234, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover {
  border-color: var(--blue-bright);
}

.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 19, 0.97), rgba(5, 7, 19, 0.78) 42%, rgba(5, 7, 19, 0.6)),
    url("assets/full-logo.jpg") right center / min(62vw, 760px) auto no-repeat;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background: linear-gradient(90deg, var(--blue), var(--silver), var(--blue));
  opacity: 0.72;
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0 92px;
}

.eyebrow {
  color: var(--blue-bright);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  margin: 22px 0 0;
  color: var(--silver);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 680px;
}

.hero-actions,
.section-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.035);
  border-block: 1px solid rgba(217, 222, 234, 0.1);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 540px;
  color: var(--muted);
  margin: 0;
}

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

.service-card,
.info-card,
.contact-panel,
.process-step {
  background: linear-gradient(180deg, rgba(17, 25, 53, 0.92), rgba(11, 16, 34, 0.92));
  border: 1px solid rgba(217, 222, 234, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card {
  padding: 24px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card p,
.info-card p,
.process-step p {
  color: var(--muted);
}

.service-card a {
  width: fit-content;
  color: var(--blue-bright);
  font-weight: 900;
  text-decoration: none;
}

.service-card a:hover {
  color: var(--white);
}

.service-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(29, 97, 214, 0.22);
  color: var(--blue-bright);
  font-weight: 900;
  margin-bottom: 18px;
}

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

.business-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(217, 222, 234, 0.18);
  box-shadow: var(--shadow);
}

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

.gallery-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(180deg, rgba(17, 25, 53, 0.92), rgba(11, 16, 34, 0.92));
  border: 1px solid rgba(217, 222, 234, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--panel);
}

.gallery-card span {
  display: block;
  padding: 15px 16px 16px;
}

.gallery-card strong {
  display: block;
  line-height: 1.25;
}

.gallery-card em {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.gallery-card:hover {
  border-color: rgba(63, 130, 255, 0.56);
  transform: translateY(-2px);
  transition: transform 160ms ease, border-color 160ms ease;
}

.featured-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.featured-gallery .gallery-card:first-child {
  grid-row: span 2;
}

.featured-gallery .gallery-card:first-child img {
  height: 520px;
}

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

.check-list li {
  color: var(--silver);
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-bright);
  position: absolute;
  left: 0;
  top: 0.62em;
  box-shadow: 0 0 0 5px rgba(63, 130, 255, 0.14);
}

.page-hero {
  min-height: 330px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 19, 0.98), rgba(5, 7, 19, 0.76)),
    url("assets/full-logo.jpg") right center / min(520px, 70vw) auto no-repeat;
}

.page-hero .section-inner {
  position: relative;
  padding: 64px 0 78px;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

.service-detail {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 26px;
  align-items: start;
}

.info-card,
.contact-panel {
  padding: 26px;
}

.info-card strong {
  color: var(--white);
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  padding: 22px;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--blue);
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-line {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: center;
  color: var(--silver);
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(29, 97, 214, 0.2);
  color: var(--blue-bright);
  font-weight: 900;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--silver);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(217, 222, 234, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 12px 13px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

select option {
  background: var(--panel);
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(29, 97, 214, 0.9), rgba(9, 17, 38, 0.96)),
    var(--blue);
  padding: 46px 0;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-content p {
  margin: 8px 0 0;
  color: var(--silver);
}

.footer {
  background: #02030a;
  border-top: 1px solid rgba(217, 222, 234, 0.14);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  flex-wrap: wrap;
}

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

@media (max-width: 880px) {
  .topbar-inner,
  .nav-inner,
  .section-head,
  .split,
  .service-detail,
  .contact-layout,
  .cta-content,
  .footer-inner {
    display: grid;
  }

  .nav-inner {
    justify-items: start;
    padding: 12px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 19, 0.97), rgba(5, 7, 19, 0.86));
  }

  .hero-content {
    padding-top: 74px;
  }

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

  .featured-gallery .gallery-card:first-child {
    grid-row: auto;
  }

  .featured-gallery .gallery-card:first-child img {
    height: 230px;
  }

  .split,
  .service-detail,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar-inner,
  .topbar-links {
    align-items: start;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .nav-links a {
    padding: 8px 9px;
    font-size: 0.86rem;
  }

  .hero-content {
    padding-top: 64px;
  }

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

  .section {
    padding: 58px 0;
  }

  .button,
  .button-secondary {
    width: 100%;
  }
}
