:root {
  --bg: #ffffff;
  --soft: #eef2f5;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --brand: #1e40af;
  --brand-2: #2563eb;
  --shadow: 0 14px 28px rgba(2, 6, 23, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

[hidden] {
  display: none !important;
}

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

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

.section {
  padding: 44px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f3f6f9 0%, #eef2f5 100%);
}

.muted {
  color: var(--muted);
  line-height: 1.55;
}

.h2 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 34px;
  height: 24px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 60%, #60a5fa 100%);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
  position: relative;
}

.brand-mark::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 6px;
  width: 16px;
  height: 12px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.brand-name {
  font-size: 14px;
}

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

.nav-link {
  font-weight: 600;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.82);
}

.nav-link:hover {
  color: var(--brand);
}

.menu-btn {
  display: none;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(15, 23, 42, 0.72);
}

.menu-btn span + span {
  margin-top: 4px;
}

.mobile-nav {
  padding: 10px 20px 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
}

.no-scroll {
  overflow: hidden;
}

.hero {
  position: relative;
  height: clamp(320px, 48vw, 440px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.62) 0%, rgba(2, 6, 23, 0.24) 48%, rgba(2, 6, 23, 0) 70%),
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.24) 0%, rgba(37, 99, 235, 0) 60%),
    linear-gradient(135deg, #0f172a 0%, #334155 55%, #94a3b8 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 0;
  color: #fff;
}

.hero-kicker {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(14px, 2.2vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.92;
}

.hero-subtitle {
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
}

.split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: start;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.card-lg {
  padding: 22px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.stat {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 12px 20px rgba(37, 99, 235, 0.18);
}

.stat-value {
  font-weight: 900;
  font-size: 14px;
  line-height: 1.1;
}

.stat-label {
  font-size: 11px;
  color: rgba(15, 23, 42, 0.62);
}

.stack {
  display: grid;
  gap: 12px;
}

.pill {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.84);
  color: #fff;
  box-shadow: var(--shadow);
}

.pill-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pill-title {
  font-weight: 800;
  font-size: 13px;
}

.pill-text {
  font-size: 12px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
}

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

.service-card {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-img {
  height: 150px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}

.img-1 {
  background-image:
    linear-gradient(135deg, rgba(2, 6, 23, 0.45) 0%, rgba(2, 6, 23, 0.05) 55%),
    linear-gradient(135deg, #0ea5e9 0%, #1e40af 90%);
}

.img-2 {
  background-image:
    linear-gradient(135deg, rgba(2, 6, 23, 0.45) 0%, rgba(2, 6, 23, 0.05) 55%),
    linear-gradient(135deg, #22c55e 0%, #0f766e 90%);
}

.img-3 {
  background-image:
    linear-gradient(135deg, rgba(2, 6, 23, 0.45) 0%, rgba(2, 6, 23, 0.05) 55%),
    linear-gradient(135deg, #f97316 0%, #b91c1c 90%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  font-weight: 700;
  font-size: 12px;
  background: #fff;
  margin-top: 10px;
}

.btn:hover {
  border-color: rgba(37, 99, 235, 0.38);
  color: var(--brand);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  color: #fff;
  filter: brightness(1.03);
}

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

.shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow);
  background: #fff;
}

.shot-img {
  height: 150px;
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(135deg, rgba(2, 6, 23, 0.42) 0%, rgba(2, 6, 23, 0) 60%),
    linear-gradient(135deg, #94a3b8 0%, #1f2937 100%);
}

.s2 .shot-img {
  background-image:
    linear-gradient(135deg, rgba(2, 6, 23, 0.35) 0%, rgba(2, 6, 23, 0) 60%),
    linear-gradient(135deg, #fecaca 0%, #ef4444 100%);
}

.s3 .shot-img {
  background-image:
    linear-gradient(135deg, rgba(2, 6, 23, 0.35) 0%, rgba(2, 6, 23, 0) 60%),
    linear-gradient(135deg, #bbf7d0 0%, #16a34a 100%);
}

.s4 .shot-img {
  background-image:
    linear-gradient(135deg, rgba(2, 6, 23, 0.35) 0%, rgba(2, 6, 23, 0) 60%),
    linear-gradient(135deg, #bae6fd 0%, #0284c7 100%);
}

.s5 .shot-img {
  background-image:
    linear-gradient(135deg, rgba(2, 6, 23, 0.35) 0%, rgba(2, 6, 23, 0) 60%),
    linear-gradient(135deg, #fed7aa 0%, #f97316 100%);
}

.s6 .shot-img {
  background-image:
    linear-gradient(135deg, rgba(2, 6, 23, 0.35) 0%, rgba(2, 6, 23, 0) 60%),
    linear-gradient(135deg, #ddd6fe 0%, #7c3aed 100%);
}

.s7 .shot-img {
  background-image:
    linear-gradient(135deg, rgba(2, 6, 23, 0.35) 0%, rgba(2, 6, 23, 0) 60%),
    linear-gradient(135deg, #f5d0fe 0%, #c026d3 100%);
}

.s8 .shot-img {
  background-image:
    linear-gradient(135deg, rgba(2, 6, 23, 0.35) 0%, rgba(2, 6, 23, 0) 60%),
    linear-gradient(135deg, #fde68a 0%, #eab308 100%);
}

.s9 .shot-img {
  background-image:
    linear-gradient(135deg, rgba(2, 6, 23, 0.35) 0%, rgba(2, 6, 23, 0) 60%),
    linear-gradient(135deg, #cbd5e1 0%, #0f172a 100%);
}

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

.contact-card {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow);
  background: #fff;
}

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

.field {
  display: grid;
  gap: 6px;
}

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

.field-label {
  font-weight: 700;
  font-size: 12px;
}

.input {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 14px;
  padding: 11px 12px;
  font: inherit;
  font-size: 13px;
  outline: none;
  background: #fff;
}

.input:focus {
  border-color: rgba(37, 99, 235, 0.52);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.contact-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.contact-info {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  box-shadow: var(--shadow);
}

.info-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding: 10px 0;
}

.info-row + .info-row {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 5px;
  background: rgba(96, 165, 250, 0.9);
}

.info-title {
  font-weight: 800;
  font-size: 13px;
}

.badge {
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow);
}

.badge-title {
  font-weight: 900;
}

.footer {
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  padding: 26px 0 18px;
}

.footer-inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-title {
  font-weight: 900;
  letter-spacing: 0.06em;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.footer-col-title {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-link {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
}

.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

@media (min-width: 761px) {
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 920px) {
  .split {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: inline-grid;
  }

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