@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --color-primary: #171717;
  --color-on-primary: #FFFFFF;
  --color-secondary: #404040;
  --color-accent: #e78a08;
  --color-background: #FFFFFF;
  --color-foreground: #171717;
  --color-muted: #F8F8F8;
  --color-border: #E5E5E5;
  --color-destructive: #DC2626;
  --color-ring: #171717;
  --color-success: #2E7D32;

  /* Legacy variables mapped for compatibility and seamless migration */
  --burgundy: var(--color-primary);
  --charcoal: var(--color-primary);
  --gold: var(--color-accent);
  --white: var(--color-background);
  --bg-light: var(--color-muted);
  --text-gray: var(--color-secondary);
  --border-gray: var(--color-border);
  --success: var(--color-success);

  --font-head: 'Cormorant', serif;
  --font-body: 'Montserrat', sans-serif;
  --maxw: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Glassmorphism details */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-dark: rgba(23, 23, 23, 0.82);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-border-dark: rgba(255, 255, 255, 0.1);

  /* Spacing Tokens */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  width: 90%;
  max-width: var(--maxw);
  margin: 0 auto
}

section {
  padding: 100px 0
}

.eyebrow {
  display: inline-block;
  color: var(--burgundy);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 12px
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem)
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  border-radius: 6px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-on-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #be7a13;
  box-shadow: 0 8px 20px rgba(161, 98, 7, 0.25);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}

.btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Ensure focus states are visible for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Base cursor pointer rule to cover custom tappables */
button,
a,
.tab-btn,
.slider-dots button,
.hamburger,
.flip-card {
  cursor: pointer;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s
}

#preloader.hide {
  opacity: 0;
  visibility: hidden
}

.preloader-logo {
  font-family: var(--font-head);
  color: #fff;
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  letter-spacing: 3px;
  opacity: 0;
  animation: logoIn 1s var(--ease) forwards
}

.preloader-logo span {
  color: var(--gold)
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

#header.scrolled {
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 1px
}

.brand span {
  color: var(--gold)
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px
}

.nav a {
  color: #fff;
  font-weight: 500;
  font-size: .92rem;
  position: relative;
  padding: 4px 0
}

.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: .3s var(--ease)
}

.nav a:not(.nav-cta):hover::after {
  width: 100%
}

.nav a.nav-cta {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

.nav a.nav-cta:hover {
  background: var(--gold);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(161, 98, 7, 0.3);
}

.nav-dropdown {
  position: relative
}

.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.3s var(--ease);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--color-foreground);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(161, 98, 7, 0.08);
  color: var(--color-accent);
  padding-left: 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: .3s
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-2xl);
  align-items: center;
  width: 90%;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-left .hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
}

.hero-left .hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 600px;
  font-family: var(--font-body);
  font-weight: 300;
}

.hero-left .hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-left .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero-left .btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.hero-right {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  background: #111;
}

.slide-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 12s ease-out;
  transform: scale(1.05);
  z-index: 1;
}

.slide-item.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
}

.scroll-indicator .arrow {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: bounce 1.6s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    transform: rotate(45deg) translate(6px, 6px);
  }
}

/* ===== STATS ===== */
.stats-floating {
  position: relative;
  margin-top: -60px;
  z-index: 20;
  padding: 0 0 60px;
}

.stats-glass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 90%;
  max-width: var(--maxw);
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s var(--ease);
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-xl);
  border-color: rgba(161, 98, 7, 0.3);
}

.stat-card .counter {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--color-accent);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.stat-card p {
  color: var(--color-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== HERO REVEAL ANIMATIONS ===== */
.reveal-hero {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal-hero.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TRUST SECTION ===== */
.trust {
  background: var(--color-background);
  padding: 100px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.trust-card {
  background: var(--color-background);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(161, 98, 7, 0.06);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s var(--ease);
}

.trust-card:hover .trust-icon {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.05);
}

.trust-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.trust-card p {
  color: var(--color-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg-light)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-img {
  min-height: 480px;
  border-radius: 12px;
  background: url('assets/manufacturing/manufacturing%20plant.jpeg') center/cover no-repeat;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  transition: all 0.5s var(--ease);
}

.about-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px
}

.about-text p {
  color: var(--text-gray);
  margin-bottom: 24px
}

.about-timeline {
  position: relative;
  margin-top: 32px;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-line {
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}

.timeline-progress {
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.1s ease-out;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-border);
  border: 2px solid var(--color-background);
  z-index: 5;
  transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(161, 98, 7, 0.2);
}

.timeline-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-year {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.timeline-desc {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 !important;
}

/* ===== RE-DESIGNED DIVISIONS ===== */
.divisions-redesign {
  position: relative;
  background: #0f0f0f;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.divisions-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease;
  transform: scale(1.02);
}

.divisions-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15, 15, 15, 0.75) 0%, rgba(15, 15, 15, 0.96) 100%);
  z-index: 2;
  transition: background 0.8s ease;
}

.divisions-redesign.show-nse .bg-nse {
  opacity: 0.25;
}

.divisions-redesign.show-ce .bg-ce {
  opacity: 0.25;
}

.divisions-container {
  position: relative;
  z-index: 5;
}

.divisions-redesign .section-head h2 {
  color: #fff;
}

.divisions-redesign .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  font-size: 1.05rem;
}

.divisions-selector-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.selector-logo-btn {
  background: rgba(236, 236, 236, 0.85);
  border: 1px solid rgba(236, 236, 236, 0.85);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s var(--ease);
  width: 360px;
  min-height: 160px;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 4px 20px rgba(0, 0, 0, 0.15);
}

.selector-logo-card-img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.4s var(--ease);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.division-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s var(--ease);
}

.selector-logo-btn:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  background: rgba(109, 45, 69, 0.25);
  box-shadow: 0 0 25px rgba(161, 98, 7, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.selector-logo-btn:hover .selector-logo-card-img {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 12px rgba(161, 98, 7, 0.4));
}

.selector-logo-btn.active {
  background: rgba(109, 45, 69, 0.35);
  border-color: var(--color-accent);
  box-shadow: 0 0 35px rgba(161, 98, 7, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.selector-logo-btn.active .selector-logo-card-img {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 15px rgba(161, 98, 7, 0.5));
}

.selector-logo-btn:hover .division-subtitle,
.selector-logo-btn.active .division-subtitle {
  color: var(--color-background);
}

.divisions-showcase-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: rgba(23, 23, 23, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  position: relative;
  transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  box-shadow: var(--shadow-xl);
}

.divisions-showcase-panel.open {
  max-height: 1200px;
  opacity: 1;
  padding: 48px;
  margin-top: 20px;
}

.showcase-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 15;
}

.showcase-close-btn:hover {
  color: #fff;
}

.showcase-content {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}

.showcase-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.showcase-left {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 400px;
  position: relative;
}

.showcase-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 6px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.showcase-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 12px;
  background: rgba(161, 98, 7, 0.15);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.showcase-right h3 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}

.showcase-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.features-benefits-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.showcase-col h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.showcase-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.showcase-stats {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.showcase-stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-stat-item .stat-number {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--color-accent);
  font-weight: 700;
  line-height: 1;
}

.showcase-stat-item .stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.showcase-stat-item .stat-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== WHY ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 10;
}

.why-item {
  background: var(--bg-light);
  padding: 40px 26px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--border-gray);
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-item:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  margin-bottom: 16px;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}

.why-item:hover .why-icon {
  transform: scale(1.15);
}

.why-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ===== MANUFACTURING EXCELLENCE ===== */
.manufacturing {
  background: #0f0f0f;
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.manufacturing .section-head h2 {
  color: #fff;
}

.manufacturing .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  font-size: 1.05rem;
}

.manufacturing-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.manufacturing-images-col {
  display: flex;
  flex-direction: column;
}

.facility-main-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease);
}

.facility-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.facility-main-card:hover .facility-img {
  transform: scale(1.03);
}

.facility-main-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.facility-main-label span {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
}

.machine-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.machine-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.machine-img-slot {
  height: 90px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.04);
  position: relative;
  transition: all 0.3s var(--ease);
}

.machine-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  transition: color 0.3s;
}

.machine-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  background: rgba(161, 98, 7, 0.08);
}

.machine-card:hover .machine-label {
  color: #fff;
}

.machine-card:hover .machine-img-slot {
  transform: scale(1.02);
}

.manufacturing-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.manufacturing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.manufacturing-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  background: rgba(161, 98, 7, 0.05);
  box-shadow: 0 10px 30px rgba(161, 98, 7, 0.1);
}

.mfg-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(161, 98, 7, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.manufacturing-card:hover .mfg-card-icon {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.05);
}

.mfg-card-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.mfg-card-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.mfg-card-details h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.mfg-card-details p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* ===== GALLERY (MASONRY) ===== */
.masonry {
  columns: 3;
  column-gap: 20px
}

.masonry-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 20px;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #6D2D45, #121212)
}

.masonry-item.tall {
  height: 360px
}

.masonry-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(to top, rgba(18, 18, 18, .85), transparent 60%);
  opacity: 0;
  transition: .4s var(--ease)
}

.masonry-item:hover figcaption {
  opacity: 1
}

.masonry-item:hover {
  transform: scale(1.02)
}

.masonry-item figcaption span {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.25rem
}

.masonry-item figcaption small {
  color: var(--gold)
}

/* ===== PROCESS TIMELINE ===== */
.timeline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--border-gray);
  z-index: 0
}

.step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  position: relative;
  z-index: 1
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 14px
}

.step h4 {
  font-size: 1rem
}

/* ===== LEADERSHIP (overridden by newer compact rules below) ===== */
.leadership {
  background: var(--bg-light)
}

/* .leader-grid, .leader-card, etc. are now defined in the new compact redesign section */


/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--charcoal);
  color: #fff
}

.slider {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center
}

.slides {
  display: flex;
  transition: transform .6s var(--ease)
}

.slide {
  min-width: 100%;
  padding: 0 20px
}

.slide p {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  margin-bottom: 20px
}

.slide cite {
  color: var(--gold);
  font-style: normal
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  padding: 0;
}

.slider-dots button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  background: transparent;
}

.slider-dots button.active {
  background: var(--gold);
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #6D2D45, #121212)
}

.final-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?w=1600') center/cover;
  opacity: .18
}

.final-content {
  position: relative
}

.final-content h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  margin-bottom: 30px
}

.final-content .hero-btns {
  justify-content: center
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  border-radius: 8px
}

.contact-form {
  display: grid;
  gap: 22px
}

.field {
  position: relative
}

.field input,
.field textarea {
  width: 100%;
  padding: 18px 16px 8px;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  background: transparent;
  color: var(--color-foreground);
  transition: all 0.25s var(--ease);
}

.field label {
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--text-gray);
  pointer-events: none;
  transition: .25s var(--ease)
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(161, 98, 7, 0.12);
}

.field input:focus+label,
.field input:valid+label,
.field textarea:focus+label,
.field textarea:valid+label {
  top: 4px;
  font-size: .72rem;
  color: var(--color-accent)
}

.form-msg {
  color: var(--success);
  font-weight: 600
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: #bbb;
  padding: 70px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px
}

.footer-brand {
  font-size: 1.4rem;
  margin-bottom: 16px
}

.footer h4 {
  color: #fff;
  margin-bottom: 18px
}

.footer a {
  display: block;
  color: #bbb;
  padding: 5px 0;
  transition: .25s
}

.footer a:hover {
  color: var(--gold)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 50px;
  padding: 0;
  font-size: .85rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-credit {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.aitron-link {
  color: var(--gold) !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.aitron-link:hover {
  opacity: 0.8;
}

/* ===== FLOATING ACTIONS - ICON ONLY CIRCLES ===== */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.floating-actions.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fab:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.fab-wa {
  background: #25D366;
}

.fab-call {
  background: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fab-quote {
  background: var(--color-accent);
  color: #fff;
}

/* ===== SCROLL REVEAL ===== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: .8s var(--ease)
}

.reveal {
  transform: translateY(40px)
}

.reveal-left {
  transform: translateX(-50px)
}

.reveal-right {
  transform: translateX(50px)
}

.reveal.in,
.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: none
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {

  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100vh;
    background: rgba(23, 23, 23, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }

  .nav.open {
    transform: translateX(0);
  }

  .timeline::before {
    display: none;
  }

  .flip-card {
    height: 480px;
  }

  .flip-card .division-img {
    height: 180px;
  }

  .hamburger {
    display: flex;
    z-index: 1001
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-grid,
  .contact-grid,
  .tab-panel.active {
    grid-template-columns: 1fr
  }

  .division-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .why-grid {
    gap: 16px
  }

  .masonry {
    columns: 2
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Divisions Showcase Mobile Overrides */
  .divisions-selector-row {
    gap: 24px;
  }

  .selector-logo-btn {
    width: 290px;
    height: 130px;
    padding: 20px 24px;
  }

  .divisions-showcase-panel.open {
    padding: 30px 20px;
    max-height: 2200px;
    /* Stacked layout requires more height */
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase-left {
    height: 300px;
  }

  .showcase-right h3 {
    font-size: 1.8rem;
  }

  .showcase-footer {
    justify-content: center;
    text-align: center;
  }

  /* Manufacturing Section Tablet Overrides */
  .manufacturing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .facility-main-card {
    height: 280px;
  }

  .manufacturing-card {
    padding: 20px 24px;
  }
}

@media(max-width:560px) {
  section {
    padding: 64px 0
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }

  .masonry {
    columns: 1
  }

  .floating-actions {
    flex-direction: row;
    left: 20px;
    right: 20px;
    justify-content: center
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  /* Divisions Showcase Mobile Overrides (Phones) */
  .divisions-selector-row {
    gap: 16px;
  }

  .selector-logo-btn {
    width: 100%;
    max-width: 300px;
    height: 120px;
    padding: 16px 20px;
  }

  .divisions-showcase-panel.open {
    padding: 24px 16px;
    max-height: 2600px;
  }

  .features-benefits-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .showcase-left {
    height: 240px;
  }

  .showcase-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .showcase-stats {
    justify-content: center;
    gap: 16px;
  }

  .showcase-footer .cta-btn {
    width: 100%;
    text-align: center;
  }

  /* Manufacturing Section Mobile Overrides */
  .facility-main-card {
    height: 220px;
  }

  .machine-sub-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .machine-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 12px;
    gap: 16px;
  }

  .machine-img-slot {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
  }

  .machine-label {
    font-size: 0.8rem;
  }

  .manufacturing-card {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .mfg-card-icon {
    width: 44px;
    height: 44px;
  }
}

/* ===== REDUCED MOTION ===== */
@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none
  }
}

/* ===== LOGO INTEGRATION ===== */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-header {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.logo-footer {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ===== CARD FLIP ===== */
.flip-card {
  perspective: 1000px;
  background-color: transparent;
  border: none !important;
  height: 480px;
  /* Base desktop height */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
}

/* Hover/Click Flip State Trigger */
.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
  box-shadow: var(--shadow-xl);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gray);
  background: #fff;
}

.flip-card-front {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.flip-card-back {
  transform: rotateY(180deg);
  background: var(--white);
  /* White background to match front side */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.flip-card-back-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-logo {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

/* ===================================================
   HERO FULL-SCREEN REDESIGN
   =================================================== */
.hero-fullscreen {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: #111;
}

.hero-bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out, transform 10s ease-out;
  transform: scale(1.06);
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(160deg,
      rgba(10, 10, 10, 0.82) 0%,
      rgba(10, 10, 10, 0.55) 60%,
      rgba(10, 10, 10, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 160px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(161, 98, 7, 0.5);
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero-content .hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.06;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-content .hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-content .hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}

.hero-trust-item {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ===================================================
   INDUSTRIES SERVED SECTION
   =================================================== */
.industries {
  background: #0a0a0a;
  padding: 100px 0;
}

.industries .section-head h2,
.industries .eyebrow {
  color: #fff;
}

.industries .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.industry-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 0%, rgba(161, 98, 7, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(161, 98, 7, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(161, 98, 7, 0.25);
  background: rgba(161, 98, 7, 0.06);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(161, 98, 7, 0.12);
  border: 1px solid rgba(161, 98, 7, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  transition: all 0.35s ease;
}

.industry-card:hover .industry-icon {
  background: rgba(161, 98, 7, 0.22);
  border-color: var(--gold);
  transform: scale(1.08);
}

.industry-card h4 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* nth-child stagger delay for reveal */
.industry-card:nth-child(1) {
  transition-delay: 0ms;
}

.industry-card:nth-child(2) {
  transition-delay: 60ms;
}

.industry-card:nth-child(3) {
  transition-delay: 120ms;
}

.industry-card:nth-child(4) {
  transition-delay: 180ms;
}

.industry-card:nth-child(5) {
  transition-delay: 240ms;
}

.industry-card:nth-child(6) {
  transition-delay: 300ms;
}

/* ===================================================
   PROJECT GALLERY — REAL PHOTOS + FILTERS + OVERLAY
   =================================================== */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.gf-btn {
  background: transparent;
  border: 1.5px solid rgba(23, 23, 23, 0.2);
  color: var(--color-secondary);
  padding: 10px 24px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.gf-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gf-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(161, 98, 7, 0.3);
}

/* Masonry items get background images */
.masonry-item {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  min-height: 260px;
}

.masonry-item.tall {
  min-height: 380px;
}

/* Transition for filter hide/show */
.masonry-item.hidden {
  display: none;
}

/* Hover overlay */
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.4) 55%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.project-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  display: block;
}

.project-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.project-cta {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  width: fit-content;
  transition: background 0.2s ease;
}

.project-cta:hover {
  background: #be7a13;
}

/* ===================================================
   LEADERSHIP CARDS — COMPACT CLEAN REDESIGN
   =================================================== */
.leader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}

.leader-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 20px;
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-sm);
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e9b96e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(161, 98, 7, 0.2);
}

.leader-card:hover::before {
  opacity: 1;
}

/* Founder special styling */
.founder-card {
  border-color: rgba(161, 98, 7, 0.15);
  background: linear-gradient(160deg, #fffdf7 0%, #fff 60%);
}

.founder-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
}

.leader-photo-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  padding: 3px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(161, 98, 7, 0.18);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
}

.leader-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.leader-info h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.2;
}

.leader-role-badge {
  display: inline-block;
  background: rgba(161, 98, 7, 0.08);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(161, 98, 7, 0.2);
}

.leader-exp {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-secondary);
  margin: 0;
}

/* ===================================================
   TESTIMONIALS — PREMIUM CARD SLIDER
   =================================================== */
.testimonials {
  background: #0a0a0a;
  padding: 100px 0;
}

.testimonials .section-head h2,
.testimonials .eyebrow {
  color: #fff;
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.testi-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.testi-track-outer {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
}

.testi-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s var(--ease);
}

.testi-card {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 48px 44px;
  position: relative;
  box-sizing: border-box;
}

.testi-quote-icon {
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 16px;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testi-stars span {
  color: var(--gold);
  font-size: 1.1rem;
}

.testi-text {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 32px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e9b96e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.testi-author span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.testi-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.testi-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testi-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.testi-dots button.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===================================================
   FINAL CTA — POWERFUL REDESIGN
   =================================================== */
.final-cta {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
}

.final-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.final-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg,
      rgba(10, 10, 10, 0.92) 0%,
      rgba(10, 10, 10, 0.80) 100%);
}

.final-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
}

.final-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(161, 98, 7, 0.4);
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.final-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 20px;
}

.headline-gold {
  color: var(--gold);
  position: relative;
}

.headline-gold::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e9b96e);
  border-radius: 2px;
}

.final-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.final-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.final-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 32px;
}

.final-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.final-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.final-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
}

.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ===================================================
   FOOTER — 4-COLUMN UPGRADE
   =================================================== */
.footer {
  background: #060606;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 72px;
  padding-bottom: 0;
}

.footer-top-border {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand-col .brand {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-trust-badges span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold);
  background: rgba(161, 98, 7, 0.1);
  border: 1px solid rgba(161, 98, 7, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
  line-height: 1.5;
}

a.footer-contact-item:hover {
  color: #fff;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 6px;
  transition: all 0.25s ease;
  margin-top: 4px;
  width: fit-content;
}

.footer-wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-credit {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.25) !important;
}

.footer-credit a {
  color: var(--gold);
  font-weight: 600;
}

/* ===================================================
   SECTION SUBTITLE (shared utility)
   =================================================== */
.section-subtitle {
  font-size: 1rem;
  color: var(--color-secondary);
  line-height: 1.7;
  margin-top: 12px;
}

/* ===================================================
   MOBILE RESPONSIVENESS — ALL NEW SECTIONS
   =================================================== */
@media (max-width: 900px) {

  /* Hero */
  .hero-content .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-trust-row {
    gap: 16px;
  }

  /* Industries */
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Gallery filters */
  .gallery-filters {
    gap: 8px;
  }

  .gf-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  /* Leadership */
  .leader-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .leader-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
  }

  .leader-highlights {
    align-items: center;
  }

  .founder-badge {
    top: 14px;
    right: 14px;
  }

  /* Testimonials */
  .testi-card {
    padding: 36px 28px;
  }

  .testi-arrow {
    width: 40px;
    height: 40px;
  }

  /* Final CTA */
  .final-stats-row {
    gap: 0;
  }

  .final-stat {
    padding: 0 20px;
  }

  .final-stat-num {
    font-size: 1.6rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {

  /* Hero */
  .hero-content {
    padding: 130px 0 80px;
  }

  .hero-content .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-content .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-trust-row {
    gap: 10px;
    justify-content: center;
  }

  .hero-trust-item {
    font-size: 0.72rem;
  }

  /* Industries */
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industry-card {
    padding: 28px 20px;
  }

  /* Gallery */
  .masonry {
    columns: 1;
  }

  .masonry-item,
  .masonry-item.tall {
    min-height: 220px;
    break-inside: avoid;
  }

  .masonry-overlay {
    opacity: 1;
    /* Always show on mobile (no hover) */
  }

  /* Leadership */
  .leader-card {
    gap: 20px;
  }

  .leader-photo-ring {
    width: 90px;
    height: 90px;
  }

  /* Testimonials */
  .testi-slider-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .testi-arrow {
    display: none;
  }

  .testi-card {
    padding: 28px 20px;
  }

  .testi-text {
    font-size: 1rem;
  }

  /* Final CTA */
  .final-cta {
    min-height: auto;
    padding: 80px 0;
  }

  .final-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .final-stats-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .final-stat-divider {
    display: none;
  }

  .final-stat {
    width: calc(50% - 12px);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 10px;
  }

  .final-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* ===== LEADERSHIP — MOBILE ===== */
@media (max-width: 760px) {
  .leader-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .leader-card {
    padding: 36px 24px 28px;
  }

  .leader-photo-ring {
    width: 100px;
    height: 100px;
  }
}

/* ===== FABs — MOBILE SIZE ===== */
@media (max-width: 640px) {
  .floating-actions {
    right: 14px;
    bottom: 16px;
    gap: 8px;
  }

  .fab {
    width: 44px;
    height: 44px;
  }
}

/* ===================================================
   FOOTER — PREMIUM SCHUCO-STYLE REDESIGN
   =================================================== */
.pf-footer {
  --pf-gold: #F4D03F;
  --pf-burgundy: #6D2D45;
  background: #0A0A0A;
  color: #A0A0A0;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.pf-top-line {
  height: 2px;
  background: var(--pf-gold);
  width: 100%;
}

.pf-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 3fr 1.5fr 1.5fr 2fr;
  gap: 40px;
}

.pf-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.pf-logo-img {
  height: 48px;
  width: auto;
}

.pf-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.pf-amp {
  color: var(--pf-gold);
}

.pf-tagline {
  font-size: 0.95rem;
  color: #A0A0A0;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 300px;
}

.pf-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pf-trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #FFFFFF;
}

.pf-trust-list svg {
  color: var(--pf-gold);
}

.pf-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.pf-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background: var(--pf-gold);
}

.pf-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-links a {
  color: #A0A0A0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.pf-links a:hover {
  color: #FFFFFF;
  transform: translateX(5px);
}

.pf-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pf-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #A0A0A0;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.pf-contact-row svg {
  color: var(--pf-burgundy);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 0.3s ease;
}

.pf-contact-row:hover {
  color: #FFFFFF;
}

.pf-contact-row:hover svg {
  color: var(--pf-gold);
}

.pf-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 10px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.pf-wa-btn svg {
  color: #25D366;
}

.pf-wa-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.pf-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #080808;
}

.pf-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.pf-copy {
  margin: 0;
  font-size: 0.85rem;
  color: #777777;
}

.pf-dev {
  margin: 0;
  font-size: 0.85rem;
  color: #777777;
}

.pf-aitron {
  color: var(--pf-gold);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

.pf-aitron:hover {
  opacity: 0.8;
}

/* Premium Footer Mobile */
@media (max-width: 900px) {
  .pf-inner {
    grid-template-columns: 1fr 1fr;
    padding: 50px 30px;
  }
}

@media (max-width: 640px) {
  .pf-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 40px;
  }
  .pf-bottom-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

/* ===== MOBILE FIXES: STATS ===== */
@media (max-width: 900px) {
  .stats-glass-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .stats-glass-grid {
    gap: 12px;
  }
  .stat-card {
    padding: 20px 12px;
  }
  .stat-card .counter {
    font-size: 2rem;
  }
  .stat-card p {
    font-size: 0.75rem;
  }
}

/* ===== ADDITIONAL MOBILE SAFEGUARDS ===== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  
  section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  /* Force single columns on grids to avoid overflow */
  .leader-grid,
  .projects-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  /* Guarantee sliders don't break viewport */
  .swiper-container,
  .embla,
  .carousel,
  .testi-slider-wrap {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}