/* Momentum Mechanical - Squarespace Pattern Styles */

/* CSS Variables */
:root {
  /* Brand Colors - Momentum Mechanical Logo */
  --brand-red: #E31B23;
  --brand-blue: #0052A5;
  --brand-red-dark: #B8151B;
  --brand-red-light: #FF3D44;
  --brand-blue-dark: #003D7A;
  --brand-blue-light: #1A6FC4;
  --glow-red: 0 0 40px rgba(227, 27, 35, 0.3);
  --glow-red-intense: 0 0 60px rgba(227, 27, 35, 0.5);
  --glow-blue: 0 0 40px rgba(0, 82, 165, 0.3);

  /* Legacy aliases for compatibility */
  --brand-navy: #0052A5;
  --brand-orange: #E31B23;
  --brand-navy-dark: #003D7A;
  --brand-orange-light: #FF3D44;
  --glow-orange: 0 0 40px rgba(227, 27, 35, 0.3);
  --glow-orange-intense: 0 0 60px rgba(227, 27, 35, 0.5);

  /* Neutrals */
  --white: #ffffff;
  --black: #000000;
  --site-dark: #1a1a1a;
  --site-charcoal: #2a2a2a;

  /* Grays */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Squarespace Spacing */
  --container-padding: 4vw;
  --container-padding-mobile: 6vw;
  --section-padding: 80px;
  --section-padding-mobile: 48px;

  /* Squarespace Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-body: 17px;
  --line-height-body: 1.6;

  /* Transitions */
  --transition-quick: 200ms;
  --transition-standard: 300ms;
  --transition-expressive: 500ms;
  --ease-material: cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-content: 10;
  --z-navbar: 100;
  --z-menu: 200;
  --z-modal: 300;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--line-height-body);
  color: var(--white);
  background: var(--site-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

@media (max-width: 600px) {
  .container {
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

@media (min-width: 900px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 32px;
  }
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-standard) ease;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--brand-orange);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 400ms var(--ease-material);
  text-align: center;
}

.btn-primary:hover {
  background: var(--brand-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--brand-orange);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 2px solid var(--brand-orange);
  border-radius: 0;
  cursor: pointer;
  transition: all 400ms var(--ease-material);
}

.btn-outline:hover {
  background: var(--brand-orange);
  color: var(--white);
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  background: #ffffff;
  padding: 8px 0;
  transition: all 400ms var(--ease-material);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 900px) {
  .navbar-links {
    display: flex;
  }
}

.nav-link {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
  transition: color var(--transition-standard) ease;
}

.nav-link:hover {
  color: var(--brand-orange);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 900px) {
  .mobile-toggle {
    display: none;
  }
}

.hamburger {
  width: 28px;
  height: 2px;
  background: #1a1a1a;
  transition: all var(--transition-standard) ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-standard) ease;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(6px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 24px;
  padding: 24px var(--container-padding-mobile);
  background: var(--brand-blue);
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  color: var(--gray-300);
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
}

.mobile-cta {
  margin-top: 8px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-image-container,
.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 165, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(227, 27, 35, 0.2);
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 24px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .hero-subtitle {
    font-size: 22px;
  }
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: pulse 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brand-orange), transparent);
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Scrolling Text */
.scrolling-text-block {
  overflow: hidden;
  background: var(--brand-blue);
  padding: 16px 0;
}

.scrolling-text-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-text 30s linear infinite;
  width: max-content;
}

.scrolling-text-item {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 16px;
}

.separator {
  color: var(--white);
  opacity: 0.5;
  padding: 0 16px;
}

@keyframes scroll-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Client Logos Section */
.client-logos-section {
  background: var(--site-charcoal);
  padding: 40px 0;
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
}

.logos-label {
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.logos-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.logo-item {
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border: 1px solid var(--gray-700);
  border-radius: 4px;
  transition: all var(--transition-standard) ease;
}

.logo-item:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

/* Sections */
.section-dark {
  background: var(--site-dark);
  padding: var(--section-padding) 0;
}

.section-charcoal {
  background: var(--site-charcoal);
  padding: var(--section-padding) 0;
}

@media (max-width: 900px) {
  .section-dark,
  .section-charcoal {
    padding: var(--section-padding-mobile) 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-orange);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ===== PREMIUM SERVICES BENTO GRID ===== */
.services-premium {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--site-dark) 0%, var(--site-charcoal) 100%);
}

.services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.overline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-orange);
  margin-bottom: 16px;
}

.services-headline {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-red) 0%, #FF5A5F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Bento Grid */
.services-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
  }

  .bento-featured {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .bento-wide {
    grid-column: 1 / -1;
  }
}

/* Bento Cards */
.bento-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 400ms var(--ease-material);
}

.bento-card:hover {
  transform: translateY(-4px);
}

/* Featured Card (Large with image) */
.bento-featured {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 70%);
  z-index: 1;
}

.bento-content {
  position: relative;
  z-index: 2;
}

.bento-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-orange);
  background: rgba(227, 27, 35, 0.15);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.bento-title-lg {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.bento-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bento-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bento-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.bento-features svg {
  width: 16px;
  height: 16px;
  color: var(--brand-orange);
}

/* Dark Card Style */
.bento-dark {
  background: rgba(30, 30, 35, 0.8);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.bento-dark:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Orange Accent Card */
.bento-red {
  background: linear-gradient(135deg, rgba(227, 27, 35, 0.15) 0%, rgba(227, 27, 35, 0.05) 100%);
  border: 1px solid rgba(227, 27, 35, 0.3);
}

.bento-red:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 20px 40px rgba(227, 27, 35, 0.15);
}

/* Card Icon */
.bento-icon-wrap {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 27, 35, 0.1);
  border-radius: 12px;
  margin-bottom: 20px;
}

.bento-title,
.bento-title-lg,
.bento-desc,
.bento-desc-sm,
.bento-stat-row,
.bento-label,
.bento-features {
  position: relative;
  z-index: 2;
}

.bento-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--brand-orange);
}

.bento-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.bento-desc-sm {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Stats Row */
.bento-stat-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-big {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-orange);
}

.stat-label {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Wide Card */
.bento-wide {
  padding: 24px 32px;
}

.bento-gradient {
  background: linear-gradient(90deg, var(--site-charcoal) 0%, rgba(227, 27, 35, 0.08) 100%);
  border: 1px solid rgba(255,255,255,0.06);
}

.bento-wide-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .bento-wide-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.bento-wide-left {
  flex: 1;
}

.bento-wide-left .bento-title {
  margin-bottom: 6px;
}

.bento-wide-left .bento-desc-sm {
  margin-bottom: 0;
}

.brand-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-logo-item {
  padding: 10px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 300ms ease;
}

.brand-logo-item:hover {
  background: rgba(227, 27, 35, 0.1);
  border-color: var(--brand-orange);
  color: var(--white);
}

/* Industries Strip */
.industries-strip {
  padding: 32px;
  background: rgba(20,20,25,0.6);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.04);
}

.industries-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.industry-chip {
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  font-size: 14px;
  color: var(--gray-300);
  transition: all 300ms ease;
  cursor: default;
}

.industry-chip:hover {
  background: rgba(227, 27, 35, 0.1);
  color: var(--white);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 600px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-card {
  background: var(--site-dark);
  border: 1px solid var(--gray-800);
  overflow: hidden;
  transition: all 400ms var(--ease-material);
}

.project-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.project-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-material);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.project-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--brand-orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-info {
  padding: 24px;
}

.project-info h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--white);
}

.project-info p {
  color: var(--gray-400);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.project-stats span {
  color: var(--gray-500);
  font-size: 13px;
}

.project-stats strong {
  color: var(--brand-orange);
}

/* Quote Calculator */
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .quote-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.quote-info {
  max-width: 500px;
}

.quote-description {
  color: var(--gray-300);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-300);
  font-size: 15px;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  color: var(--brand-orange);
  flex-shrink: 0;
}

.calculator-card {
  background: var(--site-charcoal);
  padding: 32px;
  border: 1px solid var(--gray-800);
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.estimate-display {
  background: var(--site-dark);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--gray-700);
}

.estimate-label {
  color: var(--gray-500);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.estimate-value {
  color: var(--brand-orange);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.estimate-note {
  color: var(--gray-500);
  font-size: 12px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-content {
  max-width: 600px;
}

.about-text {
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-material);
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Testimonials Carousel */
.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  min-height: 300px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: all 500ms var(--ease-material);
  background: var(--site-charcoal);
  padding: 40px;
  border: 1px solid var(--gray-800);
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testimonial-content {
  margin-bottom: 24px;
}

.stars {
  color: var(--brand-orange);
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--gray-300);
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--brand-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50%;
}

.author-name {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.author-title {
  color: var(--gray-500);
  font-size: 14px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--gray-700);
  color: var(--gray-400);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-standard) ease;
}

.carousel-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--gray-700);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-standard) ease;
}

.dot.active {
  background: var(--brand-orange);
}

/* Certifications */
.certifications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .certifications-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.cert-card {
  padding: 32px;
  background: var(--site-dark);
  border: 1px solid var(--gray-800);
  text-align: center;
  transition: all 400ms var(--ease-material);
}

.cert-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-4px);
}

.cert-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--brand-orange);
}

.cert-badge svg {
  width: 100%;
  height: 100%;
}

.cert-title {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--white);
}

.cert-description {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* Service Area Section */
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .service-area-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.area-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.city-column h4 {
  color: var(--brand-orange);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.city-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.city-column li {
  color: var(--gray-400);
  font-size: 15px;
}

.map-placeholder {
  background: var(--site-charcoal);
  border: 1px solid var(--gray-800);
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.map-pin span {
  font-size: 48px;
  animation: bounce 2s infinite;
}

.pin-label {
  margin-top: 8px;
  color: var(--brand-orange);
  font-weight: 600;
  font-size: 14px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.map-radius {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 2px dashed var(--brand-orange);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse-ring 3s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.4; }
  50% { transform: scale(1); opacity: 0.2; }
  100% { transform: scale(0.8); opacity: 0.4; }
}

.map-text {
  position: absolute;
  bottom: 24px;
  color: var(--gray-500);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-800);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding-right: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--brand-orange);
  flex-shrink: 0;
  transition: transform var(--transition-standard) ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-material);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  color: var(--gray-400);
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 24px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.contact-description {
  font-size: 18px;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  color: var(--brand-orange);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-value {
  font-size: 16px;
  color: var(--white);
  line-height: 1.6;
}

.contact-value a {
  color: var(--brand-orange);
  transition: opacity var(--transition-standard) ease;
}

.contact-value a:hover {
  opacity: 0.8;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
}

.form-input,
select.form-input,
textarea.form-input {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--gray-700);
  border-radius: 0;
  font-size: 16px;
  font-family: var(--font-sans);
  color: var(--white);
  transition: border-color var(--transition-standard) ease;
}

.form-input::placeholder {
  color: var(--gray-500);
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-orange);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.form-input option {
  background: var(--site-charcoal);
  color: var(--white);
}

/* Footer */
.footer {
  background: var(--brand-blue);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-text {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 350px;
}

.footer-license {
  color: var(--gray-500);
  font-size: 13px;
  margin-top: 12px;
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-links li {
  font-size: 15px;
  color: var(--gray-400);
  transition: color var(--transition-standard) ease;
  line-height: 1.5;
}

.footer-links a:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}

@media (min-width: 900px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-item {
  padding: 6px 12px;
  background: rgba(227, 27, 35, 0.15);
  color: var(--brand-orange);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

/* ===== NANO BANNER PRO - CERTIFICATIONS ===== */
.certs-nano-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--site-charcoal) 0%, var(--site-dark) 100%);
  position: relative;
  overflow: hidden;
}

.certs-nano-header {
  text-align: center;
  margin-bottom: 60px;
}

.nano-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(227, 27, 35, 0.1);
  border: 1px solid rgba(227, 27, 35, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-orange);
  margin-bottom: 20px;
}

.nano-headline {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

/* Nano Banner Stack */
.nano-banner-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

/* Individual Nano Banner */
.nano-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: rgba(30, 30, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 400ms var(--ease-material);
}

.nano-banner:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Featured Banner */
.nano-banner.nano-featured {
  background: linear-gradient(135deg, rgba(227, 27, 35, 0.15) 0%, rgba(30, 30, 35, 0.8) 100%);
  border-color: rgba(227, 27, 35, 0.3);
  padding: 32px 40px;
}

.nano-banner.nano-featured:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 20px 60px rgba(227, 27, 35, 0.2);
}

.nano-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(227, 27, 35, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Accent Banner */
.nano-banner.nano-accent {
  background: linear-gradient(90deg, rgba(227, 27, 35, 0.08) 0%, rgba(30, 30, 35, 0.6) 100%);
}

/* Number */
.nano-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
  font-family: monospace;
  letter-spacing: 1px;
}

.nano-featured .nano-number {
  color: var(--brand-orange);
}

/* Icon Ring */
.nano-icon-ring {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 27, 35, 0.1);
  border: 1px solid rgba(227, 27, 35, 0.2);
  border-radius: 12px;
  transition: all 300ms ease;
}

.nano-banner:hover .nano-icon-ring {
  background: rgba(227, 27, 35, 0.2);
  border-color: var(--brand-orange);
  transform: scale(1.05);
}

.nano-icon-ring svg {
  width: 28px;
  height: 28px;
  color: var(--brand-orange);
}

/* Content */
.nano-content {
  flex: 1;
}

.nano-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.nano-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.5;
  margin: 0;
}

/* Stat */
.nano-stat {
  text-align: center;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 80px;
}

.nano-stat-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-orange);
  line-height: 1;
}

.nano-stat-label {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Trust Row */
.nano-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nano-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-400);
}

.trust-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border-radius: 50%;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .nano-banner {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    padding: 24px;
  }

  .nano-number {
    display: none;
  }

  .nano-icon-ring {
    margin: 0 auto;
  }

  .nano-stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 16px;
    margin-top: 8px;
  }

  .nano-trust-row {
    gap: 16px;
  }

  .nano-trust-item {
    font-size: 13px;
  }
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s var(--ease-material), transform 0.6s var(--ease-material);
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* Image Reveal */
.image-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s var(--ease-material);
}

.image-reveal.aos-animate {
  clip-path: inset(0 0 0 0);
}

/* Parallax */
.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  will-change: transform;
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.text-navy,
.text-blue {
  color: var(--brand-blue);
}

.text-orange,
.text-red {
  color: var(--brand-red);
}

/* ===== ENHANCED UI EFFECTS ===== */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

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

/* Enhanced button hover */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 500ms ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: var(--glow-orange);
  transform: translateY(-2px);
}

/* Card glow on hover */
.bento-featured:hover {
  box-shadow: var(--glow-orange-intense);
}

.bento-red:hover .bento-icon-wrap {
  transform: scale(1.1);
  box-shadow: var(--glow-orange);
}

.bento-dark:hover .bento-icon-wrap {
  transform: scale(1.05);
}

.bento-icon-wrap {
  transition: all 400ms var(--ease-material);
}

/* Animated gradient border */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Animated border on featured - disabled to avoid conflicts */

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-badge {
  animation: float 4s ease-in-out infinite;
}

/* Stats number glow */
.stat-big {
  text-shadow: 0 0 20px rgba(227, 27, 35, 0.3);
}

/* Image hover zoom */
.project-image {
  overflow: hidden;
}

.project-image img {
  transition: transform 600ms var(--ease-material);
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

/* Testimonial card enhancement */
.testimonial-card.active {
  box-shadow: 0 25px 50px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* FAQ hover */
.faq-question:hover {
  background: rgba(227, 27, 35, 0.05);
}

/* Form input focus glow */
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.15), var(--glow-orange);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--brand-orange);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 300ms ease;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-orange-intense);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

/* Link underline animation */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-orange);
  transition: width 300ms ease;
}

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

/* Section reveal animation */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-aos="fade-up"].aos-animate {
  animation: reveal-up 600ms var(--ease-material) forwards;
}

/* Shimmer loading effect */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.brand-logo-item {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 100%);
  background-size: 200% 100%;
}

.brand-logo-item:hover {
  animation: shimmer 1.5s ease infinite;
}

/* Industry chip interaction */
.industry-chip {
  transform: scale(1);
}

.industry-chip:hover {
  transform: scale(1.05);
}

/* Cursor glow effect on cards - using ::after to not conflict */
.project-card .glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(227, 27, 35, 0.06),
    transparent 40%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: 1;
}

.project-card:hover .glow-effect {
  opacity: 1;
}

/* Navbar smooth transition */
#navbar {
  transition: transform 300ms ease, box-shadow 300ms ease;
}

/* ===== TRUSTED BY - NANO BANNER PRO WITH IMAGES ===== */
.trusted-nano-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(15, 15, 20, 1) 0%, rgba(18, 18, 24, 1) 100%);
}

.trusted-nano-header {
  text-align: center;
  margin-bottom: 40px;
}

.trusted-nano-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  margin-bottom: 40px;
}

.nano-stat-item {
  text-align: center;
}

.nano-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-orange);
  line-height: 1;
}

.nano-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Nano Industry Banner Stack */
.nano-industry-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.nano-industry-banner {
  display: grid;
  grid-template-columns: 48px 100px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: rgba(30, 30, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.nano-industry-banner:hover {
  background: rgba(40, 40, 48, 0.8);
  border-color: rgba(227, 27, 35, 0.2);
  transform: translateX(4px);
}

.nano-industry-banner.nano-featured {
  background: linear-gradient(135deg, rgba(227, 27, 35, 0.12) 0%, rgba(30, 30, 35, 0.8) 100%);
  border-color: rgba(227, 27, 35, 0.3);
}

.nano-industry-num {
  font-size: 24px;
  font-weight: 800;
  color: rgba(227, 27, 35, 0.3);
  font-family: var(--font-mono, monospace);
}

.nano-featured .nano-industry-num {
  color: var(--brand-orange);
}

.nano-industry-image {
  width: 100px;
  height: 66px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nano-industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nano-industry-banner:hover .nano-industry-image img {
  transform: scale(1.05);
}

.nano-industry-content {
  flex: 1;
}

.nano-industry-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.nano-industry-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.nano-industry-stat {
  text-align: right;
  min-width: 80px;
}

.nano-industry-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-orange);
  line-height: 1;
}

.nano-industry-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* More Industries Row */
.nano-more-industries {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.nano-more-label {
  color: rgba(255, 255, 255, 0.4);
}

.nano-more-item {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.nano-more-divider {
  color: rgba(255, 255, 255, 0.2);
}

/* Responsive - Nano Industry */
@media (max-width: 768px) {
  .trusted-nano-section {
    padding: 60px 0;
  }

  .trusted-nano-stats {
    flex-wrap: wrap;
    gap: 24px;
    padding: 20px;
  }

  .nano-stat-item {
    flex: 1 1 40%;
  }

  .nano-industry-banner {
    grid-template-columns: 36px 70px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
    padding: 16px 20px;
  }

  .nano-industry-num {
    font-size: 18px;
  }

  .nano-industry-image {
    width: 70px;
    height: 50px;
    grid-row: span 2;
  }

  .nano-industry-content {
    grid-column: 3;
  }

  .nano-industry-stat {
    grid-column: 3;
    text-align: left;
  }

  .nano-industry-value {
    font-size: 18px;
    display: inline;
  }

  .nano-industry-label {
    display: inline;
    margin-left: 4px;
  }

  .nano-more-industries {
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 13px;
  }
}

/* Legacy - keeping for reference */
.trusted-showcase {
  display: none;
}

.trusted-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(227, 27, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.trusted-header {
  text-align: center;
  margin-bottom: 48px;
}

.trusted-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(227, 27, 35, 0.1);
  border: 1px solid rgba(227, 27, 35, 0.2);
  border-radius: 100px;
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.trusted-badge svg {
  stroke: var(--brand-orange);
}

.trusted-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.trusted-subtext {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

/* Stats Row */
.trusted-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 32px 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.trusted-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trusted-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Industry Cards Grid */
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.industry-card {
  position: relative;
  padding: 28px 24px;
  background: rgba(30, 30, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 27, 35, 0.3);
  background: rgba(40, 40, 48, 0.8);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card.industry-featured {
  background: linear-gradient(135deg, rgba(227, 27, 35, 0.12) 0%, rgba(30, 30, 35, 0.8) 100%);
  border-color: rgba(227, 27, 35, 0.3);
}

.industry-card.industry-featured::before {
  opacity: 1;
}

.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: rgba(227, 27, 35, 0.1);
  border: 1px solid rgba(227, 27, 35, 0.2);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.industry-icon svg {
  stroke: var(--brand-orange);
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
  background: rgba(227, 27, 35, 0.2);
  transform: scale(1.05);
}

.industry-card:hover .industry-icon svg {
  transform: scale(1.1);
}

.industry-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.industry-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.industry-count {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(227, 27, 35, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-orange);
}

/* Trust Badges */
.trusted-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #22c55e;
  transition: all 0.3s ease;
}

.trust-badge-item:hover {
  background: rgba(34, 197, 94, 0.15);
  transform: translateY(-2px);
}

.trust-badge-item svg {
  stroke: #22c55e;
  flex-shrink: 0;
}

/* Responsive - Trusted Section */
@media (max-width: 1024px) {
  .trusted-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trusted-showcase {
    padding: 60px 0;
  }

  .trusted-stats-row {
    gap: 24px;
    padding: 24px;
  }

  .trusted-divider {
    display: none;
  }

  .stat-number {
    font-size: 24px;
  }

  .trusted-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .industry-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 0 16px;
    text-align: left;
    padding: 20px;
  }

  .industry-icon {
    grid-row: span 2;
    width: 50px;
    height: 50px;
    margin: 0;
  }

  .industry-name {
    align-self: end;
    margin-bottom: 2px;
  }

  .industry-desc {
    grid-column: 2;
    align-self: start;
    margin-bottom: 0;
  }

  .industry-count {
    grid-row: span 2;
    align-self: center;
    padding: 6px 10px;
    font-size: 11px;
  }

  .trusted-badges {
    gap: 10px;
  }

  .trust-badge-item {
    padding: 10px 14px;
    font-size: 12px;
  }
}

/* ============================================
   Industries Section (Simplified)
   ============================================ */
.industries-section {
  padding: 80px 0;
  background: var(--site-charcoal);
}

.industries-header {
  text-align: center;
  margin-bottom: 48px;
}

.industries-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.industries-subtext {
  font-size: 17px;
  color: var(--gray-400);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.industry-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand-orange);
  transform: translateY(-2px);
}

.industry-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.industry-desc {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.industry-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-orange);
}

.industries-more {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .industry-card {
    padding: 20px 16px;
  }
}

@media (max-width: 500px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Credentials Section (Simplified)
   ============================================ */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.credential-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.credential-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(227, 27, 35, 0.3);
}

.credential-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.credential-desc {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.5;
  margin-bottom: 20px;
}

.credential-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.credential-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-orange);
}

.credential-label {
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .credentials-grid {
    grid-template-columns: 1fr;
  }
  
  .credential-card {
    padding: 24px 20px;
  }
}

/* ============================================
   SQUARESPACE STYLE OVERRIDES
   Boxy, clean, geometric aesthetic
   ============================================ */

/* Squarespace-style buttons - boxy, no rounded corners */
.btn-primary,
.btn-outline,
.btn-large {
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 13px;
  padding: 16px 32px;
}

.btn-primary {
  background: var(--brand-orange);
  border: 2px solid var(--brand-orange);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
}

/* Squarespace-style cards - sharp edges */
.bento-card,
.project-card,
.industry-card,
.credential-card,
.testimonial-card,
.faq-item,
.calculator-card,
.contact-form-wrapper {
  border-radius: 0 !important;
}

/* Squarespace-style inputs */
.form-input,
select,
input,
textarea {
  border-radius: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 16px;
  font-size: 15px;
}

.form-input:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: var(--brand-orange);
  outline: none;
}

/* Squarespace section styling - more defined blocks */
section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Squarespace-style section headers */
.section-title,
.nano-headline,
.industries-headline {
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}

.section-label,
.overline,
.nano-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--brand-orange);
  margin-bottom: 16px;
  display: block;
}

/* Squarespace grid - clean, equal spacing */
.industries-grid {
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.industry-card {
  background: var(--site-charcoal);
  border: none !important;
  padding: 40px 32px;
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: none;
}

/* Squarespace credentials grid */
.credentials-grid {
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.credential-card {
  background: var(--site-dark);
  border: none !important;
}

.credential-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Squarespace-style navbar */
.navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

/* Squarespace-style hero */
.hero-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-title {
  font-weight: 300;
  letter-spacing: -0.01em;
}

/* Squarespace project cards */
.project-card {
  overflow: hidden;
}

.project-image {
  border-radius: 0 !important;
}

.project-tag {
  border-radius: 0 !important;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
}

/* Squarespace FAQ */
.faq-question {
  border-radius: 0 !important;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.faq-item {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Squarespace testimonials */
.testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px;
}

.author-avatar {
  border-radius: 0 !important;
  width: 48px;
  height: 48px;
}

/* Squarespace footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Squarespace trust badges */
.nano-trust-item,
.badge-item {
  border-radius: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Squarespace scrolling text - borders only */
.scrolling-text-block {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Squarespace brand logos */
.brand-logo-item {
  border-radius: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Squarespace stats */
.stat-big,
.credential-value,
.nano-stat-value {
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* Squarespace back to top */
.back-to-top {
  border-radius: 0 !important;
}

/* Remove all remaining border-radius */
img {
  border-radius: 0 !important;
}

.map-placeholder,
.map-radius,
.map-pin {
  border-radius: 0 !important;
}

/* ============================================
   ENHANCED ANIMATIONS & INTERACTIONS
   ============================================ */

/* Smooth hover transitions on all interactive elements */
a, button, .industry-card, .credential-card, .project-card, .bento-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card hover lift effect */
.project-card:hover,
.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Image zoom on hover */
.project-image img,
.hero-image {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

/* Navbar glass effect */
.navbar {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: #ffffff !important;
}

/* Floating CTA button */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99;
  background: var(--brand-orange);
  color: var(--white);
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(227, 27, 35, 0.4);
  transition: all 0.3s ease;
}

.floating-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(227, 27, 35, 0.5);
}

/* Gradient text enhancement */
.text-gradient {
  background: linear-gradient(135deg, var(--brand-red) 0%, #FF5A5F 50%, var(--brand-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced stats counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-number, .credential-value, .industry-count {
  animation: countUp 0.6s ease-out forwards;
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(227, 27, 35, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(227, 27, 35, 0); }
}

.hero-ctas .btn-primary {
  animation: pulse 2s infinite;
}

/* Section reveal animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Underline hover effect for nav links */
.nav-link {
  position: relative;
}

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

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

/* Enhanced form focus states */
.form-input:focus,
input:focus,
textarea:focus,
select:focus {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(227, 27, 35, 0.3);
}

/* Quote calculator enhanced */
.estimate-value {
  font-size: 32px;
  font-weight: 300;
  color: var(--brand-orange);
  letter-spacing: -0.02em;
}

/* Enhanced testimonial styling */
.stars {
  color: var(--brand-orange);
  letter-spacing: 4px;
  font-size: 18px;
}

/* Contact icons subtle glow */
.contact-icon {
  background: rgba(227, 27, 35, 0.1);
  border: 1px solid rgba(227, 27, 35, 0.2);
  padding: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: rgba(227, 27, 35, 0.2);
  box-shadow: 0 0 20px rgba(227, 27, 35, 0.2);
}

/* Enhanced footer */
.footer {
  background: #0f0f0f;
}

.footer-logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

/* Scroll indicator animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.scroll-indicator {
  animation: bounce 2s infinite;
}

/* Loading skeleton for images */
.project-image,
.hero-image-container {
  background: linear-gradient(90deg, #2a2a2a 0%, #3a3a3a 50%, #2a2a2a 100%);
  background-size: 200% 100%;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--site-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-600);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-orange);
}

/* Selection color */
::selection {
  background: var(--brand-orange);
  color: var(--white);
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--site-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin: 0 auto;
  border-radius: 2px;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-blue));
  animation: loadProgress 1.5s ease forwards;
}

@keyframes loadProgress {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-blue));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ============================================
   STAGGERED GRID ANIMATIONS
   ============================================ */
.industries-grid .industry-card {
  opacity: 0;
  transform: translateY(30px);
  animation: staggerFadeIn 0.6s ease forwards;
}

.industries-grid .industry-card:nth-child(1) { animation-delay: 0.1s; }
.industries-grid .industry-card:nth-child(2) { animation-delay: 0.2s; }
.industries-grid .industry-card:nth-child(3) { animation-delay: 0.3s; }
.industries-grid .industry-card:nth-child(4) { animation-delay: 0.4s; }
.industries-grid .industry-card:nth-child(5) { animation-delay: 0.5s; }
.industries-grid .industry-card:nth-child(6) { animation-delay: 0.6s; }

.credentials-grid .credential-card {
  opacity: 0;
  transform: translateY(30px);
  animation: staggerFadeIn 0.6s ease forwards;
}

.credentials-grid .credential-card:nth-child(1) { animation-delay: 0.15s; }
.credentials-grid .credential-card:nth-child(2) { animation-delay: 0.25s; }
.credentials-grid .credential-card:nth-child(3) { animation-delay: 0.35s; }
.credentials-grid .credential-card:nth-child(4) { animation-delay: 0.45s; }

.projects-grid .project-card {
  opacity: 0;
  transform: translateY(30px);
  animation: staggerFadeIn 0.6s ease forwards;
}

.projects-grid .project-card:nth-child(1) { animation-delay: 0.1s; }
.projects-grid .project-card:nth-child(2) { animation-delay: 0.2s; }
.projects-grid .project-card:nth-child(3) { animation-delay: 0.3s; }
.projects-grid .project-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes staggerFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   ANIMATED COUNTERS
   ============================================ */
.counter {
  display: inline-block;
}

/* ============================================
   TEXT REVEAL ANIMATIONS
   ============================================ */
.hero-title {
  overflow: hidden;
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: textReveal 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   ENHANCED MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 768px) {
  /* Hero section mobile */
  .hero-section {
    min-height: 90vh;
    padding-top: 100px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Floating CTA mobile position */
  .floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 14px 24px;
    font-size: 12px;
  }

  /* Section headers mobile */
  .section-title {
    font-size: 28px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Services bento mobile */
  .services-bento {
    gap: 12px;
  }

  .bento-card {
    padding: 24px;
  }

  .bento-featured {
    min-height: 350px;
  }

  .bento-title-lg {
    font-size: 24px;
  }

  /* Quote calculator mobile */
  .quote-wrapper {
    gap: 32px;
  }

  .calculator-card {
    padding: 24px;
  }

  .estimate-value {
    font-size: 24px;
  }

  /* Stats grid mobile */
  .stats-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 32px;
  }

  /* Testimonials mobile */
  .testimonial-card {
    padding: 24px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  /* Contact section mobile */
  .contact-grid {
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 0;
  }

  /* Footer mobile */
  .footer-grid {
    gap: 32px;
  }

  .footer-bottom {
    text-align: center;
  }

  /* Hide scroll indicator on mobile */
  .scroll-indicator {
    display: none;
  }

  /* Scrolling text slower on mobile */
  .scrolling-text-track {
    animation-duration: 20s;
  }

  /* Navbar mobile enhancements */
  .navbar {
    padding: 16px 0;
  }

  .navbar-logo {
    font-size: 18px;
  }

  .mobile-menu {
    padding: 20px;
    gap: 16px;
  }

  .mobile-link {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* FAQ mobile */
  .faq-question span {
    font-size: 16px;
  }

  /* Map placeholder mobile */
  .map-placeholder {
    height: 250px;
  }

  /* Back to top button mobile */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 6px 12px;
  }

  .btn-primary,
  .btn-outline {
    padding: 14px 20px;
    font-size: 12px;
  }

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

  .stat-number {
    font-size: 36px;
  }

  /* About image full width */
  .about-image {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }

  .about-image img {
    border-radius: 0 !important;
  }

  /* Services cards stacked */
  .bento-stat-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-big {
    font-size: 28px;
  }

  /* Contact details compact */
  .contact-item {
    gap: 12px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
  }

  /* Footer compact */
  .footer-badges {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================
   SMOOTH REVEAL ON SCROLL (CSS Only Fallback)
   ============================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ENHANCED HOVER STATES
   ============================================ */
/* Service cards glow effect */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(227, 27, 35, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.bento-card:hover::before {
  opacity: 1;
}

/* Project cards enhanced */
.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(227, 27, 35, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.project-card:hover::after {
  opacity: 1;
}

/* FAQ enhanced hover */
.faq-question:hover {
  background: rgba(227, 27, 35, 0.03);
  padding-left: 16px;
}

.faq-question {
  transition: all 0.3s ease;
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */
/* Focus states */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-loader {
    display: none;
  }
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--brand-orange);
  color: var(--white);
  padding: 12px 20px;
  z-index: 10001;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ============================================
   ENHANCED INDUSTRIES SECTION
   ============================================ */
.industries-section .section-label {
  display: inline-block;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

/* Squarespace-style stat cards - minimal grid */
.industries-section .industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.industries-section .industry-card {
  padding: 56px 32px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.industries-section .industry-card:nth-child(3n) {
  border-right: none;
}

.industries-section .industry-card:nth-child(n+4) {
  border-bottom: none;
}

.industries-section .industry-card:hover {
  background: rgba(227, 27, 35, 0.03);
}

.industries-section .industry-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin: 16px 0 8px;
}

.industries-section .industry-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.5;
}

.industry-stats {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.industry-number {
  font-size: 42px;
  font-weight: 600;
  color: var(--brand-red);
  line-height: 1;
}

.industry-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .industries-section .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-section .industry-card:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .industries-section .industry-card:nth-child(2n) {
    border-right: none;
  }
  .industries-section .industry-card:nth-child(n+5) {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .industries-section .industries-grid {
    grid-template-columns: 1fr;
  }
  .industries-section .industry-card {
    border-right: none !important;
    padding: 40px 24px;
  }
  .industries-section .industry-card:last-child {
    border-bottom: none;
  }
}

.industries-more {
  text-align: center;
  margin-top: 48px;
}

.more-label {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.more-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.more-tag {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-300);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.more-tag:hover {
  background: rgba(227, 27, 35, 0.1);
  border-color: var(--brand-red);
  color: var(--white);
}

@media (max-width: 768px) {
  .industries-section .industry-card {
    padding: 24px 20px;
  }

  .industry-number {
    font-size: 28px;
  }

  .more-tags {
    gap: 8px;
  }

  .more-tag {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  .floating-cta,
  .back-to-top,
  .scroll-indicator,
  .page-loader,
  .scroll-progress {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero-section {
    min-height: auto;
    padding: 40px 0;
  }

  section {
    page-break-inside: avoid;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* License verification badges */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0a5c36 0%, #0d7a47 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.trust-badge svg {
  width: 14px;
  height: 14px;
}
