:root {
  --paper: #080808;
  --surface: #131313;
  --surface-soft: rgba(255, 255, 255, 0.06);
  --ink: #f7f0dc;
  --muted: #ad9f7c;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-bright: #fde047;
  --red: #dc2626;
  --line: rgba(212, 175, 55, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --wrap: min(1300px, calc(100% - 80px));
  --ease: 0.35s ease;
  --section-title-size: clamp(1.75rem, 2.8vw, 2.5rem);
  --section-title-line: 1;
  --section-subtitle-size: 1.05rem;
  --section-subtitle-line: 1.65;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  user-select: none; /* Shielding: Prevent text theft */
  -webkit-user-select: none;
}

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

button {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
  user-drag: none; /* Shielding: Prevent image dragging */
  -webkit-user-drag: none;
}

section,
header,
footer,
nav,
form {
  max-width: 100%;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

main {
  width: 100%;
  max-width: 100vw;
  overflow: clip;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 24px clamp(24px, 5vw, 96px);
  color: var(--white);
  transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}

.site-header.is-scrolled {
  padding-block: 16px;
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(8px); /* Reduced from 18px for performance */
}

.header-left,
.header-right,
.brand,
.main-nav,
.social-links {
  display: flex;
  align-items: center;
}

.header-left {
  min-width: 0;
  gap: clamp(28px, 4vw, 64px);
}

.brand {
  min-width: max-content;
}

.brand-text {
  display: block;
}

.brand-name {
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.main-nav {
  gap: 32px;
}

.main-nav > .mobile-nav-footer {
  display: none;
}

.main-nav a,
.nav-dropdown-trigger {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color var(--ease), opacity var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
  color: var(--gold);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown-trigger span {
  color: var(--gold);
  font-size: 0.9rem;
  transition: transform var(--ease);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 2px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(20px);
}

.nav-dropdown-menu::before {
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 18px;
  content: "";
}

.nav-dropdown-menu a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.nav-dropdown-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  border-radius: 2px;
  transition: height 0.25s ease;
}

.nav-dropdown-menu a:hover::before {
  height: 14px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  padding-left: 18px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-trigger span,
.nav-dropdown:focus-within .nav-dropdown-trigger span,
.nav-dropdown.is-open .nav-dropdown-trigger span {
  transform: rotate(180deg);
}

.header-right {
  flex-shrink: 0;
  gap: 28px;
}

.mobile-menu-toggle {
  display: none; /* Hidden by default */
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s var(--ease);
}

.mobile-menu-toggle svg {
  width: 100%;
  height: 100%;
}

.mobile-menu-toggle .line-top,
.mobile-menu-toggle .line-mid,
.mobile-menu-toggle .line-bot {
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}

.mobile-menu-toggle.is-active .line-top {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.is-active .line-mid {
  opacity: 0;
}

.mobile-menu-toggle.is-active .line-bot {
  transform: translateY(-6px) rotate(-45deg);
}

.header-action-group {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 24px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.language-switcher button {
  min-width: 28px;
  min-height: 22px;
  padding: 0 7px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 800;
}

.language-switcher button.is-active {
  color: #000;
  background: var(--gold);
}

.social-links {
  gap: 16px;
  color: var(--white);
}

.social-icon {
  display: inline-flex;
  opacity: 0.94;
}

.header-cta-pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}

.header-cta-pill {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 0.88rem;
  backdrop-filter: none;
}

.header-quote-pill {
  color: var(--gold-bright);
}

.header-contact-pill {
  color: rgba(255, 255, 255, 0.72);
}

.header-contact-pill:hover,
.header-contact-pill:focus-visible,
.header-quote-pill:hover,
.header-quote-pill:focus-visible {
  color: var(--gold);
}

.button {
  border: 0;
  padding: 18px 42px;
  cursor: pointer;
  font-size: 1.05rem;
}

.button-primary {
  background: var(--gold);
  color: #000;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.button-gold {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.header-cta-pill:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 880px;
  padding: 160px 24px 120px;
  place-items: center;
  overflow: hidden;
  background: #000;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.58)),
    url("assets/hero_v2.png") center / cover no-repeat;
  filter: blur(4px);
  transform: scale(1.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(900px, 100%);
}

@media (min-width: 821px) {
  .hero-content {
    transform: translateY(-70px);
  }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 42px;
}

.hero-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: var(--section-subtitle-size);
  line-height: var(--section-subtitle-line);
  margin-bottom: 38px;
}

.hero-social-proof {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-social-proof p {
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-social-proof strong,
.stars {
  color: var(--gold);
}

.stars {
  font-size: 1.1rem;
  letter-spacing: 0.22em;
}

.brand-carousel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(180px, 0.26fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  padding: 26px max(24px, calc((100vw - 1300px) / 2 + 40px));
  border-block: 1px solid rgba(212, 175, 55, 0.16);
  background: #050505;
  overflow: hidden;
}

.brand-carousel::before,
.brand-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 16vw);
  content: "";
  pointer-events: none;
}

.brand-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #050505 0%, transparent 100%);
}

.brand-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #050505 0%, transparent 100%);
}

.brand-carousel-label {
  position: relative;
  z-index: 3;
}

.brand-carousel-label span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-marquee {
  min-width: 0;
  overflow: hidden;
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  animation: brand-marquee 34s linear infinite;
  will-change: transform;
}

.brand-marquee-track span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-carousel:hover .brand-marquee-track {
  animation-play-state: paused;
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.project-gallery-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
}

.project-gallery-header {
  max-width: 1100px;
  margin-bottom: 48px;
}

.project-gallery-header .section-description {
  max-width: 600px;
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

.slider-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.slider-control:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.slider-control svg {
  width: 20px;
  height: 20px;
}

.project-gallery-grid {
  display: flex;
  overflow-x: auto;
  gap: 32px;
  margin-top: 60px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
}

.project-gallery-grid::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex: 0 0 calc((100% - 64px) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  padding: 0;
  transition: opacity 0.3s var(--ease);
  will-change: opacity, transform;
}

.project-card:hover {
  opacity: 0.85;
}

.project-card-main {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
  margin-bottom: 20px;
  filter: grayscale(1) brightness(0.8);
  transition: all 0.6s var(--ease);
}

.project-card:hover .project-card-main {
  filter: grayscale(0) brightness(1);
}

.project-card-body {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.project-card-body span {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.project-card-body h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-card-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.project-card-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 0;
}

.project-card-thumbs img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(1);
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.project-card-thumbs img:hover {
  opacity: 1;
  filter: grayscale(0);
  border-color: var(--gold);
}


/* Project Modal Gallery */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.project-modal.is-active {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px); /* Reduced for performance */
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(1200px, 94%);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 32px;
}

.modal-viewer {
  position: relative;
  width: 100%;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-viewer img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.modal-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-nav button:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.modal-prev { left: -28px; }
.modal-next { right: -28px; }

.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s var(--ease);
}

.modal-close:hover { opacity: 1; }

.modal-caption {
  text-align: left;
}

.modal-caption h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.modal-caption p {
  color: var(--muted);
  font-size: 1rem;
}

@media (max-width: 820px) {
  .modal-nav button {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
  .modal-prev { left: 0; }
  .modal-next { right: 0; }
  .modal-content { gap: 16px; }
}

.section-title {
  color: var(--white);
  font-size: var(--section-title-size);
  font-weight: 800;
  line-height: var(--section-title-line);
  margin-bottom: 24px;
}

.section-description {
  color: rgba(247, 240, 220, 0.68);
  font-size: var(--section-subtitle-size);
  line-height: var(--section-subtitle-line);
}

.import-banner,
.glass-engineering,
.network-section,
.compliance,
.quote-section,
.section,
.banner {
  position: relative;
  scroll-margin-top: 84px;
}

.eyebrow {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.import-banner {
  overflow: hidden;
  background: #000;
}

.strategy-section {
  position: relative;
  padding: 104px 0;
  scroll-margin-top: 84px;
  background: var(--paper);
}

.strategy-section:nth-of-type(even) {
  background: #0c0c0c;
}

.strategy-wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.strategy-header {
  max-width: 760px;
  margin-bottom: 44px;
}

.strategy-header .section-title {
  margin-bottom: 18px;
}

.strategy-header .section-description {
  max-width: 680px;
  margin: 0;
}

.process-grid,
.value-grid,
.deliverables-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.process-section .strategy-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 24px 0;
  transition: border-color var(--ease);
}

.process-section .strategy-card:hover {
  background: transparent;
  transform: none;
  border-top-color: var(--gold);
}

.process-section .strategy-card span {
  font-size: 0.65rem;
  opacity: 0.6;
  margin-bottom: 14px;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.value-layout .strategy-header {
  margin-bottom: 0;
}

.value-grid {
  grid-template-columns: 1fr;
  gap: 32px;
}

.value-section .strategy-card {
  background: transparent;
  border: none;
  border-left: 1px solid var(--line);
  border-radius: 0;
  padding: 4px 0 4px 24px;
  transition: all var(--ease);
}

.value-section .strategy-card:hover {
  background: transparent;
  border-left-color: var(--gold);
  padding-left: 30px;
  transform: none;
}

.value-section .strategy-card h3 {
  font-size: 1.1rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.deliverables-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 48px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 48px;
}

.deliverables-section .strategy-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 24px 0;
  transition: border-top-color var(--ease);
}

.deliverables-section .strategy-card:hover {
  background: transparent;
  transform: none;
  border-top-color: var(--gold);
}

.strategy-card {
  min-height: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--ease);
}

.strategy-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.strategy-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.strategy-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.strategy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.faq-layout .strategy-header {
  margin-bottom: 0;
}

.faq-item {
  border-top: 1px solid var(--line);
  transition: border-top-color var(--ease);
}

.faq-item.is-open,
.faq-item:hover {
  border-top-color: var(--gold);
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 18px;
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--ease), opacity var(--ease);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
}

.about-copy .section-title {
  max-width: 720px;
  margin-bottom: 20px;
}

.about-copy .section-description {
  max-width: 760px;
  margin-bottom: 24px;
}

.about-copy p:not(.eyebrow):not(.section-description) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.about-proof {
  display: grid;
  gap: 34px;
}

.about-proof div {
  padding: 0 0 0 24px;
  border: none;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: border-left-color var(--ease);
}

.about-proof div:hover {
  border-left-color: var(--gold);
}

.about-proof strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
}

.about-proof span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.import-banner-bg,
.glass-bg,
.compliance-bg {
  position: absolute;
  inset: 0;
}

.import-banner-bg img,
.glass-bg img,
.compliance-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.import-banner-bg {
  right: 0;
  left: auto;
  width: 45%;
  opacity: 0.45;
}

.import-banner-bg::before,
.compliance-bg::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 45%, transparent 100%);
}

.import-overlay {
  position: relative;
  z-index: 2;
  padding: 56px 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.92) 58%, rgba(0, 0, 0, 0.72) 100%);
}

.import-content-wrap,
.glass-content-wrap,
.network-content,
.compliance-wrap,
.quote-container,
.dm-concept-container {
  width: var(--wrap);
  margin: 0 auto;
}

.import-dashboard,
.spec-dashboard,
.quote-container {
  display: grid;
  align-items: center;
}

.import-dashboard {
  grid-template-columns: minmax(260px, 0.9fr) minmax(500px, 1.3fr);
  gap: clamp(36px, 7vw, 88px);
}

.import-narrative .section-title {
  margin-bottom: 16px;
}

.import-narrative .section-description {
  max-width: 430px;
  margin: 0;
}

.import-spec-grid,
.spec-grid,
.node-grid,
.compliance-pillars,
.compliance-metrics,
.form-row {
  display: grid;
}

.import-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.cloud-intro {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0;
}

.division-cloud {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.division-cloud span,
.division-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.division-cloud a {
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--gold-bright);
}

.spec-group {
  min-height: 170px;
  padding: 4px 0 4px 28px;
  border-left: 1px solid var(--line);
}

.import-spec-grid .spec-group {
  min-height: 150px;
  padding-left: 0;
  border-left: 0;
}

.group-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 46px;
  margin-bottom: 16px;
}

.import-spec-grid .group-header {
  min-height: 44px;
  margin-bottom: 14px;
}

.group-num {
  flex: 0 0 34px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.group-header h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.group-items,
.group-items-multi,
.item-col {
  display: grid;
  gap: 12px;
}

.group-items-multi {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.group-items span,
.item-col span {
  position: relative;
  display: block;
  color: rgba(247, 240, 220, 0.55);
  font-size: 0.94rem;
}

.spec-grid .group-items span,
.item-col span {
  padding-left: 20px;
}

.spec-grid .group-items span::before,
.item-col span::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--gold);
  opacity: 0.45;
}

.glass-engineering {
  min-height: 560px;
  padding: 80px 0;
  overflow: hidden;
  background: #000;
}

.division-section {
  transition: min-height 0.7s ease, padding var(--ease);
}

.glass-bg {
  opacity: 0.62;
}

.glass-overlay {
  position: relative;
  z-index: 1;
}

.glass-engineering::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(8, 12, 19, 0.96) 0%, rgba(8, 12, 19, 0.72) 55%, rgba(8, 12, 19, 0.44) 100%);
}

.construction-engineering .glass-bg {
  opacity: 0.52;
}

.textiles-engineering .glass-bg {
  opacity: 0.5;
}

.medical-engineering .glass-bg,
.electronics-engineering .glass-bg,
.gifts-engineering .glass-bg,
.chemicals-engineering .glass-bg,
.machinery-engineering .glass-bg,
.food-engineering .glass-bg {
  opacity: 0.48;
}

.textiles-engineering .glass-bg img {
  object-position: center;
}

.construction-engineering::before {
  background: linear-gradient(90deg, rgba(8, 10, 11, 0.96) 0%, rgba(8, 10, 11, 0.78) 54%, rgba(8, 10, 11, 0.48) 100%);
}

.textiles-engineering::before {
  background: linear-gradient(90deg, rgba(5, 9, 14, 0.96) 0%, rgba(5, 9, 14, 0.78) 54%, rgba(5, 9, 14, 0.46) 100%);
}

.medical-engineering::before,
.electronics-engineering::before,
.gifts-engineering::before,
.chemicals-engineering::before,
.machinery-engineering::before,
.food-engineering::before {
  background: linear-gradient(90deg, rgba(7, 9, 12, 0.96) 0%, rgba(7, 9, 12, 0.8) 54%, rgba(7, 9, 12, 0.5) 100%);
}

.spec-dashboard {
  grid-template-columns: minmax(300px, 0.9fr) minmax(520px, 1.15fr);
  gap: clamp(34px, 5vw, 70px);
}

.spec-narrative {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.spec-actions,
.compliance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.compliance-actions .button-primary {
  padding: 16px 54px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  transition: all 0.4s var(--ease);
}

.compliance-actions .button-primary:hover {
  background: var(--white);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.button-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

.about-hero-actions,
.glass-hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.spec-narrative .section-title,
.spec-narrative .section-description {
  margin: 0;
}

.spec-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
}

.construction-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 26px;
}

.textiles-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.division-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.food-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 26px;
}

.construction-spec-grid .spec-group {
  min-height: 160px;
}

.textiles-spec-grid .spec-group {
  min-height: 180px;
}

.division-spec-grid .spec-group {
  min-height: 180px;
}

.food-spec-grid .spec-group {
  min-height: 160px;
}

.food-spec-grid .spec-group:last-child {
  grid-column: 1 / -1;
  min-height: 130px;
}

.food-spec-grid .spec-group:last-child .group-items {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 20px;
}

.construction-spec-grid .spec-group:last-child {
  grid-column: 1 / -1;
  min-height: 130px;
}

.construction-spec-grid .spec-group:last-child .group-items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.network-section {
  overflow: hidden;
  background: #000;
}

.network-banner-bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: 45%;
  opacity: 0.4;
}

.network-banner-bg::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.75) 45%, transparent 100%);
}

.network-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.network-overlay {
  position: relative;
  z-index: 2;
  padding: 56px 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.93) 58%, rgba(0, 0, 0, 0.72) 100%);
}

.network-dashboard {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(500px, 1.3fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.network-narrative h2 {
  color: var(--white);
  font-size: var(--section-title-size);
  font-weight: 800;
  line-height: var(--section-title-line);
  margin-bottom: 16px;
}

.network-narrative p {
  max-width: 430px;
  margin: 0;
  color: rgba(247, 240, 220, 0.68);
  font-size: var(--section-subtitle-size);
  line-height: var(--section-subtitle-line);
}

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

.node-card,
.pillar,
.metric,
.enterprise-form {
  background: var(--surface);
  border: 1px solid var(--line);
}

.node-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 190px;
  padding: 28px;
  border: 0;
  border-radius: 18px;
  background-position: center;
  background-size: cover;
  clip-path: inset(0 round 18px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  text-align: left;
  transform: translateZ(0);
}

.node-card::before {
  content: none;
}

.node-card::after {
  position: absolute;
  inset: -2px;
  z-index: -2;
  content: "";
  background: inherit;
  background-position: center;
  background-size: cover;
  border-radius: inherit;
  backface-visibility: hidden;
  filter: brightness(0.68);
  transform: scale(1.02);
  transition: transform var(--ease), filter var(--ease);
}

.node-card:hover::after {
  filter: brightness(0.76) saturate(1.08);
  transform: scale(1.08);
}

.node-card-hong-kong {
  background-image: url("assets/HK.jpg");
}

.node-card-madrid {
  background-image: url("assets/Madrid.jpg");
}

.node-card-guadalajara {
  background-image: url("assets/guadalajara-cathedral-1024x682.jpg");
}

.node-card-shenzhen {
  background-image: url("assets/HK.jpg");
}

.node-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.15rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.node-card span {
  color: var(--white);
  font-size: 0.9rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.compliance-enterprise {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background: #000;
}

.compliance-enterprise .compliance-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.compliance-enterprise .compliance-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.compliance-enterprise .compliance-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 30%, rgba(0, 0, 0, 0.4) 100%);
}

.compliance-enterprise .compliance-overlay {
  position: relative;
  z-index: 5;
  width: var(--wrap);
  margin-inline: auto;
}

.compliance-content-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.compliance-header-main {
  max-width: 540px;
}

.compliance-header-main h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}

.compliance-header-main p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.compliance-pillars-grid {
  display: grid;
  gap: 24px;
}

.pillar-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  transform: translateX(10px);
}

.pillar-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.compliance-actions .button-primary {
  padding: 14px 32px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .compliance-enterprise {
    padding: 100px 0;
  }
  
  .compliance-content-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .compliance-header-main {
    max-width: 100%;
    text-align: center;
  }

  .compliance-header-main h2 {
    font-size: 2.2rem;
  }

  .compliance-header-main p {
    margin-bottom: 32px;
  }

  .compliance-actions {
    justify-content: center;
  }

  .pillar-card {
    padding: 24px;
    gap: 16px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .compliance-enterprise .compliance-bg::after {
    background: linear-gradient(180deg, #000 40%, rgba(0, 0, 0, 0.6) 100%);
  }
}

.quote-section {
  position: relative;
  padding: 160px 0;
  background: 
    linear-gradient(rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.98)),
    url("assets/compliance_bg_premium.png") center / cover fixed;
  overflow: hidden;
}

.quote-container {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 8vw, 140px);
  align-items: start;
}

.quote-info {
  position: sticky;
  top: 120px;
}

.quote-info h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
}

.quote-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 56px;
}

.office-stack {
  display: grid;
  gap: 32px;
}

.office strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.office a {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.office a:hover {
  opacity: 0.7;
}

/* Redesigned Form */
.enterprise-form {
  display: grid;
  gap: 40px;
  padding: 64px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  backdrop-filter: blur(40px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.input-group {
  display: grid;
  gap: 8px;
}

.input-group label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
}

.input-group input,
.input-group textarea,
.select-trigger {
  width: 100%;
  padding: 16px 0;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 0 !important;
  color: var(--white);
  font-size: 1rem;
  transition: border-color 0.4s ease;
}

.input-group input:focus,
.input-group textarea:focus,
.custom-select.is-open .select-trigger {
  border-bottom-color: var(--gold) !important;
  outline: none;
}

.input-group textarea {
  min-height: 120px;
  resize: none;
}

/* Custom Minimalist Select */
.custom-select {
  position: relative;
  width: 100%;
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 0 !important;
  color: var(--white);
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.enterprise-form .button-primary {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}

.select-trigger svg {
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}

.custom-select.is-open .select-trigger {
  border-bottom-color: var(--gold) !important;
}

.custom-select.is-open .select-trigger svg {
  transform: rotate(180deg);
}

.select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  max-height: 320px;
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow-y: auto;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
}

.custom-select.is-open .select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.select-options .option {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.select-options .option:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding-left: 24px;
}

.select-options .option.is-selected {
  background: rgba(212, 175, 55, 0.05);
  color: var(--gold);
  font-weight: 700;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-page {
  min-height: 100vh;
  padding: 150px 0 110px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.96)),
    url("assets/glass_high_res.png") center / cover fixed;
}

.quote-hero,
.quote-screen {
  width: var(--wrap);
  margin: 0 auto;
}

.quote-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
  margin-bottom: 70px;
}

.quote-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 42px;
}

.quote-hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: var(--section-subtitle-size);
  line-height: var(--section-subtitle-line);
  margin: 0;
}

.quote-process {
  display: grid;
  gap: 24px;
}

.quote-process div {
  padding: 4px 0 4px 22px;
  border: none;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  transition: border-left-color var(--ease);
}

.quote-process div:hover {
  border-left-color: var(--gold);
}

.quote-process span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  opacity: 0.6;
}

.quote-process strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.quote-process p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.quote-screen {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.quote-screen-info {
  position: sticky;
  top: 112px;
}

.quote-screen-info h2 {
  color: var(--gold);
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  margin-bottom: 20px;
}

.quote-screen-info p {
  color: var(--muted);
  font-size: var(--section-subtitle-size);
  line-height: var(--section-subtitle-line);
  margin-bottom: 28px;
}

.quote-contact-strip {
  display: grid;
  gap: 12px;
}

.quote-contact-strip a {
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.quote-page-form {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.quote-page-form .input-group label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
  opacity: 0.85;
}

.quote-page-form .input-group input,
.quote-page-form .input-group select,
.quote-page-form .input-group textarea {
  min-height: 48px;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  background: transparent;
}

.quote-page-form .input-group select {
  background-position: right 0 center;
}

.quote-page-form .input-group input:focus,
.quote-page-form .input-group select:focus,
.quote-page-form .input-group textarea:focus {
  background: transparent;
  border-color: var(--gold);
  box-shadow: none;
}

.quote-page-form .button-primary {
  margin: 40px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 64px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  width: fit-content;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.quote-page-form .button-primary:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
  box-shadow: none;
}

.contact-page {
  min-height: 100vh;
  padding: 150px 0 110px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.94)),
    url("assets/hero_v2.png") center / cover fixed;
}

.contact-hero {
  width: var(--wrap);
  max-width: 1100px;
  margin-left: max(40px, calc((100vw - 1300px) / 2 + 40px));
  margin-right: auto;
  margin-bottom: 64px;
  text-align: left;
}

.contact-hero h1 {
  max-width: 920px;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 42px;
}

.contact-hero > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: var(--section-subtitle-size);
  line-height: var(--section-subtitle-line);
  margin: 0;
}

.contact-directory {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  width: var(--wrap);
  margin-left: max(40px, calc((100vw - 1300px) / 2 + 40px));
  margin-right: auto;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 32px;
  min-height: 100%;
  padding: 4px 0 4px 34px;
  border: none;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: border-left-color var(--ease);
}

.contact-card:hover {
  border-left-color: var(--gold);
}

.contact-card-featured {
  grid-row: span 2;
}

.contact-region {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}

.contact-card h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.15;
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-list a {
  color: var(--white);
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--gold);
}

.contact-card address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}

.about-page {
  min-height: 100vh;
  background: 
    linear-gradient(rgba(8, 8, 8, 0.85), rgba(8, 8, 8, 0.98)),
    url("assets/perfil_bg.png") center / cover fixed;
}

.about-hero,
.about-vision,
.about-model {
  width: var(--wrap);
  margin-inline: auto;
  padding: 120px 0;
}

/* About Hero */
.about-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 180px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 180px 0 100px;
  background:
    linear-gradient(rgba(8, 8, 8, 0.42), rgba(8, 8, 8, 0.72)),
    url("assets/hero_skyscraper_final.png") center / cover fixed;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero-content {
  width: var(--wrap);
  margin-inline: auto;
  max-width: 960px;
  position: relative;
  z-index: 5;
  margin-bottom: 120px;
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 800;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-copy {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-inline-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 760px;
}

.hero-brand-button,
.hero-instagram-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
}

.hero-brand-button {
  min-width: 176px;
  padding: 14px 26px;
  border: 1px solid rgba(212, 175, 55, 0.68);
  color: var(--white);
  background: rgba(8, 8, 8, 0.78);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.hero-brand-button .brand-title-accent {
  margin-right: 0.18em;
}

.hero-brand-button:hover,
.hero-brand-button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

.hero-instagram-pill {
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  letter-spacing: 0.02em;
  text-transform: none;
  backdrop-filter: blur(12px);
}

.hero-instagram-pill:hover,
.hero-instagram-pill:focus-visible {
  border-color: rgba(220, 38, 38, 0.58);
  color: var(--white);
  background: rgba(220, 38, 38, 0.18);
  transform: translateY(-2px);
}

.brand-banner-slim {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  padding: 22px 40px;
  background: transparent;
  border-top: 0;
  backdrop-filter: none;
  z-index: 10;
}

.brand-item {
  position: relative;
  flex: 1;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 20px 28px;
  border-radius: 24px;
  background: rgba(19, 19, 19, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.brand-item-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0.35;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.brand-item-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.brand-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-12px);
  background: rgba(19, 19, 19, 0.6);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.brand-item:hover .brand-item-bg {
  opacity: 0.6;
}

.brand-item:hover .brand-item-bg img {
  transform: scale(1.15);
}

.brand-item > span:not(.brand-button) {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  position: relative;
}

.brand-item strong {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.08em;
  display: block;
  min-height: 0;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.brand-title-accent {
  color: var(--red);
}

.brand-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 24px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(5px);
}

.brand-item:hover .brand-button {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.brand-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

@media (max-width: 820px) {
  .brand-banner-slim {
    position: relative;
    bottom: auto;
    left: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 30px 14px;
    background: transparent;
    border-top: 0;
    backdrop-filter: none;
    margin-top: 0;
  }

  .brand-item {
    min-width: 0;
    padding: 16px 10px;
    background: rgba(255, 255, 255, 0.05);
  }

  .brand-item strong {
    font-size: 0.9rem;
  }

  .brand-cta {
    display: none;
  }

  .brand-divider {
    display: none;
  }
}

.about-hero-content {
  max-width: 900px;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 40px;
  color: var(--white);
}

.about-hero p {
  font-size: var(--section-subtitle-size);
  line-height: var(--section-subtitle-line);
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 60px;
}

.about-hero-metrics {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.metric-box {
  padding-left: 28px;
  border-left: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}

.metric-box:hover {
  border-left-color: var(--gold);
  transform: translateX(5px);
}

.metric-box strong {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-box span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Vision & Pillars */
.about-vision {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-vision-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.vision-narrative {
  position: sticky;
  top: 120px;
}

.vision-narrative p:not(.eyebrow) {
  font-size: var(--section-subtitle-size);
  line-height: var(--section-subtitle-line);
  color: var(--muted);
  margin-bottom: 24px;
}

.vision-pillars {
  display: grid;
  gap: 24px;
}

.pillar-card {
  padding: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.4s var(--ease);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  transform: translateY(-8px);
}

.pillar-icon {
  margin-bottom: 24px;
  color: var(--gold);
}

.pillar-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--white);
}

.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Model Section */
.about-model {
  text-align: left;
}

.model-panel {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
}

.model-stats {
  display: flex;
  gap: 48px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.model-cta {
  margin-top: 20px;
}

.dm-concept-footer {
  position: relative;
  z-index: 2;
  padding: 100px 0 60px;
  background: var(--paper);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-email a {
  font-size: clamp(1.4rem, 4.5vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: opacity 0.3s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: block;
}

.footer-email a:hover {
  opacity: 0.7;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 40px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-offices {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.office-item {
  display: grid;
  gap: 8px;
}

.office-item strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.office-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-social a {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: var(--white);
  transform: translateX(-5px);
}

.footer-legal {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-legal p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
  opacity: 0.85;
}

@media (max-width: 820px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-email a {
    font-size: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-social {
    align-items: flex-start;
    flex-direction: row;
    gap: 24px;
  }
  
  .footer-offices {
    gap: 40px;
  }
}

.floating-cta {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 12px 28px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.4s var(--ease);
}

.floating-cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: var(--gold);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.floating-cta:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.floating-cta svg {
  color: #25d366;
  filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.4));
  transition: transform 0.4s var(--ease);
}

.floating-cta:hover svg {
  transform: rotate(12deg) scale(1.1);
}

/* Pulse animation */
@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-cta {
  animation: cta-pulse 2s infinite;
}

@media (max-width: 1320px) {
  .floating-cta {
    width: 54px;
    height: 54px;
    padding: 0;
  }

  .floating-cta span {
    display: none;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --wrap: min(100% - 48px, 920px);
  }

  .main-nav {
    gap: 22px;
  }

  .import-dashboard,
  .network-dashboard,
  .spec-dashboard,
  .value-layout,
  .about-layout,
  .faq-layout,
  .quote-container {
    grid-template-columns: 1fr;
  }

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

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

  .spec-grid,
  .textiles-spec-grid,
  .division-spec-grid,
  .food-spec-grid,
  .import-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compliance-wrap {
    margin-inline: auto;
  }

  .dm-concept-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dm-concept-contact-info {
    justify-content: center;
  }

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

  .quote-container {
    gap: 52px;
    align-items: stretch;
  }

  .quote-info {
    position: static;
    top: auto;
  }

  .quote-info p {
    margin-bottom: 36px;
  }
}

@media (max-width: 820px) {
  body {
    position: relative;
  }

  .site-header,
  .header-left,
  .header-right,
  .hero-content,
  .strategy-wrap,
  .import-content-wrap,
  .glass-content-wrap,
  .network-content,
  .compliance-wrap,
  .quote-container,
  .quote-hero,
  .quote-screen,
  .contact-hero,
  .contact-directory,
  .about-hero,
  .about-story,
  .about-values,
  .about-scope,
  .dm-concept-container {
    min-width: 0;
    max-width: 100%;
  }

  .contact-hero,
  .contact-directory,
  .about-hero,
  .about-story,
  .about-values,
  .about-scope {
    width: var(--wrap);
    margin-left: auto;
    margin-right: auto;
  }

  .site-header {
    padding: 18px 22px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: #080808;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.4s var(--ease);
    padding: 100px 40px 60px;
    overflow-y: auto;
  }

  .main-nav.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a,
  .nav-dropdown-trigger {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-block: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    background: transparent;
    padding: 0 4px 0 20px;
    border: none;
    box-shadow: none;
    overflow: hidden;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
    max-height: min(58dvh, 560px);
    margin-bottom: 16px;
    padding-bottom: 18px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.55) transparent;
  }

  .nav-dropdown-menu a {
    flex: 0 0 auto;
    padding-block: 16px;
    font-size: 1.1rem;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-dropdown-menu a:last-child {
    margin-bottom: 10px;
  }

  .main-nav > .mobile-nav-footer {
    margin-top: auto;
    padding-top: 60px;
    display: flex;
    gap: 32px;
    justify-content: flex-start;
  }

  .main-nav > .mobile-nav-footer .social-icon {
    color: var(--white);
    opacity: 0.8;
  }

  .nav-dropdown.is-open .nav-dropdown-trigger span {
    transform: rotate(180deg);
  }

  .header-right {
    gap: 12px;
  }

  .social-links {
    gap: 12px;
  }

  .header-cta-pill {
    padding-inline: 0;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 120px 22px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
    margin-bottom: 34px;
  }

  .brand-carousel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 22px;
  }

  .slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }

  .node-card {
    min-height: 170px;
  }

  .hero-actions .button {
    width: min(100%, 280px);
    padding-inline: 24px;
  }

  .import-banner-bg {
    display: none;
  }

  .network-banner-bg {
    display: none;
  }

  .import-overlay,
  .strategy-section,
  .glass-engineering,
  .compliance-overlay,
  .quote-section {
    padding-block: 68px;
  }

  .glass-engineering,
  .compliance {
    min-height: 0;
  }

  .glass-bg,
  .compliance-bg {
    opacity: 0.32;
  }

  .node-grid,
  .deliverables-grid,
  .faq-grid,
  .compliance-pillars,
  .form-row {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 0;
  }

  .node-card {
    min-height: 150px;
  }

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

  .enterprise-form {
    box-shadow: none;
  }

  .quote-container {
    gap: 40px;
  }

  .quote-page {
    padding-top: 126px;
  }

  .quote-hero,
  .quote-screen,
  .about-hero,
  .about-story,
  .about-values {
    grid-template-columns: 1fr;
  }

  .quote-screen-info {
    position: static;
  }

  .contact-page {
    padding-top: 126px;
  }

  .about-page {
    padding-top: 126px;
  }

  .contact-directory {
    grid-template-columns: 1fr;
  }

  .contact-card-featured {
    grid-row: auto;
  }

  .about-scope {
    align-items: flex-start;
    flex-direction: column;
  }

  .dm-concept-footer {
    padding-block: 88px 54px;
  }

  .dm-concept-vision {
    margin-bottom: 64px;
  }

  .footer-index {
    margin-bottom: 38px;
  }

  .footer-index-links {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  :root {
    --wrap: calc(100% - 40px);
    --section-title-size: clamp(2.05rem, 9vw, 2.8rem);
    --section-title-line: 1.08;
    --section-subtitle-size: 1rem;
  }

  .site-header {
    width: 100%;
    max-width: 100vw;
    gap: 12px;
    padding-inline: 14px;
  }

  .header-left,
  .header-right {
    flex: 0 1 auto;
  }

  .mobile-menu-toggle {
    flex: 0 0 44px;
  }

  .main-nav {
    padding: 88px 28px max(56px, env(safe-area-inset-bottom));
  }

  .nav-dropdown {
    max-width: 100%;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 50dvh;
    padding-bottom: 24px;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
    max-width: 100%;
  }

  .project-card-main {
    height: 220px;
  }

  .project-card-body {
    padding: 20px 18px 16px;
  }

  .project-card-thumbs {
    display: none;
  }

  .project-card {
    position: relative;
  }

  /* Visual indicator for mobile gallery */
  .project-card::after {
    content: "Ver Galería";
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(212, 175, 55, 0.9);
    color: var(--ink);
    padding: 6px 12px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .brand-name {
    max-width: 112px;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .social-links {
    display: none;
  }

  .language-switcher button {
    min-width: 28px;
    min-height: 22px;
    padding-inline: 7px;
  }

  .header-cta-pill {
    min-width: 0;
    min-height: 0;
    padding-inline: 0;
    font-size: 0.72rem;
  }

  .header-action-group {
    gap: 9px;
  }

  .hero {
    min-height: 760px;
    padding: 116px 20px 136px;
  }

  .hero-content,
  .hero-copy,
  .hero-social-proof,
  .hero-actions,
  .section-title,
  .section-description {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11.6vw, 3.25rem);
    line-height: 1.08;
  }

  .brand-carousel {
    padding-inline: 20px;
  }

  .brand-marquee-track {
    gap: 32px;
    animation-duration: 26s;
  }

  .contact-hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.45rem);
  }

  .spec-grid,
  .textiles-spec-grid,
  .division-spec-grid,
  .food-spec-grid,
  .process-grid,
  .deliverables-grid,
  .faq-grid,
  .import-spec-grid,
  .group-items-multi {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }

  .compliance-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .spec-group {
    min-height: 0;
    padding-left: 20px;
  }

  .construction-spec-grid .spec-group {
    min-height: 0;
  }

  .textiles-spec-grid .spec-group {
    min-height: 0;
  }

  .division-spec-grid .spec-group {
    min-height: 0;
  }

  .food-spec-grid .spec-group {
    min-height: 0;
  }

  .food-spec-grid .spec-group:last-child {
    grid-column: auto;
  }

  .food-spec-grid .spec-group:last-child .group-items {
    grid-template-columns: 1fr;
  }

  .construction-spec-grid .spec-group:last-child {
    grid-column: auto;
  }

  .construction-spec-grid .spec-group:last-child .group-items {
    grid-template-columns: 1fr;
  }

  .group-header {
    min-height: 0;
  }

  .network-overlay {
    padding-block: 68px;
  }

  .office a {
    overflow-wrap: anywhere;
  }

  .enterprise-form {
    padding: 24px 20px;
  }

  .contact-page {
    background-attachment: scroll;
  }

  .about-page {
    background-attachment: scroll;
  }

  .quote-page {
    background-attachment: scroll;
  }

  .quote-hero h1,
  .about-hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.55rem);
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .button {
    width: 100%;
    max-width: 100%;
    padding-inline: 20px;
  }

  .floating-cta {
    right: 20px;
    bottom: 20px;
    width: 64px;
    height: 64px;
    min-height: 64px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .floating-cta svg {
    width: 32px;
    height: 32px;
  }

  .floating-cta span {
    display: none;
  }

  .cloud-intro {
    margin-top: 24px;
    font-size: 0.85rem;
    text-align: center;
  }

  .division-cloud {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
  }

  .division-cloud a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: all 0.3s var(--ease);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .division-cloud a:active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(0.98);
  }
}

@media (max-width: 920px) and (orientation: landscape) {
  :root {
    --section-title-size: clamp(1.8rem, 4.8vw, 2.6rem);
    --section-subtitle-size: 0.98rem;
  }

  .site-header {
    padding-block: 10px;
  }

  .brand-name {
    max-width: none;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .language-switcher button {
    min-height: 28px;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    gap: 18px;
    height: 100dvh;
    max-height: 100dvh;
    padding: 78px 42px max(36px, env(safe-area-inset-bottom));
  }

  .main-nav a,
  .nav-dropdown-trigger {
    font-size: 1.05rem;
  }

  .nav-dropdown {
    max-width: min(100%, 620px);
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 48dvh;
    margin-top: 12px;
    overflow-y: auto;
  }

  .hero {
    min-height: 100svh;
    padding: 92px 24px 96px;
  }

  .hero-content {
    margin-bottom: 58px;
    max-width: min(720px, 100%);
  }

  .hero h1 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 7vw, 3.2rem);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 620px;
    margin-bottom: 28px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    width: auto;
    min-height: 44px;
    padding: 13px 22px;
    font-size: 0.78rem;
  }

  .brand-banner-slim {
    padding: 12px 18px;
  }

  .brand-item > span:not(.brand-button) {
    font-size: 0.5rem;
    margin-bottom: 3px;
  }

  .brand-button {
    min-height: 40px;
    padding: 11px 20px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .import-overlay,
  .strategy-section,
  .glass-engineering,
  .compliance-overlay,
  .quote-section {
    padding-block: 56px;
  }

  .quote-page,
  .contact-page,
  .about-page {
    padding-top: 104px;
  }

  .quote-hero,
  .contact-hero,
  .about-hero {
    margin-bottom: 44px;
  }
}

/* Architecture Glass Page Styles */
.glass-page {
  min-height: 100vh;
  background: var(--paper);
}

.glass-hero {
  min-height: 70vh;
  padding: 180px 0 100px;
  background: 
    linear-gradient(rgba(8, 8, 8, 0.75), rgba(8, 8, 8, 0.95)),
    url("assets/glass_high_res.png") center / cover fixed;
  display: flex;
  align-items: center;
}

.glass-hero-content {
  width: var(--wrap);
  margin-inline: auto;
  max-width: 900px;
}

.glass-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--white);
}

.glass-hero p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 48px;
}

.glass-specs {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.02);
}

.glass-specs-wrap {
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  gap: 100px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.category-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  padding: 4px 12px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}

.category-header h2 {
  font-size: 2.2rem;
  color: var(--white);
}

.spec-grid-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.spec-item-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.4s var(--ease);
}

.spec-item-card:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-8px);
}

.spec-item-card h3 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.spec-item-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.spec-grid-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.processed-group {
  display: grid;
  gap: 24px;
}

.processed-item {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.processed-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.processed-item span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.glass-operations {
  padding: 120px 0;
}

.operations-wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.operations-header {
  max-width: 800px;
  margin-bottom: 64px;
}

.operations-header h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-top: 16px;
}

.operations-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.op-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.op-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.op-card:hover img {
  transform: scale(1.1);
}

.op-card-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  color: #000;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
}

.glass-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--surface);
}

.cta-inner {
  width: var(--wrap);
  margin-inline: auto;
  max-width: 700px;
}

.cta-inner h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-inner p {
  color: var(--muted);
  margin-bottom: 40px;
}

@media (max-width: 820px) {
  .spec-grid-detailed {
    grid-template-columns: 1fr;
  }
  .operations-gallery {
    grid-template-columns: 1fr;
  }
}

/* Dragon Glass & Ceramic Flagship Styles */
.glass-hero {
  background-image: linear-gradient(rgba(8, 8, 8, 0.75), rgba(8, 8, 8, 0.95)), url("assets/hero_skyscraper_final.png") !important;
}

.ceramic-page {
  min-height: 100vh;
  background: var(--paper);
}

.ceramic-hero {
  min-height: 70vh;
  padding: 180px 0 100px;
  background: 
    linear-gradient(rgba(8, 8, 8, 0.75), rgba(8, 8, 8, 0.92)),
    url("assets/construction_bg_premium.png") center / cover fixed;
  display: flex;
  align-items: center;
}

.ceramic-hero-content {
  width: var(--wrap);
  margin-inline: auto;
  max-width: 900px;
}

.ceramic-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--white);
}

.ceramic-hero p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 48px;
}

.ceramic-hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ceramic-specs {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.02);
}

.ceramic-specs-wrap {
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  gap: 100px;
}

.ceramic-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--surface);
}

/* Glass & Ceramic Projects Grid */
.glass-projects {
  padding: 120px 0;
  background: #080808;
}

.projects-wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.projects-header {
  margin-bottom: 64px;
}

.projects-header h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-top: 16px;
}

.project-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-card-glass {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s var(--ease);
}

.project-card-glass:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.project-img {
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.project-card-glass:hover .project-img img {
  transform: scale(1.1);
}

.project-info {
  padding: 32px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.project-info strong {
  display: block;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 4px;
}

.project-info span {
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media (max-width: 820px) {
  .project-grid-premium {
    grid-template-columns: 1fr;
  }
  .project-img {
    height: 280px;
  }
}

/* Ceramic Downloads Section */
.ceramic-downloads {
  padding: 120px 0;
  background: #080808;
}

.ceramic-downloads-wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.downloads-header {
  margin-bottom: 64px;
  text-align: left;
}

.downloads-header h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-top: 16px;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.4s var(--ease);
}

.download-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.download-card.highlight {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
}

.download-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.download-info h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.download-info p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.download-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.download-link:hover {
  opacity: 0.7;
}

.download-link::after {
  content: ' \2192';
  margin-left: 6px;
}

.ceramic-gallery {
  padding: 120px var(--wrap-padding);
  background: #050505;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-header h2 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 20px;
}

.gallery-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 400px;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease);
}

.item-overlay span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .item-overlay {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .gallery-grid-premium {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
  
  .gallery-item.wide {
    grid-column: span 1;
  }
  
  .gallery-header h2 {
    font-size: 2rem;
  }
}
