:root {
  color-scheme: dark;
  --bg: #05070c;
  --bg-soft: #0e1320;
  --panel: #131a2b;
  --panel-edge: #27314d;
  --text: #ecf1ff;
  --muted: #aeb9d7;
  --accent: #f97316;
  --accent-2: #ffb347;
  --blue: #44b2ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Barlow, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, #1d2a47 0%, transparent 38%),
    radial-gradient(circle at 90% 20%, #462011 0%, transparent 35%),
    var(--bg);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem min(5vw, 4rem);
  background: #0a0f1a;
  border-bottom: 1px solid #1f2740;
  font-size: 0.95rem;
}

.topbar p {
  margin: 0;
  color: var(--muted);
}

.topbar a {
  color: var(--accent-2);
  font-weight: 700;
  text-decoration: none;
}

main {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}

.hero {
  background: linear-gradient(150deg, #0e172a, #161122 60%, #1d1308);
  border: 1px solid var(--panel-edge);
  border-radius: 20px;
  padding: 1rem 1.1rem 2.6rem;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem;
}

.nav h1 {
  margin: 0;
  font-family: Sora, "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: 0.02em;
}

.hero-content {
  padding: 1.4rem 1rem 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
  align-items: center;
}

.hero-logo {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.hero-logo img {
  width: min(100%, 360px);
  max-height: 320px;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid #33466d;
  background: rgba(8, 14, 27, 0.75);
  padding: 1rem;
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.hero h2 {
  margin: 0.6rem 0 0;
  font-family: Sora, "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.12;
}

.hero p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(120deg, var(--accent), #ff9340);
  color: #1a0f03;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease;
}

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

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid #3e4d73;
}

.btn-small {
  padding: 0.5rem 0.9rem;
  font-size: 0.92rem;
}

.section {
  margin-top: 2.2rem;
  background: var(--bg-soft);
  border: 1px solid #1f2a45;
  border-radius: 18px;
  padding: 1.5rem;
}

.section-title p {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
}

.section-title h3 {
  margin: 0.5rem 0 0;
  font-family: Sora, "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
}

.description-text {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
  max-width: 92ch;
}

.grid {
  display: grid;
  gap: 0.9rem;
}

.services-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 1rem;
  border-radius: 12px;
  background: #11182a;
  border: 1px solid #263354;
}

.card h4 {
  margin: 0;
  font-size: 1.07rem;
}

.card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.section-accent {
  background: linear-gradient(120deg, #1b1117, #111a2b 45%, #18253f);
}

.coverage {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.area-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.area-list li {
  background: rgba(14, 22, 40, 0.9);
  border: 1px solid #2a385a;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  text-align: center;
  color: #dfe8ff;
  font-weight: 600;
  font-size: 0.92rem;
}

.logo-gallery {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.logo-tile {
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.logo-tile img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #2d3b5f;
  transition: transform 0.22s ease;
}

.logo-tile:hover img {
  transform: scale(1.03);
}

.cta {
  text-align: center;
  padding: 2rem 1.2rem;
}

.cta h3 {
  margin: 0;
  font-family: Sora, "Segoe UI", sans-serif;
}

.cta p {
  margin: 0.6rem 0 1.2rem;
  color: var(--muted);
}

footer {
  width: min(1100px, 92vw);
  margin: 0 auto 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  color: #8f9dbf;
  font-size: 0.93rem;
}

footer p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 30;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox-content {
  position: relative;
  width: min(980px, 95vw);
  z-index: 1;
}

.lightbox-content img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  background: #0f1525;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  font-size: 1.2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.66);
  cursor: pointer;
}

.lightbox-close {
  top: 0.7rem;
  right: 0.7rem;
  transform: none;
}

.lightbox-prev {
  left: 0.7rem;
}

.lightbox-next {
  right: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.5s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 780px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    padding-top: 0.3rem;
  }

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

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

  .area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-bottom: 1.8rem;
  }
}

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