:root {
  --black: #111827;
  --graphite: #1f2933;
  --graphite-2: #263241;
  --gold: #b8860b;
  --gold-soft: #f4d27a;
  --teal: #0f766e;
  --ink: #17202b;
  --muted: #667085;
  --line: #d8dde5;
  --soft: #f5f7fa;
  --white: #ffffff;
  --danger: #b42318;
  --success: #166534;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.preloader {
  display: none;
}

.js-enabled .preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  gap: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 42%, rgba(244, 210, 122, 0.16), transparent 34%),
    var(--black);
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
}

.preloader-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(244, 210, 122, 0.2);
  border-top-color: var(--gold-soft);
  border-radius: 50%;
  animation: preloader-spin 1s linear infinite;
}

.preloader-mark img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.preloader span {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-120%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(17, 24, 39, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

section[id] {
  scroll-margin-top: 104px;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(17, 24, 39, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 300px;
}

.brand-logo {
  width: 300px;
  max-width: 300px;
  height: auto;
}

.brand-logo-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.menu-open .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.menu-open .brand-logo-dark {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a {
  padding: 10px 0;
  color: currentColor;
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--gold-soft);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-scrolled .site-nav a[aria-current="page"],
.site-header.menu-open .site-nav a[aria-current="page"] {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  min-width: 76px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.site-header.is-scrolled .lang-switch,
.site-header.menu-open .lang-switch {
  background: var(--soft);
  border-color: var(--line);
}

.lang-switch button {
  min-height: 32px;
  padding: 0 8px;
  color: currentColor;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.lang-switch button[aria-pressed="true"] {
  color: var(--black);
  background: var(--gold-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: var(--black);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  box-shadow: 0 14px 34px rgba(184, 134, 11, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f7dd93;
}

.btn-secondary {
  color: var(--graphite);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.btn-ghost {
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-header.is-scrolled .btn-ghost,
.site-header.menu-open .btn-ghost {
  background: var(--soft);
  border-color: var(--line);
}

.btn-contrast {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-large {
  min-height: 52px;
  padding: 14px 20px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  padding: 132px 0 34px;
  color: var(--white);
  overflow: hidden;
}

.hero-slider,
.hero-slide,
.hero-slide::before {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
}

.hero-slide {
  background-image:
    linear-gradient(90deg, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.78) 44%, rgba(17, 24, 39, 0.3) 74%),
    var(--slide-image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6000ms ease;
}

.hero-slide::before {
  content: "";
  background: radial-gradient(circle at 64% 36%, rgba(244, 210, 122, 0.16), transparent 28%);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider-ui {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.hero-slider-button,
.hero-dots button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(17, 24, 39, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
}

.hero-slider-button {
  width: 42px;
  height: 42px;
  padding: 0;
}

.hero-dots {
  display: inline-flex;
  gap: 8px;
}

.hero-dots button {
  width: 34px;
  height: 10px;
  padding: 0;
  opacity: 0.7;
}

.hero-dots button.is-active {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  opacity: 1;
}

/* Eski statik hero fon uchun fallback: HTMLda eski klass qolsa ham dizayn buzilmaydi. */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.78) 44%, rgba(17, 24, 39, 0.3) 74%),
    url("../img/hero-billboard.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-head h2,
.request-copy h2,
.cta-band h2 {
  margin: 0;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 900;
}

.hero-text,
.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

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

.hero-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-metrics div {
  min-height: 84px;
  padding: 18px;
  background: rgba(17, 24, 39, 0.64);
}

.hero-metrics strong {
  display: block;
  color: var(--gold-soft);
  font-size: 26px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.page-hero {
  padding: 150px 0 76px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(31, 41, 51, 0.9)),
    url("../img/hero-billboard.png");
  background-size: cover;
  background-position: center;
}

.page-hero-inner {
  max-width: 840px;
}

.section {
  padding: 82px 0;
}

.soft-section,
.services-section,
.cases-section,
.blog-preview-section,
.map-section,
.faq-section {
  background: var(--soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.compact {
  margin-bottom: 26px;
}

.section-head.left {
  margin: 0;
}

.section-head h2,
.request-copy h2,
.cta-band h2 {
  color: var(--black);
  font-size: 36px;
}

.section-head p:not(.section-kicker),
.request-copy p,
.cta-band p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.services-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.detail-card,
.case-card,
.flow-card {
  min-height: 230px;
  padding: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-card {
  min-height: 260px;
}

.service-card-image {
  width: calc(100% + 44px);
  max-width: none;
  aspect-ratio: 16 / 10;
  margin: -22px -22px 18px;
  object-fit: cover;
  background: var(--soft);
}

.service-card:hover,
.detail-card:hover,
.case-card:hover,
.blog-card:hover,
.flow-card:hover {
  box-shadow: var(--shadow);
}

.card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  outline: none;
}

.service-icon,
.flow-card span,
.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--gold);
  background: #fff7df;
  border: 1px solid #ecd59b;
  border-radius: 8px;
  font-weight: 900;
}

.service-card h3,
.detail-card h2,
.case-card h2,
.flow-card h2,
.process-item h3,
.timeline-item h2 {
  margin: 18px 0 8px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.25;
}

.service-card p,
.detail-card p,
.case-card p,
.flow-card p,
.process-item p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-action {
  margin-top: 28px;
}

.process-section {
  color: var(--white);
  background: var(--graphite);
}

.process-section .section-head h2,
.process-section .section-head p:not(.section-kicker) {
  color: var(--white);
}

.split-layout,
.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.process-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--gold-soft);
  border: 1px solid rgba(244, 210, 122, 0.5);
  border-radius: 8px;
  font-weight: 900;
}

.process-item h3,
.process-item p {
  color: var(--white);
}

.inline-link {
  margin-top: 24px;
}

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

.media-grid figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.media-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--graphite);
  font-weight: 800;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-bar button {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.filter-bar button:hover,
.filter-bar button:focus-visible,
.filter-bar button.is-active {
  color: var(--black);
  background: #fff7df;
  border-color: var(--gold);
  outline: none;
}

.is-filtered-out {
  display: none !important;
}

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

.project-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft);
}

.project-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.project-category {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 10px 0 8px;
  color: var(--black);
  font-size: 21px;
  line-height: 1.22;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.project-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold);
  font-weight: 900;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
  padding: 36px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.check-list {
  padding: 20px;
  margin: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--graphite);
  font-size: 15px;
}

.check-list li:last-child {
  margin-bottom: 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.flow-grid,
.case-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card,
.content-panel {
  min-height: 240px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-card {
  overflow: hidden;
}

.blog-card-image {
  width: calc(100% + 44px);
  max-width: none;
  aspect-ratio: 16 / 10;
  margin: -22px -22px 18px;
  object-fit: cover;
  background: var(--soft);
}

.post-category,
.breadcrumb {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 6px 10px;
  color: var(--black);
  background: #fff7df;
  border: 1px solid #ecd59b;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.blog-card h2,
.blog-card h3 {
  margin: 18px 0 10px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.25;
}

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

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.article-body,
.project-media {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-body h2,
.content-panel h2,
.map-card h2 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 28px;
  line-height: 1.2;
}

.article-body h2:not(:first-child) {
  margin-top: 34px;
}

.article-body p,
.article-body li,
.content-panel p,
.content-panel li,
.map-card p {
  color: var(--muted);
}

.article-body p {
  margin: 0 0 16px;
}

.content-list,
.meta-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.content-list li,
.meta-list li {
  position: relative;
  padding-left: 22px;
}

.content-list li::before,
.meta-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.article-sidebar {
  display: grid;
  gap: 16px;
}

.map-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
}

.map-card-only {
  display: block;
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.map-card-only .map-frame {
  display: block;
  min-height: 450px;
}

.project-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.request-section {
  background: #fafafa;
}

.request-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 38px;
  align-items: start;
}

.contact-box,
.contact-list a {
  margin-top: 28px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  display: block;
  margin-top: 0;
}

.contact-box span,
.contact-box strong,
.contact-box a,
.contact-list span,
.contact-list strong {
  display: block;
}

.contact-box span,
.contact-list span {
  color: var(--muted);
  font-size: 14px;
}

.contact-box strong,
.contact-list strong {
  margin-top: 4px;
  color: var(--black);
}

.contact-box a {
  margin-top: 8px;
  color: var(--gold);
  font-weight: 800;
}

.contact-list strong {
  color: var(--gold);
  font-weight: 900;
}

.contact-map {
  margin-top: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-map-frame {
  display: block;
  min-height: 280px;
  border-radius: 0;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.full,
.check-row,
.btn-submit,
.form-result {
  grid-column: 1 / -1;
}

label,
.form-label {
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd6df;
  border-radius: 8px;
  outline: none;
}

input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-row {
  gap: 10px;
}

.file-upload {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px dashed #b9c2cf;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.file-upload:hover,
.file-upload:focus-within {
  background: #fffaf0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.file-upload-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--gold);
  background: #fff7df;
  border: 1px solid #ecd59b;
  border-radius: 8px;
  flex: 0 0 auto;
}

.file-upload strong,
.file-upload small {
  display: block;
}

.file-upload small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.file-list {
  min-height: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.file-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.file-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  margin-top: 6px;
  color: var(--graphite);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.file-list span {
  color: var(--muted);
  white-space: nowrap;
}

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

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 12px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.14);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: var(--danger);
}

.budget-row {
  gap: 10px;
}

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

.budget-option {
  position: relative;
  min-width: 0;
}

.budget-option input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.budget-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px 12px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid #cfd6df;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.budget-option:hover span,
.budget-option input:focus-visible + span {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
}

.budget-option input:checked + span {
  color: var(--black);
  background: #fff7df;
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(184, 134, 11, 0.16);
}

.budget-option input:checked + span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex: 0 0 auto;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.check-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.field-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 12px;
}

.form-result {
  display: none;
  padding: 14px;
  color: var(--success);
  background: #ecfdf3;
  border: 1px solid #abefc6;
  border-radius: 8px;
  font-weight: 800;
}

.form-result.is-visible {
  display: block;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  color: var(--black);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 900;
}

.faq-item button[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-panel p {
  margin: 0;
}

.site-footer {
  padding: 54px 0 26px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 36px;
}

.footer-logo {
  width: 240px;
}

.footer-grid p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 16px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--gold-soft);
  font-weight: 800;
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .brand-link {
    min-width: 260px;
  }

  .brand-logo {
    width: 260px;
  }

  .header-phone {
    display: none;
  }

  .services-grid,
  .detail-grid,
  .flow-grid,
  .blog-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 980px) {
  .container {
    width: min(100% - 28px, 760px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-link {
    min-width: 220px;
  }

  .brand-logo {
    width: 220px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    white-space: normal;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 8px;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: var(--gold);
    background: var(--soft);
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-slide {
    background-image:
      linear-gradient(180deg, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.84) 52%, rgba(17, 24, 39, 0.56) 100%),
      var(--slide-image);
  }

  .hero h1,
  .page-hero h1,
  .section-head h2,
  .request-copy h2,
  .cta-band h2 {
    font-size: 34px;
  }

  .hero-text,
  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-metrics,
  .split-layout,
  .two-column,
  .article-layout,
  .map-card,
  .cta-band,
  .request-layout,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 42px;
  }

  .hero-slider-ui {
    margin-top: 14px;
  }

  .section {
    padding: 62px 0;
  }

  .page-hero {
    padding: 128px 0 58px;
  }

  .request-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

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

  .cta-band {
    padding: 26px;
  }

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

@media (max-width: 580px) {
  .container {
    width: min(100% - 22px, 520px);
  }

  .brand-link {
    min-width: 188px;
  }

  .brand-logo {
    width: 188px;
  }

  .lang-switch {
    min-width: 66px;
  }

  .lang-switch button {
    padding: 0 6px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 31px;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .btn-submit {
    width: 100%;
  }

  .hero-slider-ui {
    justify-content: center;
  }

  .hero-dots {
    justify-content: center;
  }

  .hero-metrics,
  .services-grid,
  .detail-grid,
  .flow-grid,
  .blog-grid,
  .project-grid,
  .media-grid,
  .budget-options {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 78px;
  }

  .service-card,
  .detail-card,
  .blog-card,
  .content-panel {
    min-height: auto;
  }

  .article-body,
  .project-media,
  .map-card {
    padding: 22px;
  }

  .process-item,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .process-item span,
  .timeline-item span {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
