:root {
  --orange: #E8731A;
  --orange-hover: #D06515;
  --orange-light: #FFF4EB;
  --orange-glow: rgba(232, 115, 26, 0.10);
  --green: #3B8B2A;
  --green-hover: #327623;
  --green-light: #EDF7EB;
  --dark: #1B1B1B;
  --darker: #111111;
  --gray-900: #222;
  --gray-800: #333;
  --gray-600: #666;
  --gray-400: #999;
  --gray-200: #E0DDD8;
  --gray-100: #F5F3EE;
  --white: #fff;
  --off-white: #FAFAF7;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --section-py: clamp(60px, 10vw, 110px);
  --container: 1200px;
  --radius: 10px;
  --radius-lg: 14px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--off-white);
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--orange); color: var(--white);
  padding: 8px 16px; border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-tag--light { color: rgba(255,255,255,0.8); }

.section-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}
.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}
.section-subtitle--light { color: rgba(255,255,255,0.8); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
}
.btn--full { width: 100%; justify-content: center; }
.btn--outline-dark {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline-dark:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--secondary {
  background: transparent;
  color: var(--gray-800);
  border-color: var(--gray-200);
}
.btn--secondary:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

.topbar {
  background: var(--darker);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
  font-weight: 400;
}
.topbar__item:hover { color: var(--orange); }
.topbar__item svg { flex-shrink: 0; opacity: 0.5; }
.topbar__item--address { margin-left: auto; }

.header {
  position: sticky;
  top: 36px;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.header__logo img {
  height: 44px;
  width: auto;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__link {
  padding: 8px 14px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-800);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover {
  color: var(--orange);
  background: var(--orange-glow);
}
.nav__link--cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  margin-left: 8px;
  font-weight: 600;
}
.nav__link--cta:hover {
  background: var(--orange-hover);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero {
  position: relative;
  height: calc(100vh - 103px);
  height: calc(100svh - 103px);
  min-height: 450px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero__bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.93) 0%,
    rgba(27, 27, 27, 0.8) 40%,
    rgba(27, 27, 27, 0.5) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 660px;
}
.hero__badge {
  display: inline-block;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 115, 26, 0.1);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(232, 115, 26, 0.2);
  margin-bottom: 24px;
}
.hero__title {
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.hero__title span {
  color: var(--orange);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.divider {
  position: relative;
  margin-top: -1px;
  line-height: 0;
  z-index: 4;
}
.divider svg {
  display: block;
  width: 100%;
  height: 40px;
}
.divider--white svg path { fill: var(--off-white); }

.about {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about__text p {
  margin-bottom: 14px;
  color: var(--gray-600);
  font-size: 0.95rem;
}
p.about__lead {
  font-size: 1.08rem;
  color: var(--gray-800);
  font-weight: 500;
}
.about__text .btn { margin-top: 16px; }

.about__visual {
  position: relative;
  padding-bottom: 20px;
}
.about__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.about__image-wrap img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.about__accent-card {
  position: absolute;
  bottom: 4px;
  left: 0;
  background: var(--green);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(59, 139, 42, 0.3);
  text-align: center;
  z-index: 2;
}
.about__accent-number {
  display: block;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}
.about__accent-label {
  font-size: 0.82rem;
  opacity: 0.9;
  font-weight: 500;
}

.stats {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2a1a0a 100%);
  overflow: hidden;
}
.stats__bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  opacity: 0.04;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,0.3) 80px,
    rgba(255,255,255,0.3) 81px
  );
  pointer-events: none;
}
.stats__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat { padding: 20px 12px; }
.stat__number {
  display: inline;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--orange);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__suffix {
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--orange);
}
.stat__label {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.services {
  padding: var(--section-py) 0;
  background: var(--gray-100);
}
.services__header {
  text-align: center;
  margin-bottom: 44px;
}
.services__header .section-subtitle { margin-bottom: 0; }

.services__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.service-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
}
.service-card--large {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.service-card--large .service-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-card--large .service-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-card--large .service-card__content {
  padding: 22px 24px;
}
.service-card--large h3 {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.service-card--large p {
  color: var(--gray-600);
  font-size: 0.88rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.service-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.service-card--large:hover .service-card__arrow {
  background: var(--orange);
  color: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.services__grid .service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.services__grid .service-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.services__grid .service-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.services__grid .service-card__content {
  padding: 14px 16px;
}
.services__grid h3 {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
}
.services__grid p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-top: 4px;
}

.projects {
  padding: var(--section-py) 0;
  background: var(--dark);
}
.projects > .container {
  text-align: center;
}
.projects .hero__actions {
  justify-content: center;
  margin-top: 24px;
}
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 6px;
  max-width: 1300px;
  margin: 40px auto 0;
}
.project-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.project-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1;
}
.project-item__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.project-item__overlay span {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}
.projects__more-wrap {
  text-align: center;
  padding: 30px 6px 0;
  max-width: 1300px;
  margin: 0 auto;
}

.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox__caption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  max-width: 600px;
  padding: 8px 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
  line-height: 1.4;
}
.lightbox__close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 2.2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.certs {
  padding: 64px 0;
  background: var(--off-white);
  text-align: center;
}
.certs .section-subtitle {
  margin-bottom: 36px;
}
.certs__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-200);
}
.cert-card img {
  height: 60px; width: auto;
  object-fit: contain;
}
.cert-card span {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gray-600);
}

.clients {
  padding: 64px 0;
  background: var(--gray-100);
  text-align: center;
}
.clients .section-subtitle { margin-bottom: 36px; }
.clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.client-logo {
  background: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}
.client-logo img {
  height: 40px; width: auto;
  max-width: 200px;
  object-fit: contain;
}

.contact {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.contact__accent {
  position: absolute;
  top: -60px; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  pointer-events: none;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact__info p {
  color: var(--gray-600);
  margin-bottom: 24px;
  font-size: 1rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact__detail svg {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 3px;
}
.contact__detail strong {
  display: block;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.contact__detail a,
.contact__detail span {
  color: var(--gray-600);
  font-size: 0.92rem;
}
.contact__detail a:hover { color: var(--orange); }

.contact__hours {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.contact__hours strong {
  display: block;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.contact__hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  font-size: 0.88rem;
  color: var(--gray-600);
}
.contact__hours-grid span:nth-child(even) {
  font-weight: 500;
  color: var(--gray-800);
}
.hours-closed {
  color: var(--gray-400);
}

.contact__form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 30px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-200);
  max-width: 100%;
  overflow: hidden;
}
.contact__form h3 {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 22px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--gray-800);
  margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--dark);
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(59, 139, 42, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 90px; }

#contact-form {
  max-width: 100%;
  overflow: hidden;
}
#contact-form .g-recaptcha {
  transform-origin: left center;
  max-width: 100%;
}

.footer {
  background: var(--darker);
  color: rgba(255,255,255,0.6);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 64px 24px 36px;
}
.footer__brand img {
  height: auto;
  width: 180px;
  max-width: 100%;
  margin-bottom: 14px;
  border-radius: var(--radius);
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
}
.footer__links h4,
.footer__contact h4 {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer__links a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }
.footer__contact p {
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.footer__contact a:hover { color: var(--orange); }
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover {
  background: var(--orange);
  color: var(--white);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.fab-phone {
  display: none;
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 900;
  width: 52px; height: 52px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232, 115, 26, 0.35);
}
.back-to-top {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 899;
  width: 42px; height: 42px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), background var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover { background: var(--orange); }

.btn:focus-visible,
.nav__link:focus-visible,
.hamburger:focus-visible {
  box-shadow: 0 0 0 3px rgba(232, 115, 26, 0.4);
}
.form-group input:focus-visible,
.form-group textarea:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(59, 139, 42, 0.15);
}
.project-item:focus-visible,
.cert-card:focus-visible,
.client-logo:focus-visible {
  box-shadow: 0 0 0 3px rgba(232, 115, 26, 0.4);
}
.back-to-top:focus-visible,
.fab-phone:focus-visible {
  box-shadow: 0 0 0 3px rgba(232, 115, 26, 0.5);
}

.service-card__link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--orange);
}

.page-hero {
  position: relative;
  padding: 100px 0 70px;
  background: var(--dark);
  text-align: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.page-hero__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.9) 0%,
    rgba(27, 27, 27, 0.78) 40%,
    rgba(27, 27, 27, 0.6) 100%
  );
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero__title {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero__subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero .btn { margin-top: 24px; }

.content-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.content-section--alt {
  background: var(--gray-100);
}
.content-section--compact {
  padding: 64px 0;
}
.projects--compact {
  padding: 64px 0;
}
.content-section__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.content-section__intro p {
  color: var(--gray-600);
  font-size: 1rem;
  margin-bottom: 12px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail--reverse .service-detail__image { order: 2; }
.service-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-detail__image img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-detail__content h2 {
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--dark);
  margin-bottom: 12px;
}
.service-detail__content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.7;
}
.service-detail__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.gallery-filter__btn {
  padding: 10px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  background: var(--white);
  color: var(--gray-600);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-filter__btn:hover {
  border-color: #D4A017;
  color: #D4A017;
}
.gallery-filter__btn--active {
  background: #D4A017;
  border-color: #D4A017;
  color: var(--white);
}
.gallery-filter__count {
  font-weight: 400;
  opacity: 0.85;
  font-size: 0.82em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 8px;
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-grid .project-item img { aspect-ratio: 1; }
.gallery-grid .project-item.filter-hidden { display: none; }
.gallery-grid .project-item.load-hidden { display: none; }
.gallery-load-more {
  text-align: center;
  padding: 32px 0 0;
}
.gallery-load-more .btn { min-width: 200px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 1px solid var(--gray-200);
}
.team-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gray-100);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}
.team-card h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-card span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.job-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.text-content h2 {
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--dark);
  margin-bottom: 12px;
  margin-top: 32px;
}
.text-content h2:first-child { margin-top: 0; }
.text-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.7;
}
.text-content ul {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 20px;
  list-style: disc;
}
.text-content .btn { margin-top: 16px; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.info-card h3 {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.info-card > p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.career-apply {
  max-width: 680px;
  margin: 0 auto;
}
.career-apply__header {
  text-align: center;
  margin-bottom: 32px;
}
.career-apply__header .section-subtitle {
  margin: 0 auto;
}
.career-apply__form {
  max-width: 100%;
}

.instagram-feed {
  padding: 64px 0;
  background: var(--off-white);
  text-align: center;
}
.instagram-feed--alt {
  background: var(--gray-100);
}
.instagram-feed .section-subtitle {
  margin: 0 auto 36px;
}
.instagram-feed__cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

ul.usp-list {
  list-style: none;
  padding: 0;
}
ul.usp-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--gray-800);
  font-size: 0.95rem;
  font-weight: 500;
}
ul.usp-list li::marker {
  content: none;
}
.usp-list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 16px;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hamburger { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 1px solid var(--gray-200);
    padding: 8px 24px 16px;
  }
  .nav.open { display: block; }
  .nav__list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .nav__link {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav__link--cta {
    text-align: center;
    margin-left: 0;
    margin-top: 10px;
    border-bottom: none;
    border-radius: 50px;
    padding: 10px 22px;
  }
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 36px; }
  .about__visual { order: -1; padding-bottom: 60px; }
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .services__featured { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-detail { grid-template-columns: 1fr; gap: 24px; }
  .service-detail--reverse .service-detail__image { order: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact__form { max-width: 600px; }
}

@media (max-width: 768px) {
  .topbar__item--address { display: none; }
  .topbar__inner { justify-content: center; }
  .header { top: 33px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px; padding: 0 4px;
  }
  .certs__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 100%; }
  .cert-card { padding: 16px 12px; }
  .cert-card img { height: 48px; }
  .clients__logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .client-logo { flex-shrink: 0; padding: 14px 20px; }
  .client-logo img { height: 32px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; padding-top: 48px; }
  .footer__brand p { max-width: 100%; }
  .gallery-filter { gap: 6px; }
  .gallery-filter__btn { padding: 7px 14px; font-size: 0.78rem; border-width: 1.5px; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 480px; gap: 16px; }
  .gallery-grid .project-item { border-radius: var(--radius-lg); overflow: hidden; }
  .gallery-grid .project-item__overlay {
    position: static;
    background: var(--gray-100);
    padding: 10px 14px;
  }
  .gallery-grid .project-item__overlay span {
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 500;
  }
  .client-logo img { max-width: 160px; }
  .fab-phone { display: flex; }
  .back-to-top { bottom: 80px; }
}

@media (max-width: 640px) {
  section, section > div, section > div > div, section > div > div > div {
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .services__grid { grid-template-columns: 1fr; }
  .contact__form { padding: 22px 18px; }
  .hero__title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-card { padding: 20px 12px; }
  .job-card { flex-direction: column; align-items: stretch; text-align: center; padding: 20px 18px; }
  .btn { padding: 12px 24px; font-size: 0.88rem; }
  .page-hero { padding: 70px 0 44px; }
  .info-card { padding: 20px 18px; }
  .lightbox { padding: 12px; }
  .lightbox__close { top: 8px; right: 12px; }
  .service-card--large .service-card__content { padding: 16px; }
  .service-card--large h3 { font-size: 1.05rem; }
  .topbar__inner { gap: 8px 24px; }
}

@media (max-width: 400px) {
  #contact-form .g-recaptcha {
    transform: scale(0.85);
  }
}

@media (max-width: 340px) {
  #contact-form .g-recaptcha {
    transform: scale(0.75);
  }
}
