﻿﻿/* ═══════════════════════════════════════════════
   STEEL FORGE — styles.css
   Industrial Orange Theme | Bebas Neue + Roboto
   Version: EN | v1.0
═══════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --bg:        #080808;
  --accent:    #FF6B35;
  --accent2:   #E85D2F;
  --white:     #ffffff;
  --text:      #e8e8e8;
  --text-dim:  rgba(255,255,255,0.9);
  --card-bg:   rgba(0, 0, 0, 0.50);
  --card-border: rgba(255, 107, 53, 0.4);
  --card-hover-border: rgba(255, 107, 53, 1);
  --nav-bg:    rgba(8, 8, 8, 0.97);
  --nav-border: rgba(255, 107, 53, 0.5);

  /* 8-direction black text-shadow */
  --ts:
   -1px -1px 0 #000,
    1px -1px 0 #000,
   -1px  1px 0 #000,
    1px  1px 0 #000,
    0   -1px 0 #000,
    0    1px 0 #000,
   -1px  0   0 #000,
    1px  0   0 #000;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── CANVAS ── */
#gl-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

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

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader-inner {
  text-align: center;
  width: min(400px, 90vw);
}

.loader-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}

.loader-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: var(--accent);
  letter-spacing: 0.15em;
  text-shadow: var(--ts);
  margin-bottom: 0.3rem;
}

.loader-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.6rem, 1.8vw, 0.75rem);
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.loader-bar-wrap {
  width: 100%;
  height: 2px;
  background: rgba(255, 107, 53, 0.2);
  border-radius: 2px;
  margin-bottom: 1rem;
  overflow: hidden;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border-radius: 2px;
  transition: width 0.2s ease;
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.6);
}

.loader-pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-shadow: none;
  margin-bottom: 0.5rem;
}

.loader-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--nav-bg);
  border-bottom: 2px solid var(--nav-border);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.nav-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-shadow: 0 0 10px rgba(255,107,53,0.4);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--accent);
  border: none;
  padding: 8px 20px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent2);
  box-shadow: 0 0 20px rgba(255,107,53,0.4);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 1px;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: rgba(8,8,8,0.98);
  border-left: 1px solid var(--nav-border);
  z-index: 150;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-drawer.open { right: 0; }

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid rgba(255,107,53,0.4);
  color: var(--white);
  font-size: 1rem;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,107,53,0.1);
  transition: color 0.2s;
}

.drawer-link:hover { color: var(--accent); }

.drawer-phone {
  margin-top: auto;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-shadow: var(--ts);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.drawer-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ── UI LAYER & STAGE ── */
#ui-layer {
  position: relative;
  z-index: 10;
}

/* ── PAGES / SECTIONS ── */
.page {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  scroll-snap-align: start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.7s ease, visibility 0s 0.7s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 64px;
}

.page.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.7s ease;
}

/* ── REVEAL ANIMATION ── */
.reveal-3d {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.page.is-active .reveal-3d                  { opacity: 1; transform: translateY(0); }
.page.is-active .reveal-3d:nth-child(1)     { transition-delay: 0.05s; }
.page.is-active .reveal-3d:nth-child(2)     { transition-delay: 0.15s; }
.page.is-active .reveal-3d:nth-child(3)     { transition-delay: 0.25s; }
.page.is-active .reveal-3d:nth-child(4)     { transition-delay: 0.35s; }
.page.is-active .reveal-3d:nth-child(5)     { transition-delay: 0.45s; }

/* ── HERO ── */
#hero {
  justify-content: center;
  align-items: flex-start;
  padding-left: clamp(24px, 6vw, 100px);
  padding-right: clamp(24px, 6vw, 100px);
  min-height: 100vh;
}

.hero-content { max-width: 700px; }

.hero-badge {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.6rem, 1.5vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: none;
  border: 1px solid rgba(255,107,53,0.5);
  padding: 6px 14px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--white);
  text-shadow: var(--ts);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* CRITICAL: accent span inside heading — NO text-shadow */
.hero-title .accent { color: var(--accent); text-shadow: none; }

.hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  letter-spacing: 0.2em;
  color: var(--white);
  text-shadow: var(--ts);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-desc {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white);
  text-shadow: var(--ts);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-facts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fact-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--accent);
  text-shadow: none;
  letter-spacing: 0.05em;
  line-height: 1;
}

.fact-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-shadow: var(--ts);
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,107,53,0.3);
  margin: 0 20px;
}

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-hint span {
  font-family: 'Roboto', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-shadow: var(--ts);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  letter-spacing: 0.12em;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: var(--ts);
}

.btn-primary {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid var(--white);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(255,107,53,0.4);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full { width: 100%; }

/* ── SECTION COMMON ── */
.section-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 6vh, 80px) clamp(24px, 5vw, 80px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.section-tag {
  font-family: 'Roboto', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: none;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  color: var(--white);
  text-shadow: var(--ts);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  color: var(--text);
  text-shadow: var(--ts);
  letter-spacing: 0.05em;
}

/* ── CARDS (Sharp Tech Style) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 28px 22px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover { border-color: var(--card-hover-border); box-shadow: 0 0 25px rgba(255,107,53,0.25); }
.card:hover::before { opacity: 1; }

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  text-shadow: none;
}

.card-corner {
  position: absolute;
  top: 0; right: 0;
  width: 10px; height: 10px;
  background: var(--accent);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.6;
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.08em;
  color: var(--white);
  text-shadow: var(--ts);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  text-shadow: var(--ts);
  margin-bottom: 16px;
}

.card-tag {
  font-family: 'Roboto', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-shadow: none;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,107,53,0.2);
  padding-top: 10px;
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.portfolio-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover { border-color: var(--card-hover-border); box-shadow: 0 0 25px rgba(255,107,53,0.25); }

.portfolio-card--large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.portfolio-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  opacity: 1;
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  text-shadow: none;
}

.portfolio-badge {
  font-family: 'Roboto', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-shadow: none;
  text-transform: uppercase;
  border: 1px solid rgba(255,107,53,0.4);
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 10px;
}

.portfolio-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.06em;
  color: var(--white);
  text-shadow: var(--ts);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.portfolio-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  text-shadow: var(--ts);
  margin-bottom: 14px;
}

.portfolio-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-shadow: var(--ts);
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 1;
}

.process-step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  text-shadow: none;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-shadow: none;
  margin-bottom: 12px;
  display: block;
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.06em;
  color: var(--white);
  text-shadow: var(--ts);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  text-shadow: var(--ts);
}

/* ── ABOUT ── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left .section-tag  { text-align: left; }
.about-left .section-title { text-align: left; }

.about-sub {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  color: var(--accent);
  text-shadow: none;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.about-text {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  text-shadow: var(--ts);
  margin-bottom: 16px;
}

.about-cta { margin-top: 24px; display: inline-flex; }

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

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.stat-card:hover { border-color: var(--card-hover-border); box-shadow: 0 0 20px rgba(255,107,53,0.2); }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--accent);
  text-shadow: none;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-shadow: var(--ts);
}

.cert-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: rgba(255,107,53,0.05);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 4px;
}

.cert-strip span {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-shadow: none;
}

/* ── CONTACT ── */
.contact-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  text-shadow: none;
  width: 40px;
  text-align: center;
}

.contact-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: none;
  margin-bottom: 4px;
}

.contact-val {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 400;
  color: var(--white);
  text-shadow: var(--ts);
  transition: color 0.2s;
  line-height: 1.5;
}

a.contact-val:hover { color: var(--accent); }

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-shadow: var(--ts);
}

.form-input {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 12px rgba(255,107,53,0.2); }
.form-textarea { min-height: 100px; resize: vertical; }

.form-note {
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-dim);
  text-shadow: var(--ts);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer-line {
  border-top: 1px solid rgba(255,107,53,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-shadow: none;
}

.footer-copy, .footer-tags {
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-dim);
  text-shadow: var(--ts);
  letter-spacing: 0.05em;
}

/* ── ACCENT COLOR CLASS ── */
.accent {
  color: var(--accent);
  text-shadow: none; /* Never inherit text-shadow on colored elements */
}

/* ════════════════════════════════
   MOBILE RESPONSIVE  max-width: 768px
════════════════════════════════ */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  #hero {
    padding-left: 24px;
    padding-right: 24px;
    align-items: center;
    text-align: center;
  }

  .hero-content { max-width: 100%; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 300px; }
  .hero-facts { justify-content: center; }
  .hero-divider { height: 30px; margin: 0 12px; }

  .section-inner { padding: 40px 20px; }
  .cards-grid { grid-template-columns: 1fr; gap: 12px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card--large { grid-row: span 1; }
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-grid::before { display: none; }
  .process-step { padding: 0; text-align: left; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-line { flex-direction: column; text-align: center; }
  .scroll-hint { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3rem, 18vw, 5rem); }
  .stat-num { font-size: 1.5rem; }
  .cert-strip { gap: 8px; }
}

/* Prevent any horizontal overflow */
body, #ui-layer, .stage { overflow-x: hidden; }

/* ── CONTACT INFO CARD (GlobalPlus template) ── */
.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 40px 36px;
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* === SITE LOADING BAR (deferred) === */
$10;visibility:hidden;transition:opacity .6s,visibility .6s;transition:opacity .6s}
#siteLoadingBar.done{opacity:0;pointer-events:none}
.slb-track{width:120px;height:4px;background:rgba(255,255,255,.15);border-radius:4px;overflow:hidden}
.slb-fill{height:100%;width:0%;background:var(--gold, var(--accent, #c9a84c));border-radius:4px;transition:width .3s}
.slb-text{white-space:nowrap}