:root {
  --bg-primary: #050505;
  --bg-secondary: #111111;
  --bg-tertiary: #191919;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text-primary: #f5f5f5;
  --text-muted: #bfc3c8;
  --accent: #f5b223;
  --accent-deep: #c9890c;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container-width: 1320px;
  --transition: 0.35s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(245, 178, 35, 0.12), transparent 30%),
    linear-gradient(180deg, #060606 0%, #0a0a0a 48%, #050505 100%);
  color: var(--text-primary);
  overflow-x: hidden;
  transition: background 0.8s ease;
}
body[data-theme="theme-gold"] {
  background:
    radial-gradient(circle at top right, rgba(245, 178, 35, 0.16), transparent 32%),
    linear-gradient(180deg, #080808 0%, #141006 48%, #080808 100%);
}
body[data-theme="theme-neutral"] {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.07), transparent 30%),
    linear-gradient(180deg, #050505 0%, #0d0d0d 48%, #060606 100%);
}
body[data-theme="theme-slate"] {
  background:
    radial-gradient(circle at top right, rgba(120, 132, 150, 0.14), transparent 32%),
    linear-gradient(180deg, #060606 0%, #10161c 48%, #050505 100%);
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
main { position: relative; z-index: 2; }
.container { max-width: var(--container-width); }
h1, h2, h3, h4, h5, h6, .brand-logo-text, .nav-link, .eyebrow, .btn, .project-tag {
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.03em;
}
h1, h2, h3 { font-weight: 700; line-height: 0.95; }
p { color: var(--text-muted); line-height: 1.75; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.section { position: relative; padding: 120px 0; }
.section-heading { max-width: 760px; margin-bottom: 3.5rem; }
.section-heading.split {
  max-width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}
.section-heading.narrow { max-width: 620px; }
.section-heading h2,
.section-intro h2,
.cta-strip-inner h2,
.inner-hero h1,
.quote-popup-panel h3 {
  font-size: clamp(2rem, 3vw, 3.45rem);
  text-transform: uppercase;
}
.compact-title h2 { font-size: clamp(1.8rem, 2.6vw, 3rem); }
.section-bg-angle {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 178, 35, 0.08), transparent 33%);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  pointer-events: none;
}
.btn {
  border-radius: 999px;
  padding: 1rem 1.6rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-brand {
  background: linear-gradient(135deg, var(--accent), #f8c452);
  border: 1px solid transparent;
  color: #111;
  box-shadow: 0 14px 30px rgba(245, 178, 35, 0.24);
}
.btn-brand:hover { background: linear-gradient(135deg, #ffc84f, var(--accent)); color: #050505; }
.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}
.btn-outline-light:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245, 178, 35, 0.08);
}
.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.site-header-wrap.is-hidden { transform: translateY(-100%); }
.site-header-wrap.is-solid {
  background: rgba(7, 7, 7, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.topbar {
  background:
    linear-gradient(135deg, rgba(245, 178, 35, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(245, 178, 35, 0.16);
}
.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.topbar-items, .topbar-social {
  display: flex;
  gap: 0.95rem;
  align-items: center;
  flex-wrap: wrap;
}
.topbar a:hover, .topbar span:hover { color: var(--accent); }
.topbar-card {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}
.topbar-card i {
  font-size: 0.8rem;
  color: var(--accent);
}
.topbar-card span {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.topbar-social-link {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
}
.site-header {
  position: relative;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-solid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.site-header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.brand img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-46%);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.3));
}
.site-header .brand {
  width: 118px;
  min-width: 118px;
  height: 88px;
}
.site-footer .brand img {
  position: static;
  transform: none;
  width: 112px;
  height: 112px;
}
.site-footer .brand {
  width: auto;
  min-width: 0;
  height: auto;
}
.desktop-nav { display: flex; align-items: center; gap: 2rem; }
.nav-dropdown {
  position: relative;
}
.nav-link-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.nav-link-dropdown i {
  font-size: 0.72rem;
  transition: transform 0.3s ease;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 0;
  min-width: 280px;
  padding: 0.8rem;
  border-radius: 20px;
  background: rgba(8, 8, 8, 0.96);
  border: 1px solid rgba(245, 178, 35, 0.2);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
.nav-dropdown-menu a:hover {
  background: rgba(245, 178, 35, 0.1);
  color: var(--accent);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown:hover .nav-link-dropdown i,
.nav-dropdown:focus-within .nav-link-dropdown i {
  transform: rotate(180deg);
}
.desktop-nav .nav-link {
  position: relative;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.desktop-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.desktop-nav .nav-link:hover::after, .desktop-nav .nav-link.active::after { transform: scaleX(1); }
.desktop-nav .nav-link.active, .desktop-nav .nav-link:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.mobile-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  pointer-events: none;
}
.mobile-menu.is-open { pointer-events: auto; }
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-menu.is-open .mobile-menu-backdrop { opacity: 1; }
.mobile-menu-panel {
  position: relative;
  margin-left: auto;
  width: min(100%, 460px);
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 45%),
    linear-gradient(135deg, #0d0d0d, #050505 68%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  transform: translateX(100%);
}
.mobile-menu-close {
  margin-left: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #fff;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin: 3rem 0 2rem;
}
.mobile-submenu-links {
  margin-top: 0.85rem;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(245, 178, 35, 0.18);
}
.mobile-submenu-links a {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin: 0.55rem 0;
  color: var(--text-muted);
}
.mobile-menu-links a {
  font-family: "Oxanium", sans-serif;
  font-size: clamp(1.4rem, 5vw, 2.3rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mobile-menu-contact {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-contact a, .mobile-menu-contact span {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.mobile-topbar-style {
  display: grid;
  gap: 0.95rem;
}
.mobile-topbar-style .topbar-card {
  justify-content: flex-start;
}
.mobile-topbar-style .topbar-card span {
  display: inline;
}
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.mobile-hero-video-section {
  display: none;
}
.mobile-hero-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.mobile-hero-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-media, .hero-media video, .hero-media img.hero-fallback, .hero-overlay { position: absolute; inset: 0; }
.hero-video, .hero-fallback { width: 100%; height: 100%; object-fit: cover; }
.hero-fallback { z-index: -1; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(245, 178, 35, 0.08) 45%, rgba(0, 0, 0, 0.32));
}
.hero-layout {
  position: relative;
  z-index: 2;
}
.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  mix-blend-mode: screen;
}
.hero-lines img { width: 100%; height: 100%; object-fit: cover; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 180px 0 110px;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.youtube-video-wrap {
  overflow: hidden;
  pointer-events: none;
}
.youtube-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 177.77777778vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translateX(-50%) scale(1.2);
  transform-origin: top center;
}
.hero-content p {
  max-width: 720px;
  font-size: 1.1rem;
  color: rgba(245, 245, 245, 0.82);
}
.hero-form {
  position: relative;
  z-index: 2;
  padding: 2rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45)),
    rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(14px);
}
.hero-form h3 {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.hero-form p {
  color: rgba(245, 245, 245, 0.72);
  margin-bottom: 1.2rem;
}
.hero-actions, .popup-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  min-width: 300px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 780px;
}
.trust-row span {
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-size: 0.92rem;
  white-space: nowrap;
}
.trust-row i { color: var(--accent); margin-right: 0.45rem; }
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator span {
  display: inline-flex;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  position: relative;
}
.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 10px;
  margin-left: -2px;
  background: var(--accent);
  border-radius: 999px;
  animation: scrollPulse 1.8s infinite;
}
@keyframes scrollPulse {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(15px); }
}
.about-preview, .faq-preview, .quote-section { background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)); }
.section-theme-accent {
  background:
    radial-gradient(circle at 85% 20%, rgba(245, 178, 35, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(245, 178, 35, 0.03), rgba(255, 255, 255, 0.01));
}
.section-theme-dark {
  background:
    radial-gradient(circle at 10% 25%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0));
}
.section::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: 3%;
  top: 12%;
  background: url("../img/svg/industrial-grid.svg") center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
  animation: sectionFloat 12s ease-in-out infinite;
  transform-origin: center;
}
@keyframes sectionFloat {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50% { transform: translate3d(-18px, 20px, 0) rotate(4deg) scale(1.04); }
  100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
}
.section.in-view::after {
  opacity: 0.16;
}
.feature-list, .contact-mini-list {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0;
}
.feature-list span, .contact-mini-list span { display: flex; align-items: center; gap: 0.75rem; }
.feature-list i, .contact-mini-list i {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 178, 35, 0.12);
  color: var(--accent);
}
.text-link {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}
.image-stack { position: relative; min-height: 620px; }
.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.image-card.primary { width: 74%; }
.image-card.secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  transform: translateY(10%);
}
.image-stack.simple { min-height: auto; }
.image-stack.simple .image-card.primary { width: 100%; }
.metric-chip {
  position: absolute;
  left: 1rem;
  bottom: 2rem;
  width: 220px;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.9);
  border: 1px solid rgba(245, 178, 35, 0.3);
  backdrop-filter: blur(12px);
}
.metric-chip strong {
  display: block;
  color: var(--accent);
  font-family: "Oxanium", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}
.service-card, .reason-card, .review-card, .info-card, .process-step, .project-grid-card, .service-detail-card, .contact-card, .glass-card, .project-slide-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.service-card, .project-grid-card, .project-slide-card { overflow: hidden; border-radius: var(--radius-lg); position: relative; }
.service-card img, .project-grid-card img, .project-slide-card img, .service-detail-card img, .inner-hero img, .map-placeholder img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-card-body, .project-slide-content { padding: 1.6rem; }
.service-icon, .reason-card i, .info-card i {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245, 178, 35, 0.22), rgba(245, 178, 35, 0.08));
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.service-card h3, .reason-card h3, .review-card strong, .info-card h3, .process-step h3, .project-slide-card h3, .project-grid-card h3, .service-detail-card h3, .contact-card h2 {
  font-size: 1.6rem;
  text-transform: uppercase;
}
.service-card a {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.86rem;
}
.service-card::before,
.reason-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(245, 178, 35, 0), rgba(245, 178, 35, 0.45), rgba(255, 255, 255, 0)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover,
.reason-card:hover,
.project-grid-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(245, 178, 35, 0.11), rgba(255, 255, 255, 0.04));
  border-color: rgba(245, 178, 35, 0.28);
}
.service-card:hover::before,
.reason-card:hover::before {
  opacity: 1;
}
.service-card img,
.reason-card,
.project-grid-card,
.service-card,
.project-slide-card {
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover img,
.project-grid-card:hover img {
  transform: scale(1.06);
}
.service-card-image {
  display: block;
  overflow: hidden;
}
.service-card-body h3 a {
  color: var(--text-primary);
}
.service-card-body h3 a:hover {
  color: var(--accent);
}
.reason-card, .review-card, .info-card, .process-step {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  height: 100%;
  position: relative;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.stats-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.stat-box {
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(245, 178, 35, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(245, 178, 35, 0.2);
  text-align: center;
}
.stat-box strong {
  display: block;
  font-family: "Oxanium", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  color: var(--accent);
  line-height: 1;
}
.project-tag {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(245, 178, 35, 0.14);
  color: var(--accent);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.project-slider .swiper-pagination, .reviews-slider .swiper-pagination { position: static; margin-top: 1.6rem; }
.swiper-pagination-bullet { width: 11px; height: 11px; background: rgba(255, 255, 255, 0.35); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--accent); }
.review-card .stars { color: var(--accent); letter-spacing: 0.18em; margin-bottom: 1rem; }
.custom-accordion .accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.custom-accordion .accordion-button {
  background: transparent;
  color: var(--text-primary);
  box-shadow: none;
  font-family: "Oxanium", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1.3rem 1.5rem;
}
.custom-accordion .accordion-button:not(.collapsed) { background: rgba(245, 178, 35, 0.08); color: var(--accent); }
.custom-accordion .accordion-button::after { filter: invert(1); }
.custom-accordion .accordion-body { color: var(--text-muted); line-height: 1.75; }
.quote-form { padding: 2rem; border-radius: var(--radius-lg); }
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-control, .form-select {
  min-height: 58px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: rgba(255, 92, 92, 0.7);
  box-shadow: 0 0 0 0.18rem rgba(255, 92, 92, 0.12);
}
.form-control:focus, .form-select:focus {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-color: rgba(245, 178, 35, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(245, 178, 35, 0.12);
}
.form-control::placeholder { color: rgba(245, 245, 245, 0.55); }
.form-select { color: rgba(245, 245, 245, 0.55); }
.form-select option { color: #111; }
.upload-placeholder {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border-radius: 16px;
  border: 1px dashed rgba(245, 178, 35, 0.45);
  color: var(--accent);
  cursor: pointer;
}
.upload-placeholder.has-file {
  border-style: solid;
  background: rgba(245, 178, 35, 0.08);
}
.form-check-label { color: var(--text-muted); }
.field-error {
  margin-top: 0.5rem;
  color: #ff8b8b;
  font-size: 0.82rem;
  line-height: 1.4;
}
.turnstile-slot {
  min-height: 66px;
}
.turnstile-slot .cf-turnstile,
.turnstile-slot iframe {
  max-width: 100%;
}
.form-response {
  display: none;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.form-response.is-visible {
  display: block;
}
.form-response.is-success {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.24);
  color: #c8f4d8;
}
.form-response.is-error {
  background: rgba(255, 92, 92, 0.12);
  border: 1px solid rgba(255, 92, 92, 0.24);
  color: #ffd5d5;
}
.btn.is-loading {
  opacity: 0.7;
  pointer-events: none;
}
.inner-hero {
  position: relative;
  padding: 220px 0 110px;
  overflow: hidden;
}
.inner-hero > img, .inner-hero-overlay { position: absolute; inset: 0; }
.inner-hero > img { height: 100%; object-fit: cover; }
.inner-hero-overlay { background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.35)); }
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero p { max-width: 650px; }
.page-banner-content {
  max-width: 820px;
  position: relative;
}
.page-banner-content::after {
  content: "";
  position: absolute;
  right: -6rem;
  top: 50%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(245, 178, 35, 0.14);
  background: radial-gradient(circle, rgba(245, 178, 35, 0.14), transparent 72%);
  transform: translateY(-50%);
  pointer-events: none;
}
.breadcrumb-wrap {
  margin-top: 1.75rem;
}
.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem;
}
.breadcrumb-list li {
  position: relative;
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Oxanium", sans-serif;
}
.breadcrumb-list li + li::before {
  content: "/";
  position: absolute;
  left: -0.62rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(245, 178, 35, 0.65);
}
.breadcrumb-list a {
  color: rgba(245, 245, 245, 0.82);
}
.breadcrumb-list a:hover,
.breadcrumb-list li[aria-current="page"] {
  color: var(--accent);
}
.page-section-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}
.content-panel,
.media-panel,
.feature-panel,
.checklist-card,
.case-study-card,
.metric-panel,
.quote-helper-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.content-panel,
.feature-panel,
.checklist-card,
.case-study-card,
.metric-panel,
.quote-helper-card {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    #0d0d0d;
}
.media-panel {
  overflow: hidden;
  background: #0a0a0a;
}
.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.panel-stack {
  display: grid;
  gap: 1.5rem;
}
.page-bullet-list,
.checklist-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.95rem;
}
.page-bullet-list li,
.checklist-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--text-muted);
}
.page-bullet-list li::before,
.checklist-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-top: 0.42rem;
  border-radius: 50%;
  flex: 0 0 11px;
  background: radial-gradient(circle, var(--accent) 0%, rgba(245, 178, 35, 0.22) 72%);
  box-shadow: 0 0 0 6px rgba(245, 178, 35, 0.08);
}
.feature-panel {
  overflow: hidden;
}
.feature-panel::after,
.case-study-card::after,
.quote-helper-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 178, 35, 0.18), transparent 68%);
  pointer-events: none;
}
.mini-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}
.mini-stat {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 178, 35, 0.14);
}
.mini-stat strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Oxanium", sans-serif;
  color: var(--accent);
  font-size: clamp(2.5rem, 4vw, 3.35rem);
  line-height: 0.95;
}
.mini-stat > span {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.mini-stat strong .counter {
  font-size: inherit;
  line-height: inherit;
}
.case-study-grid,
.feature-panel-grid,
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.case-study-card h3,
.feature-panel h3,
.checklist-card h3,
.metric-panel h3,
.quote-helper-card h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
}
.case-study-meta,
.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.2rem 0 0;
}
.case-study-meta span,
.feature-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 245, 245, 0.74);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Oxanium", sans-serif;
}
.case-study-meta i,
.feature-meta i {
  color: var(--accent);
}
.service-detail-card .service-copy {
  padding-right: 1rem;
}
.service-detail-card .service-copy .text-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.project-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.8rem;
  align-items: start;
}
.faq-side-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(245, 178, 35, 0.1), rgba(255, 255, 255, 0.03)),
    #0d0d0d;
  border: 1px solid rgba(245, 178, 35, 0.16);
  box-shadow: var(--shadow);
  position: sticky;
  top: 140px;
}
.faq-side-card .contact-mini-list {
  margin-top: 1.5rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.8rem;
}
.contact-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.not-found-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.not-found-code {
  display: block;
  margin-bottom: 1rem;
  font-family: "Oxanium", sans-serif;
  font-size: clamp(5rem, 16vw, 10rem);
  color: rgba(245, 178, 35, 0.18);
  line-height: 0.9;
}
.not-found-page {
  min-height: 100vh;
  overflow: hidden;
}
.not-found-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 0;
}
.not-found-screen .container {
  position: relative;
  z-index: 2;
}
.not-found-screen .not-found-panel {
  position: relative;
  padding: 3rem 2rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(245, 178, 35, 0.18);
  box-shadow: var(--shadow);
  animation: panelFloat 5.5s ease-in-out infinite;
}
.not-found-screen h1 {
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.not-found-screen p {
  max-width: 560px;
  margin: 0 auto;
}
.not-found-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 1rem;
  font-size: 3rem;
  border-radius: 50%;
  background: rgba(245, 178, 35, 0.08);
  border: 1px solid rgba(245, 178, 35, 0.2);
  animation: emojiBounce 2.8s ease-in-out infinite;
}
.not-found-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  opacity: 0.6;
}
.not-found-bg-shape.shape-one {
  width: 320px;
  height: 320px;
  top: 12%;
  left: 8%;
  background: radial-gradient(circle, rgba(245, 178, 35, 0.18), transparent 70%);
  animation: shapeDrift 10s ease-in-out infinite;
}
.not-found-bg-shape.shape-two {
  width: 260px;
  height: 260px;
  right: 10%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  animation: shapeDrift 12s ease-in-out infinite reverse;
}
@keyframes emojiBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-4deg); }
}
@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes shapeDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -14px, 0) scale(1.06); }
}
.dark-panel {
  background:
    linear-gradient(180deg, rgba(245, 178, 35, 0.05), rgba(255, 255, 255, 0.01)),
    #090909;
}
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.process-step span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: "Oxanium", sans-serif;
  font-size: 1.8rem;
}
.service-detail-grid { display: grid; gap: 1.5rem; }
.service-detail-card {
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.4rem;
  align-items: center;
}
.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.project-filter span {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: "Oxanium", sans-serif;
  font-size: 0.85rem;
}
.project-filter .active, .project-filter span:hover { border-color: rgba(245, 178, 35, 0.4); color: var(--accent); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}
.project-grid-card div { padding: 1.4rem; }
.project-lightbox-grid .project-grid-card {
  cursor: pointer;
}
.project-lightbox-grid .project-grid-card div {
  display: none;
}
.project-lightbox-grid .project-grid-card::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 5, 0.7);
  color: var(--accent);
}
.testimonial-card p {
  color: rgba(245, 245, 245, 0.85);
  font-size: 1rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--accent);
  display: block;
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}
.contact-card { border-radius: var(--radius-lg); padding: 2rem; height: 100%; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 1.25rem;
}
.contact-list li { display: flex; gap: 1rem; }
.contact-list i {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(245, 178, 35, 0.12);
  color: var(--accent);
}
.contact-list strong, .service-area-box h3 {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Oxanium", sans-serif;
  text-transform: uppercase;
}
.service-area-box {
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-strip { position: relative; z-index: 3; padding: 0 0 120px; }
.cta-strip-inner {
  border-radius: 30px;
  padding: 2.25rem;
  background:
    linear-gradient(135deg, rgba(245, 178, 35, 0.16), rgba(245, 178, 35, 0.04)),
    #101010;
  border: 1px solid rgba(245, 178, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-footer {
  position: relative;
  background: #040404;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 140px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 2rem; }
.footer-brand p { max-width: 420px; }
.footer-brand .brand { margin-bottom: 1.3rem; }
.footer-title {
  margin-bottom: 1rem;
  font-family: "Oxanium", sans-serif;
  text-transform: uppercase;
  font-size: 1.1rem;
}
.footer-links, .footer-contact { display: grid; gap: 0.8rem; }
.footer-links a, .footer-contact span, .footer-contact a { color: var(--text-muted); }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-links-arrow a,
.footer-contact-icons span,
.footer-contact-icons a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.footer-links-arrow i,
.footer-contact-icons i {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.92rem;
}
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a, .floating-action, .go-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-social a:hover, .floating-action:hover, .go-top:hover {
  transform: translateY(-3px);
  background: rgba(245, 178, 35, 0.12);
  color: var(--accent);
  border-color: rgba(245, 178, 35, 0.4);
}
.floating-actions {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "quote whatsapp"
    ". top";
  align-items: end;
  gap: 1rem;
  width: calc(100% - 2.5rem);
  pointer-events: none;
}
.floating-action,
.go-top {
  pointer-events: auto;
}
.floating-action.quote {
  grid-area: quote;
  justify-self: start;
  width: auto;
  min-height: 54px;
  border-radius: 18px;
  padding: 0 1.35rem;
  color: #111;
  background:
    linear-gradient(135deg, #f5b223 0%, #ffd36b 45%, #f5b223 100%);
  border: 1px solid rgba(255, 211, 107, 0.55);
  font-family: "Oxanium", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 36px rgba(245, 178, 35, 0.32);
  position: relative;
  overflow: visible;
  transform: skewX(-12deg);
  animation: quotePulse 2.4s ease-in-out infinite;
}
.floating-action.quote span,
.floating-action.quote {
  font-weight: 700;
}
.floating-action.quote::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.55) 48%, transparent 66%);
  border-radius: 16px;
  background-size: 240% 100%;
  background-position: 140% 0;
  animation: quoteShimmer 2.6s ease-in-out infinite;
  z-index: 0;
  clip-path: inset(0 round 16px);
}
.floating-action.quote::after {
  content: "FAST";
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  padding: 0.22rem 0.4rem;
  border-radius: 999px;
  background: #111;
  color: var(--accent);
  transform: skewX(12deg);
  z-index: 2;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}
.floating-action.quote > * {
  transform: skewX(12deg);
}
.floating-action.whatsapp {
  grid-area: whatsapp;
  justify-self: end;
  width: 66px;
  height: 66px;
  font-size: 1.55rem;
  color: #25d366;
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.38);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: whatsappPulse 1.9s infinite;
}
.floating-action.whatsapp:hover {
  color: #fff;
  background: #25d366;
}
.go-top {
  grid-area: top;
  justify-self: end;
}
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes quotePulse {
  0%, 100% { box-shadow: 0 14px 36px rgba(245, 178, 35, 0.28); transform: skewX(-12deg) translateY(0); }
  50% { box-shadow: 0 18px 42px rgba(245, 178, 35, 0.44); transform: skewX(-12deg) translateY(-3px); }
}
@keyframes quoteShimmer {
  0%, 18% { background-position: 140% 0; }
  38%, 100% { background-position: -40% 0; }
}
.go-top { opacity: 0; visibility: hidden; }
.go-top.is-visible { opacity: 1; visibility: visible; }
.quote-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.quote-popup.is-visible { display: flex; }
.quote-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}
.quote-popup-panel {
  position: relative;
  width: min(100%, 560px);
  padding: 2.5rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(245, 178, 35, 0.16), transparent 36%),
    #0d0d0d;
  border: 1px solid rgba(245, 178, 35, 0.22);
  box-shadow: var(--shadow);
}
.quote-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #fff;
}

.video-play-btn {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;

    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0.7);
    color: #fff;

    display: flex !important;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;

    z-index: 9999 !important; 
    opacity: 1 !important;
    visibility: visible !important;

    pointer-events: none;
}
.footer-reveal { will-change: transform, opacity; }
