/* ========================================
   CORPORATE DESIGN SYSTEM - KBG GROUP
   Premium aluminium manufacturing brand
======================================== */

/* BASE RESET & TYPOGRAPHY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* BRAND COLORS */
  --brand-orange: #ef7f1b;
  --brand-orange-dark: #d97017;
  --brand-orange-light: #f89d4e;
  
  /* NEUTRALS */
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  
  /* SURFACES */
  --surface-white: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.95);
  
  /* SHADOWS */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* PREMIUM EASING */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--neutral-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--surface-white);
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* ========================================
   HEADER SYSTEM
======================================== */

header {
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s var(--ease-premium);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* LOGO SYSTEM */
.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 4px;
}

.logo-image {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease-smooth);
}

.logo-wrapper:hover .logo-image {
  transform: scale(1.05);
}

/* Keep text logo as fallback */
.logo-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--neutral-900);
}

.logo-tagline {
  font-size: 20px;
  font-weight: 400;
  color: var(--brand-orange);
}

/* NAVIGATION */
.nav-link {
  color: var(--neutral-700);
  text-decoration: none;
  position: relative;
  transition: color 0.3s var(--ease-smooth);
  padding: 8px 0;
}

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

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

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

.nav-link.has-dropdown::after {
  content: none !important;
}

.nav-link-cta {
  color: var(--surface-white);
  background: var(--brand-orange);
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
  font-weight: 500;
}

.nav-link-cta:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========================================
   PRODUCTS DROPDOWN MENU
======================================== */

.nav-link-wrapper {
  position: relative;
}

.products-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 16px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-premium);
  z-index: 100;
  margin-top: 8px;
}

.nav-link-wrapper:hover .products-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.products-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: white;
  rotate: 45deg;
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.04);
}

.dropdown-link {
  display: block;
  padding: 12px 24px;
  color: var(--neutral-700);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s var(--ease-smooth);
  position: relative;
  text-decoration: none;
}

.dropdown-link:hover {
  background: var(--neutral-50);
  color: var(--brand-orange);
  padding-left: 32px;
}

.dropdown-link::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--brand-orange);
  transition: width 0.2s var(--ease-smooth);
}

.dropdown-link:hover::before {
  width: 8px;
  left: 20px;
}

.nav-link.has-dropdown {
  display: inline-flex !important;
  align-items: center !important;
  flex-direction: row !important;
}

.nav-link.has-dropdown::before {
  content: '▼';
  font-size: 9px;
  color: #2d2d2d;
  line-height: 1;
  margin-left: 5px;
  order: 2;
  transition: transform 0.3s var(--ease-smooth);
}

.nav-link.has-dropdown::after {
  display: none !important;
}

.nav-link-wrapper:hover .nav-link.has-dropdown::before {
  transform: rotate(180deg);
}

/* ========================================
   MOBILE MENU STYLES
======================================== */

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 40;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  gap: 0;
}

.mobile-nav-links .nav-link,
.mobile-nav-links .nav-link-cta {
  display: block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  border: none;
  background: transparent;
  text-align: left;
}

.mobile-nav-links .nav-link {
  color: #2d2d2d;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-links .nav-link:active {
  background: rgba(239, 127, 27, 0.08);
}

.mobile-nav-links .nav-link-cta {
  margin: 16px 24px 16px 24px;
  text-align: center;
  background: var(--brand-orange);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  border-bottom: none;
  box-shadow: 0 2px 8px rgba(239, 127, 27, 0.25);
}

.mobile-nav-links .nav-link-cta:active {
  background: #d96d16;
  transform: scale(0.98);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-smooth);
  z-index: 39;
}

body.mobile-menu-open .mobile-menu-backdrop {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(239, 127, 27, 0.1);
  border: 2px solid transparent;
  color: var(--neutral-900);
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s var(--ease-smooth);
}

.mobile-menu-btn:hover {
  background: rgba(239, 127, 27, 0.15);
  border-color: var(--brand-orange);
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

.mobile-menu-btn svg {
  transition: transform 0.3s var(--ease-smooth);
}

.mobile-menu-btn.active svg line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  transform-origin: center;
}

.mobile-menu-btn.active svg line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active svg line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  transform-origin: center;
}

body.mobile-menu-open {
  overflow: hidden;
}

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

/* ========================================
   HERO SECTION
======================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.hero-content {
  padding-top: 6rem;
  animation: heroFadeIn 1.2s var(--ease-premium);
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 127, 27, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(239, 127, 27, 0.3);
  color: var(--brand-orange-light);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  animation: badgePulse 2s ease-in-out infinite;
}

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

.hero-badge svg {
  width: 16px;
  height: 16px;
}

/* HERO TYPOGRAPHY */
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--surface-white);
  margin-bottom: 24px;
}

.hero-description {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 650px;
}

/* HERO BUTTONS */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-orange);
  color: var(--surface-white);
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease-premium);
  box-shadow: 0 4px 12px rgba(239, 127, 27, 0.3);
}

.btn-primary:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(239, 127, 27, 0.4);
}

.btn-primary svg {
  transition: transform 0.3s var(--ease-premium);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--surface-white);
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease-premium);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* ISO CERTIFICATION LINK */
.iso-certification-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s var(--ease-premium);
  margin-bottom: 48px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.iso-certification-link:hover {
  color: var(--surface-white);
  border-bottom-color: rgba(255, 255, 255, 0.4);
  gap: 10px;
}

.iso-certification-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--brand-orange-light);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-premium);
}

.iso-certification-link:hover svg {
  transform: scale(1.1) rotate(10deg);
}

/* HERO STATS */
.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

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

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--surface-white);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

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

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: scrollFloat 2s ease-in-out infinite;
}

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

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.scroll-text {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

/* ========================================
   SECTION SYSTEM
======================================== */

.section-wrapper {
  position: relative;
  overflow: hidden;
}

.section-header {
  max-width: 800px;
  margin-bottom: 64px;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.text-center .section-eyebrow,
.section-header.text-center .section-title,
.section-header.text-center .section-description {
  margin-left: auto;
  margin-right: auto;
}

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

.section-eyebrow-dark {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-orange-light);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--neutral-900);
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  line-height: 1.75;
  color: var(--neutral-600);
}

/* ========================================
   PRODUCT GRID
======================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

/* ==============================
   PRODUCT CARD
============================== */
.product-card {
  background: var(--surface-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 20px;

  /* Premium smooth animation */
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;

  will-change: transform, box-shadow;
  transform: translateZ(0);
}

/* Gradient border */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;

  background: linear-gradient(135deg, var(--brand-orange), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--brand-orange);
}

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

/* ==============================
   ICON
============================== */
.product-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;

  background: linear-gradient(
    135deg,
    rgba(239, 127, 27, 0.1),
    rgba(239, 127, 27, 0.05)
  );

  transition: 
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease;
}

.product-card:hover .product-icon {
  background: linear-gradient(
    135deg,
    var(--brand-orange),
    var(--brand-orange-dark)
  );
  transform: scale(1.08);
}

.product-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-orange);
  transition: stroke 0.35s ease;
}

.product-card:hover .product-icon svg {
  stroke: var(--surface-white);
}

/* ==============================
   CONTENT
============================== */
.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-900);
  letter-spacing: -0.01em;
}

.product-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-600);
}

/* ==============================
   FEATURES LIST
============================== */
.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.product-features li {
  font-size: 14px;
  color: var(--neutral-700);
  padding-left: 20px;
  position: relative;
}

.product-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-orange);
  font-weight: 600;
}

/* ==============================
   LINK
============================== */
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;

  font-size: 14px;
  font-weight: 600;
  color: var(--brand-orange);
  text-decoration: none;

  transition: 
    gap 0.3s ease,
    color 0.3s ease;
}

.product-link:hover {
  gap: 12px;
  color: var(--brand-orange-dark);
}

.product-link svg {
  transition: transform 0.3s ease;
}

.product-link:hover svg {
  transform: translateX(4px);
}

/* ========================================
   LOUVER CARD STYLES (3x3 GRID)
======================================== */

.louver-card {
  background: var(--surface-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-premium);
  position: relative;
}

.louver-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--brand-orange), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease-premium);
  pointer-events: none;
}

.louver-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-orange);
}

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

.louver-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.louver-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

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

.louver-content {
  padding: 24px;
}

.louver-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-900);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.3;
}

.louver-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--neutral-600);
  background: #fdf8f3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #fcebd6;
}

@media (max-width: 768px) {
  .louver-image {
    height: 200px;
  }
  
  .louver-content {
    padding: 20px;
  }
  
  .louver-title {
    font-size: 16px;
  }
  
  .louver-description {
    font-size: 13px;
  }
}

/* ========================================
   INDUSTRIES SECTION
======================================== */

.industries-grid-refined {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.industry-card {
  background: var(--surface-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.4s var(--ease-premium);
  position: relative;
}

.industry-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
  border-radius: 14px 14px 0 0;
  transition: width 0.4s var(--ease-premium);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(239, 127, 27, 0.2);
}

.industry-card:hover::after {
  width: 100%;
}

.industry-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(239, 127, 27, 0.1), rgba(239, 127, 27, 0.05));
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.4s var(--ease-premium);
}

.industry-card:hover .industry-card-icon {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  transform: scale(1.05) rotate(-5deg);
}

.industry-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-orange);
  transition: stroke 0.4s var(--ease-premium);
}

.industry-card:hover .industry-card-icon svg {
  stroke: var(--surface-white);
}

.industry-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.industry-card-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--neutral-600);
}

/* COMPANY INFO BAR */
.company-info-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 64px;
  padding: 28px 40px;
  background: var(--surface-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-700);
}

.info-item svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}

.info-divider {
  width: 1px;
  height: 24px;
  background: rgba(0, 0, 0, 0.1);
}

/* ========================================
   PROJECTS SECTION
======================================== */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.project-card {
  background: var(--surface-white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-premium);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(239, 127, 27, 0.2);
}

.project-image {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
  overflow: hidden;
}

.project-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(239, 127, 27, 0.15),
    transparent 70%
  );
}

.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: var(--surface-white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-premium);
}

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

.project-overlay-link {
  color: var(--surface-white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  transition: all 0.3s var(--ease-smooth);
}

.project-overlay-link:hover {
  background: var(--surface-white);
  color: var(--neutral-900);
  border-color: var(--surface-white);
}

.project-content {
  padding: 28px;
}

.project-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.project-category {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.project-scope {
  font-size: 14px;
  line-height: 1.7;
  color: var(--neutral-600);
  margin-bottom: 16px;
}

.project-meta {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--neutral-600);
}

.meta-item svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}

/* ========================================
   WHY KBG / BENEFITS SECTION
======================================== */

.benefit-card {
  display: flex;
  gap: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s var(--ease-premium);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

.benefit-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-orange-light);
  line-height: 1;
  flex-shrink: 0;
}

.benefit-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--surface-white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.benefit-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   CTA SECTION
======================================== */

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-orange);
  color: var(--surface-white);
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease-premium);
  box-shadow: 0 6px 16px rgba(239, 127, 27, 0.3);
}

.btn-primary-large:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(239, 127, 27, 0.4);
}

.btn-secondary-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-white);
  color: var(--brand-orange);
  border: 2px solid var(--brand-orange);
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease-premium);
}

.btn-secondary-large:hover {
  background: var(--brand-orange);
  color: var(--surface-white);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(239, 127, 27, 0.3);
}

.contact-info-card {
  background: var(--surface-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s var(--ease-premium);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-orange);
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(239, 127, 27, 0.1), rgba(239, 127, 27, 0.05));
  border-radius: 12px;
  margin: 0 auto 16px;
  transition: all 0.3s var(--ease-premium);
}

.contact-info-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  transform: scale(1.1);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-orange);
  transition: stroke 0.3s var(--ease-premium);
}

.contact-info-card:hover .contact-icon svg {
  stroke: var(--surface-white);
}

.contact-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
}

.contact-detail {
  font-size: 14px;
  line-height: 1.7;
  color: var(--neutral-600);
}

/* ========================================
   FOOTER
======================================== */

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--neutral-400);
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
}

.social-link:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: var(--surface-white);
  transform: translateY(-3px);
}

.footer-link {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: space-between;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .product-grid,
  .industries-grid-refined,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .company-info-bar {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  
  .info-divider {
    width: 100%;
    height: 1px;
  }
}

/* ========================================
   CLIENTS GRID STYLES
======================================== */

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 24px;
  align-items: center;
  justify-items: center;
}

.client-logo-card {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--surface-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: all 0.3s var(--ease-smooth);
}

.client-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-orange);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s var(--ease-smooth);
}

.client-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
  }
}

@media (max-width: 640px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
  
  .client-logo-card {
    height: 70px;
    padding: 16px;
  }
}

/* ========================================
   ANIMATIONS ON SCROLL
======================================== */

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

.section-wrapper > * {
  animation: fadeInUp 0.8s var(--ease-premium);
}

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

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

/* ========================================
   ABOUT PAGE STYLES
======================================== */

/* ABOUT HERO */
.about-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--surface-white) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--neutral-600);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--neutral-600);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

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

.breadcrumb span:last-child {
  color: var(--brand-orange);
  font-weight: 600;
}

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

.about-hero-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--neutral-900);
  margin-bottom: 24px;
}

.about-hero-description {
  font-size: 20px;
  line-height: 1.7;
  color: var(--neutral-600);
  max-width: 700px;
}

/* ABOUT VISUAL CONTAINERS */
.about-visual-container {
  position: relative;
}

.about-image-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

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

.about-badge-float {
  position: absolute;
  bottom: -30px;
  right: 40px;
  background: var(--surface-white);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-badge-float svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}

.badge-float-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neutral-600);
  font-weight: 600;
  margin-bottom: 4px;
}

.badge-float-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-900);
  letter-spacing: -0.01em;
}

/* ABOUT TEXT CONTENT */
.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.about-text-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--neutral-600);
}

.about-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* STATS BANNER */
.stats-banner {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  padding: 64px 0;
}

.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
}

.stat-banner-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--surface-white);
}

.stat-banner-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  flex-shrink: 0;
}

.stat-banner-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--surface-white);
}

.stat-banner-value {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-banner-label {
  font-size: 14px;
  opacity: 0.9;
}

/* CAPABILITIES GRID */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.capability-card {
  background: var(--surface-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.4s var(--ease-premium);
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--brand-orange), var(--brand-orange-light));
  transition: height 0.4s var(--ease-premium);
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(239, 127, 27, 0.2);
}

.capability-card:hover::before {
  height: 100%;
}

.capability-number {
  font-size: 48px;
  font-weight: 700;
  color: rgba(239, 127, 27, 0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.capability-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.capability-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-600);
}

/* TECHNOLOGY FEATURES */
.technology-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.tech-feature-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--neutral-50);
  border-radius: 12px;
  transition: all 0.3s var(--ease-smooth);
}

.tech-feature-item:hover {
  background: var(--neutral-100);
  transform: translateX(8px);
}

.tech-feature-item svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}

.tech-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 4px;
}

.tech-feature-desc {
  font-size: 14px;
  color: var(--neutral-600);
}

/* TECH IMAGE GRID */
.tech-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tech-image-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tech-image-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

.tech-image-item:hover img {
  transform: scale(1.1);
}

/* GLOBAL PRESENCE */
.global-presence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.presence-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s var(--ease-premium);
}

.presence-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
}

.presence-flag {
  font-size: 48px;
  margin-bottom: 16px;
}

.presence-country {
  font-size: 20px;
  font-weight: 700;
  color: var(--surface-white);
  margin-bottom: 12px;
}

.presence-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* CERTIFICATIONS */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

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

.cert-badge {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(239, 127, 27, 0.1), rgba(239, 127, 27, 0.05));
  border-radius: 50%;
  margin: 0 auto 24px;
  transition: all 0.4s var(--ease-premium);
}

.certification-item:hover .cert-badge {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  transform: scale(1.1) rotate(5deg);
}

.cert-badge svg {
  stroke: var(--brand-orange);
  transition: stroke 0.4s var(--ease-premium);
}

.certification-item:hover .cert-badge svg {
  stroke: var(--surface-white);
}

.cert-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 12px;
}

.cert-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-600);
}

/* RESPONSIVE - ABOUT PAGE */
@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .tech-image-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .about-hero-title {
    font-size: 36px;
  }
  
  .about-main-img {
    height: 350px;
  }
  
  .about-badge-float {
    bottom: -20px;
    right: 20px;
    padding: 20px;
  }
  
  .stats-banner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  
  .global-presence-grid {
    grid-template-columns: 1fr;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr;
  }
  
  .about-cta-group {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   PRODUCTS PAGE STYLES
======================================== */

/* PRODUCTS HERO */
.products-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--surface-white) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.products-hero-content {
  max-width: 900px;
}

.products-hero-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--neutral-900);
  margin-bottom: 24px;
}

.products-hero-description {
  font-size: 20px;
  line-height: 1.7;
  color: var(--neutral-600);
  max-width: 800px;
}

/* PRODUCT CATEGORY GRID */
.products-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 40px;
}

.product-category-card {
  background: var(--surface-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease-premium);
  text-decoration: none;
  display: block;
}

.product-category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-orange);
}

.category-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

.product-category-card:hover .category-card-image img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-premium);
}

.product-category-card:hover .category-overlay {
  opacity: 1;
}

.category-view-btn {
  background: var(--surface-white);
  color: var(--neutral-900);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
}

.category-view-btn:hover {
  background: var(--brand-orange);
  color: var(--surface-white);
  transform: translateY(-2px);
}

.category-card-content {
  padding: 32px;
}

.category-card-number {
  font-size: 56px;
  font-weight: 700;
  color: rgba(239, 127, 27, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.category-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease-smooth);
}

.product-category-card:hover .category-card-title {
  color: var(--brand-orange);
}

.category-card-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-600);
  margin-bottom: 20px;
}

.category-card-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--neutral-50);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--neutral-700);
  transition: all 0.3s var(--ease-smooth);
}

.product-category-card:hover .product-tag {
  background: rgba(239, 127, 27, 0.1);
  border-color: rgba(239, 127, 27, 0.3);
  color: var(--brand-orange);
}

/* PRODUCT BENEFITS GRID */
.product-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.benefit-feature-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: all 0.3s var(--ease-premium);
}

.benefit-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(239, 127, 27, 0.2);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(239, 127, 27, 0.1), rgba(239, 127, 27, 0.05));
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.4s var(--ease-premium);
}

.benefit-feature-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  transform: scale(1.1) rotate(5deg);
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--brand-orange);
  transition: stroke 0.4s var(--ease-premium);
}

.benefit-feature-card:hover .benefit-icon svg {
  stroke: var(--surface-white);
}

.benefit-feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
}

.benefit-feature-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--neutral-600);
}

/* RESPONSIVE - PRODUCTS PAGE */
@media (max-width: 768px) {
  .products-hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .products-hero-title {
    font-size: 36px;
  }
  
  .products-category-grid {
    grid-template-columns: 1fr;
  }
  
  .product-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PRODUCT DETAIL PAGES STYLES
======================================== */

.product-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.product-detail-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.product-detail-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 120px;
}

.product-detail-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

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

.product-detail-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--neutral-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.product-detail-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--neutral-600);
}

.product-features {
  background: var(--neutral-50);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.features-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--surface-white);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s var(--ease-smooth);
}

.feature-item:hover {
  border-color: var(--brand-orange);
  transform: translateX(4px);
}

.feature-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand-orange);
  flex-shrink: 0;
}

.feature-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-700);
}

.product-applications {
  background: var(--surface-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 24px;
}

.applications-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 16px;
}

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

.applications-list li {
  font-size: 15px;
  color: var(--neutral-600);
  padding-left: 28px;
  position: relative;
}

.applications-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand-orange);
  font-weight: 700;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(239, 127, 27, 0.05), rgba(239, 127, 27, 0.02));
  border-radius: 12px;
  border: 1px solid rgba(239, 127, 27, 0.15);
}

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

.spec-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neutral-600);
  font-weight: 700;
}

.spec-value {
  font-size: 15px;
  color: var(--neutral-900);
  font-weight: 600;
}

/* RESPONSIVE - PRODUCT DETAIL */
@media (max-width: 1024px) {
  .product-detail-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-detail-image {
    position: relative;
    top: 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.bg-gradient-to-br {
  margin-top: 5rem;
}

.cta-full-bleed {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* ── 3-Column Products Grid ── */
.products-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

@media (max-width: 640px) {
  .products-grid-3col {
    grid-template-columns: 1fr;
  }
}

.product-grid-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.product-grid-card:hover {
  box-shadow: 0 16px 48px rgba(239, 127, 27, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
  border-color: var(--brand-orange);
}

.product-grid-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f5f5;
}

.product-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-grid-card:hover .product-grid-image img {
  transform: scale(1.04);
}

.product-grid-body {
  padding: 24px;
}

.product-grid-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.product-grid-subtitle {
  font-size: 0.8rem;
  color: var(--brand-orange);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.product-grid-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #525252;
  margin-bottom: 20px;
}

.product-grid-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  background: #fdf8f3;
  border-radius: 10px;
  border: 1px solid #fcebd6;
}

.grid-spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.8rem;
}

.grid-spec-label {
  color: var(--brand-orange-light);
  font-weight: 500;
  flex-shrink: 0;
  margin-right: 12px;
}

.grid-spec-value {
  color: #171717;
  font-weight: 600;
  text-align: right;
}

.product-grid-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.grid-tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 10px;
  background: linear-gradient(135deg, #fef3e7, #fdf8f3);
  color: #b5621a;
  border-radius: 100px;
  letter-spacing: 0.01em;
  border: 1px solid #fce0c3;
}

/* ── Product Grid Badge ── */
.product-grid-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  background: var(--brand-orange);
  color: #fff;
  border-radius: 100px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(239, 127, 27, 0.3);
}

.product-grid-image {
  position: relative;
}

/* ── Image bottom gradient overlay ── */
.product-grid-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
  pointer-events: none;
  z-index: 1;
}

/* ── Category Section Headings ── */
.category-heading {
  margin-bottom: 40px;
}

.category-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  background: linear-gradient(135deg, #fef3e7, #fdf8f3);
  color: var(--brand-orange);
  border: 1px solid #fce0c3;
  border-radius: 100px;
  margin-bottom: 16px;
}

.category-title {
  font-size: 2rem;
  font-weight: 800;
  color: #171717;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 16px;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.category-desc {
  font-size: 0.95rem;
  color: #737373;
  line-height: 1.6;
  max-width: 640px;
  margin-top: 12px;
}

/* ========================================
   TAILWIND CONFLICT OVERRIDES
   Ensures custom styles win over Tailwind CDN runtime injection
======================================== */

/* Dropdown: force hidden by default */
.products-dropdown {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.nav-link-wrapper:hover .products-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}

/* Blog post header elements - ensure flex layout */
.blog-post-meta-bar {
  display: flex !important;
}

.blog-post-author {
  display: flex !important;
  align-items: center;
}

.blog-post-meta-details {
  display: flex !important;
  align-items: center;
}

.blog-post-meta-details span {
  display: inline-flex !important;
  align-items: center;
}

/* Ensure header stays fixed and styled */
header {
  position: fixed !important;
  width: 100% !important;
  top: 0 !important;
  z-index: 50 !important;
}

/* Ensure nav items are properly spaced */
.nav-link-wrapper {
  position: relative !important;
}
/* ========================================
   BLOG PAGES STYLES — KBG GROUP
   Extends the core style.css design system
======================================== */

/* ── BLOG FEATURED CARD ── */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--surface-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s var(--ease-premium);
}

.blog-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-orange);
}

.blog-featured-image {
  position: relative;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

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

.blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(0, 0, 0, 0.05));
}

.blog-featured-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.blog-featured-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease-smooth);
}

.blog-featured-card:hover .blog-featured-title {
  color: var(--brand-orange);
}

.blog-featured-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-600);
}

.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-orange);
  transition: gap 0.3s var(--ease-smooth);
  margin-top: 8px;
}

.blog-featured-card:hover .blog-card-readmore {
  gap: 12px;
}

/* ── BLOG CARD META ── */
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.blog-card-category {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(239, 127, 27, 0.1), rgba(239, 127, 27, 0.05));
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  border: 1px solid rgba(239, 127, 27, 0.2);
}

.blog-card-date {
  color: var(--neutral-600);
  font-weight: 500;
}

.blog-card-read {
  color: var(--neutral-600);
  font-weight: 500;
}

.blog-card-read::before {
  content: '·';
  margin-right: 12px;
  color: var(--neutral-300);
}

/* ── BLOG FILTER BAR ── */
.blog-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-filter-btn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: var(--neutral-600);
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.blog-filter-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: rgba(239, 127, 27, 0.05);
}

.blog-filter-btn.active {
  background: var(--brand-orange);
  color: var(--surface-white);
  border-color: var(--brand-orange);
}

/* ── BLOG GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

/* ── BLOG CARD ── */
.blog-card {
  background: var(--surface-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: all 0.4s var(--ease-premium);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(239, 127, 27, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: var(--brand-orange);
}

.blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-premium);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  background: var(--brand-orange);
  color: var(--surface-white);
  border-radius: 100px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(239, 127, 27, 0.3);
}

.blog-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.08), transparent);
  pointer-events: none;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 12px 0 10px;
  transition: color 0.3s var(--ease-smooth);
}

.blog-card:hover .blog-card-title {
  color: var(--brand-orange);
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--neutral-600);
}

/* ── NEWSLETTER FORM ── */
.blog-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.blog-newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  font-size: 15px;
  color: var(--neutral-900);
  background: var(--surface-white);
  transition: all 0.3s var(--ease-smooth);
  outline: none;
}

.blog-newsletter-input::placeholder {
  color: var(--neutral-300);
}

.blog-newsletter-input:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(239, 127, 27, 0.12);
}


/* ========================================
   BLOG POST PAGE STYLES
======================================== */

/* ── POST HEADER ── */
.blog-post-header {
  padding: 32px 0 40px;
}

.blog-post-category {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(239, 127, 27, 0.12), rgba(239, 127, 27, 0.05));
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  border: 1px solid rgba(239, 127, 27, 0.2);
  margin-bottom: 20px;
}

.blog-post-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--neutral-900);
  margin-bottom: 20px;
}

.blog-post-subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: var(--neutral-600);
  max-width: 720px;
}

/* ── POST META BAR ── */
.blog-post-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-post-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.blog-post-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(239, 127, 27, 0.15), rgba(239, 127, 27, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-post-author-avatar svg {
  stroke: var(--brand-orange);
}

.blog-post-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--neutral-900);
}

.blog-post-author-role {
  font-size: 13px;
  color: var(--neutral-600);
}

.blog-post-meta-details {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--neutral-600);
  font-weight: 500;
}

.blog-post-meta-details span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-post-meta-details svg {
  stroke: var(--brand-orange);
}

/* ── POST HERO IMAGE ── */
.blog-post-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.blog-post-hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ── POST CONTENT LAYOUT ── */
.blog-post-content-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── TABLE OF CONTENTS ── */
.blog-post-toc {
  position: relative;
}

.blog-post-toc-inner {
  position: sticky;
  top: 100px;
}

.blog-post-toc-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-900);
  margin-bottom: 16px;
}

.blog-post-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid rgba(0, 0, 0, 0.06);
}

.blog-post-toc-link {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--neutral-600);
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
  border-left: 2px solid transparent;
  margin-left: -2px;
}

.blog-post-toc-link:hover,
.blog-post-toc-link.active {
  color: var(--brand-orange);
  border-left-color: var(--brand-orange);
  background: rgba(239, 127, 27, 0.04);
}

/* ── POST SHARE ── */
.blog-post-share {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-post-share-links {
  display: flex;
  gap: 8px;
}

.blog-share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--neutral-50);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--neutral-600);
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
}

.blog-share-btn:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: var(--surface-white);
}

.blog-share-btn:hover svg {
  fill: var(--surface-white);
  stroke: var(--surface-white);
}

/* ── ARTICLE BODY ── */
.blog-post-body {
  max-width: 720px;
}

.blog-post-section {
  margin-bottom: 40px;
}

.blog-post-body h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--neutral-900);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  padding-top: 16px;
}

.blog-post-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--neutral-600);
  margin-bottom: 20px;
}

.blog-post-body p:last-child {
  margin-bottom: 0;
}

/* ── HIGHLIGHT BOX ── */
.blog-highlight-box {
  background: linear-gradient(135deg, rgba(239, 127, 27, 0.06), rgba(239, 127, 27, 0.02));
  border: 1px solid rgba(239, 127, 27, 0.15);
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
}

.blog-highlight-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 20px;
}

.blog-metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-metric-item {
  padding: 16px;
  background: var(--surface-white);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-metric-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 6px;
}

.blog-metric-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--neutral-600);
}

/* ── STANDARDS LIST ── */
.blog-standards-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.blog-standard-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 16px 20px;
  background: var(--neutral-50);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-standard-code {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-orange);
  background: rgba(239, 127, 27, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-standard-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--neutral-600);
}

/* ── COMPARISON TABLE ── */
.blog-comparison-table {
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.blog-comparison-table thead {
  background: var(--neutral-900);
}

.blog-comparison-table th {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--surface-white);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-comparison-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--neutral-700);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.blog-comparison-table tbody tr:hover {
  background: rgba(239, 127, 27, 0.04);
}

.blog-comparison-table td strong {
  color: var(--brand-orange);
  font-weight: 700;
}

/* ── BLOCKQUOTE ── */
.blog-post-quote {
  border-left: 4px solid var(--brand-orange);
  padding: 24px 28px;
  margin: 32px 0;
  background: var(--neutral-50);
  border-radius: 0 12px 12px 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--neutral-700);
  font-weight: 500;
  font-style: italic;
}

/* ── UNORDERED LIST ── */
.blog-post-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-post-list li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-600);
  padding-left: 28px;
  position: relative;
}

.blog-post-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
}

/* ── POST TAGS ── */
.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-post-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--neutral-50);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-700);
  transition: all 0.3s var(--ease-smooth);
}

.blog-post-tag:hover {
  background: rgba(239, 127, 27, 0.1);
  border-color: rgba(239, 127, 27, 0.3);
  color: var(--brand-orange);
}


/* ========================================
   RESPONSIVE — BLOG PAGES
======================================== */

@media (max-width: 1024px) {
  .blog-post-content-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .blog-post-toc {
    display: none;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .blog-featured-image {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .blog-post-hero-image img {
    height: 280px;
  }

  .blog-post-title {
    font-size: 28px;
  }

  .blog-post-meta-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-newsletter-form {
    flex-direction: column;
  }

  .blog-filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 16px;
  }

  .blog-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .blog-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .blog-featured-content {
    padding: 28px 24px;
  }

  .blog-featured-title {
    font-size: 22px;
  }

  .blog-highlight-box {
    padding: 24px 20px;
  }

  .blog-standard-item {
    flex-direction: column;
    gap: 8px;
  }
}

/* ========================================
   TAILWIND CONFLICT OVERRIDES — BLOG
======================================== */

.blog-featured-card {
  display: grid !important;
}

.blog-grid {
  display: grid !important;
}

.blog-card {
  display: block !important;
}

.blog-card-image {
  position: relative !important;
  overflow: hidden !important;
}

.blog-card-badge {
  position: absolute !important;
}

.blog-filter-bar {
  display: flex !important;
}

.blog-post-content-layout {
  display: grid !important;
}

.blog-post-toc-inner {
  position: sticky !important;
  top: 100px !important;
}

.blog-post-toc-nav {
  display: flex !important;
  flex-direction: column !important;
}

.blog-highlight-box {
  display: block !important;
}

.blog-standards-list {
  display: flex !important;
  flex-direction: column !important;
}

.blog-standard-item {
  display: flex !important;
}

.blog-comparison-table table {
  width: 100% !important;
  border-collapse: collapse !important;
}

.blog-newsletter-form {
  display: flex !important;
}

.blog-post-share-links {
  display: flex !important;
}

.blog-post-tags {
  display: flex !important;
  flex-wrap: wrap !important;
}


/* ============================================================
   BLOG PAGE — EXTENSIONS ON TOP OF EXISTING DESIGN SYSTEM
   All variables, header, footer, components match kbggroup.co.in
   ============================================================ */

/* ── HERO: extends .products-hero with image background ── */
.blog-hero {
  position: relative;
  padding-top: 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background: var(--neutral-900);
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(23,23,23,0.55) 0%, rgba(23,23,23,0.82) 60%, rgba(23,23,23,0.97) 100%),
    url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.blog-hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 40px 72px;
  width: 100%;
}

.blog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  margin-bottom: 20px;
}

.blog-hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--brand-orange);
  border-radius: 1px;
}

.blog-hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--surface-white);
  margin-bottom: 20px;
  max-width: 700px;
}

.blog-hero-title span { color: var(--brand-orange); }

.blog-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Search bar */
.blog-search-bar {
  display: flex;
  max-width: 520px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
  backdrop-filter: blur(8px);
}

.blog-search-bar:focus-within {
  border-color: var(--brand-orange);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(239,127,27,0.12);
}

.blog-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 14px;
  color: var(--surface-white);
}

.blog-search-input::placeholder { color: rgba(255,255,255,0.4); }

.blog-search-btn {
  background: var(--brand-orange);
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: white;
  transition: background 0.3s var(--ease-smooth);
  white-space: nowrap;
}

.blog-search-btn:hover { background: var(--brand-orange-dark); }

/* Hero stats row */
.blog-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.blog-stat {
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.blog-stat:last-child { border-right: none; }

.blog-stat-value {
  font-size: 30px;
  font-weight: 700;
  color: var(--surface-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.blog-stat-value span { color: var(--brand-orange); }

.blog-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ── LAYOUT ── */
.blog-page-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

/* ── FILTER BAR ── */
.blog-filter-wrap {
  margin-bottom: 40px;
}

.blog-filter-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-600);
  margin-bottom: 12px;
}

.blog-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-filter-btn {
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  border: 1.5px solid var(--neutral-200);
  background: var(--surface-white);
  color: var(--neutral-600);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease-smooth);
}

.blog-filter-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: rgba(239,127,27,0.04);
}

.blog-filter-btn.active {
  background: var(--neutral-900);
  border-color: var(--neutral-900);
  color: var(--surface-white);
}

/* ── FEATURED POST ── */
.blog-featured-wrap { margin-bottom: 56px; }

.blog-featured-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.blog-featured-eyebrow-line {
  width: 40px; height: 2px;
  background: var(--brand-orange);
  border-radius: 1px;
}

.blog-featured-eyebrow-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--surface-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s var(--ease-premium);
  box-shadow: var(--shadow-sm);
}

.blog-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-orange);
}

.blog-featured-img {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.blog-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

.blog-featured-card:hover .blog-featured-img img { transform: scale(1.06); }

.blog-featured-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(0,0,0,0.06));
}

.blog-featured-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--brand-orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
}

.blog-featured-content {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.blog-featured-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-orange);
  padding: 4px 12px;
  background: rgba(239,127,27,0.08);
  border: 1px solid rgba(239,127,27,0.18);
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
}

.blog-featured-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--neutral-900);
  transition: color 0.3s var(--ease-smooth);
}

.blog-featured-card:hover .blog-featured-title { color: var(--brand-orange); }

.blog-featured-excerpt {
  font-size: 14px;
  line-height: 1.75;
  color: var(--neutral-600);
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--neutral-600);
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.blog-featured-meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--neutral-300);
}

.blog-featured-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-orange);
  transition: gap 0.3s var(--ease-smooth);
  margin-top: 4px;
}

.blog-featured-card:hover .blog-featured-readmore { gap: 12px; }

/* ── SECTION DIVIDER ── */
.blog-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.blog-section-head-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.blog-section-marker {
  width: 3px;
  height: 22px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.blog-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-900);
  letter-spacing: -0.01em;
}

.blog-section-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--neutral-600);
  background: var(--neutral-100);
  padding: 3px 10px;
  border-radius: 20px;
}

.blog-section-viewall {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease-smooth);
  text-decoration: none;
}

.blog-section-viewall:hover { gap: 10px; }

/* ── BLOG GRID ── */
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* ── BLOG CARD — matches existing product-card style ── */
.blog-post-card {
  background: var(--surface-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-premium);
  box-shadow: var(--shadow-sm);
}

.blog-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(239,127,27,0.1), 0 4px 16px rgba(0,0,0,0.06);
  border-color: var(--brand-orange);
}

.blog-post-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--neutral-100);
}

.blog-post-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-premium);
}

.blog-post-card:hover .blog-post-card-img img { transform: scale(1.06); }

.blog-post-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
  pointer-events: none;
}

.blog-post-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  background: var(--brand-orange);
  color: var(--surface-white);
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(239,127,27,0.3);
}

.blog-post-card-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-post-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--neutral-600);
  font-weight: 500;
}

.blog-post-card-meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--neutral-300);
}

.blog-post-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease-smooth);
  flex: 1;
}

.blog-post-card:hover .blog-post-card-title { color: var(--brand-orange); }

.blog-post-card-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--neutral-600);
}

.blog-post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.05);
  margin-top: 4px;
}

.blog-post-readmore {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap 0.3s var(--ease-smooth);
}

.blog-post-card:hover .blog-post-readmore { gap: 10px; }

.blog-post-read-time {
  font-size: 11px;
  color: var(--neutral-300);
  font-weight: 500;
}

/* ── SIDEBAR ── */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-widget {
  background: var(--surface-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget-head {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: var(--neutral-50);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-widget-head-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.sidebar-widget-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--neutral-900);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sidebar-widget-body { padding: 8px; }

/* Category items */
.sidebar-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
  text-decoration: none;
  gap: 10px;
}

.sidebar-cat-item:hover { background: var(--neutral-50); }
.sidebar-cat-item.active { background: rgba(239,127,27,0.06); border-left: 2px solid var(--brand-orange); padding-left: 12px; }
.sidebar-cat-item.active .sidebar-cat-left { color: var(--brand-orange); font-weight: 700; }

.sidebar-cat-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--neutral-700);
}

.sidebar-cat-left svg { color: var(--brand-orange); flex-shrink: 0; }
.sidebar-cat-item:hover .sidebar-cat-left { color: var(--neutral-900); }

.sidebar-cat-count {
  font-size: 11px;
  font-weight: 600;
  color: var(--neutral-600);
  background: var(--neutral-100);
  padding: 3px 9px;
  border-radius: 20px;
  flex-shrink: 0;
}

/* Popular posts */
.sidebar-popular-post {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s var(--ease-smooth);
}

.sidebar-popular-post:hover { background: var(--neutral-50); }

.sidebar-popular-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--neutral-200);
  line-height: 1;
  flex-shrink: 0;
  width: 26px;
}

.sidebar-popular-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
  margin-bottom: 4px;
}

.sidebar-popular-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--neutral-700);
  line-height: 1.45;
}

.sidebar-popular-post:hover .sidebar-popular-title { color: var(--brand-orange); }

/* Tags */
.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px;
}

.sidebar-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1.5px solid var(--neutral-200);
  color: var(--neutral-600);
  background: var(--surface-white);
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
}

.sidebar-tag:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: rgba(239,127,27,0.06);
}
.sidebar-tag.active {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
}
.sidebar-tag { outline: none; }

/* Newsletter */
.sidebar-newsletter { padding: 18px; }

.sidebar-newsletter-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--neutral-600);
  margin-bottom: 14px;
}

.sidebar-newsletter-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--neutral-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  color: var(--neutral-800);
  background: var(--neutral-50);
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}

.sidebar-newsletter-input:focus { border-color: var(--brand-orange); }

/* ── PAGINATION ── */
.blog-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-page-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--neutral-200);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-600);
  background: var(--surface-white);
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  text-decoration: none;
}

.blog-page-btn:not(:disabled):hover { border-color: var(--brand-orange); color: var(--brand-orange); }
.blog-page-btn.active { background: var(--brand-orange); border-color: var(--brand-orange); color: white; }
.blog-page-btn.wide, .blog-page-btn:first-child, .blog-page-btn:last-child { width: auto; padding: 0 14px; }
.blog-page-btn.disabled, .blog-page-btn:disabled { opacity: 0.38; cursor: not-allowed; pointer-events: none; }

/* ── CTA SECTION — matches existing CTA style ── */
.blog-cta {
  background: var(--neutral-900);
  position: relative;
  overflow: hidden;
}

.blog-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.blog-cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-orange-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-cta-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--brand-orange-light);
  border-radius: 1px;
}

.blog-cta-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--surface-white);
  margin-bottom: 20px;
}

.blog-cta-text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

.blog-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.blog-cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.blog-cta-feature-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(239,127,27,0.15);
  border: 1px solid rgba(239,127,27,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── FOOTER — exact match from existing site ── */
footer { background: var(--neutral-900); color: var(--neutral-300); }

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--neutral-300) !important;
  margin-bottom: 24px;
  max-width: 340px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: white !important;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

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

.footer-nav-link {
  font-size: 13px;
  color: var(--neutral-300) !important;
  text-decoration: none;
  transition: color 0.25s var(--ease-smooth);
}

.footer-nav-link:hover { color: var(--surface-white) !important; }

.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-300);
  text-decoration: none;
  transition: all 0.25s var(--ease-smooth);
}

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

.footer-bottom-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--neutral-600);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link {
  font-size: 13px;
  color: var(--neutral-600);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-link:hover { color: var(--neutral-300); }

/* ISO cert badge */
.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-orange-light);
  border: 1px solid rgba(239,127,27,0.25);
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .blog-card-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-page-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 260px; }
  .blog-cta-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .blog-hero-inner { padding: 120px 20px 56px; }
  .blog-hero-stats { flex-wrap: wrap; gap: 0; }
  .blog-stat { padding: 0 20px 0 0; margin: 0 20px 0 0; }
  .blog-page-layout { padding: 40px 20px 60px; }
  .blog-card-grid { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .footer-inner { padding: 48px 20px 0; }
  .footer-bottom-bar { flex-direction: column; padding: 20px; text-align: center; }
  .blog-cta-inner { padding: 60px 20px; }
  .blog-filter-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
  .blog-filter-bar::-webkit-scrollbar { display: none; }
  .blog-filter-btn { white-space: nowrap; flex-shrink: 0; }
}

    /* ── HEADER NAV LAYOUT (Tailwind-independent) ── */
    .header-layout-inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 20px 40px;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
    }

    .site-nav-desktop {
      display: flex !important;
      align-items: center !important;
      gap: 32px !important;
      font-size: 14px !important;
      font-weight: 500 !important;
      letter-spacing: 0.02em !important;
    }

    .site-nav-mobile-btn {
      display: none !important;
    }

    @media (max-width: 767px) {
      .header-layout-inner { padding: 16px 20px; }
      .site-nav-desktop { display: none !important; }
      .site-nav-mobile-btn { display: flex !important; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; color: var(--neutral-900); }
    }