/* =========================================
   UTC Fire & Safety — Global Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,700&display=swap');

/* ----- CSS Variables ----- */
:root {
  /* Core Colors */
  --fire-red:      #FF2A00;
  --fire-orange:   #FF4D00;
  --fire-yellow:   #FF9500;
  
  /* Premium Dark Theme */
  --dark-bg:       #08080A; /* Near pitch black */
  --dark-bg-alt:   #111116; /* Slightly lighter black for contrast */
  --dark-card:     #17171E;
  --dark-border:   rgba(255, 255, 255, 0.08);
  --dark-hover:    rgba(255, 255, 255, 0.04);
  
  /* Typography Colors */
  --text-primary:  #FFFFFF;
  --text-secondary:#A1A1AE;
  --text-muted:    #656575;
  --white:         #FFFFFF;
  
  /* Gradients & Glows */
  --gradient-fire: linear-gradient(135deg, #FF2A00, #FF4D00, #FF9500);
  --gradient-dark: linear-gradient(135deg, #08080A, #111116);
  --glow-red:      0 0 40px rgba(255, 42, 0, 0.3);
  --glow-orange:   0 0 40px rgba(255, 77, 0, 0.25);
  
  /* Borders & Radius */
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  
  /* Spacing & Transitions */
  --transition:    all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card:   0 20px 40px rgba(0,0,0,0.6);
  --nav-height:    80px;

  /* Glassmorphism */
  --glass-bg:      rgba(20, 20, 25, 0.65);
  --glass-border:  1px solid rgba(255, 255, 255, 0.08);
  --glass-blur:    blur(16px);
}

/* ----- Reset & Base ----- */

/* ----- Ember Canvas ----- */
#emberCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  #emberCanvas {
    display: none;
  }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  font-weight: 800; /* Bolder by default */
  letter-spacing: -0.02em;
}

/* Glassmorphism Utility */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ----- Utility ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,60,47,0.12);
  border: 1px solid rgba(230,60,47,0.3);
  color: var(--fire-orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-title span {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-fire);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(230,60,47,0.4);
  animation: buttonGlowPulse 2s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230,60,47,0.5);
  animation: none;
}

.btn-primary:active {
  transform: translateY(0);
}

@keyframes buttonGlowPulse {
  0% {
    box-shadow: 0 4px 20px rgba(230,60,47,0.4), 0 0 0 0 rgba(255, 69, 0, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(230,60,47,0.4), 0 0 0 12px rgba(255, 69, 0, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(230,60,47,0.4), 0 0 0 0 rgba(255, 69, 0, 0.4);
  }
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--dark-border);
}

.btn-outline:hover {
  border-color: var(--fire-orange);
  color: var(--fire-orange);
  transform: translateY(-2px);
}

/* ----- Top Bar ----- */
.top-bar {
  background: linear-gradient(135deg, #ff4500 0%, #ff6a00 100%);
  color: white;
  text-align: center;
  padding: 8px 40px;
  font-size: 0.82rem;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-family: 'Inter', sans-serif;
}

.top-bar a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.top-bar a:hover {
  opacity: 0.85;
}

.top-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    gap: 4px;
    padding: 8px 20px;
    font-size: 0.78rem;
  }
}

/* ----- Navigation ----- */
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a0a0a;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu,
.nav-links,
nav ul {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Navbar Link Styles - Consistent on all pages */
nav a,
.nav-links a,
.nav-menu a,
nav ul li a,
.nav-item .nav-link {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
  color: #ffffff !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: all 0.2s ease;
}

nav a:hover,
.nav-links a:hover,
.nav-menu a:hover,
nav ul li a:hover,
.nav-item .nav-link:hover {
  color: #ff4500 !important;
}

/* Active page pill */
nav a.active,
.nav-links a.active,
.nav-menu a.active {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600 !important;
}

/* Navbar height - fixed on all pages */
.navbar, nav {
  height: 70px !important;
  min-height: 70px !important;
  max-height: 70px !important;
}

.nav-cta {
  margin-left: auto;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 8px;
}

.nav-logo .logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo .logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.nav-logo .logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Footer logo image */
.footer-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 12px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.dropdown-link:hover {
  background: rgba(230,60,47,0.1);
  color: var(--fire-orange);
}

.dropdown-link .dd-icon {
  font-size: 1rem;
  width: 24px;
  text-align: center;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

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

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 80px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark-bg);
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: grayscale(80%) contrast(120%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(8,8,10,0.95) 0%,
    rgba(8,8,10,0.85) 40%,
    rgba(8,8,10,0.1) 100%
  );
}

.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,42,0,0.15) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,149,0,0.1) 0%, transparent 70%);
  bottom: -100px; left: 10%;
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

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

/* ----- Hero 3-Column Grid Layout ----- */
.hero-grid {
  display: grid;
  grid-template-columns: max-content 240px minmax(280px, 1fr);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - var(--nav-height) - 160px);
  padding: 40px 0;
}

.hero-col-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 520px;
}

.hero-col-featured {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-left: auto;
}

.hero-col-cards {
  position: relative;
  height: 100%;
  min-height: 600px;
  background-image: url('assets/fire-equipment.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15% 20px;
  margin-left: 20px;
}

.hero-col-cards::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.85) 100%
  );
  z-index: 1;
}

.hero-col-cards > .hero-card {
  position: relative;
  z-index: 2;
}

/* Stats Row (horizontal layout) */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 16px;
}

.stat-item-inline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number-inline {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ff4500;
  line-height: 1;
}

.stat-label-inline {
  font-size: 0.72rem;
  color: #888888;
  white-space: nowrap;
}

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

/* Featured Wrapper (centered vertically) */
.featured-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Responsive Hero */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 50% 20% 30%;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  
  .hero-col-featured {
    display: none;
  }
  
  .hero-col-cards {
    display: none;
  }
  
  .hero-stats-row {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--nav-height) + 20px);
    min-height: auto;
  }
  
  .hero-grid {
    padding: 40px 0;
  }
  
  .hero-stats-row {
    gap: 16px;
  }
  
  .stat-number-inline {
    font-size: 1.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,42,0,0.1);
  border: 1px solid rgba(255,42,0,0.25);
  color: var(--fire-orange);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease both;
}

.flame-icon {
  display: inline-block;
  animation: flamePulse 1.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.6));
}

@keyframes flamePulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 6px rgba(255, 69, 0, 0.4));
  }
  100% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px rgba(255, 107, 0, 0.8));
  }
}

@media (prefers-reduced-motion: reduce) {
  .flame-icon {
    animation: none;
    filter: none;
  }
}

/* ----- Editorial Headline ----- */
.hero-editorial {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.15;
  color: #cccccc;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s 0.1s ease both;
}

.editorial-orange {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: #ff4500;
  letter-spacing: -2px;
  -webkit-text-stroke: 0;
}

/* ----- AI Chat Input Bar ----- */
.ai-chat-bar {
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 18px 24px;
  max-width: 520px;
  margin-bottom: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s 0.2s ease both;
}

.ai-chat-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ai-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.6));
  animation: aiIconPulse 2s ease-in-out infinite;
}

@keyframes aiIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.ai-text-wrapper {
  display: flex;
  align-items: center;
  min-height: 24px;
}

.ai-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #cccccc;
  font-style: italic;
  line-height: 1.5;
}

.ai-cursor {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #ff4500;
  font-weight: 300;
  animation: cursorBlink 0.8s ease-in-out infinite;
  margin-left: 2px;
}

@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ai-icon {
    animation: none;
  }
  .ai-cursor {
    animation: none;
    opacity: 1;
  }
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s 0.1s ease both;
  color: var(--white);
}

.hero-title .gradient-text {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.8;
  font-weight: 400;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: fadeInUp 0.8s 0.4s ease both;
}

/* ----- Featured Product Card ----- */
.featured-product-card {
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 69, 0, 0.3);
  border-radius: 14px;
  overflow: hidden;
  width: 240px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: featuredFloat 3s ease-in-out infinite, featuredGlow 2s ease-in-out infinite;
}

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

@keyframes featuredGlow {
  0%, 100% { 
    border-color: rgba(255, 69, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  }
  50% { 
    border-color: rgba(255, 69, 0, 0.5);
    box-shadow: 0 8px 32px rgba(255, 69, 0, 0.2), 0 0 20px rgba(255, 69, 0, 0.1);
  }
}

.featured-product-image {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #0f0f0f;
  padding: 16px;
  box-sizing: border-box;
}

.featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.featured-product-image img.fading {
  opacity: 0;
}

.featured-image-placeholder {
  display: none;
  width: 100%;
  height: 200px;
  background: #0f0f0f;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.featured-body {
  padding: 16px;
}

.featured-badge {
  font-size: 0.7rem;
  color: #ff4500;
  font-weight: 600;
  margin-bottom: 10px;
}

.featured-product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  transition: opacity 0.3s ease;
  min-height: auto;
}

.featured-product-name.fading {
  opacity: 0;
}

.featured-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.stars {
  color: #ff4500;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.72rem;
  color: #888888;
}

.featured-btn {
  display: block;
  width: 100%;
  background: #ff4500;
  color: #ffffff;
  text-align: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-btn:hover {
  background: #ff5722;
  transform: translateY(-1px);
}

/* Trust Badges */
.trust-badge {
  background: rgba(255, 69, 0, 0.08);
  border: 1px solid rgba(255, 69, 0, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.72rem;
  color: #ff8c00;
  font-weight: 500;
  white-space: nowrap;
  animation: trustBadgeFloat 3s ease-in-out infinite;
}

.trust-badge-top {
  animation-delay: 0.5s;
}

.trust-badge-bottom {
  animation-delay: 1s;
}

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

@media (prefers-reduced-motion: reduce) {
  .featured-product-card {
    animation: none;
  }
  .trust-badge {
    animation: none;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff4500;
  line-height: 1;
  background: none;
  -webkit-text-fill-color: #ff4500;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ----- Pain Points Section ----- */
.pain-points-section {
  padding: 100px 0;
  position: relative;
  background: var(--dark-bg);
}

.pain-points-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.pain-point-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 4px solid #ff4500;
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(20px);
}

.pain-point-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pain-point-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 69, 0, 0.3);
  box-shadow: 0 8px 32px rgba(255, 69, 0, 0.15);
}

.pain-point-icon {
  font-size: 32px;
  flex-shrink: 0;
  filter: hue-rotate(-10deg) saturate(1.2);
}

.pain-point-content {
  flex: 1;
}

.pain-point-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.pain-point-desc {
  font-size: 0.88rem;
  color: #aaaaaa;
  line-height: 1.6;
}

.pain-points-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pain-points-cta-text {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .pain-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pain-points-section {
    padding: 80px 0;
  }
  
  .pain-points-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pain-point-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .pain-points-section {
    padding: 64px 0;
  }
  
  .pain-point-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }
  
  .pain-point-icon {
    font-size: 28px;
  }
}

/* Floating cards (in hero grid column) */
.hero-card {
  position: relative;
  z-index: 2;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  box-shadow: var(--shadow-card);
  width: fit-content;
  margin-left: auto;
}

.hero-card-1 { animation-delay: 0s; }
.hero-card-2 { 
  animation-delay: 1.5s;
  margin-top: auto;
  margin-left: auto;
  margin-bottom: 60px;
}

.hero-card .card-icon {
  width: 44px; height: 44px;
  background: var(--gradient-fire);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-card .card-info .card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.hero-card .card-info .card-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

/* ----- Stats Bar (Removed - integrated into Hero) ----- */
.stats-bar {
  display: none;
}

/* ----- Bento Box Categories Grid ----- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: 24px;
  margin-top: 56px;
}

.cat-card {
  background: var(--dark-card);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Bento card sizing */
.cat-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.cat-card.medium {
  grid-column: span 2;
  grid-row: span 1;
}

.cat-card.tall {
  grid-row: span 2;
}

.cat-card:hover {
  border-color: rgba(230,60,47,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-red);
}

.cat-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.cat-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-img-wrap img { transform: scale(1.07); }

.cat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,20,0.9));
}

.cat-img-icon {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: var(--gradient-fire);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--glow-red);
}

.cat-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cat-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--white);
}

.cat-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fire-orange);
  transition: gap var(--transition);
}
.cat-card:hover .cat-link { gap: 10px; }

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

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-img-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(230,60,47,0.15);
  pointer-events: none;
}

.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gradient-fire);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(230,60,47,0.5);
}
.about-badge-float .big-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.about-badge-float .small-txt {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.values-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color var(--transition);
}
.value-item:hover { border-color: rgba(230,60,47,0.3); }

.value-icon {
  width: 32px; height: 32px;
  background: rgba(230,60,47,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--fire-orange);
}

.value-txt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-top: 2px;
  line-height: 1.5;
}

/* ----- Clients Logo Section ----- */
.clients-section { background: var(--dark-card); border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); }

.clients-logo-section {
  padding: 40px 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(20,20,20,1) 100%);
}

.logo-marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.logo-marquee-wrapper:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: logoMarquee 40s linear infinite;
}

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

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff10;
  border-radius: 10px;
  padding: 12px 20px;
  margin: 0 10px;
  min-width: 120px;
  height: 60px;
  flex-shrink: 0;
  border: 1px solid #2a2a2a;
  transition: all 0.3s ease;
}

.logo-item:hover {
  border-color: rgba(255, 69, 0, 0.3);
  background: #ffffff15;
  transform: translateY(-2px);
}

.logo-item img {
  max-height: 44px;
  max-width: 120px;
  min-height: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  display: block;
}

.logo-item span {
  color: #aaaaaa;
  font-size: 0.75rem;
  text-align: center;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation: none;
    overflow-x: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .logo-item {
    margin: 8px;
  }
}

/* ----- CTA Section ----- */
.cta-section {
  background: linear-gradient(145deg, #111111 0%, #0d0d0d 100%);
  border: 1px solid rgba(255, 69, 0, 0.15);
  border-radius: 20px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  margin: 60px 0;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 69, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-icon-wrapper {
  margin-bottom: 24px;
}

.cta-flame {
  display: inline-block;
  font-size: 52px;
  animation: ctaFlamePulse 1.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 16px rgba(255, 69, 0, 0.7));
}

@keyframes ctaFlamePulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 12px rgba(255, 69, 0, 0.5));
  }
  100% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 24px rgba(255, 107, 0, 0.9));
  }
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-highlight {
  background: linear-gradient(135deg, #ff4500 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-desc {
  font-size: 1.1rem;
  color: #aaaaaa;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: #ff4500 !important;
  color: #ffffff !important;
  padding: 14px 32px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(255, 69, 0, 0.4);
  animation: ctaGlowPulse 2s ease-in-out infinite;
}

.cta-btn-primary:hover {
  background: #ff5722 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 69, 0, 0.5);
  animation: none;
}

@keyframes ctaGlowPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.4), 0 0 0 0 rgba(255, 69, 0, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.4), 0 0 0 10px rgba(255, 69, 0, 0);
  }
}

.cta-btn-secondary {
  background: #1a1a1a !important;
  color: #ffffff !important;
  padding: 14px 32px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  border: 1px solid #333333 !important;
}

.cta-btn-secondary:hover {
  background: #222222 !important;
  border-color: #ff4500 !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 24px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-flame {
    animation: none;
  }
  .cta-btn-primary {
    animation: none;
  }
}

/* ----- Client Logo Strip ----- */
.client-logo-strip {
  background: #0a0a0a;
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}

.client-logo-strip::before,
.client-logo-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.client-logo-strip::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.client-logo-strip::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}

.logo-strip-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.logo-marquee {
  overflow: hidden;
  padding: 8px 0;
}

.logo-marquee:hover .logo-track,
.logo-marquee:hover .logo-track-reverse {
  animation-play-state: paused;
}

.logo-track {
  display: flex;
  gap: 0;
  animation: logoScrollLeft 35s linear infinite;
  width: max-content;
}

.logo-track-reverse {
  display: flex;
  gap: 0;
  animation: logoScrollRight 40s linear infinite;
  width: max-content;
}

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

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

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff10;
  padding: 12px 24px;
  border-radius: 10px;
  margin: 0 12px;
  min-width: 140px;
  height: 56px;
  border: 1px solid #2a2a2a;
  transition: all 0.3s ease;
}

.logo-item:hover {
  background: #ffffff15;
  transform: translateY(-2px);
}

.logo-item img {
  max-height: 44px;
  max-width: 120px;
  min-height: 24px;
  object-fit: contain;
  filter: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.logo-item:hover img {
  opacity: 1;
}

.logo-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.logo-item:hover .logo-text {
  opacity: 1;
}

@media (max-width: 768px) {
  .logo-item {
    min-width: 120px;
    padding: 10px 18px;
  }
  
  .logo-text {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track,
  .logo-track-reverse {
    animation: none;
    overflow-x: auto;
  }
}

/* ----- Testimonials Section ----- */
.testimonials-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(230,60,47,0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.testimonial-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(255,69,0,0.08);
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: #ff4500;
  box-shadow: 0 8px 32px rgba(255,69,0,0.2), 0 0 20px rgba(255,69,0,0.1);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars span {
  color: #ff6b00;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4500, #ff6b00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  flex-shrink: 0;
}

.author-avatar-green {
  background: linear-gradient(135deg, #2d7a2d, #4caf50) !important;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.author-company {
  font-size: 0.82rem;
  color: #ff6b00;
}

.author-logo {
  margin-left: auto;
  flex-shrink: 0;
}

.author-logo img,
.author-logo .company-logo {
  max-height: 28px;
  max-width: 80px;
  object-fit: contain;
  filter: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover .author-logo img,
.testimonial-card:hover .author-logo .company-logo {
  opacity: 1;
}

.logo-fallback {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ff6b00;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
  }
  
  .testimonial-card {
    min-width: 300px;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 64px 0;
  }
  
  .testimonial-card {
    padding: 24px;
  }
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ----- Page Hero ----- */
.page-hero {
  padding: calc(var(--nav-height) + 72px) 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(230,60,47,0.1) 0%, transparent 60%);
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--fire-orange); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--fire-red); }

/* ----- Product Detail Page ----- */
.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.product-intro-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.product-intro-img img {
  width: 100%; height: 360px;
  object-fit: cover;
}

/* ===== UNIFIED PRODUCT GRID SYSTEM ===== */

/* Both sections use consistent grid layout */
.items-grid,
.product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin-top: 40px !important;
  width: 100% !important;
}

/* Unified card styling for both sections */
.item-card,
.product-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 320px !important;
  width: 100% !important;
}

/* Card image section - consistent height */
.item-card .item-icon,
.product-card .product-image {
  height: 180px !important;
  width: 100% !important;
  background: linear-gradient(135deg, #1a1a1a, #2a1500) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 3rem !important;
}

/* Card content section - fills remaining space */
.item-card > *:not(.item-icon),
.product-card > div:not(.product-image) {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* Text content alignment */
.item-card h3,
.product-card h3 {
  margin: 0 0 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.item-card p,
.product-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 auto 0;
  flex-grow: 1;
}

/* Button placement - always at bottom */
.item-card .btn,
.product-card .btn {
  margin-top: 12px;
  width: 100%;
  text-align: center;
}

/* Hover effects for both */
.item-card:hover,
.product-card:hover {
  border-color: rgba(255, 100, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230, 60, 47, 0.2);
}

/* ===== RESPONSIVE GRID ADJUSTMENTS ===== */

@media (max-width: 1024px) {
  .items-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .items-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .item-card,
  .product-card {
    min-height: 280px !important;
  }

  .item-card .item-icon,
  .product-card .product-image {
    height: 160px !important;
  }

  .item-card h3,
  .product-card h3 {
    font-size: 0.95rem;
  }

  .item-card p,
  .product-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .items-grid,
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .item-card,
  .product-card {
    min-height: 240px !important;
  }

  .item-card .item-icon,
  .product-card .product-image {
    height: 140px !important;
  }

  .item-card > *:not(.item-icon),
  .product-card > div:not(.product-image) {
    padding: 16px;
  }
}

/* ----- About Page ----- */
.team-section { }

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

.mission-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.mission-card:hover {
  border-color: rgba(230,60,47,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.mission-card .m-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.mission-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.mission-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ----- Clients Page ----- */
.clients-category {
  margin-bottom: 64px;
}

.clients-category-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fire-orange);
}

.clients-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--dark-border);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.client-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
}

.client-card:hover {
  border-color: rgba(230,60,47,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.client-icon { font-size: 1.8rem; margin-bottom: 10px; }

.client-card .client-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ----- Contact ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  width: 44px; height: 44px;
  background: rgba(230,60,47,0.1);
  border: 1px solid rgba(230,60,47,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--fire-orange);
}

.info-item .info-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.info-item .info-val {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-form {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.93rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--fire-orange);
  box-shadow: 0 0 0 3px rgba(244,116,43,0.12);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-group select option { background: var(--dark-card); color: var(--white); }

/* ----- Footer ----- */
.footer {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  padding: 72px 0 32px;
}

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

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  width: 36px; height: 36px;
  background: var(--gradient-fire);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.footer-brand h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-contact-item span:first-child { color: var(--fire-orange); }

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.footer-links a:hover { 
  color: var(--fire-orange); 
  transform: translateX(6px);
}

.footer-links a.special-link:hover {
  transform: translateX(6px);
  color: var(--fire-red) !important;
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--fire-orange); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced animations for product cards, testimonials, and headings */
.cat-card,
.testimonial-card,
.pain-point-card,
.item-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.cat-card.reveal.visible,
.testimonial-card.reveal.visible,
.pain-point-card.reveal.visible,
.item-card.reveal.visible {
  opacity: 1;
  animation: none;
}

.section-title,
.section-subtitle,
.section-tag {
  animation: fadeInUp 0.6s ease-out;
}

/* ----- Animations ----- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--glow-red); }
  50%       { box-shadow: 0 0 50px rgba(230,60,47,0.6); }
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-intro { grid-template-columns: 1fr; gap: 40px; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* FIX 1 - Top bar */
  .top-bar {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 16px !important;
    font-size: 0.72rem !important;
    padding: 6px 16px !important;
  }

  /* FIX 2 - Nav menu padding */
  .nav-menu,
  .navbar-menu,
  .nav-links {
    padding: 80px 24px 40px 24px !important;
    width: 80% !important;
    max-width: 300px !important;
    box-sizing: border-box !important;
  }

  .nav-menu a,
  .nav-links a {
    padding: 12px 0 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  /* FIX 3 - Hero headline size */
  .hero h1,
  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    line-height: 1.2 !important;
  }

  /* FIX 4 - Social buttons icon only */
  .social-btn span,
  .social-label,
  .btn-text {
    display: none !important;
  }

  .social-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .social-buttons,
  .floating-social,
  .social-stack {
    right: 10px !important;
    bottom: 90px !important;
    gap: 8px !important;
  }

  /* FIX 5 - Footer */
  footer {
    padding-bottom: 120px !important;
  }

  .footer-grid,
  .footer-columns {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* FIX 6 - Product cards */
  .category-card,
  .product-category-grid {
    grid-template-columns: 1fr !important;
  }

  /* Additional mobile fixes */
  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;
  }

  .nav-menu,
  .navbar-menu,
  .nav-links {
    left: 0 !important;
  }

  .nav-menu li,
  .nav-links li {
    padding-left: 0 !important;
    margin-left: 0 !important;
    list-style: none !important;
  }

  /* Overlay behind menu */
  .nav-overlay,
  .menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
  }

  .nav-overlay.active,
  .menu-overlay.active {
    display: block;
  }

  /* Dropdown inside mobile menu */
  .dropdown-menu,
  .nav-dropdown {
    position: static !important;
    box-shadow: none !important;
    background: rgba(255,100,0,0.05) !important;
    padding-left: 16px !important;
    border-radius: 8px !important;
    margin-top: 4px !important;
  }

  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-card { display: none; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .cta-section { padding: 52px 28px; }
  .footer-bottom { padding-right: 0 !important; text-align: left !important; }
  .mission-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  
  .editorial-line {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  .ai-chat-bar {
    padding: 16px 20px;
  }
  
  .ai-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .top-bar span:last-child {
    display: none !important;
  }

  .social-btn {
    width: 40px !important;
    height: 40px !important;
  }

  .section { padding: 64px 0; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid var(--dark-border); }
  .stat-card:last-child { border-bottom: none; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ----- Social Buttons Container ----- */
.social-buttons-container {
  position: fixed;
  bottom: 20px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

/* ----- WhatsApp Floating Button ----- */
.whatsapp-float {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:active {
  transform: scale(0.98);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: currentColor;
}

.whatsapp-float .whatsapp-text {
  display: inline;
}

/* ----- Facebook Floating Button ----- */
.facebook-float {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}

.facebook-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(24, 119, 242, 0.5), 0 0 20px rgba(24, 119, 242, 0.3);
}

.facebook-float:active {
  transform: scale(0.98);
}

.facebook-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: currentColor;
}

.facebook-float .facebook-text {
  display: inline;
}

/* ----- YouTube Floating Button ----- */
.youtube-float {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}

.youtube-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3);
}

.youtube-float:active {
  transform: scale(0.98);
}

.youtube-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: currentColor;
}

.youtube-float .youtube-text {
  display: inline;
}

/* ----- Instagram Floating Button ----- */
.instagram-float {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}

.instagram-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(220, 39, 67, 0.5), 0 0 20px rgba(220, 39, 67, 0.3);
}

.instagram-float:active {
  transform: scale(0.98);
}

.instagram-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: currentColor;
}

.instagram-float .instagram-text {
  display: inline;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
  transform: scale(0.98);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: currentColor;
}

.whatsapp-float .whatsapp-text {
  display: inline;
}



@media (max-width: 768px) {
  .social-buttons,
  .floating-social,
  .social-stack,
  [class*="social"] {
    position: fixed !important;
    right: 8px !important;
    bottom: 90px !important;
    z-index: 5000 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .social-btn span,
  .social-label,
  .btn-text,
  .social-btn > *:not(svg):not(i):not(img) {
    display: none !important;
  }

  .social-btn,
  .social-button {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .social-buttons-container {
    bottom: 120px !important;
    right: 10px !important;
    gap: 8px;
  }
  
  .whatsapp-float,
  .facebook-float,
  .youtube-float,
  .instagram-float {
    padding: 12px 18px;
    font-size: 0.88rem;
  }
  
  .whatsapp-float svg,
  .facebook-float svg,
  .youtube-float svg,
  .instagram-float svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 360px) {
  .social-buttons-container {
    bottom: 10px;
    right: 10px;
    gap: 6px;
  }
  
  .whatsapp-float .whatsapp-text,
  .facebook-float .facebook-text,
  .youtube-float .youtube-text,
  .instagram-float .instagram-text {
    display: none;
  }
  
  .whatsapp-float,
  .facebook-float,
  .youtube-float,
  .instagram-float {
    padding: 12px;
    border-radius: 50%;
  }
}

/* =========================================
   RESPONSIVE BREAKPOINTS - ALL SCREENS
   ========================================= */

/* Large Desktop (1200px+) - No changes needed */

/* Desktop (1024px) */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .navbar { padding: 0 24px; }
  .nav-menu { gap: 24px; }
  .hero-content-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-intro { grid-template-columns: 1fr; gap: 40px; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-points-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet (768px) */
@media (max-width: 768px) {
  .navbar { padding: 0 16px; }
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  
  .hero { padding: calc(var(--nav-height) + 40px) 16px 60px; min-height: auto; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-editorial { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-actions { flex-direction: column; gap: 16px; }
  .hero-stats-row { flex-wrap: wrap; gap: 16px; }
  .stat-number-inline { font-size: 1.4rem; }
  
  .cat-grid { grid-template-columns: 1fr; gap: 16px; }
  .cat-card.large, .cat-card.medium, .cat-card.tall { grid-column: span 1; grid-row: span 1; }
  .cat-img-wrap { height: 180px; }
  
  .about-badge-float { bottom: -16px; right: -16px; padding: 16px 20px; }
  .about-badge-float .big-num { font-size: 2.2rem; }
  
  .mission-grid { grid-template-columns: 1fr; gap: 16px; }
  .mission-card { padding: 28px 20px; }
  
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-section { padding: 64px 0; }
  
  .pain-points-section { padding: 64px 0; }
  .pain-points-grid { grid-template-columns: 1fr; }
  
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-category { margin-bottom: 48px; }
  
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .contact-grid { gap: 32px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 48px 0 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .cta-section { padding: 48px 20px; margin: 32px 16px; }
  .cta-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .cta-actions { flex-direction: column; }
  .cta-btn-primary, .cta-btn-secondary { width: 100%; max-width: 280px; }
  
  .page-hero { padding: calc(var(--nav-height) + 40px) 16px 40px; }
  
  .items-grid { grid-template-columns: 1fr; }
  
  /* Mobile Menu Overlay */
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: #0a0a0a;
    padding: 16px 24px 100px;
    gap: 4px;
    border-bottom: 1px solid var(--dark-border);
    z-index: 9999;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  
  .nav-menu.open .nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
  }
  
  .nav-menu.open .nav-link {
    padding: 16px 0;
    font-size: 1rem !important;
  }
  
  .nav-cta.open {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 16px;
    background: #0a0a0a;
    border-top: 1px solid var(--dark-border);
    z-index: 9999;
    justify-content: center;
  }
  
  .nav-cta.open .btn { width: 100%; max-width: 300px; justify-content: center; }
  
  /* Dropdown in mobile menu */
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0 0 8px 16px;
    border: none;
    background: transparent;
    display: none;
  }
  .nav-item.dd-open .dropdown-menu { display: block; }
  .dropdown-link { padding: 12px 0; font-size: 0.95rem !important; }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  html { font-size: 14px; }
  
  .container { padding: 0 12px; }
  
  .section { padding: 48px 0; }
  .section-sm { padding: 36px 0; }
  
  .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .section-subtitle { font-size: 0.95rem; }
  
  .hero { padding: calc(var(--nav-height) + 20px) 12px 48px; }
  .hero-title { font-size: clamp(2rem, 9vw, 3.5rem); }
  .hero-editorial { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-desc { font-size: 1rem; margin-bottom: 32px; }
  .hero-badge { font-size: 0.75rem; padding: 6px 16px; }
  .hero-stats-row { gap: 12px; }
  .stat-number-inline { font-size: 1.3rem; }
  .stat-label-inline { font-size: 0.68rem; }
  
  .ai-chat-bar { padding: 14px 16px; }
  .ai-text { font-size: 0.85rem; }
  
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .hero-actions { gap: 12px; }
  
  .cat-grid { gap: 12px; }
  .cat-body { padding: 16px; }
  .cat-title { font-size: 1rem; }
  .cat-desc { font-size: 0.82rem; }
  .cat-img-wrap { height: 140px; }
  .cat-img-icon { width: 36px; height: 36px; font-size: 1rem; }
  
  .about-img-wrap { border-radius: var(--radius-lg); }
  .about-badge-float { bottom: -12px; right: -12px; padding: 12px 16px; }
  .about-badge-float .big-num { font-size: 1.8rem; }
  
  .pain-point-card { padding: 20px 16px; }
  .pain-point-icon { font-size: 28px; }
  .pain-point-title { font-size: 1rem; }
  .pain-point-desc { font-size: 0.85rem; }
  
  .testimonial-card { padding: 24px 16px; }
  .testimonial-text { font-size: 14px; }
  .author-avatar { width: 40px; height: 40px; }
  
  .mission-card { padding: 24px 16px; }
  .mission-card .m-icon { font-size: 2rem; margin-bottom: 12px; }
  
  .client-logo-strip { padding: 16px 0; }
  .clients-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .client-card { padding: 16px 12px; }
  .client-name { font-size: 0.82rem; }
  
  .contact-form { padding: 24px 16px; }
  .info-item { gap: 12px; }
  .info-icon { width: 40px; height: 40px; }
  
  .footer { padding: 40px 0 20px; }
  .footer-grid { gap: 28px; margin-bottom: 40px; }
  .footer-contact-items { gap: 8px; }
  .footer-contact-item { font-size: 0.82rem; }
  .footer-links { gap: 8px; }
  .footer-links a { font-size: 0.88rem; }
  .footer-bottom { padding-top: 20px; }
  
  .cta-section { padding: 40px 16px; margin: 24px 8px; border-radius: 16px; }
  .cta-flame { font-size: 40px; }
  .cta-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .cta-desc { font-size: 1rem; }
  
  .page-hero { padding: calc(var(--nav-height) + 20px) 12px 32px; }
  .page-hero .section-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  
  .breadcrumb { font-size: 0.8rem; }
  
  .items-grid { gap: 16px; margin-top: 24px; }
  .item-card { padding: 20px 16px; }
  
  .product-intro { gap: 24px; margin-bottom: 48px; }
  .product-intro-img { border-radius: var(--radius-lg); }
  .product-intro-img img { height: 240px; }
  
  .social-buttons-container { bottom: 12px; right: 12px; }
  .whatsapp-float, .facebook-float, .youtube-float, .instagram-float { 
    padding: 10px 14px; 
    font-size: 0.82rem; 
  }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
  html { font-size: 13px; }
  
  .section { padding: 40px 0; }
  .container { padding: 0 10px; }
  
  .hero-title { font-size: clamp(1.8rem, 10vw, 3rem); }
  .hero-editorial { font-size: clamp(1.6rem, 9vw, 2.5rem); }
  
  .cat-img-wrap { height: 120px; }
  .cat-body { padding: 14px; }
  
  .clients-grid { grid-template-columns: 1fr; }
  
  .social-buttons-container { gap: 6px; }
  .whatsapp-float, .facebook-float, .youtube-float, .instagram-float { 
    padding: 8px 12px; 
    font-size: 0;
  }
  .whatsapp-float svg, .facebook-float svg, .youtube-float svg, .instagram-float svg { 
    width: 20px; 
    height: 20px; 
  }
}

/* =========================================
   iPHONE SE FIXES (375px width)
   ========================================= */

/* ISSUE 1 - Social Buttons - Icons Only on Mobile */
@media (max-width: 768px) {
  .whatsapp-float span,
  .facebook-float span,
  .youtube-float span,
  .instagram-float span,
  .whatsapp-text,
  .facebook-text,
  .youtube-text,
  .instagram-text {
    display: none !important;
  }
  
  .whatsapp-float,
  .facebook-float,
  .youtube-float,
  .instagram-float {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .social-buttons-container {
    bottom: 80px !important;
    right: 12px;
    gap: 8px;
  }
  
  .whatsapp-float svg,
  .facebook-float svg,
  .youtube-float svg,
  .instagram-float svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
}

/* ISSUE 2 - Hero Text & Content on Mobile */
@media (max-width: 480px) {
  .hero-content {
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .hero-headline,
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 3.5rem) !important;
    line-height: 1.1 !important;
    word-break: break-word !important;
  }
  
  .hero-editorial {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }
  
  .hero-desc {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
  
  .hero-badge {
    font-size: 0.72rem !important;
    padding: 5px 14px !important;
  }
}

/* ISSUE 3 - Product/Category Cards on Mobile */
@media (max-width: 768px) {
  .category-card,
  .cat-card {
    grid-template-columns: 1fr !important;
  }
  
  .category-card h2,
  .category-card h3,
  .cat-card h2,
  .cat-card h3 {
    font-size: 1.4rem !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
  
  .category-card p,
  .cat-card p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }
  
  .cat-title {
    font-size: 1.1rem !important;
  }
  
  .cat-desc {
    font-size: 0.85rem !important;
    -webkit-line-clamp: 3 !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
}

/* ISSUE 4 - Top Bar on Mobile */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 4px;
    padding: 8px 16px;
    font-size: 0.75rem;
    text-align: center;
  }
  
  .top-bar span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
}

@media (max-width: 375px) {
  /* iPhone SE specific fixes */
  .top-bar {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3rem) !important;
  }
  
  .section-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem) !important;
  }
  
  .social-buttons-container {
    bottom: 70px !important;
    right: 8px !important;
  }
  
  .whatsapp-float,
  .facebook-float,
  .youtube-float,
  .instagram-float {
    width: 44px !important;
    height: 44px !important;
  }
}

/* ----- Reduced Motion ----- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .btn-primary {
    animation: none;
  }
  
  .whatsapp-float,
  .facebook-float,
  .youtube-float,
  .instagram-float {
    padding: 14px;
    border-radius: 50%;
  }
}
/* Fire Alarms Card Overlay */
.fire-alarms-card::before,
[data-category="fire-alarms"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  border-radius: inherit;
  z-index: 0;
}

.fire-alarms-card > *,
[data-category="fire-alarms"] > * {
  position: relative;
  z-index: 1;
}

/* ===== 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(-40px);
  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(40px);
  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.5s ease, transform 0.5s ease;
}

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

/* Stagger delays for grid items */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }
