@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-navy: #022E4C;
  --warm-sand: #B38F6F;
  --soft-pearl: #F2F1ED;
  --obsidian: #161616;
  --slate-blue: #517493;
  --burgundy: #710014;
  --muted: #71717a;
  --bg-muted: #f4f4f5;
  --bg-card: #fafafa;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--obsidian);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}
.navbar-logo img { height: 40px; width: auto; }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
  transition: color 0.2s;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--obsidian); font-weight: 500; }
.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.navbar-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-socials a { color: var(--muted); transition: color 0.2s; }
.navbar-socials a:hover { color: var(--obsidian); }
.navbar-socials svg { width: 16px; height: 16px; }
.navbar-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
  white-space: nowrap;
}
.navbar-contacts a { color: var(--muted); transition: color 0.2s; }
.navbar-contacts a:hover { color: var(--obsidian); }

.mobile-menu-btn {
  display: none;
  background: none;
  padding: 8px;
  color: var(--obsidian);
}
.mobile-menu-btn svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none;
  padding: 16px;
  border-top: 1px solid #e5e5e5;
}
.mobile-menu a {
  display: block;
  padding: 12px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.mobile-menu a.active { color: var(--obsidian); font-weight: 500; }

/* ===== FOOTER ===== */
.footer {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
}
.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}
.footer-copy {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px 12px;
  text-align: center;
  font-size: 10px;
  color: rgba(113,113,122,0.4);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 9999px;
  padding: 14px 40px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--burgundy);
  color: #fff;
  border: 2px solid var(--burgundy);
}
.btn-primary:hover { opacity: 0.9; }
.btn-outline {
  background: transparent;
  color: var(--obsidian);
  border: 1px solid #d4d4d8;
}
.btn-outline:hover { border-color: var(--obsidian); }
.btn-outline-white {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn-navy {
  background: var(--deep-navy);
  color: #fff;
  border: 2px solid var(--deep-navy);
}
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #d4d4d8;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-icon:hover { border-color: var(--obsidian); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 16px;
  max-width: 960px;
  margin: 0 auto;
}
.hero-label {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero-subtitle {
  font-size: 20px;
  opacity: 0.7;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.hero-services span {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.hero-services .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: inline-block;
  margin: 0 8px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: 112px 0 160px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.page-hero-content {
  position: relative;
  z-index: 10;
  padding: 0 24px;
  max-width: 640px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0 128px;
}
.section-sm { padding: 64px 0 80px; }
.section-muted { background: var(--bg-muted); }
.section-card { background: var(--bg-card); }
.section-pearl { background: var(--soft-pearl); }
.section-dark {
  position: relative;
}
.section-dark-bg {
  position: absolute;
  inset: 0;
}
.section-dark-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.section-dark-content {
  position: relative;
  z-index: 10;
}

.container { padding: 0 24px; }
.container-narrow { max-width: 896px; margin: 0 auto; }

/* ===== TYPOGRAPHY ===== */
.label {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.label-white { color: rgba(255,255,255,0.4); }
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
}
.section-title .accent-burgundy { color: var(--burgundy); }
.section-title .accent-blue { color: var(--slate-blue); }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-muted { color: var(--muted); }
.text-lg { font-size: 18px; line-height: 1.7; }
.text-xl { font-size: 20px; line-height: 1.6; font-weight: 300; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-14 { margin-bottom: 56px; }
.mb-16 { margin-bottom: 64px; }

/* ===== GRID ===== */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-gap-lg { gap: 32px; }
.grid-gap-xl { gap: 48px; }

/* ===== STAGE CARDS ===== */
.stage-card {
  background: var(--deep-navy);
  border-radius: 16px;
  overflow: hidden;
  padding: 24px 32px;
  transition: transform 0.3s;
}
.stage-card:hover { transform: translateY(-4px); }
.stage-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: #fff;
}
.stage-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--soft-pearl);
  margin-bottom: 12px;
  line-height: 1.3;
  white-space: pre-line;
}
.stage-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

/* ===== ABOUT HOME SECTION ===== */
.about-home {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
}
.about-home-bg {
  position: absolute;
  inset: 0;
}
.about-home-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-home-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.about-home-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

/* ===== ADVANTAGE CARDS ===== */
.advantage-card {
  transition: transform 0.3s;
}
.advantage-card:hover { transform: translateY(-4px); }
.advantage-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
}
.advantage-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.advantage-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== HORIZONTAL SCROLL ===== */
.hscroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-left: 16px;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hscroll::-webkit-scrollbar { display: none; }
.hscroll-card {
  flex-shrink: 0;
  width: 256px;
  transition: transform 0.3s;
}
.hscroll-card:hover { transform: translateY(-8px); }
.hscroll-card-img {
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 16px;
  margin-bottom: 12px;
}
.hscroll-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.hscroll-card:hover .hscroll-card-img img { transform: scale(1.1); }
.hscroll-card p { font-size: 16px; color: var(--muted); }

/* ===== FAQ / ACCORDION ===== */
.faq-section {
  position: relative;
  padding: 80px 0 128px;
}
.faq-bg {
  position: absolute;
  inset: 0;
}
.faq-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.faq-content {
  position: relative;
  z-index: 10;
  padding: 0 24px;
  color: #fff;
}
.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 4px 0;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.accordion-trigger svg {
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.5);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accordion-trigger.open svg { transform: rotate(180deg); }
.accordion-content {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 24px;
  display: none;
}
.accordion-content.open { display: block; }

/* ===== CONTACT FORM ===== */
.contact-section {
  background: var(--soft-pearl);
  padding: 80px 0 128px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
  padding: 0 24px;
}
.contact-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--obsidian);
  margin-bottom: 24px;
  line-height: 1.2;
}
.contact-subtitle {
  font-size: 16px;
  color: rgba(22,22,22,0.6);
  margin-bottom: 48px;
  max-width: 384px;
  line-height: 1.6;
}
.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-sand);
  margin-bottom: 12px;
}
.contact-info a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(22,22,22,0.7);
  font-size: 16px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.contact-info a:hover { color: var(--obsidian); }
.contact-info svg { width: 16px; height: 16px; color: var(--deep-navy); flex-shrink: 0; }
.messenger-icons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.messenger-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(22,22,22,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(22,22,22,0.6);
  transition: background 0.2s;
}
.messenger-icons a:hover { background: rgba(22,22,22,0.1); }
.messenger-icons svg { width: 20px; height: 20px; }

.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(22,22,22,0.5);
  margin-bottom: 8px;
}
.form-select,
.form-input {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(22,22,22,0.15);
  background: transparent;
  font-size: 16px;
  color: var(--obsidian);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-select:focus,
.form-input:focus { border-color: rgba(2,46,76,0.4); }
.form-input-box {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid rgba(22,22,22,0.15);
  border-radius: 4px;
  background: #fff;
  font-size: 16px;
  color: var(--obsidian);
  font-family: inherit;
  outline: none;
  text-align: center;
  width: 96px;
}
.form-range {
  width: 100%;
  margin-top: 12px;
  accent-color: var(--deep-navy);
}
.form-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(22,22,22,0.3);
  margin-top: 4px;
}
.file-upload {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px dashed rgba(22,22,22,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  color: rgba(22,22,22,0.4);
  font-size: 14px;
}
.file-upload svg { width: 16px; height: 16px; }
.file-upload input { display: none; }
.phone-input {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(22,22,22,0.15);
  padding: 8px 0;
}
.phone-flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: rgba(22,22,22,0.5);
  flex-shrink: 0;
}
.phone-flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.phone-flag-icon .stripe-white { position: absolute; top: 0; left: 0; right: 0; height: 33%; background: #fff; }
.phone-flag-icon .stripe-blue { position: absolute; top: 33%; left: 0; right: 0; height: 34%; background: #0039A6; }
.phone-flag-icon .stripe-red { position: absolute; bottom: 0; left: 0; right: 0; height: 33%; background: #D52B1E; }
.phone-input input {
  border: none;
  background: transparent;
  font-size: 16px;
  color: var(--obsidian);
  font-family: inherit;
  outline: none;
  flex: 1;
  padding: 4px 0;
}
.phone-input input::placeholder { color: rgba(22,22,22,0.3); }
.btn-submit {
  width: 100%;
  margin-top: 16px;
}

/* ===== WORKS PAGE ===== */
.filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent, transparent);
  pointer-events: none;
}
.work-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

/* ===== STAT CARDS ===== */
.stat-card { text-align: center; }
.stat-value {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-unit {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  margin-left: 4px;
}
.stat-label {
  font-size: 16px;
  color: var(--muted);
}
.stat-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 20px;
}

/* ===== TECHNIQUE CARDS ===== */
.tech-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 40px;
}
.tech-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}
.tech-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.tech-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== STEP CARDS ===== */
.step-card {
  background: var(--slate-blue);
  border-radius: 16px;
  padding: 24px 32px;
  color: #fff;
}
.step-card-navy { background: var(--deep-navy); }
.step-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  color: #fff;
}
.step-card h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

/* ===== REQUIREMENT LIST ===== */
.req-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.req-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--deep-navy);
}
.req-item span { font-size: 18px; }

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  align-items: center;
}
.rounded-img {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
}
.rounded-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== PRICE CARDS ===== */
.price-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.price-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.price-card:hover img { transform: scale(1.05); }
.price-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  transition: background 0.3s;
}
.price-card:hover .price-card-overlay { background: rgba(0,0,0,0.7); }
.price-card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 32px 48px;
}
.price-card h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.price-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 400px;
}

/* ===== CONTACTS PAGE ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 48px;
}
.contact-card { text-align: center; }
.contact-card-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 20px;
  color: var(--muted);
}
.contact-card h3 {
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-card a,
.contact-card p {
  font-size: 14px;
  color: var(--muted);
}

/* ===== MAP ===== */
.map-section { width: 100%; }
.map-container { width: 100%; height: 450px; }

/* ===== GALLERY (service cards horizontal) ===== */
.service-hcard {
  flex-shrink: 0;
  width: 256px;
}
.service-hcard-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 16px;
  margin-bottom: 16px;
  background: var(--bg-muted);
}
.service-hcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-hcard h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}
.service-hcard li {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== DTF BENEFIT CARDS ===== */
.benefit-card {
  text-align: center;
}
.benefit-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 20px;
}
.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.benefit-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== DTF PROCESS CARDS ===== */
.dtf-process-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 24px 32px;
}
.dtf-process-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
}
.dtf-process-card h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}
.dtf-process-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== ABOUT STORY ===== */
.story-text {
  max-width: 896px;
  margin: 0 auto;
}
.story-text p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item-img {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
  background: var(--bg-muted);
  margin-bottom: 16px;
}
.gallery-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item p {
  font-size: 16px;
  font-weight: 500;
}

/* ===== ABOUT ADVANTAGE CARDS ===== */
.about-adv-card {
  text-align: center;
}
.about-adv-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 24px;
  color: var(--deep-navy);
}
.about-adv-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.about-adv-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== SCROLL TOP AREA ===== */
.scroll-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.scroll-arrows {
  display: flex;
  gap: 8px;
}

/* ===== SVG ICONS ===== */
.icon { display: inline-block; vertical-align: middle; }
.icon svg { width: 100%; height: 100%; }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .container { padding: 0 40px; }
  .hscroll { padding-left: 24px; }
  .hscroll-card { width: 256px; }
  .service-hcard { width: 256px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 80px; }
  .section { padding: 128px 0; }
  .section-sm { padding: 80px 0; }
  .hscroll { padding-left: 32px; }
  .hscroll-card { width: 288px; }
  .service-hcard { width: 288px; }
  .map-container { height: 550px; }
  .navbar-inner { padding: 0 32px; }
  .footer-inner { padding: 0 32px; }
  .footer-copy { padding: 0 32px 12px; }
}

@media (max-width: 1279px) {
  .navbar-links { display: none; }
  .mobile-menu-btn { display: block; }
}

@media (max-width: 1023px) {
  .navbar-contacts { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 80px 0 112px; }
  .page-hero-content { padding: 0 24px; }
}

@media (max-width: 767px) {
  .navbar-socials { display: none; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 639px) {
  .hero-title { font-size: 32px; margin-bottom: 20px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 32px; }
  .hero-label { font-size: 11px; margin-bottom: 16px; }
  .hero-buttons { margin-bottom: 40px; gap: 12px; }
  .hero-buttons .btn { font-size: 13px; padding: 12px 28px; }
  .hero-services span { font-size: 13px; }
  .hero-services { gap: 6px; }
}
