/* ==========================================================================
   SHIV IMPEX - NAV BAR, HERO, ABOUT, QA & CAPABILITIES STYLES
   Exact replicate of high-tech industrial home page design
   ========================================================================== */

/* --- DESIGN TOKENS & CSS VARIABLES --- */
:root {
  /* Colors */
  --primary-orange: #ee6c10;
  --primary-orange-hover: #ff7a00;
  --orange-gradient: linear-gradient(135deg, #ff7a00 0%, #ee5d00 100%);
  --orange-shadow: rgba(238, 108, 16, 0.45);

  --dark-navy: #060c18;
  --hero-bg: #050a14;
  --topbar-navy: #040810;
  --brand-navy: #0a2342;

  --text-dark: #1e293b;
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;
  --white: #ffffff;

  --bg-body: #050a14;
  --bg-navbar: #ffffff;
  --bg-toggle: #f1f5f9;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-topbar: rgba(255, 255, 255, 0.15);

  --shadow-nav: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-dropdown: 0 15px 35px rgba(0, 0, 0, 0.2);

  /* Fonts */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-brand: 'Montserrat', sans-serif;
  --font-script: 'Caveat', cursive;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- DARK THEME OVERRIDES --- */
body.dark-theme {
  --bg-navbar: #0a1120;
  --text-dark: #f8fafc;
  --bg-toggle: #1e293b;
  --border-light: rgba(255, 255, 255, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

::selection {
  background: #ee6c10;
  color: #ffffff;
}

::-moz-selection {
  background: #ee6c10;
  color: #ffffff;
}

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

::-webkit-scrollbar-track {
  background: #060c18;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff7a00 0%, #ee5d00 100%);
  border-radius: 5px;
  border: 2px solid #060c18;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff8c38;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-light);
  line-height: 1.5;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- HEADER CONTAINER --- */
.header-container {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-nav);
}

/* ==========================================================================
   1. TOP UTILITY BAR
   ========================================================================== */
.top-bar {
  background-color: var(--topbar-navy);
  color: var(--text-light);
  font-size: 12.5px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(14, 116, 144, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.top-bar-wrapper {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  padding: 0 0 0 24px;
  position: relative;
  z-index: 2;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.top-info-item a {
  color: var(--text-light);
  transition: var(--transition-fast);
}

.top-info-item a:hover {
  color: var(--primary-orange);
}

.icon-orange {
  color: var(--primary-orange);
  font-size: 13px;
}

.top-divider {
  width: 1px;
  height: 18px;
  background-color: var(--border-topbar);
}

.top-socials {
  display: flex;
  align-items: center;
  margin-left: 4px;
}

.social-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  transition: var(--transition-fast);
}

.social-circle:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-1px);
}

.top-bar-right {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 44px;
  padding-left: 60px;
  padding-right: 28px;
}

.globe-graphic-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/globe_bg.jpg');
  background-size: cover;
  background-position: right center;
  opacity: 0.65;
  mix-blend-mode: lighten;
  pointer-events: none;
}

.top-tagline {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 2;
  line-height: 1.15;
}

.tagline-main,
.tagline-sub {
  font-family: var(--font-brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #94a3b8;
  text-transform: uppercase;
}

.tagline-main {
  color: #cbd5e1;
}


/* ==========================================================================
   2. MAIN NAVIGATION BAR
   ========================================================================== */
.main-navbar {
  background-color: #ffffff;
  position: relative;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.dark-theme .main-navbar {
  background-color: #0b1329;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.navbar-wrapper {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  padding-left: 40px;
  padding-right: 0;
}

/* Slanted Left Edge Accent Cut */
.nav-left-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 24px;
  background: linear-gradient(180deg, var(--primary-orange) 0%, rgba(238, 108, 16, 0.1) 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.nav-brand {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
}

.official-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.official-logo-img:hover {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 58px;
  background: rgba(255, 255, 255, 0.96);
  padding: 6px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-brand);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: var(--brand-navy);
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

body.dark-theme .brand-name {
  color: var(--white);
}

.brand-tagline {
  font-family: var(--font-brand);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-orange);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link {
  font-family: var(--font-brand);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #2d3748;
  text-transform: uppercase;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  position: relative;
}

body.dark-theme .nav-link {
  color: #e2e8f0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-orange);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background-color: var(--primary-orange);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 -2px 10px rgba(238, 108, 16, 0.5);
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--primary-orange);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 240px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow-dropdown);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-normal);
  z-index: 100;
}

body.dark-theme .dropdown-menu {
  background-color: #0f172a;
  border-color: rgba(255, 255, 255, 0.1);
}

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

.dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  transition: var(--transition-fast);
}

body.dark-theme .dropdown-menu li a {
  color: #cbd5e1;
}

.dropdown-menu li a:hover {
  background-color: rgba(238, 108, 16, 0.08);
  color: var(--primary-orange);
  padding-left: 28px;
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.theme-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #f1f5f9;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: var(--transition-fast);
}

body.dark-theme .theme-toggle-btn {
  background-color: #1e293b;
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle-btn:hover {
  transform: scale(1.06);
  background-color: rgba(238, 108, 16, 0.12);
  color: var(--primary-orange);
}

.theme-icon-moon {
  display: none;
}

body.dark-theme .theme-icon-sun {
  display: none;
}

body.dark-theme .theme-icon-moon {
  display: block;
  color: #fbbf24;
}

.btn-quote {
  background: linear-gradient(135deg, #ff7a00 0%, #ee5d00 100%);
  color: var(--white);
  font-family: var(--font-brand);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 13px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(238, 108, 16, 0.4);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(238, 108, 16, 0.55);
}

.btn-arrow {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.btn-quote:hover .btn-arrow {
  transform: translateX(4px);
}

/* Far Right Slanted Metal Pellets Block matching exact reference image */
.metal-texture-wrapper {
  height: 100%;
  width: 170px;
  position: relative;
  margin-left: 10px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.slanted-orange-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff7a00 0%, #ee5d00 100%);
  clip-path: polygon(36px 0, 42px 0, 6px 100%, 0 100%);
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(-2px 0 6px rgba(238, 108, 16, 0.5));
}

.metal-texture-box {
  width: 100%;
  height: 100%;
  clip-path: polygon(40px 0, 100% 0, 100% 100%, 4px 100%);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.metal-texture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.15);
  transition: transform 0.5s ease;
}

.metal-texture-wrapper:hover .metal-texture-img {
  transform: scale(1.08);
}


.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
}

/* Close icon hidden by default — JS toggles visibility on menu open */
.mobile-toggle-btn .icon-close {
  display: none;
}

.mobile-toggle-btn .icon-bars {
  display: block;
}


/* ==========================================================================
   3. HERO / HOME SECTION STYLES
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: #030712;
  background-image: url('assets/hero_bg_factory.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: var(--white);
  min-height: calc(100vh - 126px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Dark Gradient Overlay for High Text Contrast */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.88) 0%, rgba(3, 7, 18, 0.65) 45%, rgba(3, 7, 18, 0.15) 100%),
    radial-gradient(ellipse at 85% 45%, rgba(255, 122, 0, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-globe-glow {
  display: none;
}

.hero-main-wrapper {
  max-width: 1560px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 36px 40px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff7a00;
  box-shadow: 0 0 10px #ff7a00, 0 0 20px #ff7a00;
}

.badge-text {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #e2e8f0;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: 62px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.title-white {
  color: #ffffff;
}

.title-orange {
  color: #ff7a00;
  text-shadow: 0 0 25px rgba(255, 122, 0, 0.4);
}

.hero-description {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 660px;
  margin-bottom: 32px;
}

.hero-description strong {
  color: #ffffff;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 36px;
}

.feature-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
}

.feature-card:hover {
  border-color: rgba(255, 122, 0, 0.6);
  transform: translateY(-4px);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 15px 35px rgba(255, 122, 0, 0.2);
}

.feature-icon {
  font-size: 22px;
  color: #ff7a00;
  margin-top: 2px;
}

.feature-info h4 {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.feature-info p {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.35;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}

.btn-primary-orange {
  background: linear-gradient(135deg, #ff7a00 0%, #ee5d00 100%);
  color: #ffffff;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 16px 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.45);
  transition: var(--transition-normal);
}

.btn-primary-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(255, 122, 0, 0.65);
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 16px 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #040914;
  object-fit: cover;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 12.5px;
  color: #94a3b8;
  font-weight: 600;
}

.proof-line {
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* HERO RIGHT VISUAL COLUMN WITH SPILLED SHOTS TUB */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.hero-circle-container {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glowing-orange-arc {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 122, 0, 0.7);
  box-shadow: 0 0 45px rgba(255, 122, 0, 0.5), inset 0 0 30px rgba(255, 122, 0, 0.3);
  pointer-events: none;
}

.metal-tub-mask {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.metal-tub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  background: rgba(10, 16, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.badge-top-right {
  top: 0px;
  right: 20px;
}

.badge-center-left {
  top: 48%;
  left: -25px;
  transform: translateY(-50%);
}

.badge-middle-right {
  bottom: 50px;
  right: -20px;
}

.badge-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 122, 0, 0.18);
  border: 1px solid rgba(255, 122, 0, 0.5);
  color: #ff7a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-label {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}

.badge-value {
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-sublabel {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.accent-dash {
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #ff7a00;
}

.vertical-tagline {
  position: absolute;
  right: -55px;
  top: 38%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-family: var(--font-brand);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.35);
}

.hero-bottom-tagline {
  position: absolute;
  bottom: -20px;
  right: 15px;
  text-align: right;
}

.hero-bottom-tagline h4 {
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #94a3b8;
}

.hero-bottom-tagline p {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.orange-accent-line {
  width: 50px;
  height: 2px;
  background-color: #ff7a00;
  margin-left: auto;
  margin-top: 6px;
}

/* HERO SPECS BAR MATCHING EXACT REFERENCE IMAGE 2 (END TO END 100%) */
.hero-specs-bar {
  width: 100% !important;
  max-width: 100% !important;
  background: rgba(3, 7, 18, 0.75) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-bottom: none !important;
  padding: 20px 0 !important;
  position: relative !important;
  z-index: 10 !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: none !important;
}

.specs-container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: transparent !important;
  border: none !important;
}

.specs-left-group {
  display: flex !important;
  align-items: center !important;
  gap: 48px !important;
  background: transparent !important;
}

.spec-box {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.spec-icon {
  font-size: 24px !important;
  color: #ff7a00 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.spec-details {
  display: flex !important;
  flex-direction: column !important;
}

.spec-number {
  font-family: var(--font-brand) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
}

.spec-title {
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  color: #94a3b8 !important;
  text-transform: uppercase !important;
  margin-top: 2px !important;
}

.spec-divider {
  width: 1px !important;
  height: 34px !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
}

.scroll-explore {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-left: auto !important;
  background: transparent !important;
}

.mouse-pill {
  width: 24px !important;
  height: 36px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 20px !important;
  display: flex !important;
  justify-content: center !important;
  padding-top: 5px !important;
}

.mouse-wheel {
  font-size: 10px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 700 !important;
}

.scroll-text {
  font-family: var(--font-brand) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  color: #94a3b8 !important;
}

.scroll-line {
  width: 36px !important;
  height: 1.5px !important;
  background-color: rgba(255, 255, 255, 0.3) !important;
}


/* ==========================================================================
   4. ABOUT US SECTION STYLES
   ========================================================================== */
.about-section {
  background-color: #ffffff;
  color: #1e293b;
  padding: 90px 36px;
  position: relative;
}

body.dark-theme .about-section {
  background-color: #0b1329;
  color: #f8fafc;
}

.about-container {
  max-width: 1560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.about-card-frame {
  position: relative;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 36px 28px 0;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

body.dark-theme .about-card-frame {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.1);
}

.about-card-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(238, 108, 16, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.script-badge-top {
  position: relative;
  z-index: 5;
}

.script-text {
  font-family: var(--font-script);
  font-size: 28px;
  font-weight: 700;
  color: #334155;
  line-height: 1.1;
  display: block;
}

body.dark-theme .script-text {
  color: #cbd5e1;
}

.script-underline {
  width: 50px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
  margin-top: 2px;
}

.about-floating-pill {
  position: absolute;
  top: 24px;
  right: 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

body.dark-theme .about-floating-pill {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

.pill-icon-orange {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(238, 108, 16, 0.12);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.pill-text-group {
  display: flex;
  flex-direction: column;
}

.pill-label {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
}

.pill-value {
  font-family: var(--font-brand);
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

body.dark-theme .pill-value {
  color: #ffffff;
}

.arrow-mini {
  font-size: 11px;
  color: var(--primary-orange);
}

.about-jar-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 10px auto 30px;
}

.about-orbit-arc {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px solid rgba(238, 108, 16, 0.7);
  box-shadow: 0 0 25px rgba(238, 108, 16, 0.35);
  pointer-events: none;
}

.about-jar-img-mask {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.about-glass-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  width: 220px;
  z-index: 10;
}

body.dark-theme .about-glass-card {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

.card-left-1 {
  top: 180px;
  left: 16px;
}

.card-left-2 {
  top: 310px;
  left: 24px;
}

.card-right {
  top: 260px;
  right: 16px;
}

.card-icon-orange {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(238, 108, 16, 0.12);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.card-text h5 {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 2px;
}

body.dark-theme .card-text h5 {
  color: #f8fafc;
}

.card-text p {
  font-size: 10.5px;
  color: #64748b;
  line-height: 1.3;
}

.about-card-specs-bar {
  background: #081021;
  color: #ffffff;
  border-radius: 14px 14px 0 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.card-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-icon-orange {
  font-size: 16px;
  color: var(--primary-orange);
}

.spec-info {
  display: flex;
  flex-direction: column;
}

.spec-num {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.spec-desc {
  font-size: 9.5px;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 1px;
}

.card-spec-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* RIGHT CONTENT COLUMN */
.about-content-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-watermark {
  position: absolute;
  top: -20px;
  right: 0;
  font-family: var(--font-brand);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.04);
  max-width: 280px;
  text-align: right;
  line-height: 1.15;
  pointer-events: none;
}

body.dark-theme .about-watermark {
  color: rgba(255, 255, 255, 0.03);
}

.about-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.tagline-dash {
  width: 24px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

.tagline-title {
  font-family: var(--font-brand);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--primary-orange);
  text-transform: uppercase;
}

.about-headline {
  font-family: var(--font-brand);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hl-navy {
  color: #0a2342;
}

body.dark-theme .hl-navy {
  color: #ffffff;
}

.hl-orange {
  color: var(--primary-orange);
}

.about-p {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 18px;
}

body.dark-theme .about-p {
  color: #cbd5e1;
}

.about-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin: 16px 0 32px;
}

.af-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.af-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(238, 108, 16, 0.12);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.af-content h6 {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 3px;
}

body.dark-theme .af-content h6 {
  color: #f8fafc;
}

.af-content p {
  font-size: 11px;
  color: #64748b;
  line-height: 1.35;
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}

.btn-orange-pill {
  background: var(--orange-gradient);
  color: var(--white);
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 15px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px var(--orange-shadow);
  transition: var(--transition-normal);
}

.btn-orange-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(238, 108, 16, 0.55);
}

.btn-outline-pill {
  background: #ffffff;
  border: 1.5px solid #0f172a;
  color: #0f172a;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 15px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

body.dark-theme .btn-outline-pill {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn-outline-pill:hover {
  background: #0f172a;
  color: #ffffff;
}

.about-stats-footer {
  width: 100%;
  position: relative;
  padding-top: 20px;
}

.stats-accent-line {
  width: 40px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
  margin-bottom: 16px;
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-unit {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-brand);
  font-size: 30px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

body.dark-theme .stat-num {
  color: #ffffff;
}

.stat-txt {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  margin-top: 4px;
}

.stat-vert-line {
  width: 1px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.1);
}

body.dark-theme .stat-vert-line {
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-script-quote {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-watermark {
  font-size: 28px;
  color: rgba(238, 108, 16, 0.2);
}

.script-wrapper {
  display: flex;
  flex-direction: column;
}

.script-sign {
  font-family: var(--font-script);
  font-size: 24px;
  font-weight: 700;
  color: #334155;
  line-height: 1;
}

body.dark-theme .script-sign {
  color: #cbd5e1;
}

.script-stroke {
  width: 100%;
  height: 2px;
  background-color: var(--primary-orange);
  border-radius: 2px;
  margin-top: 2px;
}


/* ==========================================================================
   5. QUALITY ASSURANCE / WHY CHOOSE US SECTION STYLES
   ========================================================================== */
.qa-section {
  position: relative;
  background-color: #060c18;
  color: #ffffff;
  padding: 100px 36px 140px;
  overflow: hidden;
}

.qa-bg-spilled-bucket {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.spilled-bucket-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.45;
  filter: contrast(1.15) brightness(0.95);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.qa-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 40%, rgba(238, 108, 16, 0.16) 0%, transparent 50%),
    radial-gradient(circle at 90% 60%, rgba(14, 116, 144, 0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.qa-top-tagline {
  position: absolute;
  top: 36px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.qa-tagline-dash {
  width: 30px;
  height: 2px;
  background-color: var(--primary-orange);
}

.qa-tagline-txt {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
}

.qa-container {
  max-width: 1560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.qa-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 5;
}

.qa-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.qa-badge-dash {
  width: 20px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

.qa-badge-dot {
  font-size: 10px;
  color: var(--primary-orange);
}

.qa-badge-txt {
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-orange);
}

.qa-headline {
  font-family: var(--font-brand);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
}

.qa-hl-orange {
  color: var(--primary-orange);
}

.qa-desc {
  font-size: 15.5px;
  color: #cbd5e1;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 36px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.qa-stats-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}

.qa-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qa-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  backdrop-filter: blur(8px);
}

.qa-stat-text {
  display: flex;
  flex-direction: column;
}

.qa-stat-val {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.qa-stat-lbl {
  font-size: 11px;
  color: #cbd5e1;
  margin-top: 2px;
}

.qa-stat-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
}

.qa-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.btn-watch-story {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-brand);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.btn-watch-story:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.play-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--white);
}

.qa-script-watermark {
  margin-top: 10px;
}

.qa-script-txt {
  font-family: var(--font-script);
  font-size: 34px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  display: block;
}

.qa-script-line {
  width: 60px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
  margin-top: 2px;
}

.qa-right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 5;
}

.qa-card {
  position: relative;
  background: rgba(10, 18, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 28px 24px 24px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: var(--transition-normal);
}

.qa-card:hover {
  border-color: rgba(238, 108, 16, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.qa-card-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 1;
}

.qa-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 12, 24, 0.92) 0%, rgba(6, 12, 24, 0.72) 100%);
  z-index: 2;
}

.qa-card:hover .qa-card-bg-img {
  transform: scale(1.08);
  opacity: 0.65;
}

.qa-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
  z-index: 3;
}

.qa-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(238, 108, 16, 0.18);
  border: 1px solid rgba(238, 108, 16, 0.4);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.qa-card-num {
  font-family: var(--font-brand);
  font-size: 38px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}

.qa-card-body {
  position: relative;
  z-index: 3;
  margin-bottom: 20px;
}

.qa-card-body h3 {
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.qa-card-body p {
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.5;
}

.qa-card-arrow-btn {
  position: relative;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition-fast);
}

.qa-card:hover .qa-card-arrow-btn {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateX(4px);
}

.qa-bottom-bar-wrap {
  position: absolute;
  bottom: 24px;
  left: 36px;
  right: 36px;
  z-index: 20;
}

.qa-bottom-bar {
  max-width: 1560px;
  margin: 0 auto;
  background: rgba(10, 20, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
}

.qa-bar-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qa-bar-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(238, 108, 16, 0.18);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.qa-bar-info {
  display: flex;
  flex-direction: column;
}

.qa-bar-title-orange {
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 0.8px;
}

.qa-bar-title-white {
  font-family: var(--font-brand);
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.qa-bar-sub {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 1px;
}

.qa-bar-divider {
  width: 1px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.15);
}

.btn-touch-orange {
  background: var(--orange-gradient);
  color: var(--white);
  font-family: var(--font-brand);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px var(--orange-shadow);
  transition: var(--transition-fast);
}

.btn-touch-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(238, 108, 16, 0.6);
}


/* ==========================================================================
   6. OUR CAPABILITIES SECTION STYLES (EXACT REPLICATE OF LIGHT IMAGE)
   ========================================================================== */
.capabilities-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  color: #0a1120;
  padding: 90px 36px 130px;
  overflow: hidden;
}

body.dark-theme .capabilities-section {
  background: linear-gradient(180deg, #0b1329 0%, #060c18 100%);
  color: #ffffff;
}

.cap-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(238, 108, 16, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* PROMINENT BACKGROUND WORLD MAP WITH ORANGE ARCS */
.cap-map-dots {
  position: absolute;
  right: 0;
  top: 0;
  width: 720px;
  height: 520px;
  background-image: url('assets/world_map_dots.png');
  background-size: cover;
  background-position: center right;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

/* Completely transparent background in dark mode (no white square box) */
body.dark-theme .cap-map-dots {
  filter: invert(0.92) hue-rotate(180deg);
  mix-blend-mode: screen;
  opacity: 0.28;
  background-color: transparent !important;
}

/* Enlarged Left Dish Accent Image */
.cap-left-dish {
  position: absolute;
  left: -130px;
  top: 48%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: transform 0.4s ease;
}

body.dark-theme .cap-left-dish {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.cap-left-dish:hover {
  transform: translateY(-50%) scale(1.03);
}

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

/* Vertical Watermarks */
.cap-v-watermark-left {
  position: absolute;
  left: 260px;
  top: 160px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #94a3b8;
  z-index: 5;
}

.v-line-orange {
  width: 24px;
  height: 2px;
  background-color: var(--primary-orange);
}

.cap-v-watermark-right {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--font-brand);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.25);
  z-index: 5;
}

body.dark-theme .cap-v-watermark-right {
  color: rgba(255, 255, 255, 0.25);
}

/* Header Text Area */
.cap-header-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 54px;
  position: relative;
  z-index: 5;
}

.cap-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cap-dash-line {
  width: 24px;
  height: 2px;
  background-color: var(--primary-orange);
}

.cap-tagline-txt {
  font-family: var(--font-brand);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-orange);
  text-transform: uppercase;
}

.cap-headline {
  font-family: var(--font-brand);
  font-size: 48px;
  font-weight: 900;
  color: #0a1120;
  line-height: 1.15;
  margin-bottom: 12px;
}

body.dark-theme .cap-headline {
  color: #ffffff;
}

.cap-hl-orange {
  color: var(--primary-orange);
}

.cap-sub {
  font-size: 16px;
  color: #64748b;
  font-weight: 500;
}

body.dark-theme .cap-sub {
  color: #cbd5e1;
}

/* 4 CARDS GRID WITH DISTINCTIVE BOTTOM-RIGHT CURVE EDGE */
.cap-cards-container {
  max-width: 1400px;
  margin: 0 auto 70px;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

.cap-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cap-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  /* Asymmetric rounded corner curve matching the image */
  border-radius: 22px 22px 42px 22px;
  padding: 28px 24px 28px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: var(--transition-normal);
}

body.dark-theme .cap-card {
  background: rgba(15, 23, 42, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
}

.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(238, 108, 16, 0.2);
  border-color: rgba(238, 108, 16, 0.5);
}

.cap-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cap-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid rgba(238, 108, 16, 0.2);
  border-top-color: var(--primary-orange);
  border-right-color: var(--primary-orange);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

body.dark-theme .cap-icon-badge {
  background: #1e293b;
}

.cap-card-num {
  font-family: var(--font-brand);
  font-size: 28px;
  font-weight: 900;
  color: #cbd5e1;
}

body.dark-theme .cap-card-num {
  color: rgba(255, 255, 255, 0.15);
}

.cap-card-body {
  display: flex;
  flex-direction: column;
}

.cap-val-num {
  font-family: var(--font-brand);
  font-size: 42px;
  font-weight: 900;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.cap-title {
  font-family: var(--font-brand);
  font-size: 13.5px;
  font-weight: 800;
  color: #0a1120;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

body.dark-theme .cap-title {
  color: #ffffff;
}

.cap-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
}

body.dark-theme .cap-desc {
  color: #cbd5e1;
}

.cap-card-bottom-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at bottom right, rgba(238, 108, 16, 0.35) 0%, transparent 70%);
  pointer-events: none;
  border-bottom-right-radius: 42px;
}


/* BOTTOM GLOWING ORANGE RIBBON TICKER BANNER (TILTED MARQUEE) */
.cap-ticker-banner-wrap {
  position: absolute;
  bottom: 14px;
  left: -4%;
  width: 108%;
  z-index: 10;
  transform: rotate(-1.2deg);
  transform-origin: center center;
}

.cap-ticker-banner {
  width: 100%;
  background: linear-gradient(135deg, #ff7a00 0%, #ee5d00 50%, #ff8c1a 100%);
  color: #ffffff;
  padding: 18px 0;
  display: flex;
  align-items: center;
  box-shadow: 0 -8px 30px rgba(238, 108, 16, 0.45), 0 10px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
}

.cap-ticker-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.7), #ffffff);
}

.cap-marquee-content {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  white-space: nowrap;
  animation: capMarqueeLoop 24s linear infinite;
  will-change: transform;
}

.cap-marquee-content:hover {
  animation-play-state: paused;
}

@keyframes capMarqueeLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 12px;
}

.ticker-txt-dim {
  font-family: var(--font-brand);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

.ticker-txt-bold {
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #ffffff;
  text-transform: uppercase;
}

.ticker-divider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.t-line {
  width: 2px;
  height: 22px;
  background-color: rgba(255, 255, 255, 0.6);
  transform: skewX(-15deg);
}

.t-gear {
  font-size: 15px;
  color: #ffffff;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}


/* ==========================================================================
   5. OUR PRODUCTS SECTION
   ========================================================================== */
.products-section {
  position: relative;
  padding: 65px 0 40px;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  overflow: hidden;
}

body.dark-theme .products-section {
  background: linear-gradient(180deg, #060c18 0%, #0a1120 100%);
}

.prod-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(238, 108, 16, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.prod-bg-map-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 650px;
  height: 360px;
  background-image: url('assets/world_map_dots.png');
  background-size: cover;
  background-position: top right;
  opacity: 0.45;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

body.dark-theme .prod-bg-map-dots {
  filter: invert(0.92) hue-rotate(180deg);
  mix-blend-mode: screen;
  opacity: 0.25;
}

/* Left Industrial Factory Silhouette & Vertical Watermarks */
.prod-left-factory-container {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 220px;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.prod-factory-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.38;
  filter: grayscale(100%) contrast(120%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 100%);
}

body.dark-theme .prod-factory-full-img {
  opacity: 0.22;
  mix-blend-mode: screen;
  filter: grayscale(100%) invert(1) brightness(1.2);
}

.prod-left-watermark-top {
  position: absolute;
  left: 32px;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-brand);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #94a3b8;
  z-index: 3;
}

body.dark-theme .prod-left-watermark-top {
  color: rgba(255, 255, 255, 0.3);
}

.prod-left-tagline-bottom {
  position: absolute;
  left: 32px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}

.p-orange-line {
  width: 24px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

.p-tagline-text {
  font-family: var(--font-brand);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 1.5;
  color: #94a3b8;
  text-transform: uppercase;
}

body.dark-theme .p-tagline-text {
  color: rgba(255, 255, 255, 0.3);
}

/* Top Right Spilled Shots Bucket & Script Accent */
.prod-top-right-accent {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 5;
}

.prod-script-text {
  position: relative;
  font-family: var(--font-script);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  transform: rotate(-5deg);
}

.script-small {
  font-size: 22px;
  color: #1e293b;
  font-weight: 600;
}

body.dark-theme .script-small {
  color: #f8fafc;
}

.script-big {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
}

body.dark-theme .script-big {
  color: #ffffff;
}

.script-orange-underline {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), #ff9e43);
  border-radius: 3px;
  margin-top: 2px;
  transform: rotate(-1.5deg);
}

.prod-spilled-bucket-box {
  width: 170px;
  height: 140px;
  position: relative;
  overflow: hidden;
  border-radius: 45% 0 0 45%;
  box-shadow: -8px 12px 28px rgba(0, 0, 0, 0.08);
}

.prod-spilled-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.products-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

.prod-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 28px;
}

.prod-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.prod-dash {
  width: 20px;
  height: 2px;
  background-color: var(--primary-orange);
}

.prod-tagline-txt {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-orange);
}

.prod-headline {
  font-family: var(--font-brand);
  font-size: 38px;
  font-weight: 900;
  color: #0a1120;
  line-height: 1.15;
  margin-bottom: 10px;
}

body.dark-theme .prod-headline {
  color: #ffffff;
}

.prod-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 18px;
}

body.dark-theme .prod-desc {
  color: #cbd5e1;
}

/* 4 Feature Highlights Row */
.prod-highlights-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 8px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

body.dark-theme .prod-highlights-row {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
}

.ph-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
}

body.dark-theme .ph-item {
  color: #f1f5f9;
}

.ph-icon {
  color: var(--primary-orange);
  font-size: 13px;
}

.ph-divider {
  width: 1px;
  height: 14px;
  background-color: #cbd5e1;
}

/* Filter Tabs */
.prod-tabs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.prod-tab {
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-normal);
}

body.dark-theme .prod-tab {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.prod-tab:hover,
.prod-tab.active {
  background: linear-gradient(135deg, #ff7a00 0%, #ee5d00 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(238, 108, 16, 0.35);
}

/* Products Content Grid with Right Industry Sidebar */
.prod-content-grid {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 20px;
  margin-bottom: 28px;
}

.prod-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.prod-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

body.dark-theme .prod-card {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.p-card-img-wrap {
  position: relative;
  height: 165px;
  overflow: hidden;
}

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

.prod-card:hover .p-card-img {
  transform: scale(1.06);
}

.p-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: 6px;
  font-family: var(--font-brand);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 2;
}

.tag-non-ferrous {
  background: #0f172a;
  color: #ffffff;
}

.tag-ferrous {
  background: #1e293b;
  color: #ffffff;
}

.tag-abrasives {
  background: #0284c7;
  color: #ffffff;
}

.p-card-body {
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
}

.p-card-body h3 {
  font-family: var(--font-brand);
  font-size: 17px;
  font-weight: 800;
  color: #0a1120;
  margin-bottom: 8px;
  min-height: 22px;
}

body.dark-theme .p-card-body h3 {
  color: #ffffff;
}

.p-card-body p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 58px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.dark-theme .p-card-body p {
  color: #94a3b8;
}

.p-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  margin-top: 0;
}

body.dark-theme .p-card-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.btn-read-more {
  font-family: var(--font-brand);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.btn-read-more:hover {
  gap: 10px;
}

.p-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(238, 108, 16, 0.1);
  transition: var(--transition-normal);
}

.p-icon-btn i {
  font-size: 16px;
  color: var(--primary-orange);
  transition: color 0.2s ease;
}

body.dark-theme .p-icon-btn {
  background: rgba(238, 108, 16, 0.15);
  border-color: rgba(238, 108, 16, 0.3);
  color: var(--primary-orange);
}

body.dark-theme .p-icon-btn i {
  color: var(--primary-orange);
}

.prod-card:hover .p-icon-btn {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(238, 108, 16, 0.4);
  transform: translateY(-2px);
}

.prod-card:hover .p-icon-btn i {
  color: #ffffff;
}

/* Right Industry Sidebar */
.prod-industry-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.ind-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 14px 10px;
  background: #ffffff;
  border-radius: 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: var(--transition-normal);
}

body.dark-theme .ind-item {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.ind-item:hover {
  border-color: var(--primary-orange);
  transform: translateX(-4px);
  box-shadow: 0 10px 25px rgba(238, 108, 16, 0.25);
  background: #fffdfa;
}

body.dark-theme .ind-item:hover {
  background: #1e293b;
}

.ind-icon {
  font-size: 22px;
  color: var(--primary-orange);
  filter: drop-shadow(0 2px 6px rgba(238, 108, 16, 0.3));
  transition: transform 0.3s ease;
}

.ind-item:hover .ind-icon {
  transform: scale(1.18);
}

.ind-item span {
  font-family: var(--font-brand);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #0f172a;
}

body.dark-theme .ind-item span {
  color: #f1f5f9;
}

/* Bottom Dark Support Bar */
.prod-bottom-bar-wrap {
  width: 100%;
}

.prod-bottom-bar {
  position: relative;
  background: linear-gradient(135deg, #040914 0%, #0a1329 100%);
  /* Slanted diagonal cut corner on top-left matching design reference */
  clip-path: polygon(32px 0, 100% 0, 100% 100%, 0 100%, 0 32px);
  border-radius: 0 22px 22px 0;
  padding: 18px 36px 18px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.prod-bottom-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  border-top: 3.5px solid var(--primary-orange);
  border-left: 3.5px solid var(--primary-orange);
  pointer-events: none;
}

.p-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-bar-headset {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(238, 108, 16, 0.18);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.p-bar-text h4 {
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 2px;
}

.p-bar-text p {
  font-size: 12px;
  color: #94a3b8;
}

.p-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-bar-glob-txt {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #94a3b8;
}


/* ==========================================================================
   6. CERTIFICATIONS SECTION
   ========================================================================== */
.certifications-section {
  position: relative;
  padding: 45px 0 35px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

body.dark-theme .certifications-section {
  background: #060c18;
}

.cert-bg-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

/* Top Right Dark Curved Backdrop Shape */
.cert-top-right-dark-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 240px;
  background: radial-gradient(circle at 100% 0%, #0d172a 0%, #060c18 65%, transparent 100%);
  border-bottom-left-radius: 100%;
  z-index: 2;
  pointer-events: none;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
}

.cert-pill-badge-top {
  position: absolute;
  top: 24px;
  left: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.cert-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(238, 108, 16, 0.35);
}

.cert-badge-txt {
  font-family: var(--font-brand);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #64748b;
}

body.dark-theme .cert-badge-txt {
  color: #cbd5e1;
}

.cert-badge-dash {
  width: 20px;
  height: 2px;
  background-color: var(--primary-orange);
}

/* 3D Circular Gold Medallion Seal (Top Right Accent) */
.cert-top-right-seal {
  position: absolute;
  top: 10px;
  right: 18px;
  width: 155px;
  height: 155px;
  z-index: 10;
  pointer-events: none;
}

.seal-glow-aura {
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.45) 0%, rgba(212, 175, 55, 0.25) 45%, transparent 70%);
  border-radius: 50%;
  animation: sealGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes sealGlowPulse {
  0% { opacity: 0.6; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1.05); }
}

.seal-outer-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37 0%, #59421b 30%, #fef08a 50%, #854d0e 70%, #d4af37 100%);
  padding: 5px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.6);
}

.seal-gold-border {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a1e0b 0%, #171004 60%, #0a0601 100%);
  border: 2.5px solid #d4af37;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.9);
}

.seal-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px dashed rgba(212, 175, 55, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.seal-crown {
  color: #fbbf24;
  font-size: 19px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.seal-text {
  font-family: var(--font-brand);
  font-size: 9.5px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1.2px;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 0 8px rgba(212, 175, 55, 0.6);
}

.seal-stars {
  color: #fbbf24;
  font-size: 9.5px;
  letter-spacing: 2px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
}

.cert-watermark-right {
  position: absolute;
  right: 185px;
  top: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-family: var(--font-brand);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: #94a3b8;
  z-index: 5;
}

.cert-w-dash {
  width: 24px;
  height: 2px;
  background-color: var(--primary-orange);
}

.cert-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

.cert-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 22px;
}

.cert-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.cert-dash {
  width: 20px;
  height: 2px;
  background-color: var(--primary-orange);
}

.cert-tagline-txt {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-orange);
}

.cert-headline {
  font-family: var(--font-brand);
  font-size: 34px;
  font-weight: 900;
  color: #0a1120;
  line-height: 1.15;
  margin-bottom: 6px;
}

body.dark-theme .cert-headline {
  color: #ffffff;
}

.cert-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.45;
}

body.dark-theme .cert-desc {
  color: #cbd5e1;
}

/* Slider Track */
.cert-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.slider-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  color: #0a1120;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
  z-index: 10;
  flex-shrink: 0;
}

body.dark-theme .slider-arrow {
  background: #1e293b;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}

.slider-arrow:hover {
  background: var(--primary-orange);
  color: #ffffff;
  border-color: transparent;
}

.cert-cards-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 6px;
  width: 100%;
  scrollbar-width: none;
}

.cert-cards-track::-webkit-scrollbar {
  display: none;
}

.cert-card {
  min-width: 175px;
  flex: 1;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-normal);
}

body.dark-theme .cert-card {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
}

.cert-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-orange);
  box-shadow: 0 12px 28px rgba(238, 108, 16, 0.15);
}

.cert-logo-box {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.logo-tata {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tata-text {
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 900;
  color: #1e3a8a;
  letter-spacing: 2px;
}

.nexarc-text {
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 800;
  color: #0284c7;
}

.logo-eepc {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eepc-text {
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 900;
  color: #1d4ed8;
}

.eepc-sub {
  font-size: 7px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
}

.logo-msme {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.msme-icon {
  font-size: 24px;
  color: #b91c1c;
  margin-bottom: 2px;
}

.msme-text {
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 900;
  color: #1e293b;
}

body.dark-theme .msme-text {
  color: #ffffff;
}

.msme-sub {
  font-size: 7.5px;
  color: #64748b;
}

.logo-iso {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1d4ed8;
}

.iso-icon {
  font-size: 28px;
}

.iso-text {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 900;
}

.logo-bis {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #0284c7;
}

.bis-icon {
  font-size: 22px;
}

.bis-text {
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 900;
}

.bis-sub {
  font-size: 8.5px;
}

.cert-title {
  font-family: var(--font-brand);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #64748b;
}

body.dark-theme .cert-title {
  color: #94a3b8;
}

/* Bottom Dark Ribbon */
.cert-bottom-bar-wrap {
  width: 100%;
}

.cert-bottom-bar {
  background: linear-gradient(135deg, #060c18 0%, #0c162c 100%);
  border-radius: 16px 36px 16px 36px;
  padding: 16px 36px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cert-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(238, 108, 16, 0.15);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.pillar-info h4 {
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 800;
}

.pillar-info p {
  font-size: 11.5px;
  color: #94a3b8;
}

.cert-pillar-divider {
  width: 1px;
  height: 26px;
  background-color: rgba(255, 255, 255, 0.12);
}

.cert-script-watermark {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.script-txt {
  font-family: var(--font-script);
  font-size: 26px;
  color: #334155;
  font-weight: 600;
}

body.dark-theme .script-txt {
  color: #94a3b8;
}

.script-line {
  width: 130px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 100%);
  border-radius: 3px;
}


/* ==========================================================================
   7. GET A QUOTE / CONTACT SECTION
   ========================================================================== */
.quote-section {
  position: relative;
  padding: 60px 0 50px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}

body.dark-theme .quote-section {
  background: linear-gradient(180deg, #060c18 0%, #081024 100%);
}

.quote-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 320px 1.2fr;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  z-index: 5;
}

.quote-left {
  display: flex;
  flex-direction: column;
}

.quote-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.quote-dash {
  width: 24px;
  height: 2px;
  background-color: #ff6b00;
}

.quote-tagline-txt {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ff6b00;
}

.quote-headline {
  font-family: var(--font-brand);
  font-size: 46px;
  font-weight: 900;
  color: #0a1120;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

body.dark-theme .quote-headline {
  color: #ffffff;
}

.hl-orange {
  color: #ff6b00;
}

.quote-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 24px;
}

body.dark-theme .quote-desc {
  color: #cbd5e1;
}

.quote-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.q-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.q-icon-orange {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff0e6;
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.12);
}

body.dark-theme .q-icon-orange {
  background: rgba(238, 108, 16, 0.15);
}

.q-info h3 {
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 800;
  color: #0a1120;
  margin-bottom: 2px;
  line-height: 1.25;
}

body.dark-theme .q-info h3 {
  color: #ffffff;
}

.q-info p {
  font-size: 12px;
  color: #94a3b8;
}

/* 4 Key Strengths Badges Row */
.quote-strengths-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 8px 0;
}

.qs-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qs-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff0e6;
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

body.dark-theme .qs-icon-box {
  background: rgba(255, 107, 0, 0.18);
}

.qs-txt-wrap {
  display: flex;
  flex-direction: column;
  font-family: var(--font-brand);
  line-height: 1.15;
}

.qs-txt-wrap strong {
  font-size: 12px;
  font-weight: 800;
  color: #0a1120;
}

body.dark-theme .qs-txt-wrap strong {
  color: #ffffff;
}

.qs-txt-wrap span {
  font-size: 11px;
  color: #64748b;
}

body.dark-theme .qs-txt-wrap span {
  color: #94a3b8;
}

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

body.dark-theme .qs-divider {
  background: rgba(255, 255, 255, 0.1);
}

.quote-script-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 20px;
}

.script-text-val {
  font-family: var(--font-script);
  font-size: 30px;
  color: #334155;
  font-weight: 600;
}

body.dark-theme .script-text-val {
  color: #cbd5e1;
}

.q-script-underline {
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, #ff7a00 0%, #ee5d00 100%);
  border-radius: 3px;
}

/* Bottom Left Dark Ribbon */
.quote-left-bottom-bar {
  background: linear-gradient(135deg, #060c18 0%, #0c162c 100%);
  border-radius: 14px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.qb-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.2);
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.qb-col-1 h4 {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.qb-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

.qb-col-2 {
  display: flex;
  flex-direction: column;
}

.qb-title {
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
}

.qb-sub {
  font-size: 11px;
  color: #94a3b8;
}

/* Center Visual */
.quote-center-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.q-dish-mask {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

body.dark-theme .q-dish-mask {
  border-color: rgba(255, 255, 255, 0.15);
}

.q-dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.q-floating-tag {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-theme .q-floating-tag {
  background: #0f172a;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}

.q-dot {
  color: #ff6b00;
  font-size: 10px;
}

.q-bg-watermark-tags {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-family: var(--font-brand);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #94a3b8;
  opacity: 0.8;
  pointer-events: none;
}

/* Right Form Card */
.quote-right-form-wrap {
  width: 100%;
}

.quote-form-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 38px 34px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07), 0 4px 16px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

body.dark-theme .quote-form-card {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.q-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.q-sub-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ff6b00;
}

.q-dash-sm {
  width: 18px;
  height: 2px;
  background-color: #ff6b00;
}

.q-timer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #64748b;
}

.q-form-title {
  font-family: var(--font-brand);
  font-size: 38px;
  font-weight: 900;
  color: #0a1120;
  line-height: 1.1;
  margin-bottom: 6px;
}

body.dark-theme .q-form-title {
  color: #ffffff;
}

.q-form-sub {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 24px;
}

.ast {
  color: #ff6b00;
  font-weight: 900;
}

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

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

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group.full-width {
  grid-column: span 2;
}

.input-group label {
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

body.dark-theme .input-group label {
  color: #cbd5e1;
}

.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 14px;
}

.input-icon-wrap input,
.input-icon-wrap textarea {
  width: 100%;
  padding: 13px 16px 13px 44px;
  background: #f4f7fc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #0a1120;
  transition: var(--transition-normal);
}

body.dark-theme .input-icon-wrap input,
body.dark-theme .input-icon-wrap textarea {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.input-icon-wrap input:focus,
.input-icon-wrap textarea:focus {
  outline: none;
  border-color: #ff6b00;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
}

.textarea-wrap {
  align-items: flex-start;
}

.textarea-wrap .input-icon {
  top: 14px;
}

.form-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.btn-orange-submit {
  background: linear-gradient(135deg, #ff7a00 0%, #ff5500 100%);
  color: #ffffff;
  padding: 15px 34px;
  border-radius: 50px;
  border: none;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
  transition: var(--transition-normal);
}

.btn-orange-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.5);
}

.btn-attach-file {
  background: #f1f5f9;
  color: #475569;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-normal);
}

body.dark-theme .btn-attach-file {
  background: #1e293b;
  color: #cbd5e1;
}

.btn-attach-file:hover {
  background: #e2e8f0;
}

.form-security-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #64748b;
  margin-top: 10px;
}

.note-icon {
  color: #10b981;
}


/* ==========================================================================
   8. CTA BANNER SECTION
   ========================================================================== */
/* ==========================================================================
   8. CTA BANNER SECTION
   ========================================================================== */
.cta-banner-section {
  padding: 60px 0;
  background: transparent;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, #060c18 0%, #0a1329 100%);
  border-radius: 28px;
  padding: 50px 50px 85px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

.cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 75% 50%, rgba(255, 107, 0, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-left {
  position: relative;
  z-index: 5;
}

.cta-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.cta-dash {
  width: 24px;
  height: 2px;
  background-color: #ff6b00;
}

.cta-tagline-txt {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ff6b00;
}

.cta-headline {
  font-family: var(--font-brand);
  font-size: 44px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hl-sub {
  font-size: 30px;
  color: #cbd5e1;
  font-weight: 700;
}

.cta-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 30px;
  max-width: 540px;
}

.cta-buttons-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-orange-pill {
  background: linear-gradient(135deg, #ff7a00 0%, #ff5500 100%);
  color: #ffffff;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.45);
  transition: var(--transition-normal);
}

.btn-orange-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.55);
}

.btn-glass-call {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
  transition: var(--transition-normal);
}

.btn-glass-call:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-badges-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 12px;
}

.c-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.15);
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.c-badge-txt {
  display: flex;
  flex-direction: column;
  font-family: var(--font-brand);
  line-height: 1.15;
}

.c-badge-txt strong {
  font-size: 11.5px;
  font-weight: 800;
  color: #ffffff;
}

.c-badge-txt span {
  font-size: 10px;
  color: #94a3b8;
}

/* CTA Right Visual */
.cta-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
  min-height: 320px;
}

.cta-bucket-img-wrap {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
}

.cta-bucket-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
}

/* Floating Top Center Glass Card */
.cta-floating-head-card {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(15, 23, 42, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 10;
}

.cta-head-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff7a00 0%, #ee5d00 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

.cta-head-info h4 {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.cta-head-info p {
  font-size: 9.5px;
  color: #cbd5e1;
}

/* Handwritten Cursive Script Tagline */
.cta-script-tag {
  position: absolute;
  top: 48%;
  left: -20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  z-index: 10;
  pointer-events: none;
}

.cta-script-txt {
  font-family: var(--font-script);
  font-size: 32px;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.cta-script-line {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #ff7a00 0%, #ee5d00 100%);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.5);
}

/* 3 Stacked Glass Cards */
.cta-glass-stack {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cta-gcard {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  min-width: 210px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.cta-gcard:hover {
  transform: translateX(-4px);
  border-color: rgba(255, 107, 0, 0.5);
}

.gcard-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gcard-info h4 {
  font-family: var(--font-brand);
  font-size: 10.5px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.gcard-info p {
  font-size: 9.5px;
  color: #cbd5e1;
}

/* BOTTOM RIGHT ORANGE STATS RIBBON BANNER (DIAGONAL CROSS CUT SLANT) */
.cta-bottom-orange-ribbon {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #ff7a00 0%, #ee5d00 100%);
  padding: 16px 48px 16px 65px;
  clip-path: polygon(45px 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  gap: 32px;
  color: #ffffff;
  z-index: 10;
  box-shadow: -10px -5px 25px rgba(0, 0, 0, 0.2);
}

.cta-stat h3 {
  font-family: var(--font-brand);
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 2px;
  line-height: 1;
}

.cta-stat span {
  font-family: var(--font-brand);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #ffffff;
}

.cta-stat-sep {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.4);
}


/* ==========================================================================
   9. MAIN FOOTER
   ========================================================================== */
.main-footer {
  position: relative;
  background: #060c18;
  color: #ffffff;
  padding: 70px 0 0;
  overflow: hidden;
}

.footer-bg-map {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.14;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 35%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 35%);
}

/* Left Spilled Shot Pellets Visual with Radial Mask Fade */
.f-left-bucket-container {
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 380px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(circle at 15% 45%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 75%);
  -webkit-mask-image: radial-gradient(circle at 15% 45%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 75%);
}

.f-bucket-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.15);
}

.f-script-top-left {
  position: absolute;
  top: 30px;
  left: 35px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}

.f-script-txt {
  font-family: var(--font-script);
  font-size: 26px;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
}

.f-script-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ff7a00 0%, #ee5d00 100%);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.5);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 50px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1.2fr;
  gap: 36px;
  position: relative;
  z-index: 5;
}

.brand-col {
  display: flex;
  flex-direction: column;
}

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

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.footer-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 360px;
}

.f-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.f-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-badge-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.2);
  color: #ff7a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 122, 0, 0.4);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.f-badge-txt {
  display: flex;
  flex-direction: column;
  font-family: var(--font-brand);
  line-height: 1.15;
}

.f-badge-txt strong {
  font-size: 11.5px;
  font-weight: 800;
  color: #ffffff;
}

.f-badge-txt span {
  font-size: 10px;
  color: #94a3b8;
}

.f-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.f-col-dash {
  width: 18px;
  height: 2px;
  background-color: #ff6b00;
}

.f-col-title {
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1.5px;
}

.f-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-links-list li a {
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-normal);
  padding-right: 10px;
}

.f-links-list li a:hover {
  color: #ff6b00;
  transform: translateX(4px);
}

.f-links-list li a i {
  font-size: 10px;
  color: #64748b;
  transition: color 0.2s ease, transform 0.2s ease;
}

.f-links-list li a:hover i {
  color: #ff6b00;
  transform: translateX(2px);
}

.f-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.f-c-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: #cbd5e1;
}

.f-c-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 107, 0, 0.18);
  color: #ff7a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 122, 0, 0.35);
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.15);
}

.f-c-item a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.f-c-item a:hover {
  color: #ff7a00;
}

.f-side-tagline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: 9.5px;
  font-weight: 900;
  color: #64748b;
  letter-spacing: 1.5px;
  line-height: 1.3;
}

.f-dash-sm {
  width: 16px;
  height: 2px;
  background-color: #ff6b00;
  margin-top: 5px;
  flex-shrink: 0;
}

/* Sub-Footer */
.sub-footer-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  background: #030710;
}

.sub-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #64748b;
  position: relative;
}

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

.sf-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
}

.sf-badge .icon-orange {
  color: #ff7a00;
  font-size: 14px;
}

.sf-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.12);
}

/* FLOATING WHATSAPP BUTTON (STACKED DIRECTLY ABOVE BACK TO TOP) */
.wa-float {
  position: fixed;
  bottom: 88px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  animation: waPulse 3s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45); }
  50% { transform: scale(1.06); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.65); }
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.7);
  color: #ffffff;
}

.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00 0%, #ee5d00 100%);
  color: #ffffff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: var(--transition-normal);
  opacity: 0;
  visibility: hidden;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.65);
}


/* ==========================================================================
   10. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* ─── 1280px: Large Tablets / Small Laptops ─── */
@media (max-width: 1280px) {

  /* Hero */
  .hero-main-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px 30px;
  }

  .hero-right {
    min-height: 360px;
  }

  .hero-circle-container {
    width: 320px;
    height: 320px;
  }

  .vertical-tagline {
    display: none;
  }

  /* About */
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-watermark {
    display: none;
  }

  /* QA */
  .qa-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .qa-top-tagline {
    display: none;
  }

  /* Capabilities */
  .cap-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cap-left-dish {
    display: none;
  }

  .cap-v-watermark-right {
    display: none;
  }

  /* Products */
  .prod-content-grid {
    grid-template-columns: 1fr;
  }

  .prod-industry-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* Quote */
  .quote-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quote-center-visual {
    display: none;
  }

  .quote-right-form {
    order: 2;
  }

  /* CTA */
  .cta-card {
    grid-template-columns: 1fr;
    padding: 40px 32px 70px;
  }

  .cta-right {
    min-height: 260px;
  }

  .cta-bucket-img-wrap {
    height: 260px;
  }

  .cta-script-tag {
    left: 10px;
    top: 44%;
  }

  .cta-glass-stack {
    right: 10px;
  }

  .cta-gcard {
    min-width: 180px;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .f-left-bucket-container {
    width: 260px;
    opacity: 0.14;
  }
}

/* ─── 1024px: Tablets ─── */
@media (max-width: 1024px) {

  /* Top Bar */
  .top-bar-right {
    display: none;
  }

  .top-bar-left {
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .top-bar-left::-webkit-scrollbar {
    display: none;
  }

  /* Navbar */
  .metal-texture-wrapper {
    display: none;
  }

  .mobile-toggle-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 126px;
    left: -100%;
    width: 300px;
    height: calc(100vh - 126px);
    background-color: var(--bg-navbar);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    transition: left 0.3s ease;
    padding: 30px 24px;
    align-items: flex-start;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    height: auto;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    height: auto;
  }

  .nav-link {
    width: 100%;
    padding: 16px 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 10px 16px;
    background: transparent;
  }

  /* Hero */
  .hero-main-wrapper {
    grid-template-columns: 1fr;
    padding: 36px 20px 30px;
    gap: 32px;
  }

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

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

  .hero-right {
    min-height: 320px;
    display: none;
  }

  .hero-circle-container {
    width: 280px;
    height: 280px;
  }

  .floating-badge {
    display: none;
  }

  .specs-container {
    padding: 0 24px !important;
    flex-wrap: wrap;
    gap: 16px;
  }

  .specs-left-group {
    gap: 24px !important;
    flex-wrap: wrap;
  }

  .scroll-explore {
    display: none !important;
  }

  /* About */
  .about-section {
    padding: 60px 20px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-card-frame {
    min-height: 420px;
  }

  .about-jar-wrapper {
    width: 260px;
    height: 260px;
    margin: 10px auto 20px;
  }

  .about-glass-card {
    position: static;
    width: 100%;
    margin-bottom: 10px;
  }

  .about-features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

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

  .stat-script-quote {
    margin-left: 0;
  }

  /* QA */
  .qa-section {
    padding: 60px 20px 100px;
  }

  .qa-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .qa-card {
    min-height: 190px;
  }

  .qa-stats-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .qa-bottom-bar-wrap {
    left: 20px;
    right: 20px;
    bottom: 16px;
  }

  .qa-bottom-bar {
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 20px;
    padding: 14px 18px;
  }

  /* Capabilities */
  .capabilities-section {
    padding: 60px 20px 90px;
  }

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

  /* Products */
  .prod-section {
    padding: 60px 20px;
  }

  .prod-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .prod-industry-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

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

  /* Certifications */
  .cert-section {
    padding: 50px 20px 70px;
  }

  /* Quote */
  .quote-section {
    padding: 60px 20px;
  }

  .quote-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .quote-center-visual {
    display: none;
  }

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

  .input-group.full-width {
    grid-column: span 1;
  }

  /* CTA Banner */
  .cta-banner-section {
    padding: 40px 16px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 36px 24px 80px;
    gap: 30px;
    border-radius: 20px;
  }

  .cta-script-tag {
    left: 8px;
  }

  .cta-script-txt {
    font-size: 26px;
  }

  .cta-glass-stack {
    right: 8px;
    gap: 8px;
  }

  .cta-gcard {
    min-width: 160px;
    padding: 10px 14px;
    gap: 10px;
  }

  .cta-bottom-orange-ribbon {
    gap: 20px;
    padding: 14px 32px 14px 50px;
  }

  .cta-stat h3 {
    font-size: 20px;
  }

  /* Footer */
  .main-footer {
    padding: 50px 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 20px 40px;
  }

  .f-left-bucket-container {
    display: none;
  }

  .f-script-top-left {
    display: none;
  }

  /* Sub-footer */
  .sub-footer-container {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .sf-center {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ─── 768px: Mobile ─── */
@media (max-width: 768px) {

  /* Global */
  .about-section,
  .capabilities-section,
  .prod-section,
  .cert-section,
  .quote-section {
    padding: 50px 16px;
  }

  .qa-section {
    padding: 50px 16px 90px;
  }

  /* Top Bar */
  .top-bar-wrapper {
    padding: 0 16px;
    min-height: 38px;
  }

  .top-info-item span,
  .top-info-item a {
    font-size: 11px;
  }

  .top-divider {
    display: none;
  }

  .top-bar-left {
    gap: 12px;
  }

  /* Navbar */
  .navbar-wrapper {
    height: 64px;
    padding-left: 24px;
  }

  .official-logo-img {
    height: 40px;
  }

  .btn-quote {
    padding: 10px 18px;
    font-size: 12px;
  }

  .nav-menu {
    top: 102px;
    height: calc(100vh - 102px);
  }

  /* Hero */
  .hero-main-wrapper {
    padding: 30px 16px 24px;
    gap: 24px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-pill-badge {
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .badge-text {
    font-size: 9.5px;
    letter-spacing: 0.8px;
  }

  .hero-title {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 13.5px;
    margin-bottom: 22px;
  }

  .hero-features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
  }

  .btn-primary-orange,
  .btn-secondary-glass {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-right {
    display: none;
  }

  .specs-container {
    padding: 0 16px !important;
    gap: 12px;
  }

  .specs-left-group {
    gap: 16px !important;
  }

  .spec-box {
    gap: 10px !important;
  }

  .spec-number {
    font-size: 14px !important;
  }

  .spec-divider {
    display: none !important;
  }

  /* About */
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-headline {
    font-size: 30px;
  }

  .about-card-frame {
    min-height: auto;
    padding: 24px 20px 0;
  }

  .about-jar-wrapper {
    width: 220px;
    height: 220px;
  }

  .about-features-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-cta-row {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-orange-pill,
  .btn-outline-pill {
    width: 100%;
    justify-content: center;
  }

  .stats-row {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .stat-vert-line {
    display: none;
  }

  .stat-script-quote {
    margin-left: 0;
  }

  /* QA */
  .qa-headline {
    font-size: 30px;
  }

  .qa-right-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .qa-card {
    min-height: 170px;
  }

  .qa-stats-row {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .qa-stat-divider {
    display: none;
  }

  .qa-cta-row {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-watch-story {
    width: 100%;
    justify-content: center;
  }

  .qa-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-radius: 16px;
  }

  .qa-bar-divider {
    display: none;
  }

  /* Capabilities */
  .cap-headline {
    font-size: 30px;
  }

  .cap-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cap-bottom-bar {
    flex-direction: column;
    gap: 14px;
  }

  /* Products */
  .prod-headline {
    font-size: 30px;
  }

  .prod-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .prod-industry-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }

  .prod-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Certifications */
  .cert-headline {
    font-size: 30px;
  }

  .cert-content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cert-bottom-bar {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  /* Quote */
  .quote-headline {
    font-size: 30px;
  }

  .quote-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .form-actions-row {
    flex-direction: column;
    gap: 12px;
  }

  .btn-orange-submit,
  .btn-attach-file {
    width: 100%;
    justify-content: center;
  }

  /* CTA Banner */
  .cta-banner-section {
    padding: 30px 12px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 28px 20px 65px;
    gap: 24px;
    border-radius: 16px;
  }

  .cta-headline {
    font-size: 30px;
  }

  .cta-buttons-row {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .btn-orange-pill,
  .btn-glass-call {
    width: 100%;
    justify-content: center;
  }

  .cta-badges-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cta-right {
    min-height: 200px;
  }

  .cta-bucket-img-wrap {
    height: 200px;
  }

  .cta-script-tag {
    left: 6px;
  }

  .cta-script-txt {
    font-size: 22px;
  }

  .cta-glass-stack {
    right: 6px;
    gap: 6px;
  }

  .cta-gcard {
    min-width: 140px;
    padding: 8px 12px;
  }

  .cta-bottom-orange-ribbon {
    gap: 14px;
    padding: 12px 20px 12px 36px;
    flex-wrap: wrap;
  }

  .cta-stat h3 {
    font-size: 18px;
  }

  .cta-stat-sep {
    display: none;
  }

  /* Footer */
  .main-footer {
    padding: 40px 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px 36px;
  }

  .f-badges-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bg-map {
    opacity: 0.07;
  }

  .sub-footer-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 0 16px;
  }

  .sf-center {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .sf-divider {
    display: none;
  }

  /* Back to top */
  .back-to-top-btn {
    bottom: 20px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ─── 480px: Small Mobile ─── */
@media (max-width: 480px) {

  /* Top Bar */
  .top-bar {
    font-size: 11px;
  }

  .top-bar-wrapper {
    padding: 0 12px;
  }

  /* Specific top-bar items: hide address & hours on very small screens */
  .top-info-item:nth-child(1),
  .top-info-item:nth-child(4) {
    display: none;
  }

  /* Navbar */
  .navbar-wrapper {
    height: 58px;
    padding-left: 16px;
  }

  .official-logo-img {
    height: 36px;
  }

  .btn-quote {
    display: none;
  }

  .theme-toggle-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .nav-menu {
    top: 96px;
    height: calc(100vh - 96px);
    width: 280px;
  }

  /* Hero */
  .hero-main-wrapper {
    padding: 24px 12px 20px;
  }

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

  .badge-text {
    font-size: 8.5px;
    letter-spacing: 0.5px;
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 14px 12px;
  }

  .specs-container {
    padding: 0 12px !important;
  }

  .specs-left-group {
    gap: 12px !important;
  }

  /* About */
  .about-headline {
    font-size: 26px;
  }

  .about-jar-wrapper {
    width: 180px;
    height: 180px;
  }

  .stats-row {
    gap: 12px;
  }

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

  /* QA */
  .qa-headline {
    font-size: 26px;
  }

  .qa-card {
    min-height: 150px;
    padding: 20px 16px 18px;
  }

  .qa-bottom-bar-wrap {
    left: 12px;
    right: 12px;
  }

  /* Capabilities */
  .cap-headline {
    font-size: 26px;
  }

  /* Products */
  .prod-headline {
    font-size: 26px;
  }

  /* Certifications */
  .cert-headline {
    font-size: 26px;
  }

  /* Quote */
  .quote-headline {
    font-size: 26px;
  }

  .quote-left-col,
  .quote-form-wrap {
    padding: 20px 16px;
  }

  /* CTA */
  .cta-card {
    padding: 22px 14px 55px;
    border-radius: 14px;
  }

  .cta-headline {
    font-size: 26px;
  }

  .cta-gcard {
    min-width: 120px;
    padding: 7px 10px;
  }

  .gcard-info h4 {
    font-size: 9px;
  }

  .gcard-info p {
    font-size: 8.5px;
  }

  /* Footer */
  .footer-desc {
    font-size: 12px;
  }

  .f-badges-grid {
    grid-template-columns: 1fr;
  }

  .f-badge-ico {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .footer-logo-img {
    height: 40px;
  }

  .sub-footer-container {
    font-size: 11px;
    gap: 10px;
  }
}

/* ─── 360px: Extra Small ─── */
@media (max-width: 360px) {

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

  .about-headline,
  .qa-headline,
  .cap-headline,
  .prod-headline,
  .cert-headline,
  .quote-headline,
  .cta-headline {
    font-size: 22px;
  }

  .navbar-wrapper {
    padding-left: 12px;
  }

  .official-logo-img {
    height: 32px;
  }

  .cta-card {
    padding: 18px 12px 50px;
  }

  .cta-badges-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .qa-bottom-bar {
    padding: 12px 14px;
  }

  .back-to-top-btn {
    bottom: 16px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* ==========================================================================
   11. TARGETED RESPONSIVE FIXES (Section-Level)
   ========================================================================== */

/* ──────────────────────────────────────────────
   NAV: Fix dropdown showing behind hero on mobile
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Dropdown on mobile: collapsed by default, toggled via JS */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 10px 16px;
    background: transparent;
    display: none; /* collapsed by default */
    min-width: unset;
  }

  /* When JS adds .open class to .dropdown on mobile */
  .dropdown.open .dropdown-menu {
    display: block;
  }

  /* Remove hover-open behaviour on mobile since touch doesn't support it cleanly */
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  /* Show the dropdown arrow toggle clearly */
  .dropdown-toggle .dropdown-arrow {
    margin-left: auto;
  }
}

/* ──────────────────────────────────────────────
   PRODUCTS SECTION: Clean up header clutter on mobile
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Hide absolute decorative elements that overlap on small screens */
  .prod-left-factory-container {
    display: none;
  }

  .prod-left-watermark-top,
  .prod-left-tagline-bottom {
    display: none;
  }

  /* Top-right accent (script + spilled image): hide image, keep text only */
  .prod-spilled-bucket-box {
    display: none;
  }

  .prod-top-right-accent {
    top: 10px;
    right: 10px;
    gap: 10px;
  }

  .prod-script-text {
    transform: rotate(-3deg);
  }

  .script-small {
    font-size: 18px;
  }

  .script-big {
    font-size: 24px;
  }

  /* Products container: remove left padding that was for factory sidebar */
  .products-container {
    padding: 0 16px;
  }

  /* Products header: give enough top space so accent doesn't overlap */
  .prod-header {
    padding-top: 100px;
    margin-bottom: 20px;
  }

  /* Products highlights row: allow scrolling horizontally */
  .prod-highlights-row {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 50px;
    justify-content: flex-start;
    margin-bottom: 16px;
  }

  .prod-highlights-row::-webkit-scrollbar {
    display: none;
  }

  .ph-divider {
    flex-shrink: 0;
  }

  .ph-item {
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  /* Hide all absolute decorative accents on mobile */
  .prod-top-right-accent {
    display: none;
  }

  .prod-bg-map-dots {
    display: none;
  }

  /* Give header normal top spacing now that accent is gone */
  .prod-header {
    padding-top: 10px;
    margin-bottom: 20px;
  }

  .prod-headline {
    font-size: 28px;
    line-height: 1.2;
  }

  /* Products: sidebar becomes 2-col icon grid */
  .prod-industry-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }

  .ind-item {
    padding: 12px 6px;
    border-radius: 12px;
  }

  .ind-icon {
    font-size: 18px;
  }

  .ind-item span {
    font-size: 8.5px;
    letter-spacing: 0.5px;
  }

  /* Bottom bar: full-width clean layout */
  .prod-bottom-bar {
    border-radius: 16px;
    padding: 16px 20px;
    clip-path: none; /* remove diagonal cut on mobile */
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: center;
  }

  .prod-bottom-bar::before {
    display: none; /* remove corner border accent */
  }

  .p-bar-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .p-bar-right {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .prod-industry-sidebar {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .prod-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .prod-highlights-row {
    padding: 6px 12px;
    gap: 10px;
  }
}

/* ──────────────────────────────────────────────
   CERTIFICATIONS: Fix seal overlapping section title
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Shrink seal so it doesn't overlap text */
  .cert-top-right-seal {
    width: 110px;
    height: 110px;
    top: 8px;
    right: 12px;
  }

  /* Reduce the dark backdrop shape */
  .cert-top-right-dark-bg {
    width: 220px;
    height: 160px;
  }

  /* Hide certifications watermark text that overlaps */
  .cert-watermark-right {
    display: none;
  }

  /* Give header enough padding-top so it clears the seal */
  .cert-header {
    padding-top: 80px;
  }

  /* Cert bottom bar: stack at tablet */
  .cert-bottom-bar {
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 20px;
    justify-content: center;
  }

  .cert-pillar-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  /* On mobile: move seal to center top, or hide it */
  .cert-top-right-seal {
    display: none;
  }

  .cert-top-right-dark-bg {
    display: none;
  }

  .cert-pill-badge-top {
    position: static;
    margin: 0 auto 12px;
    justify-content: center;
  }

  .cert-header {
    padding-top: 0;
    text-align: center;
  }

  .cert-headline {
    font-size: 26px;
  }

  .cert-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-radius: 16px;
    padding: 16px 18px;
  }

  .cert-pillar {
    width: 100%;
  }

  .cert-script-watermark {
    align-items: flex-start;
    margin-top: 10px;
  }

  /* Make slider cards scrollable and properly sized */
  .cert-cards-track {
    gap: 12px;
    padding: 4px 4px;
  }

  .cert-card {
    min-width: 140px;
    padding: 14px 10px;
  }

  /* Slider arrows: smaller on mobile */
  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .cert-card {
    min-width: 120px;
    padding: 12px 8px;
  }

  .cert-bottom-bar {
    padding: 14px 14px;
  }
}

/* ──────────────────────────────────────────────
   CAPABILITIES: Better ticker/bottom banner on mobile
   ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cap-ticker-banner-wrap {
    transform: rotate(0deg); /* remove tilt on small screens */
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .cap-ticker-banner {
    padding: 14px 0;
  }

  .cap-header-wrapper {
    margin-bottom: 32px;
  }

  .cap-headline {
    font-size: 26px;
  }

  .cap-sub {
    font-size: 14px;
  }

  /* Capabilities cards: single column on mobile */
  .cap-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cap-cards-container {
    margin-bottom: 50px;
    padding: 0 16px;
  }

  .cap-val-num {
    font-size: 32px;
  }
}

/* ──────────────────────────────────────────────
   HERO SPECS BAR: Clean 2x2 grid on mobile
   ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-specs-bar {
    padding: 16px 0 !important;
  }

  .specs-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 8px !important;
    padding: 0 16px !important;
    justify-items: start !important;
  }

  .specs-left-group {
    display: contents !important; /* let children be grid items */
  }

  .spec-divider {
    display: none !important;
  }

  .scroll-explore {
    display: none !important;
  }

  .spec-box {
    gap: 8px !important;
  }

  .spec-number {
    font-size: 13px !important;
  }

  .spec-title {
    font-size: 9px !important;
  }

  .spec-icon {
    font-size: 18px !important;
  }
}

/* ──────────────────────────────────────────────
   QA SECTION: Fix bottom bar on mobile
   ────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Reduce bottom padding since qa-bottom-bar-wrap is no longer absolute */
  .qa-section {
    padding-bottom: 40px;
  }

  .qa-bottom-bar-wrap {
    position: static;
    padding: 0 16px;
    margin-top: 30px;
  }

  .qa-bottom-bar {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    border-radius: 16px;
    padding: 16px 18px;
    max-width: 100%;
  }

  .qa-bar-divider {
    display: none;
  }

  .btn-touch-orange {
    width: 100%;
    justify-content: center;
  }
}

/* ──────────────────────────────────────────────
   GENERAL: Prevent horizontal overflow globally
   ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .products-section,
  .certifications-section,
  .capabilities-section,
  .qa-section,
  .about-section,
  .quote-section,
  .cta-banner-section,
  .main-footer {
    overflow-x: hidden;
  }
}

/* ==========================================================================
   12. QUOTE SECTION — MOBILE FIX
   ========================================================================== */

/* ── Quote Left Column: fix text overflow + contact card wrapping ── */
@media (max-width: 1024px) {
  .quote-section {
    padding: 50px 0 40px;
  }

  .quote-container {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .quote-left {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .quote-headline {
    font-size: 32px;
    word-break: break-word;
  }

  .quote-desc {
    font-size: 13.5px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Contact cards: icon stays left, text wraps properly */
  .q-contact-card {
    align-items: flex-start;
    gap: 12px;
  }

  .q-info {
    min-width: 0; /* allows text to wrap */
    flex: 1;
  }

  .q-info h3 {
    font-size: 13.5px;
    line-height: 1.3;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  /* Strengths badges: scroll horizontally */
  .quote-strengths-row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0;
    gap: 12px;
    white-space: nowrap;
  }

  .quote-strengths-row::-webkit-scrollbar {
    display: none;
  }

  .qs-badge-item {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .qs-divider {
    flex-shrink: 0;
  }

  /* Bottom dark ribbon: full width */
  .quote-left-bottom-bar {
    width: 100%;
    box-sizing: border-box;
  }

  /* Script text */
  .script-text-val {
    font-size: 24px;
    white-space: normal;
    word-break: break-word;
  }
}

@media (max-width: 768px) {
  .quote-section {
    padding: 40px 0 30px;
  }

  .quote-container {
    padding: 0 16px;
    gap: 28px;
  }

  .quote-headline {
    font-size: 26px;
  }

  /* Contact cards: tighter spacing */
  .q-contact-card {
    gap: 10px;
  }

  .q-icon-orange {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .q-info h3 {
    font-size: 12.5px;
  }

  .quote-contact-list {
    gap: 12px;
    margin-bottom: 20px;
  }

  /* Strengths: 2x2 grid instead of horizontal row */
  .quote-strengths-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    overflow-x: unset;
    white-space: normal;
    padding: 0;
    margin-bottom: 20px;
  }

  .qs-divider {
    display: none;
  }

  .qs-badge-item {
    background: #f8fafc;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 10px 12px;
    gap: 8px;
    white-space: normal;
    flex-shrink: unset;
  }

  body.dark-theme .qs-badge-item {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255,255,255,0.08);
  }

  .qs-icon-box {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  /* Quote form card: tighter padding */
  .quote-form-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .q-form-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .q-form-title {
    font-size: 26px;
  }

  .q-timer-badge {
    font-size: 10px;
  }

  /* Script text: smaller */
  .script-text-val {
    font-size: 22px;
  }

  .q-script-underline {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .quote-form-card {
    padding: 20px 14px;
    border-radius: 16px;
  }

  .q-form-title {
    font-size: 22px;
  }

  .quote-strengths-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .qs-txt-wrap strong {
    font-size: 11px;
  }

  .qs-txt-wrap span {
    font-size: 10px;
  }
}

/* ==========================================================================
   13. CTA BANNER SECTION — MOBILE FIX
   ========================================================================== */

@media (max-width: 1024px) {
  /* On tablet: hide overlapping absolute decorative elements */
  .cta-script-tag {
    display: none;
  }

  .cta-glass-stack {
    display: none;
  }

  .cta-floating-head-card {
    display: none;
  }

  /* CTA card: single column, clean padding */
  .cta-card {
    grid-template-columns: 1fr;
    padding: 36px 28px 24px;
    gap: 28px;
  }

  /* Left column: full width */
  .cta-left {
    width: 100%;
  }

  /* Right image: show at full width, reasonable height */
  .cta-right {
    min-height: 220px;
  }

  .cta-bucket-img-wrap {
    height: 220px;
    border-radius: 16px;
  }

  /* Stats ribbon: always horizontal, normal (no clip-path) */
  .cta-bottom-orange-ribbon {
    position: static;
    clip-path: none;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 0;
    box-shadow: 0 8px 20px rgba(238, 108, 16, 0.3);
    justify-content: flex-start;
    align-items: center;
  }

  .cta-stat h3 {
    font-size: 22px;
    margin-bottom: 1px;
  }

  .cta-stat span {
    font-size: 9px;
  }

  .cta-stat-sep {
    display: none;
  }

  /* Headline */
  .cta-headline {
    font-size: 34px;
  }

  /* Buttons row */
  .cta-buttons-row {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .cta-buttons-row .btn-orange-pill,
  .cta-buttons-row .btn-glass-call {
    width: 100%;
    justify-content: center;
  }

  /* Badges row: 2 per row */
  .cta-badges-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .cta-badge-item {
    border-radius: 10px;
    padding: 10px 12px;
  }
}

@media (max-width: 768px) {
  .cta-banner-section {
    padding: 28px 14px;
  }

  .cta-card {
    padding: 28px 18px 20px;
    gap: 22px;
    border-radius: 18px;
  }

  .cta-headline {
    font-size: 26px;
  }

  /* Stats ribbon: 3 stats in a row inline */
  .cta-bottom-orange-ribbon {
    padding: 14px 16px;
    gap: 14px;
    border-radius: 12px;
    justify-content: space-between;
  }

  .cta-stat h3 {
    font-size: 20px;
  }

  .cta-stat span {
    font-size: 8.5px;
    letter-spacing: 0.5px;
  }

  /* Right image: compact */
  .cta-right {
    min-height: 180px;
  }

  .cta-bucket-img-wrap {
    height: 180px;
  }

  /* Badges: 2-col grid */
  .cta-badges-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .c-badge-txt strong {
    font-size: 10.5px;
  }

  .c-badge-txt span {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .cta-card {
    padding: 22px 14px 18px;
    border-radius: 14px;
  }

  .cta-headline {
    font-size: 22px;
  }

  .cta-bottom-orange-ribbon {
    gap: 10px;
    padding: 12px 14px;
  }

  .cta-stat h3 {
    font-size: 18px;
  }

  /* Badges: single column if too narrow */
  .cta-badges-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   14. NAVBAR — MOBILE ICON FIX
   ========================================================================== */

/* Ensure mobile toggle shows correctly on tablet */
@media (max-width: 1024px) {
  .mobile-toggle-btn {
    display: flex;
    gap: 0;
  }

  .mobile-toggle-btn .icon-bars,
  .mobile-toggle-btn .icon-close {
    font-size: 22px;
    line-height: 1;
  }
}

/* ==========================================================================
   15. PREMIUM PAGE LOADER (Shared — index.html + about.html)
   ========================================================================== */

.si-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #030712;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.si-loader.si-loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Outer ring container */
.si-loader__rings {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Spinning outer ring */
.si-loader__ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #ee6c10;
  border-right-color: rgba(238, 108, 16, 0.3);
  animation: siLoaderSpin 1.4s linear infinite;
}

/* Mid ring — reverse spin */
.si-loader__ring-mid {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-bottom-color: rgba(238, 108, 16, 0.6);
  border-left-color: rgba(238, 108, 16, 0.2);
  animation: siLoaderSpin 2s linear infinite reverse;
}

/* Glow halo */
.si-loader__glow {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 108, 16, 0.14) 0%, transparent 70%);
  animation: siLoaderGlow 2.2s ease-in-out infinite alternate;
}

@keyframes siLoaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes siLoaderGlow {
  0% { opacity: 0.5; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.08); }
}

/* Logo inside ring */
.si-loader__logo {
  width: 68px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: siLoaderPulse 1.8s ease-in-out infinite;
}

@keyframes siLoaderPulse {
  0%, 100% { opacity: 0.75; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* Brand text */
.si-loader__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.si-loader__brand {
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #ffffff;
  text-transform: uppercase;
}

.si-loader__brand em {
  font-style: normal;
  color: #ee6c10;
}

.si-loader__tagline {
  font-family: var(--font-brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
}

/* Progress bar */
.si-loader__bar-wrap {
  width: 200px;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.si-loader__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff7a00, #ee5d00, #ff9933);
  border-radius: 10px;
  animation: siLoaderProgress 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes siLoaderProgress {
  0%   { width: 0%; }
  30%  { width: 45%; }
  65%  { width: 72%; }
  85%  { width: 88%; }
  100% { width: 100%; }
}

/* Dots row at bottom */
.si-loader__dots {
  display: flex;
  gap: 7px;
}

.si-loader__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.si-loader__dot:nth-child(1) { animation: siDotPop 1.2s ease-in-out infinite 0s; }
.si-loader__dot:nth-child(2) { animation: siDotPop 1.2s ease-in-out infinite 0.2s; }
.si-loader__dot:nth-child(3) { animation: siDotPop 1.2s ease-in-out infinite 0.4s; }

@keyframes siDotPop {
  0%, 100% { background: rgba(255,255,255,0.15); transform: scale(1); }
  50% { background: #ee6c10; transform: scale(1.4); }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE STYLES (.pd-*) — ULTRA PREMIUM UI/UX
   ========================================================================== */
.pd-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #030712;
}

.pd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.02);
  transition: transform 10s ease;
}

.pd-hero:hover .pd-hero-bg {
  transform: scale(1.06);
}

.pd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,7,18,0.94) 0%, rgba(3,7,18,0.6) 50%, rgba(3,7,18,0.98) 100%),
              radial-gradient(circle at 75% 40%, rgba(238,108,16,0.22) 0%, transparent 65%);
}

.pd-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 125px 24px 85px;
  max-width: 840px;
  margin: 0 auto;
}

.pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(238, 108, 16, 0.12);
  border: 1.5px solid rgba(238, 108, 16, 0.4);
  border-radius: 50px;
  padding: 8px 22px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(238, 108, 16, 0.15);
  animation: pdBadgePulse 3s ease-in-out infinite;
}

@keyframes pdBadgePulse {
  0%, 100% { border-color: rgba(238, 108, 16, 0.4); box-shadow: 0 4px 20px rgba(238, 108, 16, 0.15); }
  50% { border-color: rgba(238, 108, 16, 0.7); box-shadow: 0 6px 28px rgba(238, 108, 16, 0.35); }
}

.pd-badge i {
  color: #ee6c10;
  font-size: 12.5px;
}

.pd-badge span {
  font-family: var(--font-brand);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #ee6c10;
  text-transform: uppercase;
}

.pd-title {
  font-family: var(--font-brand);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}

.pd-title span {
  color: #ee6c10;
  background: linear-gradient(135deg, #ff8c38 0%, #ee6c10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pd-sub {
  font-size: clamp(14.5px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.68;
  margin: 0 auto 28px;
  max-width: 660px;
}

.pd-crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: 11.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.pd-crumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.pd-crumb a:hover {
  color: #ee6c10;
}

.pd-crumb i {
  color: rgba(255, 255, 255, 0.25);
  font-size: 9px;
}

.pd-crumb span {
  color: #ee6c10;
  font-weight: 800;
}

.pd-slant {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 64px;
  background: #f1f5f9;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 4;
}

body.dark-theme .pd-slant {
  background: #0a1120;
}

/* SECTION CONTAINER */
.pd-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

.pd-sec {
  padding: 75px 0;
  background: #f1f5f9;
}

body.dark-theme .pd-sec {
  background: #0a1120;
}

.pd-sec--white {
  background: #ffffff;
}

body.dark-theme .pd-sec--white {
  background: #060c18;
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: flex-start;
}

/* LEFT MAIN CONTENT */
.pd-main-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 44px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

body.dark-theme .pd-main-card {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
}

.pd-media {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 34px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

body.dark-theme .pd-media {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.pd-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-media:hover .pd-media-img {
  transform: scale(1.05);
}

.pd-media-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(238, 108, 16, 0.4);
  border-radius: 50px;
  padding: 7px 18px;
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  color: #ee6c10;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.pd-lead {
  font-size: 17.5px;
  font-weight: 600;
  color: #0a1120;
  line-height: 1.68;
  margin-bottom: 28px;
  padding: 16px 22px;
  background: rgba(238, 108, 16, 0.04);
  border-left: 4px solid #ee6c10;
  border-radius: 0 14px 14px 0;
}

body.dark-theme .pd-lead {
  color: #ffffff;
  background: rgba(238, 108, 16, 0.08);
}

.pd-prose h2 {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 900;
  color: #0a1120;
  margin: 36px 0 18px;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 12px;
}

body.dark-theme .pd-prose h2 {
  color: #ffffff;
}

.pd-prose h2::before {
  content: '';
  width: 18px;
  height: 3px;
  background: linear-gradient(90deg, #ff7a00, #ee5d00);
  border-radius: 3px;
}

.pd-prose p {
  font-size: 15px;
  color: #475569;
  line-height: 1.72;
  margin-bottom: 18px;
}

body.dark-theme .pd-prose p {
  color: #cbd5e1;
}

/* SPECIFICATIONS TABLE & KV CARDS */
.pd-spec-table-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  margin: 26px 0 34px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

body.dark-theme .pd-spec-table-wrap {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.pd-spec-table th {
  background: linear-gradient(135deg, #060c18 0%, #0c162c 100%);
  color: #ffffff;
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 16px 22px;
  border-bottom: 2px solid rgba(238, 108, 16, 0.4);
}

.pd-spec-table td {
  padding: 15px 22px;
  color: #334155;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
  transition: background 0.2s;
}

body.dark-theme .pd-spec-table td {
  background: #0f172a;
  color: #cbd5e1;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.pd-spec-table tbody tr:last-child td {
  border-bottom: none;
}

.pd-spec-table tbody tr:hover td {
  background: rgba(238, 108, 16, 0.06);
}

/* KEY-VALUE SPECIFICATION GRID CARDS */
.pd-kv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin: 26px 0 34px;
}

.pd-kv-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px 22px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

body.dark-theme .pd-kv-card {
  background: #0a1120;
  border-color: rgba(255, 255, 255, 0.08);
}

.pd-kv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #ff7a00, #ee5d00);
  opacity: 0;
  transition: opacity 0.3s;
}

.pd-kv-card:hover {
  border-color: rgba(238, 108, 16, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(238, 108, 16, 0.12);
}

.pd-kv-card:hover::before {
  opacity: 1;
}

.pd-kv-label {
  font-family: var(--font-brand);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: #ee6c10;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pd-kv-val {
  font-size: 14.5px;
  font-weight: 700;
  color: #0a1120;
  line-height: 1.45;
}

body.dark-theme .pd-kv-val {
  color: #ffffff;
}

/* BULLET LIST */
.pd-bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
}

body.dark-theme .pd-bullets li {
  color: #cbd5e1;
}

.pd-bullet-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(238, 108, 16, 0.14);
  color: #ee6c10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid rgba(238, 108, 16, 0.25);
  box-shadow: 0 2px 8px rgba(238, 108, 16, 0.15);
}

/* BUTTON ROW */
.pd-btn-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1.5px solid rgba(0, 0, 0, 0.06);
}

body.dark-theme .pd-btn-row {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.btn-pd-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff7a00 0%, #ee5d00 100%);
  color: #ffffff;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 28px rgba(238, 108, 16, 0.42);
}

.btn-pd-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(238, 108, 16, 0.55);
}

.btn-pd-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: #0a1120;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(0, 0, 0, 0.14);
  transition: all 0.3s;
}

body.dark-theme .btn-pd-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-pd-ghost:hover {
  border-color: #ee6c10;
  color: #ee6c10;
  background: rgba(238, 108, 16, 0.08);
}

/* RIGHT SIDEBAR */
.pd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: sticky;
  top: 100px;
}

.pd-sidebox {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 26px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

body.dark-theme .pd-sidebox {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.pd-sidebox-title {
  font-family: var(--font-brand);
  font-size: 15.5px;
  font-weight: 900;
  color: #0a1120;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(238, 108, 16, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.dark-theme .pd-sidebox-title {
  color: #ffffff;
}

.pd-sidenav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pd-sidenav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: 14px;
  font-family: var(--font-brand);
  font-size: 12.5px;
  font-weight: 700;
  color: #475569;
  text-decoration: none;
  background: #f8fafc;
  border: 1.5px solid rgba(0, 0, 0, 0.04);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

body.dark-theme .pd-sidenav-link {
  background: #0a1120;
  color: #cbd5e1;
  border-color: rgba(255, 255, 255, 0.06);
}

.pd-sidenav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ee6c10;
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.pd-sidenav-link:hover {
  background: rgba(238, 108, 16, 0.1);
  color: #ee6c10;
  border-color: rgba(238, 108, 16, 0.3);
  transform: translateX(5px);
}

.pd-sidenav-link:hover::before {
  transform: scaleY(1);
}

.pd-sidenav-link.active {
  background: linear-gradient(135deg, #ff7a00 0%, #ee5d00 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(238, 108, 16, 0.4);
}

.pd-sidenav-link.active::before {
  display: none;
}

.pd-sidenav-link i {
  font-size: 11px;
  transition: transform 0.25s;
}

.pd-sidenav-link:hover i,
.pd-sidenav-link.active i {
  transform: translateX(4px);
}

/* SIDEBAR CTA BOX */
.pd-sidebox--cta {
  background: linear-gradient(135deg, #060c18 0%, #0c162c 100%);
  color: #ffffff;
  border: 1.5px solid rgba(238, 108, 16, 0.35);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.pd-sidecta-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(238, 108, 16, 0.22);
  color: #ee6c10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  border: 1.5px solid rgba(238, 108, 16, 0.4);
  box-shadow: 0 6px 18px rgba(238, 108, 16, 0.25);
}

.pd-sidebox--cta h3 {
  font-family: var(--font-brand);
  font-size: 19px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
}

.pd-sidebox--cta p {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 22px;
}

.pd-sidebox--cta .btn-pd-primary {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.pd-sidecta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: 13.5px;
  font-weight: 800;
  color: #ee6c10;
  text-decoration: none;
  margin-top: 16px;
  justify-content: center;
  transition: color 0.2s;
}

.pd-sidecta-phone:hover {
  color: #ff8c38;
}

/* RELATED PRODUCTS GRID */
.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 38px;
}

.pd-pcard {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-theme .pd-pcard {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
}

.pd-pcard:hover {
  transform: translateY(-7px);
  border-color: rgba(238, 108, 16, 0.45);
  box-shadow: 0 20px 42px rgba(238, 108, 16, 0.16);
}

.pd-pcard-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.pd-pcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pd-pcard:hover .pd-pcard-img {
  transform: scale(1.07);
}

.pd-pcard-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(238, 108, 16, 0.35);
  border-radius: 50px;
  padding: 5px 14px;
  font-family: var(--font-brand);
  font-size: 10px;
  font-weight: 800;
  color: #ee6c10;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.pd-pcard-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pd-pcard-body h3 {
  font-family: var(--font-brand);
  font-size: 17.5px;
  font-weight: 900;
  color: #0a1120;
  margin-bottom: 10px;
  line-height: 1.3;
}

body.dark-theme .pd-pcard-body h3 {
  color: #ffffff;
}

.pd-pcard-body p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.62;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.dark-theme .pd-pcard-body p {
  color: #94a3b8;
}

.pd-pcard-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-size: 12.5px;
  font-weight: 800;
  color: #ee6c10;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.25s;
}

.pd-pcard-link:hover {
  gap: 14px;
}

/* RESPONSIVE PD RULES */
@media (max-width: 1024px) {
  .pd-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pd-sidebar {
    position: static;
  }
  .pd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pd-main-card {
    padding: 28px 22px;
    border-radius: 20px;
  }
  .pd-media {
    height: 250px;
    margin-bottom: 26px;
  }
  .pd-related-grid {
    grid-template-columns: 1fr;
  }
  .pd-kv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pd-btn-row {
    flex-direction: column;
  }
  .btn-pd-primary,
  .btn-pd-ghost {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .pd-kv-grid {
    grid-template-columns: 1fr;
  }
  .pd-title {
    font-size: 30px;
  }
  .pd-spec-table th,
  .pd-spec-table td {
    padding: 12px 14px;
    font-size: 12px;
  }
}