/* ===== CSS Variables ===== */
:root {
  --color-orange:      #DE600F;
  --color-orange-dark: #B84D0C;
  --color-dark:        #1D1C1B;
  --color-dark-soft:   #2C2B2A;
  --color-gray-bg:     #F5F4F2;
  --color-white:       #FFFFFF;
  --color-text-muted:  #6B6A68;
  --color-border:      #E2E0DC;

  --font: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --nav-h: 93px;
  --radius: 6px;
  --container: 1200px;
  --section-py: 96px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.7; color: var(--color-dark); background: var(--color-white); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Utility ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  padding: 12px 24px; border-radius: 4px; transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--color-orange); color: var(--color-white); }
.btn-primary:hover { background: var(--color-orange-dark); transform: translateY(-1px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.7); color: var(--color-white); }
.btn-outline-white:hover { border-color: var(--color-white); background: rgba(255,255,255,0.1); }
.btn-outline-orange { border: 2px solid var(--color-orange); color: var(--color-orange); }
.btn-outline-orange:hover { background: var(--color-orange); color: var(--color-white); }
.btn-white { background: var(--color-white); color: var(--color-dark); }
.btn-white:hover { background: #f0eeeb; }

/* ===== Section headings ===== */
.section-label {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-orange); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  line-height: 1.2; letter-spacing: -0.02em;
}
.section-title-center { text-align: center; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--color-white); height: var(--nav-h);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 82px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--color-dark);
  padding: 8px 14px; border-radius: 4px;
  letter-spacing: 0.02em; transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--color-orange); background: var(--color-gray-bg); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 6px; }
.nav-dropdown-toggle .chevron {
  width: 14px; height: 14px; flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--color-text-muted);
}
.nav-dropdown:hover .nav-dropdown-toggle .chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 200px; padding-top: 8px;
}
.nav-dropdown-menu-inner {
  background: var(--color-white); border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12); padding: 6px;
  border: 1px solid var(--color-border);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 9px 14px; font-size: 14px; font-weight: 500;
  color: var(--color-dark); border-radius: 4px; transition: background 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--color-gray-bg); color: var(--color-orange); }

.nav-cta { margin-left: 12px; padding: 10px 20px; font-size: 14px; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0;
}
.nav-hamburger span {
  display: block; height: 2px; background: var(--color-dark);
  border-radius: 2px; transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--color-white); z-index: 999; overflow-y: auto;
  padding: 24px; border-top: 1px solid var(--color-border);
}
.nav-mobile.open { display: block; }
.nav-mobile-links { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile-link {
  display: block; padding: 14px 16px; font-size: 16px; font-weight: 500;
  color: var(--color-dark); border-radius: 6px; transition: background 0.15s;
}
.nav-mobile-link:hover, .nav-mobile-link.active { background: var(--color-gray-bg); color: var(--color-orange); }
.nav-mobile-sub { padding-left: 16px; margin-top: 2px; }
.nav-mobile-sub a {
  display: block; padding: 10px 16px; font-size: 14px;
  color: var(--color-text-muted); border-radius: 4px; transition: color 0.15s;
}
.nav-mobile-sub a:hover { color: var(--color-orange); }
.nav-mobile-cta { margin-top: 24px; width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  background: var(--color-white);
  padding-top: var(--nav-h);
  padding-bottom: 0;
}
.hero-texture, .hero-overlay { display: none; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  max-width: var(--container); margin: 0 auto;
  padding: 64px 24px 72px;
}
.hero-content { }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(222,96,15,0.08); border: 1px solid rgba(222,96,15,0.2);
  color: var(--color-orange); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-orange); flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px); font-weight: 800;
  color: var(--color-dark); line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero h1 span { color: var(--color-orange); }

.hero-sub {
  font-size: clamp(15px, 2vw, 17px); color: var(--color-text-muted);
  margin-bottom: 32px; max-width: 480px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--color-border);
}
.hero-stat { }
.hero-stat-num {
  font-size: 26px; font-weight: 800; color: var(--color-dark); line-height: 1;
}
.hero-stat-num span { color: var(--color-orange); }
.hero-stat-label {
  font-size: 11px; font-weight: 600; color: var(--color-text-muted);
  letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px;
}

/* Hero photo placeholder */
.hero-visual {
  position: relative; align-self: stretch; min-height: 420px;
  display: flex; align-items: flex-end;
  margin-bottom: -72px;
}
.hero-photo {
  width: 100%; height: 100%; min-height: 420px;
  border-radius: 12px 12px 0 0; overflow: hidden;
  position: relative;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
}
.hero-photo-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.hero-photo-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center;
}
.hero-photo-icon svg { width: 24px; height: 24px; color: var(--color-text-muted); }
.hero-photo-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); }
.hero-photo-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--color-white); border-radius: 8px;
  padding: 12px 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 10px;
}
.hero-photo-badge-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(222,96,15,0.1); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-photo-badge-icon svg { width: 18px; height: 18px; }
.hero-photo-badge strong { display: block; font-size: 14px; font-weight: 700; }
.hero-photo-badge span { display: block; font-size: 12px; color: var(--color-text-muted); }

/* ===== SERVICES ===== */
.services { background: var(--color-gray-bg); }
.services-header { text-align: center; margin-bottom: 48px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.service-card {
  background: var(--color-white); border-radius: 8px;
  padding: 28px 22px; border: 1px solid var(--color-border);
  border-top: 3px solid transparent;
  transition: border-top-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-top-color: var(--color-orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.service-icon {
  width: 52px; height: 52px; background: rgba(222,96,15,0.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--color-text-muted); flex: 1; margin-bottom: 14px; }
.service-sub-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.service-sub-tag {
  font-size: 12px; font-weight: 600; padding: 4px 10px;
  background: var(--color-gray-bg); border-radius: 100px; color: var(--color-text-muted);
}
.service-link {
  font-size: 14px; font-weight: 600; color: var(--color-orange);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 8px; }

/* ===== USP ===== */
.usp { background: var(--color-white); }
.usp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.usp-left h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.usp-left h2 span { color: var(--color-orange); }
.usp-left p { color: var(--color-text-muted); font-size: 16px; max-width: 420px; }

.usp-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.usp-point { display: flex; align-items: flex-start; gap: 14px; }
.usp-check {
  flex-shrink: 0; width: 24px; height: 24px;
  background: rgba(222,96,15,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.usp-check svg { width: 13px; height: 13px; }
.usp-point strong { display: block; font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.usp-point span { font-size: 14px; color: var(--color-text-muted); }

.usp-numbers { display: flex; gap: 36px; padding-top: 32px; border-top: 1px solid var(--color-border); }
.usp-num { }
.usp-num-val { font-size: 38px; font-weight: 800; color: var(--color-dark); line-height: 1; }
.usp-num-val span { color: var(--color-orange); }
.usp-num-label { font-size: 13px; color: var(--color-text-muted); font-weight: 500; margin-top: 4px; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--color-gray-bg); }
.gallery-header { text-align: center; margin-bottom: 40px; }
.gallery-header p { color: var(--color-text-muted); font-size: 16px; margin-top: 8px; }

.gallery-masonry {
  columns: 3; column-gap: 12px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 12px;
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block; object-fit: cover; aspect-ratio: 4/3;
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(29,28,27,0);
  display: flex; align-items: flex-end; padding: 16px;
  transition: background 0.25s;
}
.gallery-item:hover .gallery-overlay { background: rgba(29,28,27,0.65); }

.gallery-overlay-content {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  opacity: 0; transform: translateY(6px); transition: all 0.25s;
}
.gallery-item:hover .gallery-overlay-content { opacity: 1; transform: translateY(0); }

.gallery-badge-label {
  font-size: 13px; font-weight: 600; color: var(--color-white);
  background: var(--color-orange); padding: 4px 10px; border-radius: 4px;
}
.gallery-icon { color: var(--color-white); opacity: 0.9; }

.gallery-footer { text-align: center; margin-top: 36px; }

/* ===== PROCESS ===== */
.process { background: var(--color-white); }
.process-header { text-align: center; margin-bottom: 56px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: calc(25% / 2); right: calc(25% / 2);
  height: 2px; background: var(--color-border); z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-white); border: 2px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--color-orange);
  margin: 0 auto 20px; transition: all 0.2s;
}
.process-step:hover .process-num {
  border-color: var(--color-orange); background: var(--color-orange); color: var(--color-white);
}
.process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--color-text-muted); }

/* ===== REVIEWS ===== */
.reviews { background: var(--color-dark); }
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-header .section-title { color: var(--color-white); }
.reviews-header .section-label { opacity: 0.7; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.review-card {
  background: var(--color-white); border-radius: 8px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-stars { display: flex; gap: 3px; }
.review-stars span { color: var(--color-orange); font-size: 16px; }
.review-text { font-style: italic; font-size: 15px; color: var(--color-dark); line-height: 1.65; flex: 1; }
.review-author { }
.review-author strong { display: block; font-size: 14px; font-weight: 700; }
.review-author span { font-size: 13px; color: var(--color-text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--color-orange); padding: 72px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(24px, 4vw, 38px); font-weight: 800;
  color: var(--color-white); margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 17px; margin-bottom: 36px; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; }
.cta-phone {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.9); font-size: 15px; font-weight: 600;
}
.cta-phone svg { opacity: 0.8; }

/* ===== FOOTER ===== */
.footer { background: var(--color-dark-soft); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }

.footer-logo img { height: 64px; margin-bottom: 16px; }
.footer-logo p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.2s;
}
.footer-social:hover { background: var(--color-orange); color: var(--color-white); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 13px; font-weight: 600; color: var(--color-white);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--color-orange); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-item svg { flex-shrink: 0; color: var(--color-orange); margin-top: 2px; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-mtr {
  font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 500;
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-inner { grid-template-columns: 1fr; gap: 48px; }
  .usp-left { max-width: 540px; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-stats { gap: 24px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }

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

  .gallery-masonry { columns: 2; }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .usp-numbers { gap: 20px; flex-wrap: wrap; }
  .hero-stats { gap: 20px; }
}

/* ===== SERVICE PAGES ===== */

/* Service hero */
.service-hero {
  background: var(--color-white);
  padding-top: var(--nav-h);
  border-bottom: 1px solid var(--color-border);
}
.service-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: end;
  padding: 60px 0 0;
}
.service-hero-content { padding-bottom: 64px; }
.service-hero-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--color-text-muted); margin-bottom: 20px;
}
.service-hero-breadcrumb a { color: var(--color-text-muted); transition: color 0.15s; }
.service-hero-breadcrumb a:hover { color: var(--color-orange); }
.service-hero-breadcrumb svg { flex-shrink: 0; }
.service-hero-breadcrumb span { color: var(--color-text-dark); font-weight: 500; }
.service-hero-content h1 {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.15;
  margin-bottom: 16px;
}
.service-hero-content h1 span { color: var(--color-orange); }
.service-hero-content .lead {
  font-size: 17px; color: var(--color-text-muted);
  line-height: 1.7; margin-bottom: 28px; max-width: 480px;
}
.service-checklist {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px;
}
.service-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--color-text-dark);
}
.service-checklist li svg {
  flex-shrink: 0; color: var(--color-orange); margin-top: 1px;
}
.service-hero-image {
  position: relative; align-self: stretch;
  display: flex; align-items: flex-end;
}
.service-hero-image img {
  width: 100%; border-radius: 12px 12px 0 0;
  object-fit: cover; aspect-ratio: 4/3;
  margin-bottom: 0; display: block;
}

/* Service detail section */
.service-detail { background: var(--color-gray-bg); }
.service-detail-inner {
  display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start;
}
.service-detail-text h2 {
  font-size: clamp(22px, 2.5vw, 32px); font-weight: 800;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.service-detail-text p {
  font-size: 16px; color: var(--color-text-muted); line-height: 1.75; margin-bottom: 24px;
}
.service-work-list {
  display: flex; flex-direction: column; gap: 10px;
}
.service-work-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--color-text-dark); line-height: 1.5;
}
.service-work-list li::before {
  content: ''; flex-shrink: 0; width: 6px; height: 6px;
  border-radius: 50%; background: var(--color-orange); margin-top: 8px;
}

/* Sidebar card */
.service-sidebar-card {
  background: var(--color-white); border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 28px; position: sticky; top: calc(var(--nav-h) + 20px);
}
.service-sidebar-card h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 20px;
}
.service-sidebar-contacts { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.service-sidebar-contact { display: flex; gap: 10px; align-items: flex-start; }
.service-sidebar-contact svg { flex-shrink: 0; color: var(--color-orange); margin-top: 2px; }
.service-sidebar-contact-text { font-size: 14px; line-height: 1.5; }
.service-sidebar-contact-text strong { display: block; font-weight: 600; color: var(--color-text-dark); }
.service-sidebar-contact-text span { color: var(--color-text-muted); }

/* Benefits */
.service-benefits { background: var(--color-white); }
.service-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.benefit-card {
  background: var(--color-gray-bg); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--color-border);
}
.benefit-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(222,96,15,0.08); display: flex; align-items: center; justify-content: center;
  color: var(--color-orange); margin-bottom: 16px;
}
.benefit-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.65; }

/* Service gallery preview */
.service-gallery-preview { background: var(--color-gray-bg); }
.service-gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; margin-bottom: 28px;
}
.service-gallery-grid .gallery-item { break-inside: unset; margin-bottom: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .service-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-hero-image { display: none; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-sidebar-card { position: static; }
  .service-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .service-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .service-benefits-grid { grid-template-columns: 1fr; }
  .service-gallery-grid { grid-template-columns: 1fr; }
}

/* ===== MEIST ===== */
.about-story { background: var(--color-white); }
.about-story-inner {
  display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start;
}
.about-story-text h2 {
  font-size: clamp(22px, 2.5vw, 32px); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.about-story-text p {
  font-size: 16px; color: var(--color-text-muted); line-height: 1.75; margin-bottom: 16px;
}
.about-stats-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-stat-card {
  background: var(--color-gray-bg); border-radius: var(--radius);
  border: 1px solid var(--color-border); padding: 24px 20px;
  text-align: center;
}
.about-stat-num {
  font-size: 36px; font-weight: 800; color: var(--color-orange);
  letter-spacing: -0.03em; line-height: 1;
}
.about-stat-num span { font-size: 22px; }
.about-stat-label { font-size: 13px; color: var(--color-text-muted); margin-top: 6px; font-weight: 500; }

@media (max-width: 1024px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-stats-col { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .about-stats-col { grid-template-columns: repeat(2, 1fr); }
}

/* ===== KONTAKT ===== */
.contact-section { background: var(--color-gray-bg); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
}
.contact-info h2 {
  font-size: clamp(20px, 2vw, 28px); font-weight: 800; margin-bottom: 12px;
}
.contact-info > p { font-size: 15px; color: var(--color-text-muted); margin-bottom: 32px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  background: rgba(222,96,15,0.08); display: flex; align-items: center; justify-content: center;
  color: var(--color-orange);
}
.contact-info-text { display: flex; flex-direction: column; gap: 2px; padding-top: 2px; }
.contact-info-text strong { font-size: 14px; font-weight: 600; color: var(--color-text-dark); }
.contact-info-text a,
.contact-info-text span { font-size: 15px; color: var(--color-text-muted); line-height: 1.5; }
.contact-info-text a:hover { color: var(--color-orange); }

.contact-services-label { font-size: 13px; font-weight: 600; color: var(--color-text-dark); margin-bottom: 10px; }
.contact-service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-service-tag {
  font-size: 13px; font-weight: 500; padding: 5px 12px; border-radius: 99px;
  border: 1.5px solid var(--color-border); background: var(--color-white);
  color: var(--color-text-muted); transition: all 0.15s;
}
.contact-service-tag:hover { border-color: var(--color-orange); color: var(--color-orange); }

/* Form */
.contact-form-wrap {
  background: var(--color-white); border-radius: var(--radius);
  border: 1px solid var(--color-border); padding: 40px;
}
.contact-form h2 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.contact-form > p { font-size: 14px; color: var(--color-text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--color-text-dark); }
.form-group .required { color: var(--color-orange); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit; font-size: 15px;
  padding: 11px 14px; border-radius: 8px;
  border: 1.5px solid var(--color-border);
  background: var(--color-white); color: var(--color-text-dark);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(222,96,15,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; padding: 14px; font-size: 16px; }
.form-note { font-size: 13px; color: var(--color-text-muted); text-align: center; margin-top: 12px; }

@media (max-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}

/* ===== Active nav link ===== */
.nav-link-active { color: var(--color-orange) !important; font-weight: 600; }

/* ===== Page header (inner pages) ===== */
.page-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 40px 0 36px;
  margin-top: var(--nav-h);
}
.page-header-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--color-text-muted); margin-bottom: 16px;
}
.page-header-breadcrumb a { color: var(--color-text-muted); transition: color 0.15s; }
.page-header-breadcrumb a:hover { color: var(--color-orange); }
.page-header-breadcrumb svg { flex-shrink: 0; }
.page-header-breadcrumb span { color: var(--color-text-dark); font-weight: 500; }
.page-header-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 10px; }
.page-header-sub { font-size: 16px; color: var(--color-text-muted); max-width: 560px; }

/* ===== Gallery filter buttons ===== */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 18px; border-radius: 99px;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  font-family: inherit; font-size: 14px; font-weight: 500;
  color: var(--color-text-muted); cursor: pointer;
  transition: all 0.18s ease;
}
.filter-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}
.filter-btn.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
  font-weight: 600;
}

/* ===== Portfolio grid ===== */
.gallery-page-section { background: var(--color-gray-bg); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio-item {
  cursor: pointer;
  animation: portfolioFadeIn 0.4s ease both;
}
@keyframes portfolioFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.portfolio-thumb {
  position: relative; overflow: hidden; border-radius: 10px;
}
.portfolio-thumb img {
  width: 100%; display: block;
  aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.35s ease;
}
.portfolio-item:hover .portfolio-thumb img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(29,28,27,0);
  display: flex; align-items: flex-end; padding: 14px;
  transition: background 0.25s;
}
.portfolio-item:hover .portfolio-overlay { background: rgba(29,28,27,0.65); }

.portfolio-overlay-inner {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  opacity: 0; transform: translateY(6px);
  transition: all 0.25s; color: var(--color-white);
}
.portfolio-item:hover .portfolio-overlay-inner { opacity: 1; transform: translateY(0); }

.portfolio-category {
  font-size: 13px; font-weight: 600;
  background: var(--color-orange); padding: 4px 10px; border-radius: 4px;
}

.portfolio-empty {
  text-align: center; padding: 60px 0;
  color: var(--color-text-muted); font-size: 15px;
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-filters { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 13px; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Gallery item — zoom on hover ===== */
.gallery-item img { transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.lightbox.open {
  background: rgba(0,0,0,0.92); opacity: 1; pointer-events: all;
}
.lightbox-content {
  position: relative; max-width: min(90vw, 1100px); max-height: 88vh;
  transform: scale(0.93);
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2);
}
.lightbox.open .lightbox-content { transform: scale(1); }
.lightbox-content img {
  display: block; max-width: 100%; max-height: 88vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
  margin-top: 12px; text-align: center;
  font-size: 14px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em;
}
.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.15s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.15s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
