/* ============================================================
   Montissol Essentials – "Orange" Bold Creative Design System
   A dark, sophisticated base with fiery orange accents,
   glass-morphism, gradient pops, and dramatic typography.
   Modernized with scroll reveals, animated borders, particles.
   ============================================================ */

:root {
  --brand: #E74D10;
  --brand-dark: #bf3e0a;
  --brand-light: #ff6a33;
  --brand-glow: rgba(231, 77, 16, .45);
  --amber: #f59e0b;
  --gradient: linear-gradient(135deg, #E74D10, #f59e0b);
  --gradient-r: linear-gradient(135deg, #f59e0b, #E74D10);
  --gradient-sweep: linear-gradient(270deg, #E74D10, #f59e0b, #E74D10);
  --bg: #0d0d11;
  --bg-dark: #111;
  --bg-charcoal: #141419;
  --bg-deep: #08080c;
  --text: #e4e4e7;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-on-dark: #e8e8e8;
  --white: #ffffff;
  --card: rgba(255,255,255,.04);
  --card-glass: rgba(255, 255, 255, .06);
  --card-glass-light: rgba(255, 255, 255, .08);
  --divider: rgba(231, 77, 16, .25);
  --border: rgba(255,255,255,.08);
  --border-dark: rgba(255,255,255,.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.4);
  --shadow-glow: 0 4px 30px rgba(231, 77, 16, .15);
  --shadow-glow-lg: 0 8px 50px rgba(231, 77, 16, .25);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --ease: .3s cubic-bezier(.4, 0, .2, 1);
  --ease-bounce: .4s cubic-bezier(.34, 1.56, .64, 1);
  --ease-smooth: .6s cubic-bezier(.22, 1, .36, 1);
  --gap: 24px;
  --container: 1200px;
}

/* ===== Scroll Reveal System ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}
.reveal.reveal-left {
  transform: translateX(-40px);
}
.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.reveal-scale {
  transform: scale(.92);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: .1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: .2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: .3s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: .4s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: .5s; }

/* ===== Animated Gradient Border Utility ===== */
.glow-border {
  position: relative;
}
.glow-border::after {
  content: ''; position: absolute; inset: -1px;
  border-radius: inherit; padding: 1px;
  background: var(--gradient-sweep); background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: borderSweep 3s linear infinite;
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.glow-border:hover::after { opacity: 1; }
@keyframes borderSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== Floating Glow Orbs (background decoration) ===== */
.glow-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: .12;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.glow-orb--orange { background: #E74D10; }
.glow-orb--amber { background: #f59e0b; }
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.15); }
  100% { transform: translate(-20px, 15px) scale(.9); }
}

/* ===== Gradient Text Utility ===== */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Noise Texture Overlay ===== */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: .03;
  background: 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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Particle Canvas ===== */
#particleCanvas {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--ease); }
p { line-height: 1.75; margin: 0; }
h1, h2, h3, h4, h5, h6 { letter-spacing: -.03em; line-height: 1.1; margin: 0; font-weight: 900; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
input, textarea, select, button { font: inherit; }

/* ===== Utilities ===== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.container { width: 92%; max-width: var(--container); margin: 0 auto; }
.hr, .q-hr { border: none; height: 1px; background: var(--border); margin: 32px 0; }
.small { font-size: .85rem; color: var(--text-muted); }
.dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--brand); margin: 0 8px; vertical-align: middle; }

/* ===== Grid ===== */
.grid { display: grid; gap: var(--gap); }
.cap-grid { display: grid; gap: var(--gap); grid-template-columns: repeat(3, 1fr); }
.cap-grid--2col { grid-template-columns: repeat(2, 1fr); }

/* ===== Section Utilities ===== */
.section-block { padding: 100px 0; }
.section-clean { padding: 80px 0; }
.section-title { font-size: 2.8rem; font-weight: 900; margin-bottom: 12px; }
.section-subtitle { font-size: 1.15rem; color: var(--text-secondary); max-width: 600px; }
.section-divider { width: 60px; height: 4px; background: var(--gradient); border-radius: var(--radius-pill); margin: 20px 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13, 13, 17, .8);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
}
.site-header::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px; background: var(--gradient-sweep); background-size: 200% 100%;
  animation: borderSweep 4s linear infinite;
  opacity: .4;
}
.site-header.scrolled {
  background: rgba(13, 13, 17, .95);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.site-header.scrolled .header-inner { padding: 8px 0; }
.site-header.scrolled .logo { height: 36px; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; width: 92%;
  padding: 14px 0;
  transition: padding .4s cubic-bezier(.22, 1, .36, 1);
}
.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.logo { height: 46px; width: auto; transition: all .4s cubic-bezier(.22, 1, .36, 1); }
.brand:hover .logo { transform: scale(1.05); filter: drop-shadow(0 0 12px rgba(231, 77, 16, .4)); }
.company-ids { display: flex; gap: 20px; }
.id-block { text-align: right; }
.id-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); display: block; }
.id-value { font-size: .8rem; font-weight: 700; color: var(--brand); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: rgba(255,255,255,.6); font-size: .88rem; font-weight: 600;
  padding: 8px 16px; border-radius: var(--radius-pill);
  transition: all var(--ease); position: relative;
  overflow: hidden;
}
.nav a::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient); opacity: 0;
  border-radius: inherit; transition: opacity .3s ease;
  z-index: -1;
}
.nav a:hover { color: #fff; }
.nav a:hover::before { opacity: .15; }
.nav a.active { color: #fff; }
.nav a.active::before { opacity: .2; }
.nav a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 3px; border-radius: 2px; background: var(--gradient);
  box-shadow: 0 0 10px rgba(231, 77, 16, .5);
}
.menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative;
  color: #fff; font-size: 1.6rem;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero, .hero--services, .hero--zoom {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
}
.hero--services { min-height: 70vh; }

.hero-split__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero--zoom .hero-split__bg {
  animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.12); }
}

/* Thunder / lightning flash effect */
.hero-lightning {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; opacity: 0;
  mix-blend-mode: screen;
  transition: opacity .08s ease;
}

.hero-split__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 50%, rgba(231,77,16,.18) 100%);
}
.hero-split__inner {
  position: relative; z-index: 2;
  max-width: var(--container); width: 92%; margin: 0 auto;
  padding: 160px 0 100px;
}
.hero-split__kicker {
  display: inline-flex; align-items: center; font-size: .8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .18em; color: var(--brand);
  margin-bottom: 20px;
  background: rgba(231, 77, 16, .1); padding: 8px 20px;
  border-radius: var(--radius-pill); border: 1px solid rgba(231,77,16,.15);
  backdrop-filter: blur(8px);
  animation: kickerPulse 3s ease-in-out infinite;
}
@keyframes kickerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231, 77, 16, 0); }
  50% { box-shadow: 0 0 20px 2px rgba(231, 77, 16, .15); }
}
.hero-split__headline {
  font-size: clamp(3rem, 6.5vw, 5.5rem); font-weight: 900;
  color: #fff; line-height: 1.04; margin-bottom: 24px;
  max-width: 800px;
  animation: heroTextIn 1s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-split__sub {
  font-size: 1.2rem; color: rgba(255,255,255,.65);
  max-width: 560px; line-height: 1.7; margin-bottom: 40px;
  animation: heroTextIn 1s cubic-bezier(.22, 1, .36, 1) .2s both;
}
.hero-split__actions {
  animation: heroTextIn 1s cubic-bezier(.22, 1, .36, 1) .4s both;
}
.hero-split__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-size: .92rem; font-weight: 700;
  border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: all var(--ease);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s ease;
}
.btn:hover::after { opacity: 1; }
.btn.primary, .btn.primary-solid {
  background: var(--gradient); color: #fff; border-color: transparent;
  box-shadow: 0 4px 20px rgba(231, 77, 16, .25);
}
.btn.primary:hover, .btn.primary-solid:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px rgba(231, 77, 16, .4), 0 0 80px rgba(231, 77, 16, .15);
}
.btn.ghost {
  background: rgba(255,255,255,.05); color: #fff;
  border-color: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
}
.btn.ghost:hover {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,255,255,.06);
}
.btn.outline {
  background: transparent; color: var(--brand);
  border-color: var(--brand);
}
.btn.outline:hover {
  background: var(--brand); color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow-glow);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section, .home-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.home-section--alt {
  background: var(--bg-charcoal);
  color: var(--text-on-dark);
  position: relative;
}
.home-section--alt::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: var(--gradient-sweep); background-size: 200% 100%;
  animation: borderSweep 4s linear infinite; opacity: .3;
}
.home-section--alt .center-title,
.home-section--alt .about-title,
.home-section--alt .section-title { color: #fff; }
.home-section--alt .mini-kicker { color: var(--brand-light); }
.home-section--alt .hr { background: var(--border-dark); }

.center-head { text-align: center; margin-bottom: 56px; }
.center-title { font-size: 2.8rem; font-weight: 900; margin-bottom: 12px; }
.mini-kicker {
  display: inline-block; font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .16em; color: var(--brand);
  margin-bottom: 12px;
}

/* ============================================================
   CARDS – Glass-morphism
   ============================================================ */
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px;
  transition: all var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Dark section cards get glass treatment */
.home-section--alt .card,
.home-section--alt .cap-card,
.home-section--alt .about-card {
  background: var(--card-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border-dark);
  color: var(--text-on-dark);
}

/* ===== Capability Cards ===== */
.cap-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px 32px;
  text-align: center;
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.cap-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-sweep); background-size: 200% 100%;
  animation: borderSweep 3s linear infinite;
  opacity: 0; transition: opacity .4s ease;
}
.cap-card::after {
  content: ''; position: absolute; bottom: -60%; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 77, 16, .15), transparent 70%);
  opacity: 0; transition: opacity .5s ease;
  pointer-events: none;
}
.cap-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(231, 77, 16, .12), 0 0 0 1px rgba(231, 77, 16, .15);
  border-color: rgba(231, 77, 16, .2);
}
.cap-card:hover::before { opacity: 1; }
.cap-card:hover::after { opacity: 1; }

.cap-card--active {
  border-color: rgba(231, 77, 16, .25);
  box-shadow: var(--shadow-glow);
}
.cap-card--active::before { opacity: 1; }

.cap-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient); border-radius: 18px;
  font-size: 1.6rem; color: #fff;
  transition: transform var(--ease-bounce);
}
.cap-card:hover .cap-icon { transform: scale(1.1) rotate(-4deg); }

.cap-kicker {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .14em; color: var(--brand); margin-bottom: 8px;
}
.cap-actions { margin-top: 20px; }
.capability-download { margin-top: 0; }
.about-stats .cap-card {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1);
  color: var(--text-on-dark);
}
.about-stats .cap-card h3 { color: #fff; }
.about-stats .cap-card p { color: rgba(255,255,255,.7); }
.about-stats .cap-kicker { color: var(--brand-light); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--gap); align-items: center;
}
.about-title { font-size: 2.6rem; font-weight: 900; margin-bottom: 16px; }
.about-media {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-img {
  border-radius: var(--radius-lg); width: 100%; height: 100%;
  object-fit: cover; aspect-ratio: 4/3;
  transition: transform var(--ease);
}
.about-img:hover { transform: scale(1.03); }

.about-card {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--ease); backdrop-filter: blur(12px);
}
.about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }

.about-stats {
  background: var(--bg-charcoal); color: var(--text-on-dark);
  border-radius: var(--radius-xl); padding: 36px;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
}
.about-stats .stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.stat { text-align: center; }
.stat-num {
  font-size: 1.6rem; font-weight: 900;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 600; margin-top: 6px; }

.mini-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
}
.mini-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(231, 77, 16, .1); border-radius: 12px;
  color: var(--brand); font-size: 1.1rem;
}

/* ===== About Page ===== */
.about-wrap { padding-top: 120px; }
.about-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: calc(var(--gap) * 2); align-items: center;
  margin-bottom: 80px;
}
.about-kicker {
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .16em; color: var(--brand); margin-bottom: 12px;
}
.about-photo {
  border-radius: var(--radius-xl); width: 100%;
  object-fit: cover; aspect-ratio: 5/4;
}
.about-copy { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; }
.about-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
  margin-bottom: 80px;
}
.about-page-card {
  background: rgba(255,255,255,.04); border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--border);
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  backdrop-filter: blur(12px);
}
.about-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(231, 77, 16, .12);
  border-color: rgba(231, 77, 16, .2);
}
.about-band {
  background: var(--bg-charcoal); padding: 80px 0;
  border-radius: var(--radius-xl); color: #fff;
}

/* ============================================================
   INDUSTRY SECTION
   ============================================================ */
.industry-head { margin-bottom: 48px; }
.industry-head__row {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.industry-title { font-size: 2.6rem; font-weight: 900; }
.industry-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--gap); align-items: center;
}
.industry-img {
  border-radius: var(--radius-xl); width: 100%; object-fit: cover;
  aspect-ratio: 4/3; transition: transform var(--ease);
}
.industry-img:hover { transform: scale(1.03); }
.industry-mid { padding: 8px 0; }
.industry-copy { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.75; }
.industry-sub { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.industry-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.industry-list li {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .95rem; font-weight: 600; color: var(--text);
  transition: all var(--ease);
  backdrop-filter: blur(8px);
}
.industry-list li:hover {
  border-color: var(--brand); transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.li-arrow { color: var(--brand); font-weight: 900; font-size: 1.1rem; }
.see-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--brand); margin-top: 24px;
  transition: all var(--ease);
}
.see-all:hover { gap: 14px; }
.see-all__arrow { transition: transform var(--ease); }
.see-all:hover .see-all__arrow { transform: translateX(4px); }

/* ===== Industries Page ===== */
.industries-wrap { padding-top: 120px; }
.industries-top {
  text-align: center; margin-bottom: 64px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.industries-kicker {
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .16em; color: var(--brand); margin-bottom: 10px;
}
.industries-title { font-size: 3rem; font-weight: 900; margin-bottom: 16px; }
.industries-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--gap); margin-bottom: 80px;
}
.industries-right { padding: 20px 0; }
.industries-right-inner { padding-left: 12px; }
.industries-subtitle { font-size: 1.4rem; font-weight: 800; margin-bottom: 16px; }
.sector-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.industries-small-img {
  border-radius: var(--radius-lg); width: 100%;
  object-fit: cover; aspect-ratio: 16/9;
}
.card-img {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; aspect-ratio: 3/2;
}
.circle-cta {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; border: none; cursor: pointer;
  transition: all var(--ease-bounce);
  box-shadow: var(--shadow-glow);
}
.circle-cta:hover {
  transform: scale(1.15); box-shadow: var(--shadow-glow-lg);
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 48px;
}
.blog-title { font-size: 2.6rem; font-weight: 900; }
.blog-sub { color: var(--text-secondary); max-width: 450px; }
.blog-btn {
  font-weight: 700; color: var(--brand);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap var(--ease);
}
.blog-btn:hover { gap: 14px; }

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
}
.blog-card {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  backdrop-filter: blur(12px);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(231, 77, 16, .12);
  border-color: rgba(231, 77, 16, .15);
}
.blog-thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform var(--ease);
}
.blog-card:hover .blog-thumb { transform: scale(1.06); }
.blog-meta {
  padding: 24px 24px 0; display: flex; align-items: center;
  gap: 10px; flex-wrap: wrap;
}
.meta-pill {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(231, 77, 16, .1); color: var(--brand);
}
.blog-card__title {
  font-size: 1.15rem; font-weight: 800; padding: 12px 24px 0;
  line-height: 1.3; color: #fff;
}
.blog-card__title a { color: #fff; }
.blog-excerpt {
  font-size: .9rem; color: var(--text-muted);
  padding: 8px 24px 24px; line-height: 1.6;
}

/* ===== Blog Page ===== */
.blog-wrap { padding-top: 120px; }
.blog-tools {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 40px;
}
.blog-search {
  padding: 12px 20px; border: 2px solid var(--border);
  border-radius: var(--radius-pill); font-size: .92rem;
  width: 300px; max-width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none; background: var(--card);
}
.blog-search:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(231, 77, 16, .12);
}

.post-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
}
.post-card {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  backdrop-filter: blur(12px);
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(231, 77, 16, .12);
  border-color: rgba(231, 77, 16, .15);
}
.post-thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  overflow: hidden;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease); }
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-body { padding: 24px; }
.post-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.post-tag {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(231, 77, 16, .1); color: var(--brand);
}
.post-title { font-size: 1.1rem; font-weight: 800; line-height: 1.3; margin-bottom: 8px; }
.post-excerpt { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.no-results { text-align: center; padding: 60px 20px; color: var(--text-muted); font-size: 1.1rem; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-full {
  background: var(--bg-deep);
  padding: 100px 0; position: relative; overflow: hidden;
}
.newsletter-full::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(231,77,16,.12), transparent 70%);
  pointer-events: none;
}
.newsletter-inner {
  max-width: 640px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.newsletter-title { font-size: 2.6rem; font-weight: 900; color: #fff; margin-bottom: 14px; }
.newsletter-sub { color: rgba(255,255,255,.6); margin-bottom: 36px; font-size: 1.05rem; }
.newsletter-form {
  display: flex; gap: 12px; max-width: 480px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; padding: 14px 22px; border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06);
  color: #fff; font-size: .95rem; outline: none;
  transition: border-color var(--ease);
}
.newsletter-form input:focus { border-color: var(--brand); }
.newsletter-form button {
  padding: 14px 28px; border-radius: var(--radius-pill); border: none;
  background: var(--gradient); color: #fff; font-weight: 700;
  cursor: pointer; transition: all var(--ease);
  box-shadow: var(--shadow-glow);
}
.newsletter-form button:hover {
  transform: scale(1.05); box-shadow: var(--shadow-glow-lg);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--gap) * 2);
  align-items: start;
}
.contact-form-panel {
  background: rgba(255,255,255,.03); border-radius: var(--radius-xl);
  padding: 48px; border: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.contact-form-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 28px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field-span-2 { grid-column: span 2; }
.field label { font-size: .82rem; font-weight: 700; color: var(--text-secondary); }
.req { color: var(--brand); }
.field input, .field textarea, .field select {
  padding: 14px 18px; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04);
  font-size: .95rem; outline: none; color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(231, 77, 16, .1);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-submit {
  margin-top: 20px;
  padding: 16px 40px; border-radius: var(--radius-pill); border: none;
  background: var(--gradient); color: #fff; font-weight: 700;
  font-size: 1rem; cursor: pointer;
  transition: all var(--ease); box-shadow: var(--shadow-glow);
}
.contact-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow-lg);
}

.contact-info-panel { padding: 20px 0; }
.contact-kicker {
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .16em; color: var(--brand); margin-bottom: 10px;
}
.contact-info-title { font-size: 2rem; font-weight: 900; margin-bottom: 32px; }
.contact-info-block {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.icon-circle, .icon-square {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--ease);
}
.icon-circle {
  border-radius: 50%; background: rgba(231, 77, 16, .1); color: var(--brand);
}
.icon-square {
  border-radius: 14px; background: var(--gradient); color: #fff;
}
.icon-circle:hover, .icon-square:hover { transform: scale(1.1); }
.info-label { font-size: .78rem; color: var(--text-muted); font-weight: 600; }
.info-value { font-weight: 700; font-size: 1rem; }

/* ============================================================
   MAP
   ============================================================ */
.map-full {
  width: 100vw; height: 450px; border: none;
  margin-left: calc(-50vw + 50%);
  border-radius: 0;
}
.map-full iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-hidden { display: none; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 100px 0; }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: all var(--ease); backdrop-filter: blur(12px);
}
.faq-item:hover { border-color: rgba(231, 77, 16, .2); }
.faq-item.active { border-color: var(--brand); box-shadow: var(--shadow-glow); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; cursor: pointer; font-weight: 700;
  font-size: 1.05rem; gap: 16px;
  background: none; border: none; width: 100%; text-align: left;
  color: inherit;
}
.faq-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(231, 77, 16, .1);
  color: var(--brand); font-size: 1.2rem;
  transition: all var(--ease);
}
.faq-item.active .faq-icon {
  background: var(--brand); color: #fff; transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease;
  padding: 0 28px;
  color: var(--text-secondary); line-height: 1.75; font-size: .95rem;
}
.faq-item.active .faq-answer {
  max-height: 400px; padding: 0 28px 24px;
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-wrap { padding-top: 120px; }
.projects-head { text-align: center; margin-bottom: 56px; }
.project-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
}
.project-card {
  background: var(--card); border-radius: var(--radius-xl);
  border: 1px solid var(--border); overflow: hidden;
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  backdrop-filter: blur(12px);
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(231, 77, 16, .12), 0 0 0 1px rgba(231, 77, 16, .15);
  border-color: rgba(231, 77, 16, .2);
}
.project-media { position: relative; overflow: hidden; }
.project-media img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  transition: transform var(--ease);
}
.project-card:hover .project-media img { transform: scale(1.06); }
.project-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 16px; border-radius: var(--radius-pill);
  background: var(--gradient); color: #fff;
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em;
}
.project-body { padding: 28px; }
.project-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 6px; color: #fff; }
.project-sub { font-size: .9rem; color: var(--text-muted); margin-bottom: 16px; }
.project-meta {
  display: flex; gap: 20px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.meta-item { display: flex; flex-direction: column; }
.meta-label { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.meta-value { font-size: .92rem; font-weight: 700; }
.svc-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.svc-pill {
  font-size: .72rem; font-weight: 700; padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(231, 77, 16, .08); color: var(--brand);
  border: 1px solid rgba(231, 77, 16, .15);
}
.note-card {
  background: rgba(231, 77, 16, .06); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid rgba(231, 77, 16, .12);
  margin-top: 24px;
}

/* ============================================================
   QUOTE / REQUEST
   ============================================================ */
.quote-wrap { padding-top: 120px; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--gap) * 2); align-items: start; }
.q-card {
  background: var(--card); border-radius: var(--radius-xl);
  padding: 44px; border: 1px solid var(--border);
}
.q-card--orange {
  background: var(--bg-charcoal); color: #fff;
  border-color: transparent;
  position: relative; overflow: hidden;
}
.q-card--orange::before {
  content: ''; position: absolute; top: -40%; right: -30%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(231,77,16,.2), transparent 70%);
  pointer-events: none;
}
.q-muted { color: var(--text-muted); font-size: .92rem; }
.q-card--orange .q-muted { color: rgba(255,255,255,.5); }

.q-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.q-field { display: flex; flex-direction: column; gap: 6px; }
.q-field.full { grid-column: span 2; }
.q-label { font-size: .82rem; font-weight: 700; color: var(--text-secondary); }
.q-input, .q-select, .q-textarea {
  padding: 14px 18px; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04);
  font-size: .95rem; outline: none; color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.q-input:focus, .q-select:focus, .q-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(231, 77, 16, .1);
}
.q-textarea { resize: vertical; min-height: 120px; }

.q-checks { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0; }
.q-check {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; cursor: pointer;
}
.q-check input { accent-color: var(--brand); }

.q-actions { margin-top: 16px; }
.q-note { font-size: .82rem; color: var(--text-muted); margin-top: 12px; }

.q-alert {
  padding: 14px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: .92rem;
  display: none; margin-top: 16px;
}
.q-alert.show { display: block; }
.q-alert.success { background: rgba(16, 185, 129, .1); color: #059669; border: 1px solid rgba(16,185,129,.2); }
.q-alert.error { background: rgba(239, 68, 68, .1); color: #dc2626; border: 1px solid rgba(239,68,68,.2); }

.q-list { display: flex; flex-direction: column; gap: 14px; }
.q-li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .95rem; line-height: 1.6;
}
.q-li::before {
  content: '\2713'; flex-shrink: 0; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient); color: #fff; border-radius: 50%;
  font-size: .7rem; font-weight: 900;
}
.q-pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.q-pill {
  font-size: .75rem; font-weight: 700; padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(231, 77, 16, .12); color: var(--brand);
}

/* ============================================================
   FOOTER
   ============================================================ */
.mega-footer {
  background: var(--bg-deep); padding: 80px 0 0; color: var(--text-on-dark);
  position: relative;
}
.mega-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: var(--gradient-sweep); background-size: 200% 100%;
  animation: borderSweep 4s linear infinite; opacity: .5;
}
.site-footer { background: var(--bg-deep); color: var(--text-on-dark); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--gap); padding-bottom: 48px;
}
.footer-col { min-width: 0; }
.footer-brand { margin-bottom: 20px; }
.footer-brand img { height: 44px; }
.footer-title {
  font-size: .8rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .14em; color: var(--brand); margin-bottom: 20px;
}
.footer-text { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer-hr { border: none; height: 1px; background: rgba(255,255,255,.08); margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem; color: rgba(255,255,255,.55);
  transition: all var(--ease);
}
.footer-links a:hover { color: var(--brand); padding-left: 6px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact__item {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; color: rgba(255,255,255,.55);
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-pill {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6); font-size: 1rem;
  transition: all var(--ease);
  border: 1px solid rgba(255,255,255,.08);
}
.social-pill:hover {
  background: var(--brand); color: #fff;
  transform: translateY(-3px); box-shadow: var(--shadow-glow);
}

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; font-size: .82rem; color: rgba(255,255,255,.35);
  flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   RESPONSIVE – 980px (Tablet)
   ============================================================ */
@media (max-width: 980px) {
  .header-inner { padding: 12px 0; }
  .company-ids { display: none; }
  .nav {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(17,17,17,.98); backdrop-filter: blur(20px);
    padding: 20px; gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .site-header.open .nav {
    display: flex;
  }
  .site-header.open .nav a { padding: 14px 20px; width: 100%; border-radius: 12px; }
  .menu-btn { display: flex; align-items: center; justify-content: center; }

  .hero-split__headline { font-size: clamp(2.4rem, 5vw, 3.8rem); }
  .hero-split__inner { padding: 140px 0 80px; }

  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .about-top,
  .industry-grid,
  .industries-grid,
  .contact-layout,
  .quote-grid { grid-template-columns: 1fr; }

  .blog-grid,
  .post-grid,
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cards { grid-template-columns: repeat(2, 1fr); }
  .about-stats .stats-row { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }

  .contact-form-panel { padding: 36px; }
  .q-card { padding: 36px; }

  .center-title,
  .about-title,
  .industry-title,
  .blog-title,
  .section-title { font-size: 2.2rem; }
}

/* ============================================================
   RESPONSIVE – 600px (Mobile)
   ============================================================ */
@media (max-width: 600px) {
  body { font-size: 15px; }

  .hero, .hero--services, .hero--zoom { min-height: 90vh; }
  .hero--services { min-height: 60vh; }
  .hero-split__inner { padding: 120px 0 60px; }
  .hero-split__headline { font-size: 2.2rem; }
  .hero-split__sub { font-size: 1rem; }
  .hero-split__actions { flex-direction: column; }
  .hero-split__actions .btn { width: 100%; text-align: center; }

  .section, .home-section { padding: 64px 0; }
  .center-head { margin-bottom: 36px; }
  .center-title,
  .about-title,
  .industry-title,
  .blog-title,
  .newsletter-title,
  .section-title { font-size: 1.8rem; }

  .cap-grid,
  .cap-grid--2col,
  .blog-grid,
  .post-grid,
  .project-grid,
  .about-stats,
  .about-cards { grid-template-columns: 1fr; }

  .contact-grid,
  .q-form { grid-template-columns: 1fr; }
  .field-span-2,
  .q-field.full { grid-column: span 1; }
  .contact-form-panel { padding: 24px; }
  .q-card { padding: 24px; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }

  .blog-head { flex-direction: column; align-items: flex-start; }
  .industry-head__row { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .stat-num { font-size: 2rem; }
  .btn { padding: 12px 24px; font-size: .88rem; width: 100%; justify-content: center; }

  .map-full { height: 300px; }
}

/* ============================================================
   DARK SECTION OVERRIDES (for alt sections with dark bg)
   ============================================================ */
.home-section--alt .stat-label { color: rgba(255,255,255,.5); }
.home-section--alt .about-copy,
.home-section--alt .industry-copy { color: rgba(255,255,255,.6); }
.home-section--alt .li-arrow { color: rgba(255,255,255,.65); }
.home-section--alt .blog-sub { color: rgba(255,255,255,.5); }
.home-section--alt .btn.outline {
  color: var(--brand-light); border-color: var(--brand-light);
}
.home-section--alt .btn.outline:hover {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.home-section--alt .faq-item {
  background: var(--card-glass);
  backdrop-filter: blur(16px); border-color: var(--border-dark);
}
.home-section--alt .faq-question { color: #fff; }
.home-section--alt .faq-answer { color: rgba(255,255,255,.6); }

/* ============================================================
   SELECTION & SCROLLBAR
   ============================================================ */
::selection { background: rgba(231, 77, 16, .2); color: inherit; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
  background: rgba(231, 77, 16, .3); border-radius: 10px;
  border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* ===== Smooth page load ===== */
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
main { animation: pageIn .6s ease both; }
