:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #666666;
  --line: #e8e8e5;
  --soft: #f6f6f3;
  --orange: #f97316;
  --orange-dark: #c94f05;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(17, 17, 17, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: min(220px, 54vw);
  height: 52px;
  object-fit: contain;
}

.logo-slot {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border: 3px solid var(--orange);
  font-size: .72rem;
  text-align: center;
  line-height: 1.1;
}

.brand strong { display: block; font-size: 1.1rem; line-height: 1.1; }
.brand span { display: block; color: var(--muted); font-size: .77rem; font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 750;
  font-size: .94rem;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--orange); border-color: var(--orange); color: #111; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-link { border: 0; padding: 0; min-height: auto; color: var(--orange-dark); }
.btn-link:hover { box-shadow: none; }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 52px 0 34px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 47%, rgba(255,255,255,.25) 100%),
    url("../images/work-panel.svg") center right / cover no-repeat;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(260px, 1fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: .78rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--orange);
}

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

h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(2.55rem, 6vw, 5.9rem);
}

.hero p {
  max-width: 610px;
  margin-top: 22px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  padding: 18px 18px 18px 0;
}

.proof-item strong {
  display: block;
  font-size: 1.55rem;
}

.proof-item span {
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}

section { padding: 82px 0; }
.section-soft { background: var(--soft); }

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

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 780px;
}

.section-head p {
  max-width: 430px;
  margin-bottom: 0;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 1px 0 rgba(17,17,17,.03);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: #111;
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 18px;
}

.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

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

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

.visual-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
}

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

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange-dark);
  font-weight: 900;
}

.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.city-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  font-weight: 750;
  font-size: .9rem;
}

.partners-wrap {
  display: grid;
  grid-template-columns: .9fr 1.6fr;
  gap: 22px;
  align-items: start;
}

.supplier-list {
  display: grid;
  gap: 12px;
}

.supplier-item,
.brand-tile {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  text-align: center;
  box-shadow: 0 1px 0 rgba(17,17,17,.03);
}

.supplier-item {
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  text-align: center;
}

.supplier-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #111;
  font-weight: 950;
}

.supplier-logo {
  width: 100%;
  height: 112px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.supplier-logo img {
  display: block;
  max-width: min(220px, 100%);
  max-height: 112px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.supplier-item strong,
.brand-tile strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.supplier-item span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
}

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

.brand-tile {
  min-height: 126px;
  font-weight: 900;
  flex-direction: column;
  gap: 10px;
}

.brand-logo-tile {
  width: 100%;
  max-width: 150px;
  height: 58px;
  object-fit: contain;
}

.brand-tile strong {
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.brand-more {
  background: var(--ink);
  color: #fff;
}

.brand-more strong {
  color: #fff;
}

.brand-tile small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  margin-top: 3px;
  font-weight: 750;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 0; }
.author { color: var(--ink); font-weight: 900; }

.quick-contact,
.contact-panel {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px;
}

.quick-contact p,
.contact-panel p { color: #cfcfcf; }

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

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

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: .92rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #d9d9d6;
  border-radius: var(--radius);
  min-height: 48px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

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

.quick-contact input,
.quick-contact select,
.quick-contact textarea,
.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  border-color: rgba(255,255,255,.18);
}

.page-hero {
  padding: 80px 0 58px;
  background: var(--ink);
  color: #fff;
}

.page-hero p { color: #d7d7d7; max-width: 760px; font-size: 1.12rem; }
.page-hero h1 + p { margin-top: 24px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.7rem); }

.breadcrumb {
  color: #d8d8d8;
  font-weight: 800;
  margin-bottom: 16px;
  font-size: .9rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill-list span {
  background: var(--soft);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .86rem;
  font-weight: 800;
}

.alert-band {
  background: var(--orange);
  color: #111;
  padding: 28px 0;
}

.alert-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p { margin-top: 12px; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 850;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.gallery-card {
  overflow: hidden;
  padding: 0;
}

.gallery-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.gallery-card .card-body { padding: 20px; }

.map-embed {
  min-height: 360px;
  border: 0;
  width: 100%;
  border-radius: var(--radius);
  background: var(--soft);
}

.site-footer {
  background: #0f0f0f;
  color: #fff;
  padding: 52px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.site-footer p,
.site-footer a { color: #cfcfcf; }

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #b8b8b8;
  font-size: .9rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; }
  .nav-links a::after { bottom: 8px; }
  .nav-actions .btn { display: none; }
  .hero-inner,
  .split,
  .service-detail { grid-template-columns: 1fr; }
  .grid-4,
  .grid-3,
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partners-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  section { padding: 58px 0; }
  .hero {
    min-height: auto;
    padding: 46px 0 28px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.88) 100%),
      url("../images/work-panel.svg") center / cover no-repeat;
  }
  .hero-proof,
  .form-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .brand-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .section-head {
    display: block;
  }
  .section-head p { margin-top: 14px; }
  .hero-buttons .btn,
  .alert-band .btn { width: 100%; }
  .quick-contact,
  .contact-panel { padding: 22px; }
  .alert-band .container,
  .footer-bottom {
    display: block;
  }
}
