/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* === DESIGN TOKENS === */
:root {
  --navy:        #0d1f3c;
  --navy-light:  #1a3560;
  --navy-dark:   #081428;
  --red:         #c41230;
  --red-dark:    #a00e27;
  --red-light:   #e8193e;
  --bg:          #ffffff;
  --surface:     #f4f7fc;
  --surface-2:   #e8edf7;
  --border:      rgba(13, 31, 60, 0.1);
  --border-md:   rgba(13, 31, 60, 0.18);
  --text:        #0d1f3c;
  --muted:       #4a5a7a;
  --muted-2:     #7a8aaa;
  --white:       #ffffff;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-sm:   0 1px 4px rgba(13,31,60,0.08);
  --shadow:      0 4px 20px rgba(13,31,60,0.12);
  --shadow-lg:   0 8px 40px rgba(13,31,60,0.16);
  --transition:  0.2s ease;
  --header-h:    90px;
  --max-w:       1160px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
p  { color: var(--muted); }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 2px solid var(--red);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-logo img {
  height: 60px;
  width: auto;
}
.site-logo span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 10px 18px;
  font-size: 1.15rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  transition: var(--transition);
}
.nav-links a:hover { background: var(--surface); color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  padding: 14px 0 6px;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 0;
  transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--surface); color: var(--red); }
.contact-dropdown a { color: var(--text); }
.contact-dropdown a:hover { color: var(--text); }
.dropdown-label {
  padding: 6px 16px 2px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
}

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  box-shadow: var(--shadow);
  z-index: 999;
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--red); }
.mobile-products-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
}
.mobile-products-toggle:hover { color: var(--red); }
.mobile-contact-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  border: none;
  border-radius: var(--radius);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  padding: 8px 18px;
  margin-top: 4px;
}
.mobile-contact-toggle:hover { background: var(--red-dark); color: var(--white); }
.toggle-arrow { font-size: 0.75rem; transition: transform 0.2s ease; }
.mobile-products-toggle.open .toggle-arrow { transform: rotate(180deg); }
.mobile-contact-toggle.open .toggle-arrow { transform: rotate(180deg); }
.mobile-contact-panel { display: none; }
.mobile-contact-panel.open { display: block; }
.mobile-products-panel {
  display: none;
  padding-left: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.mobile-products-panel.open { display: block; }
.mobile-nav .mobile-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  padding: 10px 0 4px;
}
.mobile-nav .mobile-sub a {
  padding-left: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}

/* === HERO === */
.hero {
  margin-top: var(--header-h);
  position: relative;
  background: var(--navy-dark);
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero > .container { width: 100%; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/building_location_banner-scaled.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-stripe {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--red) 0%, var(--red) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 36px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red-light);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red-light);
}
.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--red-light); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.stat-item { color: var(--white); }
.stat-item .stat-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  color: var(--white);
}
.stat-item .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* === FLAGS BANNER === */
.flags-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.flags-banner img {
  height: 56px;
  width: auto;
  margin: 0 auto;
  opacity: 0.85;
}

/* === SECTION HEADERS === */
.section-header { margin-bottom: 48px; }
.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 12px;
}
.section-header .eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; max-width: 560px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .eyebrow::before { display: none; }

/* === PRODUCT CATEGORIES (HOME) === */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.category-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.category-card .cat-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.category-card .cat-icon img { width: 52px; height: 52px; object-fit: contain; }
.category-card h3 { font-size: 1rem; margin-bottom: 6px; }
.category-card p { font-size: 0.85rem; line-height: 1.5; flex: 1; }
.category-card .cat-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.category-card .cat-link:hover { text-decoration: underline; }

/* === WHY SECTION === */
.why-section { background: var(--navy); }
.why-section h2, .why-section h3 { color: var(--white); }
.why-section p { color: rgba(255,255,255,0.62); }
.why-section .eyebrow { color: var(--red-light); }
.why-section .eyebrow::before { background: var(--red-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.18); }
.why-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-icon svg { width: 22px; height: 22px; fill: var(--white); }
.why-card h3 { margin-bottom: 8px; }

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  text-align: center;
  padding: 72px 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 32px; }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.6); }
.cta-section .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* === PRODUCTS PAGE === */
.page-hero {
  margin-top: var(--header-h);
  background: var(--navy);
  padding: 24px 0;
}
.page-hero h1 { color: var(--white); margin-bottom: 6px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin: 0; }
.page-hero .eyebrow { color: var(--red-light); margin-bottom: 8px; }

.product-section { padding: 60px 0; border-bottom: 1px solid var(--border); }
.product-section:last-child { border-bottom: none; }
.product-section:nth-child(even) { background: var(--surface); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.product-card { scroll-margin-top: calc(var(--header-h) + 16px); }
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--border-md); }
.product-card-img {
  height: 200px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.product-card-img.no-img {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
}
.product-card-img.no-img svg { width: 56px; height: 56px; fill: var(--muted-2); opacity: 0.5; }
.product-carousel {
  position: relative;
  height: 240px;
  background: var(--surface-2);
  overflow: hidden;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,31,60,0.55);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 2;
}
.carousel-btn:hover { background: rgba(13,31,60,0.85); }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background var(--transition);
}
.carousel-dot.active { background: white; }
.product-card-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--surface-2);
  color: var(--muted);
  margin-bottom: 10px;
}
.product-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.product-card p { font-size: 0.87rem; line-height: 1.55; flex: 1; }
.product-specs {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.spec-tag {
  font-size: 0.76rem;
  padding: 3px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
  font-weight: 500;
}
.product-card-footer {
  padding: 0 20px 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.83rem;
  border-radius: var(--radius);
}
.spec-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.spec-link:hover { color: var(--red-dark); }

/* Pole specs table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
  margin-top: 12px;
}
.spec-table th {
  text-align: left;
  padding: 8px 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.spec-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: var(--surface); }

/* === CONTACT PAGE === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 24px; }
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; fill: var(--red); }
.contact-item-text strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); margin-bottom: 2px; }
.contact-item-text a, .contact-item-text span { font-size: 0.97rem; font-weight: 600; color: var(--navy); }
.contact-item-text a:hover { color: var(--red); }
.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--navy);
  transition: var(--transition);
}
.social-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.social-btn svg { width: 13px !important; height: 13px !important; fill: currentColor; flex-shrink: 0; }

/* Projects placeholder grid */
.projects-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  opacity: 0.25;
}
.project-placeholder-card {
  background: var(--surface);
  border: 1.5px dashed var(--border-md);
  border-radius: var(--radius-lg);
  height: 220px;
}
@media (max-width: 768px) {
  .projects-placeholder-grid { grid-template-columns: 1fr 1fr; }
}

/* Detail link on product cards */
.detail-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  margin-right: 12px;
  transition: var(--transition);
}
.detail-link:hover { color: var(--red); }

/* Product detail page */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-detail-carousel { border-radius: var(--radius-lg); height: 420px; }
.product-detail-carousel .carousel-slide img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.product-detail-info h1 { font-size: 1.6rem; margin: 8px 0 0; }
.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.breadcrumb-nav { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.breadcrumb-nav a { color: var(--muted); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--red); }
@media (max-width: 768px) {
  .product-detail-layout { grid-template-columns: 1fr; gap: 24px; }
  .product-detail-carousel { height: 280px; }
}

/* Contact form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input, .form-group textarea, .form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,31,60,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 20px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 14px; }

/* File upload */
.file-upload-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px dashed var(--border-md);
  border-radius: var(--radius);
  background: var(--bg);
  cursor: pointer;
  transition: var(--transition);
}
.file-upload-label:hover { border-color: var(--navy); background: var(--surface); }
.file-upload-label input[type="file"] { display: none; }
.file-upload-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--navy); }
.file-upload-text { font-size: 0.95rem; color: var(--text); }
.file-upload-hint { font-size: 0.8rem; color: var(--muted); margin-left: auto; white-space: nowrap; }
.file-upload-label.has-file { border-style: solid; border-color: var(--navy); background: var(--surface); }
.file-upload-label.has-file .file-upload-text { font-weight: 600; color: var(--navy); }
.file-upload-label.drag-over { border-color: var(--red); background: rgba(196,30,58,0.04); }

/* === FOOTER === */
.site-footer {
  background: var(--navy-dark);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand .site-logo span { color: var(--white); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 280px; }
.footer-col h4 { color: rgba(255,255,255,0.9); margin-bottom: 16px; font-size: 0.78rem; letter-spacing: 0.1em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links a:hover { color: var(--red-light); }
.footer-contact-item { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--red-light); }
.footer-contact-item strong { color: rgba(255,255,255,0.8); margin-right: 4px; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.35); }
.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-badge span { color: var(--red-light); }

/* === UTILS === */
.text-red { color: var(--red); }
.text-white { color: var(--white); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-brand .site-logo { margin-bottom: 0; flex-shrink: 0; }
  .footer-brand p { max-width: none; font-size: 0.85rem; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { min-height: 480px; }
  .hero-content { padding: 48px 0; }
  .hero-stats { gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand p { text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .trusted-grid { grid-template-columns: 1fr !important; }
  .trusted-img-panel { min-height: 260px !important; }
}
