﻿:root {
  --bg-0: #05070b;
  --bg-1: #0d121a;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7f9fc;
  --muted: #b8c1cf;
  --accent: #ff5e3a;
  --accent-2: #ff8c62;
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -5%, rgba(255, 94, 58, 0.28), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(255, 130, 95, 0.2), transparent 25%),
    linear-gradient(180deg, #0a0f15 0%, #05070b 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: 14px; }

.container { width: min(100% - 2rem, var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 11, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  letter-spacing: .2px;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.nav-links {
  display: flex;
  gap: .45rem;
  align-items: center;
}

.nav-links a {
  padding: .6rem .9rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .78rem 1.2rem;
  font-weight: 700;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--accent), #cc3f26);
  box-shadow: 0 14px 32px rgba(255,94,58,.34);
}
.btn-outline {
  color: var(--text);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  position: relative;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: .28s ease;
}
.menu-toggle span { top: 20px; }
.menu-toggle::before { top: 13px; }
.menu-toggle::after { top: 27px; }
.menu-toggle.open span { opacity: 0; }
.menu-toggle.open::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  padding: 4.8rem 0 2.8rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 1.2rem;
  align-items: center;
}
.badge {
  display: inline-flex;
  padding: .34rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-2);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: .76rem;
}
h1, h2, h3 { line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2rem, 5vw, 3.7rem); margin-top: .85rem; }
.lead { color: var(--muted); margin: 1rem 0 1.4rem; font-size: 1.05rem; }
.actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.panel {
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-media {
  padding: .9rem;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hero-media.logo img {
  object-fit: contain;
  background: #f1f2f4;
  padding: 1rem;
}

.stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}
.stat {
  text-align: center;
  padding: .95rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.stat strong { display: block; font-size: 1.45rem; }

.section { padding: 2.8rem 0; }
.section-title { font-size: clamp(1.55rem, 2.4vw, 2.45rem); }
.section-sub { color: var(--muted); margin-top: .6rem; max-width: 70ch; }

.grid-3, .grid-2, .features, .gallery, .contact-grid {
  display: grid;
  gap: .9rem;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); margin-top: 1.15rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); margin-top: 1.15rem; }
.features { grid-template-columns: repeat(2, 1fr); margin-top: 1.15rem; }
.gallery { grid-template-columns: repeat(4, 1fr); margin-top: 1rem; }
.contact-grid { grid-template-columns: repeat(3, 1fr); margin-top: 1rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.05rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 98, .5);
  box-shadow: 0 18px 34px rgba(0,0,0,.25);
}
.card p { color: var(--muted); }
.service-link { color: var(--accent-2); font-weight: 700; margin-top: .4rem; display: inline-block; }

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.banner {
  margin-top: 1rem;
  background: linear-gradient(120deg, rgba(255, 94, 58, .26), rgba(255,255,255,.04));
  border: 1px solid rgba(255,140,98,.45);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: .6s ease;
}
.reveal.show { opacity: 1; transform: none; }

.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.4rem 0 2rem;
  color: var(--muted);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
}

.footer-credit {
  text-align: center;
  padding-top: .75rem;
}

.footer-credit a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight: 600;
  transition: .25s ease;
}

.footer-credit a:hover {
  color: var(--text);
  border-color: rgba(255, 140, 98, .45);
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}

@media (max-width: 980px) {
  .navbar { flex-wrap: wrap; padding: .7rem 0; }
  .menu-toggle { display: inline-block; margin-left: auto; }
  .nav-links {
    width: 100%;
    display: none;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8, 11, 16, .95);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: .45rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem .9rem; }
  .nav-cta { order: 2; width: 100%; }
  .nav-cta .btn { width: 100%; }

  .hero-grid, .grid-2, .features, .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 3.6rem; }
}

@media (max-width: 640px) {
  body {
    text-align: center;
  }

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

  .section-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .actions {
    justify-content: center;
  }

  .brand {
    text-align: left;
  }
}
