/* ═══════════════════════════════════════════════
   VPM Industria — 2030 Edition
   Brand: #0096CC blue · dark void bg
═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #0096cc;
  --blue-bright: #00b8e8;
  --blue-dim:    #0077a8;
  --blue-glow:   rgba(0,150,204,0.18);
  --blue-glow2:  rgba(0,150,204,0.08);
  --blue-border: rgba(0,150,204,0.25);

  --bg:       #070b12;
  --bg2:      #0b1018;
  --bg3:      #0f1520;
  --glass:    rgba(255,255,255,0.04);
  --glass2:   rgba(255,255,255,0.06);
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.12);

  --t1: #f0f4f8;
  --t2: #8899aa;
  --t3: #4a5568;

  --green: #22c55e;
  --red:   #ef4444;

  --font:    'Inter', system-ui, sans-serif;
  --r:       14px;
  --rlg:     20px;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── Noise overlay ──────────────────────────── */
.noise-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Reveal ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Sections ───────────────────────────────── */
.section { padding: 120px 0; }
.section-why { background: var(--bg2); }

/* ── Label chip ─────────────────────────────── */
.label-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-glow2);
  border: 1px solid var(--blue-border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════ */
.h2 {
  font-family: 'Barlow', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1.5px;
}
/* gradient text on h2 highlight */
.h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-bright) 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.split-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}
.split-sub {
  max-width: 380px;
  font-size: 16px;
  color: var(--t2);
  line-height: 1.75;
  padding-bottom: 8px;
}
.section-center { text-align: center; margin-bottom: 64px; }
.section-sub-c { margin-top: 16px; font-size: 17px; color: var(--t2); }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-xl { padding: 20px 44px; font-size: 17px; border-radius: 12px; }

/* Glow button */
.btn-glow {
  background: var(--blue);
  color: #fff;
  padding: 13px 28px;
  position: relative;
  overflow: hidden;
}
.btn-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn-glow:hover::after { background: rgba(255,255,255,0.1); }
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,150,204,0.45), 0 0 0 1px rgba(0,150,204,0.3);
}

/* Glass button */
.btn-glass {
  background: var(--glass2);
  color: var(--t1);
  padding: 13px 28px;
  border: 1px solid var(--border2);
  backdrop-filter: blur(8px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* White button (on colored sections) */
.btn-white {
  background: #fff;
  color: #0b0f1a;
  font-weight: 700;
}
.btn-white:hover {
  background: #e0f0f8;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ══════════════════════════════════════════════
   LOGO — background-image crop
   PNG 500×500. Content bbox: x=86–427, y=173–323.
   Formula: background-size = 500 × (target_h / content_h)
            position-x = -(content_left × scale)
            position-y = -(content_top  × scale)
══════════════════════════════════════════════ */
.logo {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

/* ── Nav logo (70px tall) ── */
.logo-bg {
  width: 160px;
  height: 70px;
  background: url('images/logo-transparent.png') no-repeat -40px -81px;
  background-size: 233px 233px;
  filter: brightness(0) invert(1)
          drop-shadow(0 0 26px rgba(0,184,232,0.75));
  flex-shrink: 0;
  transition: filter 0.35s, transform 0.35s;
}
.logo:hover .logo-bg {
  filter: brightness(0) invert(1)
          drop-shadow(0 0 44px rgba(0,184,232,1));
  transform: scale(1.06);
}

/* ── XL logo — contact panel (94px tall) ── */
.logo-bg-xl {
  width: 214px;
  height: 94px;
  background: url('images/logo-transparent.png') no-repeat -54px -108px;
  background-size: 313px 313px;
  filter: brightness(0) invert(1)
          drop-shadow(0 0 26px rgba(0,184,232,0.75));
}

/* ── Footer logo (52px tall) ── */
.logo-bg-footer {
  width: 118px;
  height: 52px;
  background: url('images/logo-transparent.png') no-repeat -30px -60px;
  background-size: 173px 173px;
  filter: brightness(0) invert(1)
          drop-shadow(0 0 12px rgba(0,150,204,0.3));
  opacity: 0.7;
  transition: opacity 0.3s;
}
.logo-bg-footer:hover { opacity: 1; }

/* ── Custom cursor ─────────────────────────── */
.cursor-dot {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--blue-bright);
  border-radius: 50%;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,184,232,0.55);
  border-radius: 50%;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease), width 0.2s var(--ease), height 0.2s var(--ease), border-color 0.2s;
}
.cursor-ring.hover {
  width: 56px; height: 56px;
  border-color: rgba(0,184,232,0.85);
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, border 0.4s;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(7,11,18,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--t2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--t1); }
.nav-cta { padding: 9px 20px; font-size: 13px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 116px 0 80px;
}

/* Photo layer */
.hero-photo {
  position: absolute;
  inset: 0;
  background: url('images/hero.jpeg') center 30% / cover no-repeat;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

/* Dark gradient over photo */
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7,11,18,0.97) 0%, rgba(7,11,18,0.75) 48%, rgba(7,11,18,0.15) 100%),
    linear-gradient(to bottom, rgba(7,11,18,0.4) 0%, transparent 20%, transparent 65%, rgba(7,11,18,1) 100%);
}

/* Animated orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -100px; right: 0;
  animation-delay: 0s;
}
.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #004466 0%, transparent 70%);
  bottom: 50px; right: 200px;
  animation-delay: 3s;
}
.orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  top: 50%; right: 10%;
  opacity: 0.12;
  animation-delay: 5s;
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.hero-left { max-width: 640px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,150,204,0.1);
  border: 1px solid var(--blue-border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue-bright);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.hero-h1 {
  font-family: 'Barlow', 'Inter', sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-bright) 0%, #7dd3fc 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-p {
  font-size: 18px;
  color: rgba(240,244,248,0.7);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating stat cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
.float-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border2);
  border-radius: var(--rlg);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.float-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
  opacity: 0.6;
}
.float-card:hover { border-color: var(--blue-border); transform: translateX(-4px); }
.float-card-1 { animation: card-bob 6s ease-in-out infinite; }
.float-card-2 { animation: card-bob 6s ease-in-out infinite 2s; }
.float-card-3 { animation: card-bob 6s ease-in-out infinite 4s; }
@keyframes card-bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.float-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue-bright);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.fc-num { color: var(--blue-bright); }
.float-label { font-size: 12px; color: var(--t3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px; }

.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--t3);
  animation: cue-bounce 2.5s infinite;
}
@keyframes cue-bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: relative;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg2), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg2), transparent); }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--t3);
}
.marquee-dot { color: var(--blue) !important; font-size: 8px !important; }
@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ══════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pcard-wide { grid-column: 1 / -1; }

.pcard {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  padding: 36px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.4s;
  position: relative;
  overflow: hidden;
}
/* Gradient top glow border on hover */
.pcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 40%, var(--blue-bright) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
/* Subtle inner glow */
.pcard::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--rlg);
  background: radial-gradient(ellipse at 50% 0%, rgba(0,150,204,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.pcard:hover {
  border-color: rgba(0,150,204,0.35);
}
.pcard:hover::before { opacity: 1; }
.pcard:hover::after  { opacity: 1; }

.pcard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pcard-icon {
  width: 48px; height: 48px;
  color: var(--blue);
  background: var(--blue-glow2);
  border: 1px solid var(--blue-border);
  border-radius: 12px;
  padding: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pcard-icon svg { width: 100%; height: 100%; }
.pcard-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  padding: 4px 10px;
  border-radius: 6px;
}
.pcard h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.pcard p { font-size: 14px; color: var(--t2); line-height: 1.7; }
.pcard ul { display: flex; flex-direction: column; gap: 8px; }
.pcard li {
  font-size: 13px;
  color: var(--t2);
  padding-left: 18px;
  position: relative;
}
.pcard li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--blue); font-weight: 700;
}
.pcard-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
  font-size: 14px; font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s, color 0.2s;
}
.pcard-cta:hover { color: var(--blue-bright); gap: 10px; }

/* Wide card layout */
.pcard-wide-layout {
  display: flex;
  gap: 48px;
  align-items: center;
}
.pcard-wide-text {
  flex: 1;
  display: flex; flex-direction: column; gap: 16px;
}
.pcard-wide-img {
  flex-shrink: 0; width: 300px;
  filter: drop-shadow(0 20px 40px rgba(0,150,204,0.15));
}

/* ══════════════════════════════════════════════
   PRODUCT CATALOGUE — photo-hero cards + banner
══════════════════════════════════════════════ */
.prod-banner {
  background: linear-gradient(135deg, rgba(0,150,204,0.07), rgba(0,100,160,0.04));
  border: 1px solid var(--blue-border);
  border-radius: 16px;
  padding: 18px 28px;
  margin-bottom: 4px;
}
.prod-banner-items {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.prod-banner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--t2);
}
.prod-banner-total { color: var(--t1); font-weight: 600; }
.prod-banner-sep { font-size: 1.2rem; font-weight: 700; color: var(--blue); opacity: 0.7; }
.pbi-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pbi-green  { background: #22c55e; }
.pbi-blue   { background: #0096cc; }
.pbi-purple { background: #a855f7; }
.pbi-orange { background: #f97316; }

/* Photo-hero product cards */
.phero {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.phero-bg { position: absolute; inset: 0; }
.phero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.phero:hover .phero-bg img { transform: scale(1.07); }
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,18,0.98) 0%, rgba(7,11,18,0.72) 40%, rgba(7,11,18,0.1) 100%);
}
.phero-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  color: #fff;
  backdrop-filter: blur(8px);
}
.phero-badge-green  { background: rgba(34,197,94,0.85); }
.phero-badge-blue   { background: rgba(0,150,204,0.85); }
.phero-badge-purple { background: rgba(168,85,247,0.85); }
.phero-body {
  position: relative;
  z-index: 1;
  padding: 28px 28px 32px;
}
.phero-stat {
  font-family: 'Barlow', 'Inter', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.phero-stat span { font-size: 1.1rem; font-weight: 600; color: var(--t3); margin-left: 2px; }
.phero-body h3 {
  font-family: 'Barlow', 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 14px;
}
.phero-body ul { list-style: none; padding: 0; margin: 0 0 22px; }
.phero-body li {
  font-size: 0.83rem;
  color: var(--t2);
  padding-left: 14px;
  position: relative;
  margin-bottom: 5px;
}
.phero-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

/* ── BESS card — image left, text right ── */
.pcard-bess-layout {
  flex-direction: row-reverse;
}
.pcard-bess-img {
  flex-shrink: 0;
  width: 380px;
  border-radius: 12px;
  overflow: hidden;
}
.pcard-bess-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.pcard-bess:hover .pcard-bess-img img {
  transform: scale(1.04);
}
@media (max-width: 900px) {
  .pcard-bess-layout { flex-direction: column; }
  .pcard-bess-img { width: 100%; height: 240px; }
}

/* ══════════════════════════════════════════════
   MOUNTING STRUCTURES — 3-column photo cards
══════════════════════════════════════════════ */
.struct-section { background: var(--bg); }

.struct-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.struct-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.struct-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,150,204,0.12);
}

.struct-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.struct-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.struct-card:hover .struct-img img { transform: scale(1.06); }
.struct-img-carport { background: #e8ecf0; }
.struct-img-carport img { object-fit: contain; padding: 16px; }

.struct-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,150,204,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.struct-body {
  padding: 28px 28px 32px;
}
.struct-body h3 {
  font-family: 'Barlow', 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 10px;
}
.struct-body p {
  font-size: 0.9rem;
  color: var(--t3);
  line-height: 1.65;
  margin-bottom: 18px;
}

.struct-specs {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.struct-specs li {
  font-size: 0.82rem;
  color: var(--t2);
  padding-left: 16px;
  position: relative;
}
.struct-specs li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

@media (max-width: 640px) {
  .struct-grid { grid-template-columns: 1fr; }
  .struct-img { height: 220px; }
}

/* ══════════════════════════════════════════════
   PROJECTS / GALLERY — Editorial Magazine
══════════════════════════════════════════════ */

/* --- Hero banner --- */
.gallery-hero {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 580px;
  margin-bottom: 10px;
}
.gallery-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery-hero:hover img { transform: scale(1.04); }

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,18,0.92) 0%, rgba(7,11,18,0.3) 50%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 44px 48px;
}
.gh-chip {
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(0,150,204,0.18);
  border: 1px solid rgba(0,150,204,0.35);
  backdrop-filter: blur(8px);
  padding: 6px 16px; border-radius: 100px;
  display: inline-flex; width: fit-content;
  margin-bottom: 16px;
}
.gh-title {
  font-family: 'Barlow', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -1.5px;
  color: var(--t1);
}
.gh-title span {
  background: linear-gradient(90deg, var(--blue-bright), #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gh-meta {
  display: flex; gap: 20px; align-items: center;
  margin-top: 12px;
}
.gh-stat {
  font-size: 13px; font-weight: 500; color: var(--t2);
  display: flex; align-items: center; gap: 6px;
}
.gh-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }

/* --- Grid rows --- */
.gallery-row {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}
.gallery-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.gallery-row-2 { grid-template-columns: 1.5fr 1fr; }
.gallery-row-2r { grid-template-columns: 1fr 1.5fr; }

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.g-item:hover img { transform: scale(1.07); }

.g-tall  { aspect-ratio: 3/4; }
.g-wide  { aspect-ratio: 16/9; }
.g-sq    { aspect-ratio: 1/1; }
.g-rect  { aspect-ratio: 4/3; }
.g-short { aspect-ratio: 5/3; }

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,9,16,0.88) 0%, rgba(5,9,16,0) 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s;
}
.g-item:hover .g-overlay { opacity: 1; }

.g-info {
  display: flex; flex-direction: column; gap: 4px;
}
.g-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(240,244,248,0.95);
  background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
  padding: 4px 10px; border-radius: 6px;
  display: inline-block; width: fit-content;
}
.g-size {
  font-size: 28px; font-weight: 900;
  color: var(--blue-bright);
  text-shadow: 0 0 24px rgba(0,184,232,0.7);
  line-height: 1;
}

/* --- Photo divider (full bleed) --- */
.photo-divider {
  position: relative;
  height: 560px;
  overflow: hidden;
  margin: 0;
}
.photo-divider-img {
  position: absolute;
  inset: 0;
  background: url('images/project2.jpeg') center 40% / cover no-repeat;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}
.photo-divider-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7,11,18,0.92) 0%, rgba(7,11,18,0.5) 50%, rgba(7,11,18,0.2) 100%),
    linear-gradient(to bottom, rgba(7,11,18,0.6) 0%, transparent 40%, transparent 60%, rgba(7,11,18,0.9) 100%);
}
.photo-divider-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
}
.pd-quote {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--t1);
  margin-bottom: 20px;
}
.pd-quote em {
  background: linear-gradient(90deg, var(--blue-bright) 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}
.pd-sub {
  font-size: 13px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--t2);
}

@media (max-width: 1024px) {
  .gallery-row-3 { grid-template-columns: 1fr 1fr; }
  .gallery-hero { height: 380px; }
}
@media (max-width: 768px) {
  .gallery-hero { height: 280px; padding: 24px; }
  .gallery-hero-overlay { padding: 24px; }
  .gallery-row-3, .gallery-row-2, .gallery-row-2r { grid-template-columns: 1fr 1fr; }
  .g-tall { aspect-ratio: 4/3; }
  .photo-divider { height: 340px; }
}
@media (max-width: 480px) {
  .gallery-row-3, .gallery-row-2, .gallery-row-2r { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   WHY VPM
══════════════════════════════════════════════ */
.why-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.why-sticky {
  position: sticky;
  top: 100px;
}
.why-intro {
  margin-top: 16px;
  font-size: 15px;
  color: var(--t2);
  line-height: 1.75;
}
.why-list { display: flex; flex-direction: column; }
.why-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
}
.why-item:first-child { padding-top: 0; border-top: 1px solid var(--border); }
.why-item:hover { padding-left: 6px; }
.why-num {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  color: var(--blue); min-width: 28px; padding-top: 4px;
  opacity: 0.6;
}
.why-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-body p  { font-size: 14px; color: var(--t2); line-height: 1.7; }

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
.process-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.proc-step {
  flex: 1;
  padding: 0 32px;
  border-left: 1px solid var(--border);
}
.proc-step:first-child { padding-left: 0; border-left: none; }
.proc-n {
  font-size: 48px; font-weight: 900;
  color: var(--blue); opacity: 0.15;
  line-height: 1; margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.3s;
}
.proc-step:hover .proc-n { opacity: 0.5; }
.proc-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.proc-step p  { font-size: 13px; color: var(--t2); line-height: 1.7; }
.proc-arrow {
  font-size: 24px; color: var(--blue); opacity: 0.3;
  padding: 0 4px; padding-top: 12px; flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   CTA
══════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('images/p8.jpeg') center/cover no-repeat;
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,60,100,0.92) 0%, rgba(0,20,40,0.96) 100%);
}
.cta-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,150,204,0.3) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-body {
  position: relative; z-index: 1;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.cta-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue-bright);
}
.cta-h2 {
  font-family: 'Barlow', 'Inter', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900; letter-spacing: -2px; line-height: 1.05;
}
.cta-p { font-size: 17px; color: rgba(240,244,248,0.65); max-width: 440px; }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* Form */
.cform { display: flex; flex-direction: column; gap: 20px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cform-field { display: flex; flex-direction: column; gap: 6px; }
.cform-field label { font-size: 12px; font-weight: 600; color: var(--t3); letter-spacing: 0.3px; text-transform: uppercase; }

.cform-field input,
.cform-field select,
.cform-field textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--t1);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.cform-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.cform-field input:focus,
.cform-field select:focus,
.cform-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,150,204,0.12);
}
.cform-field input::placeholder,
.cform-field textarea::placeholder { color: var(--t3); }
.cform-field textarea { resize: vertical; min-height: 130px; }
.ferr { font-size: 11px; color: var(--red); min-height: 14px; }
.cform-field.has-error input,
.cform-field.has-error select { border-color: var(--red); }
.btn-submit { width: 100%; }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }
.form-ok {
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2);
  color: var(--green); border-radius: 10px; padding: 14px 18px; font-size: 14px; font-weight: 500;
}
.form-err {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  color: var(--red); border-radius: 10px; padding: 14px 18px; font-size: 14px;
}
.form-err a { color: var(--blue); }
.gdpr-note {
  font-size: 11px; color: var(--t3); line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 12px; margin-top: -4px;
}
.gdpr-note a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* Info panel */
.cinfo {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  padding: 36px;
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column; gap: 28px;
  position: relative; overflow: hidden;
}
.cinfo::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-border), transparent);
}
.cinfo-logo { padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.cinfo-items { display: flex; flex-direction: column; gap: 18px; }
.cinfo-row { display: flex; align-items: flex-start; gap: 14px; }
.cinfo-row svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.cinfo-row b { display: block; font-size: 11px; font-weight: 700; color: var(--t3); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }
.cinfo-row p { font-size: 14px; color: var(--t2); }
.cinfo-row a { color: var(--blue); transition: color 0.2s; }
.cinfo-row a:hover { color: var(--blue-bright); }
.cinfo-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 8px; border-top: 1px solid var(--border);
}
.cinfo-badges span {
  font-size: 11px; font-weight: 700; color: var(--blue);
  background: var(--blue-glow2); border: 1px solid var(--blue-border);
  padding: 4px 10px; border-radius: 6px;
}

/* ══════════════════════════════════════════════
   SPLIT SHOWCASE
══════════════════════════════════════════════ */
.split-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.ss-image {
  position: relative;
  overflow: hidden;
}
.ss-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.split-showcase:hover .ss-image img { transform: scale(1.03); }
.ss-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,11,18,0.3) 0%, transparent 60%),
              linear-gradient(to right, rgba(7,11,18,0.6) 0%, transparent 100%);
}
.ss-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(0,150,204,0.15);
  border: 1px solid rgba(0,150,204,0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.ss-badge-num {
  font-family: 'Barlow', 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--blue-bright);
  text-shadow: 0 0 40px rgba(0,184,232,0.5);
}
.ss-badge-unit {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  margin-top: -4px;
}
.ss-badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--t2);
  margin-top: 4px;
}
.ss-text {
  background: var(--bg2);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.ss-text .h2 { margin: 16px 0 20px; }
.ss-text .h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-bright) 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ss-p {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 28px;
}
.ss-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.ss-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--t1);
}
.ss-check {
  width: 22px; height: 22px;
  background: rgba(0,150,204,0.12);
  border: 1px solid var(--blue-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--blue-bright);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .split-showcase { grid-template-columns: 1fr; }
  .ss-image { min-height: 360px; }
  .ss-text { padding: 56px 32px; }
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p { margin-top: 20px; font-size: 14px; color: var(--t3); line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col b {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--t3);
}
.footer-col a { font-size: 14px; color: var(--t2); transition: color 0.2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bar { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bar-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bar-inner span { font-size: 12px; color: var(--t3); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-right { display: none; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-sticky { position: static; }
  .products-grid { grid-template-columns: 1fr; }
  .pcard-wide { grid-column: 1; }
  .pcard-wide-layout { flex-direction: column; }
  .pcard-wide-img { width: 100%; max-width: 340px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cinfo { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .process-row { flex-direction: column; gap: 0; }
  .proc-arrow { display: none; }
  .proc-step { border-left: none; border-top: 1px solid var(--border); padding: 28px 0; }
  .proc-step:first-child { border-top: none; padding-top: 0; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* ── Nav ── */
  .nav-links {
    display: none; position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(7,11,18,0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 28px 20px 32px; gap: 0;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    font-size: 1.15rem; font-weight: 600;
    display: block; padding: 16px 0;
    color: var(--t1);
  }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* ── Hero ── */
  .hero { min-height: 100svh; }
  .hero-body { padding-top: 120px; padding-bottom: 80px; }
  .hero-h1 {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
    letter-spacing: -2px;
    line-height: 1.05;
  }
  .hero-h1 em { display: block; }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 2px; }
  .hero-p { font-size: 0.95rem; max-width: 100%; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* ── Bento stats ── */
  .bento-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bento-main { grid-column: 1 / -1; grid-row: auto; }
  .bento-main .bento-num { font-size: 3.8rem; }
  .bento-wide { grid-column: 1 / -1; }
  .bento-card { padding: 20px 18px; border-radius: 14px; }
  .bento-num { font-size: 2.6rem; }

  /* ── Products ── */
  .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .pcard-wide { grid-column: 1; }
  .pcard-wide-layout { flex-direction: column; }
  .pcard-wide-img { width: 100%; max-width: 100%; height: 220px; }
  .pcard-wide-img img { width: 100%; height: 100%; object-fit: cover; }
  .pcard-bess-layout { flex-direction: column; }
  .pcard-bess-img { width: 100% !important; height: 220px; }
  .phero { min-height: 360px; }
  .phero-stat { font-size: 2rem; }
  .prod-banner-items { flex-direction: column; gap: 10px; align-items: flex-start; }
  .prod-banner-sep { display: none; }
  .prod-banner { padding: 20px; }

  /* ── Struct grid ── */
  .struct-grid { grid-template-columns: 1fr; }
  .struct-img { height: 240px; }

  /* ── Split header ── */
  .split-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .split-header .h2 { font-size: clamp(1.9rem, 8vw, 2.8rem); }

  /* ── Split showcase ── */
  .split-showcase { grid-template-columns: 1fr; }
  .ss-image { height: 300px; }
  .ss-text { padding: 40px 20px; }

  /* ── Gallery ── */
  .gallery-hero { height: 280px; padding: 24px; }
  .gallery-row-3 { grid-template-columns: 1fr; }
  .gallery-row-2, .gallery-row-2r { grid-template-columns: 1fr; }
  .g-item { height: 240px; }

  /* ── Why VPM ── */
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-sticky { position: static; }
  .why-item { gap: 16px; }
  .why-num { font-size: 1.4rem; }

  /* ── Process ── */
  .process-row { flex-direction: column; gap: 0; }
  .proc-arrow { display: none; }
  .proc-step { border-left: none; border-top: 1px solid var(--border); padding: 28px 0; }
  .proc-step:first-child { border-top: none; padding-top: 0; }

  /* ── CTA ── */
  .cta-h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .cinfo { order: -1; }
  .cform-row { grid-template-columns: 1fr; }
  .cinfo-badges { gap: 6px; }

  /* ── Footer ── */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bar-inner { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bar-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .hero-h1 { font-size: clamp(2.2rem, 12vw, 3rem); letter-spacing: -1.5px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-main .bento-num { font-size: 3.2rem; }
  .phero { min-height: 320px; }
  .struct-img { height: 200px; }
  .gallery-hero { height: 230px; }
  .g-item { height: 200px; }
  .h2 { font-size: clamp(1.7rem, 9vw, 2.4rem); }
  .proc-n { font-size: 2rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.9rem; }
}

/* ══════════════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 50%, #7dd3fc 100%);
  z-index: 10001;
  box-shadow: 0 0 12px var(--blue-bright);
  transition: width 0.05s linear;
}

/* ══════════════════════════════════════════════
   BENTO STATS
══════════════════════════════════════════════ */
.bento-section {
  padding: 80px 0;
  background: var(--bg2);
}
.bento-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.bento-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 28px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.bento-card:hover {
  border-color: var(--blue-border);
  background: rgba(0,150,204,0.05);
}
.bento-main {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, rgba(0,150,204,0.14) 0%, rgba(0,150,204,0.03) 100%);
  border-color: rgba(0,150,204,0.3);
}
.bento-highlight {
  background: linear-gradient(135deg, rgba(0,184,232,0.1) 0%, rgba(0,150,204,0.04) 100%);
  border-color: rgba(0,150,204,0.2);
}
.bento-wide {
  grid-column: 2 / -1;
}
.bento-num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--t1);
  letter-spacing: -2px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.bento-main .bento-num { font-size: 5rem; }
.bento-unit {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0;
}
.bento-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  line-height: 1.4;
  max-width: 200px;
}
.bento-icon {
  width: 36px; height: 36px;
  color: var(--blue);
  opacity: 0.7;
  margin-bottom: 4px;
}
.bento-ghost {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 9rem;
  font-weight: 900;
  color: rgba(0,150,204,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}
.bento-chip {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,150,204,0.1);
  border: 1px solid var(--blue-border);
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 4px;
  width: fit-content;
}
.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bento-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--t2);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.bento-tags span:hover {
  background: rgba(0,150,204,0.12);
  border-color: var(--blue-border);
  color: var(--blue-bright);
}
.bento-tagline {
  font-size: 12px;
  color: var(--t3);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-main { grid-row: auto; }
  .bento-wide { grid-column: 1 / -1; }
  .bento-main .bento-num { font-size: 4rem; }
}
