@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@400;600;700;800&display=swap');

:root {
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --surface-alt: #F1F5F9;
  --text: #111827;
  --muted: #4B5563;
  --line: #E2E8F0;

  --primary: #0B2545;
  --primary-deep: #081C34;
  --secondary: #13315C;
  --accent: #D4AF37;
  /* Premium Gold */
  --accent-rgb: 212, 175, 55;
  --primary-rgb: 11, 37, 69;

  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-premium: 0 10px 20px -3px rgba(8, 28, 52, 0.08), 0 4px 6px -2px rgba(8, 28, 52, 0.04);
  --shadow-lg: 0 20px 30px -5px rgba(8, 28, 52, 0.12), 0 10px 15px -5px rgba(8, 28, 52, 0.06);
  --radius: 4px;
  /* Crisp enterprise-grade radius */
  --radius-md: 6px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(var(--accent-rgb), 0.05) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(var(--primary-rgb), 0.04) 0%, transparent 45%);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
}

::selection {
  background: rgba(var(--accent-rgb), 0.2);
  color: var(--primary-deep);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Header & Topbar */
.topbar {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, .8);
  font-size: .76rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.topbar .container,
.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.topbar-marquee-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.topbar-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.topbar-group-clone {
  display: none !important;
}

.mobile-only-divider {
  display: none !important;
}

.topbar-left {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.topbar-static-item {
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.topbar-divider {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  margin: 0 0.25rem;
}

.topbar-info-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  white-space: nowrap;
}

.topbar-info-item svg {
  color: var(--accent);
  opacity: 0.95;
  flex-shrink: 0;
}

.topbar-info-item a {
  color: inherit;
  transition: color 0.2s ease;
}

.topbar-info-item a:hover {
  color: var(--accent);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-links {
  display: flex;
  gap: 1.5rem;
}

.topbar-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.74rem;
  transition: color 0.2s ease;
}

.topbar-links a:hover {
  color: var(--accent);
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.navbar {
  background: #ffffff !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar .container,
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  perspective: 300px;
  flex-shrink: 0;
  margin-right: 0;
}

.brand-logo-img {
  height: clamp(52px, 6.5vh, 65px);
  width: auto;
  display: block;
  object-fit: contain;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  transition: transform 0.15s ease-out;
  filter: none;
  border: none;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #334155 !important;
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #0b2545 !important;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-phone-link:hover {
  color: #d4af37 !important;
}

.nav-phone-link svg {
  color: #0b2545;
  transition: color 0.2s ease;
}

.nav-phone-link:hover svg {
  color: #d4af37;
}

/* "Book A Consult" style CTA button matching reference */
.nav-cta-btn {
  background: #0b2545 !important;
  color: #ffffff !important;
  border: 1px solid #0b2545 !important;
  border-radius: 50px !important;
  padding: 0.6rem 1.35rem !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.25) !important;
  transition: all 0.25s ease !important;
}

.nav-cta-btn:hover {
  background: #13315c !important;
  border-color: #13315c !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 37, 69, 0.35) !important;
}

/* "Signature Wellness Programs" style highlighted pill matching reference */
.nav-pill-btn {
  background: #f59e0b !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 0.6rem 1.35rem !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3) !important;
  transition: all 0.25s ease !important;
}

.nav-pill-btn:hover {
  background: #d97706 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.4) !important;
}

/* 3-Line Hamburger Button Styling on White Header */
.menu-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.25s ease;
  margin-left: 0.3rem;
}

.menu-toggle-btn:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  transform: translateY(-1px);
}

.hamburger-bar {
  display: block;
  width: 18px;
  height: 2.5px;
  background-color: #334155;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle-btn:hover .hamburger-bar {
  background-color: #0f172a;
}

/* Slide-out Navigation Drawer Styling */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 14, 27, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9988;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: #081c34;
  color: #ffffff;
  z-index: 9999;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.nav-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-logo {
  height: 48px;
  background: #fff;
  padding: 4px 10px;
  border-radius: 6px;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  background: var(--accent);
  color: var(--primary-deep);
  border-color: var(--accent);
}

.drawer-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  flex: 1;
}

.drawer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.drawer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent, #f59e0b);
  margin: 0 0 0.75rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  padding-bottom: 0.4rem;
}

.drawer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.drawer-menu-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: block;
}

.drawer-menu-list a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.drawer-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-block {
  width: 100%;
  text-align: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8) !important;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent) !important;
}

.nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.8) !important;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--accent) !important;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  border: 0;
  padding: 0.3rem 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  display: grid;
  min-width: 280px;
  padding: .5rem;
  background: rgba(8, 28, 52, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: all 0.2s ease;
}

@media (min-width: 992px) {

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}

.nav-dropdown-menu a {
  display: block;
  padding: .6rem .8rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent) !important;
}

.nav-dropdown-menu a.active {
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--accent) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: .75rem 1.4rem;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-deep);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.25);
}

.btn-primary:hover {
  background: #c39e2d;
  border-color: #c39e2d;
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.35);
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.2);
}

.btn-secondary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-ghost:hover {
  background: rgba(var(--primary-rgb), 0.05);
}

.btn-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Sections */
.section {
  padding: 3.8rem 0;
}

.section.alt {
  background-color: var(--surface-alt);
}

.section.dark {
  background-color: var(--primary-deep);
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-head h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  color: var(--primary-deep);
  margin: 0.5rem 0 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section.dark .section-head h2 {
  color: #fff;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.section.dark .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

/* Eyebrow & Badges */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

/* Redesigned Hero Section */
.hero {
  padding: 8rem 0 6rem 0;
  background-image: url('/assets/images/hero-bg.webp');
  background-size: cover;
  background-position: center right;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 19, 37, 0.98) 0%, rgba(6, 19, 37, 0.9) 45%, rgba(6, 19, 37, 0.45) 100%),
    radial-gradient(circle at 75% 50%, transparent 20%, rgba(6, 19, 37, 0.85) 100%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.15;
  margin: 0.5rem 0 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero-content h1 .highlight {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 62ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-arrow {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* Stats Row styling */
.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: nowrap;
}

.hero-stat-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-icon {
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.9;
}

.stat-pill-text {
  display: flex;
  flex-direction: column;
}

.stat-pill-text strong {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-pill-text span {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
  white-space: nowrap;
}

.stat-divider {
  height: 25px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Hero Right Side Stacked Metrics Cards */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-metrics-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  background: rgba(6, 19, 37, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
}

.metric-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-blue .metric-icon {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.card-blue h3 {
  color: #60a5fa !important;
}

.card-green .metric-icon {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.card-green h3 {
  color: #34d399 !important;
}

.card-yellow .metric-icon {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.card-yellow h3 {
  color: #fbbf24 !important;
}

.currency-symbol {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.metric-info {
  display: flex;
  flex-direction: column;
}

.metric-info h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.metric-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: 0.05em;
  margin-left: 0.4rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.metric-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.25rem 0 0 0;
  line-height: 1.4;
}

/* Hero Lubricant Finder Widget styling */
.finder-widget-card {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  padding: 2.25rem 2rem;
  border-radius: 12px;
  background: rgba(6, 19, 37, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.finder-widget-header {
  margin-bottom: 1.75rem;
}

.finder-widget-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.finder-widget-header h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.finder-widget-header p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.4rem 0 0 0;
  line-height: 1.4;
}

.finder-form-widget {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field-widget {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field-widget label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
}

.select-wrapper {
  position: relative;
  width: 100%;
}

/* Custom indicator chevron for dropdowns */
.select-wrapper::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transition: border-top-color 0.2s ease;
}

.select-wrapper:hover::after {
  border-top-color: var(--accent);
}

.field-widget select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.75rem 2.5rem 0.75rem 1.1rem;
  font-family: inherit;
  font-size: 0.88rem;
  color: #ffffff;
  outline: none;
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

.field-widget select:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
}

.field-widget select:focus {
  background: rgba(6, 19, 37, 0.9);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.field-widget select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Dropdown list styling */
.field-widget select option {
  background-color: #0c1a30;
  color: #ffffff;
  padding: 0.75rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Result panel styling inside widget */
.result-box-widget {
  animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.result-box-widget h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.6rem;
}

.result-box-widget p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.8rem 0;
}

.result-box-widget p strong {
  color: #ffffff;
  font-weight: 600;
}

/* Selected criteria pills */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem 0;
}

.pill {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
}

/* Smooth layout transition triggers */
.finder-widget-card.has-result {
  max-width: 460px;
  background: rgba(6, 19, 37, 0.8);
  border-color: rgba(212, 175, 55, 0.3);
}

.finder-widget-card.has-result .finder-widget-header {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.finder-widget-card.has-result .finder-widget-header p {
  display: none;
  /* Hide description in result state to save space */
}

.finder-widget-card.has-result .finder-form-widget {
  display: none;
}

/* Form actions stack */
.result-box-widget .stack-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.result-box-widget .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: 0.75rem 1.25rem;
}

.result-box-widget .btn-primary {
  background: #25d366 !important;
  /* WhatsApp Green override */
  border-color: #25d366 !important;
  color: #ffffff !important;
}

.result-box-widget .btn-primary:hover {
  background: #20ba56 !important;
  border-color: #20ba56 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
}

.result-box-widget .btn-ghost {
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: transparent !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.result-box-widget .btn-ghost:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .finder-widget-card {
    margin: 2rem auto 0 auto;
    padding: 1.75rem 1.5rem;
  }
}

/* Trusted Leaders Logo Strip styling */
.trusted-leaders-bar {
  background: #040e1b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.trusted-leaders-bar h3 {
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 2rem 0;
  text-transform: uppercase;
}

.trusted-logos-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.logo-box:hover {
  color: rgba(255, 255, 255, 0.95);
}

.logo-tata {
  font-weight: 800;
  letter-spacing: 0.05em;
}

.logo-tata-symbol {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.9rem;
}

.logo-jindal {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}

.logo-jindal strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.55);
}

.logo-jindal span {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.1rem;
}

.logo-box:hover.logo-jindal strong {
  color: #ffffff;
}

.logo-mahindra {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.04em;
}

.logo-bosch {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}

.logo-lt {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.logo-jsw {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  font-style: italic;
}

.logo-hero {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* Trust Bar / Logos */
.trustbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
}

.trustbar-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.trustbar-layout h3 {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
}

.logo-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.logo-item {
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #A0AEC0;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.65;
  cursor: default;
}

.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.logo-shell {
  hover-color: #FFD500;
}

.logo-castrol {
  hover-color: #007A33;
}

.logo-mobil {
  hover-color: #003C71;
}

.logo-bpcl {
  hover-color: #005EA6;
}

.logo-servo {
  hover-color: #E31B23;
}

.logo-gulf {
  hover-color: #FF8200;
}

.logo-total {
  hover-color: #005EA6;
}

.logo-item[data-brand="Shell"]:hover {
  color: #FF8200;
  text-shadow: 0 0 10px rgba(255, 130, 0, 0.15);
}

.logo-item[data-brand="Castrol"]:hover {
  color: #007A33;
}

.logo-item[data-brand="Mobil"]:hover {
  color: #E31B23;
}

.logo-item[data-brand="BPCL"]:hover {
  color: #005EA6;
}

.logo-item[data-brand="Servo"]:hover {
  color: #FF8200;
}

.logo-item[data-brand="Gulf"]:hover {
  color: #FF8200;
}

.logo-item[data-brand="Total"]:hover {
  color: #FF3C00;
}

/* About Section & Visual Timeline */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.timeline-vertical {
  position: relative;
  padding-left: 2rem;
  margin-top: 1.5rem;
}

.timeline-vertical::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}

.timeline-step {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: calc(-2rem - 4px + 1px);
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  transition: all 0.3s ease;
}

.timeline-step:hover .timeline-marker {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.5);
}

.timeline-year {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 0.25rem;
}

.timeline-text {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.about-photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-premium);
  aspect-ratio: 16/11;
  background: var(--surface-alt);
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-photo-frame:hover img {
  transform: scale(1.03);
}

/* Industries Section */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.industry-premium-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--line);
  cursor: pointer;
}

.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 28, 52, 0.2) 0%, rgba(8, 28, 52, 0.85) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.industry-premium-card:hover .industry-img {
  transform: scale(1.05);
}

.industry-premium-card:hover .industry-overlay {
  background: linear-gradient(180deg, rgba(8, 28, 52, 0.1) 0%, rgba(8, 28, 52, 0.95) 100%);
}

.industry-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem;
}

.industry-card-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.industry-card-content h3::after {
  content: "→";
  font-weight: 400;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.industry-premium-card:hover .industry-card-content h3::after {
  opacity: 1;
  transform: translateX(0);
  color: var(--accent);
}

.industry-card-content p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.4;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-premium-card:hover .industry-card-content p {
  height: 2.8rem;
  opacity: 1;
  margin-top: 0.25rem;
}

/* Product Categories Overhaul */
.category-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.category-premium-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card-img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-premium-card:hover .category-card-img img {
  transform: scale(1.04);
}

.category-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card-top h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin: 0 0 0.5rem;
}

.category-card-top p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.category-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.product-count {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.product-count strong {
  color: var(--accent);
}

.category-btn {
  font-family: "Sora", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.category-premium-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.15);
  box-shadow: var(--shadow-premium);
}

.category-premium-card:hover .category-btn {
  color: var(--accent);
}

/* Why Choose Us Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow-premium);
}

.why-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: var(--radius);
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(var(--accent-rgb), 0.12);
}

.why-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin: 0 0 0.6rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Process Section */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 2rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line);
  color: var(--primary-deep);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.process-step:hover .process-num {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary-deep);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.4);
  transform: scale(1.08);
}

.process-step h3 {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin: 0 0 0.5rem;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
  padding: 0 0.5rem;
}

/* Testimonials Slider styling */
.testimonial-slider-container {
  max-width: 860px;
  margin: 2.5rem auto 0;
}

.testimonial-premium-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
  text-align: center;
  position: relative;
}

.testimonial-premium-card::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 2.5rem;
  font-size: 6rem;
  font-family: "Sora", sans-serif;
  line-height: 1;
  color: rgba(var(--accent-rgb), 0.1);
  font-weight: 800;
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary-deep);
  line-height: 1.6;
  margin: 0 0 1.8rem;
  font-weight: 500;
}

.testimonial-author strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: var(--primary-deep);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.testimonial-author span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 600;
}

/* Call to Action Banner */
.cta-banner-premium {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--secondary) 100%);
  border-top: 4px solid var(--accent);
  color: #fff;
  text-align: center;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.cta-banner-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 120%, rgba(var(--accent-rgb), 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-premium h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-banner-premium p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 65ch;
  margin: 0 auto 2.2rem;
}

.cta-banner-premium .stack-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

/* Footer Section */
.footer {
  background: #040E1B;
  color: rgba(255, 255, 255, 0.7);
  padding: 5.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1.1fr;
  gap: 3rem;
}

.footer h3,
.footer h4,
.footer-column-header {
  font-family: "Sora", sans-serif;
  color: #fff;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.footer h3,
.footer-column-header {
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.footer-column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-accordion-icon {
  display: none;
}

.footer h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.footer p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--accent);
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  font-size: 0.88rem;
}

.footer-links span {
  display: block;
  line-height: 1.5;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a:hover {
  color: var(--accent);
}

/* Category and Service Inner Page Overhaul Support */
.page-hero {
  background: var(--primary-deep);
  color: #fff;
  padding: 4.5rem 0 3.5rem;
  border-bottom: 2px solid var(--accent);
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin: 0 0 0.8rem;
  line-height: 1.1;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 70ch;
  margin: 0;
  line-height: 1.55;
}

.category-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.category-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 16/10;
}

.category-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-photo figcaption {
  display: none;
}

/* Remove heavy layout elements */

.category-detail {
  padding: 4.5rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.category-detail .section-head {
  margin-bottom: 2.5rem;
}

.category-detail .section-head p {
  font-size: 1.1rem;
  color: var(--muted);
}

.subproduct-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.subproduct-card {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.subproduct-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

.subproduct-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin: 0 0 0.6rem;
}

.subproduct-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Category Education section added previously */
.category-guide-section {
  padding: 4.5rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

/* WhatsApp Floating Badge */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 999;
}

.whatsapp-float a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border-radius: 2rem;
  padding: .7rem 1.25rem;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 211, 102, .25);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(37, 211, 102, .35);
}

.whatsapp-float span:nth-child(2) {
  font-size: 0.72rem;
  opacity: 0.85;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 0.6rem;
  margin-left: 0.2rem;
  font-weight: 600;
}

/* Finder & Forms */
.finder-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.contact-form,
.finder-form {
  display: grid;
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: .75rem 1rem;
  font: inherit;
  color: var(--text);
  background: var(--surface);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-premium);
}

.contact-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.contact-card p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.contact-card .list-check {
  margin-bottom: 2rem;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

th,
td {
  padding: .9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

th {
  color: #fff;
  background: var(--primary);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}

tr:last-child td {
  border-bottom: 0;
}

tr:nth-child(even) {
  background-color: var(--surface-alt);
}

tr:nth-child(even) {
  background-color: var(--surface-alt);
}

/* B2B Industrial Redesign Styles */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* Hero Montage Grid */
.hero-montage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  width: 100%;
}

.hero-montage-cell {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-premium);
  aspect-ratio: 4/3;
  background: var(--primary-deep);
}

.hero-montage-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05) saturate(0.9);
  transition: transform 0.6s ease;
}

.hero-montage-cell:hover img {
  transform: scale(1.04);
}

/* Problem Infographic Grid */
.problem-infographic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 3px solid #EF4444;
  /* High breakdown warning red */
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
}

.problem-card .num {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #EF4444;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.problem-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin: 0 0 0.5rem;
}

.problem-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.statement-banner {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--secondary) 100%);
  border-left: 4px solid var(--accent);
  padding: 2.2rem 2.5rem;
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-premium);
  margin-top: 2rem;
}

.statement-banner h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  color: #fff;
}

.statement-banner h3 span {
  color: var(--accent);
}

/* Solution Pillars Grid */
.solution-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.solution-pillar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.solution-pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--line);
  border-bottom-color: var(--accent);
  box-shadow: var(--shadow-premium);
}

.solution-pillar-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: var(--radius);
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.solution-pillar-card h3 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-deep);
  margin: 0 0 0.6rem;
}

.solution-pillar-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Horizontal Process Timeline */
.process-timeline-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 2rem;
}

.process-timeline-premium::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.process-premium-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-premium-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  color: var(--primary-deep);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.15);
  transition: all 0.3s ease;
}

.process-premium-step:hover .process-premium-num {
  background: var(--accent);
  color: var(--primary-deep);
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.35);
}

.process-premium-step h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin: 0 0 0.5rem;
}

.process-premium-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
  padding: 0 0.5rem;
}

.process-tagline {
  text-align: center;
  margin-top: 3.5rem;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.process-tagline span {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.4rem;
}

/* Product Solutions Grid */
.product-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.solution-group-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.solution-group-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.solution-group-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.solution-group-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05) saturate(0.95);
  transition: transform 0.6s ease;
}

.solution-group-card:hover .solution-group-img img {
  transform: scale(1.04);
}

.solution-group-header {
  background: var(--primary-deep);
  color: #fff;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid var(--accent);
}

.solution-group-header h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.solution-group-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-group-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.solution-group-list li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.solution-group-list li::before {
  content: "■";
  font-size: 0.6rem;
  color: var(--accent);
}

.solution-group-btn {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  text-align: right;
}

.solution-group-btn a {
  font-family: "Sora", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.solution-group-btn a:hover {
  color: var(--accent);
}

/* Cinematic Industries Section (6 items, 3-column grid) */
.industries-cinematic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .industries-cinematic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .industries-cinematic-grid {
    grid-template-columns: 1fr;
  }
}

.industry-cinematic-card {
  position: relative;
  height: 380px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #040e1b;
  cursor: pointer;
}

.industry-image-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.industry-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.15) saturate(0.75);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-cinematic-card:hover .industry-image-wrapper img {
  transform: scale(1.06);
}

.industry-cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 14, 27, 0.1) 0%, rgba(4, 14, 27, 0.65) 50%, rgba(4, 14, 27, 0.95) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.industry-cinematic-card:hover .industry-cinematic-overlay {
  background: linear-gradient(180deg, rgba(4, 14, 27, 0.0) 0%, rgba(4, 14, 27, 0.5) 40%, rgba(4, 14, 27, 0.98) 100%);
}

.industry-cinematic-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease;
}

.industry-cinematic-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.industry-cinematic-card:hover .industry-cinematic-content h3 {
  color: var(--accent);
}

.industry-app-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(15px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-cinematic-card:hover .industry-app-list {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
}

.industry-app-list li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.industry-app-list li::before {
  content: "—";
  color: var(--accent);
  font-weight: bold;
}

.industry-btn-link {
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.8;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.industry-cinematic-card:hover .industry-btn-link {
  opacity: 1;
  transform: translateY(0);
}

/* Authorized Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 940px;
  margin: 2rem auto 3rem auto;
}

.partner-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
}

.partner-logo-wrapper {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.partner-logo {
  height: 100%;
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo {
  transform: scale(1.06);
}

.partner-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin: 0 0 0.5rem;
}

.partner-card span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 700;
}

.partner-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 1rem 0 0;
  line-height: 1.5;
}

.trust-badges-row {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.trust-badge-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.trust-badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-deep);
  font-family: "Sora", sans-serif;
}

/* Founder Section Styles */
.founder-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.founder-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-premium);
  aspect-ratio: 1/1;
  background: var(--surface-alt);
}

.founder-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-quote-card {
  position: relative;
  padding-left: 2rem;
}

.founder-quote-card::before {
  content: "“";
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-size: 5rem;
  font-family: "Sora", sans-serif;
  color: rgba(var(--accent-rgb), 0.15);
  line-height: 1;
}

.founder-quote-text {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary-deep);
  margin: 0 0 1.5rem;
  font-style: italic;
}

.founder-meta strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  color: var(--primary-deep);
  margin-bottom: 0.2rem;
}

.founder-meta span {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.founder-signature {
  margin-top: 1.5rem;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.85;
}

/* Premium Spaced Header Navigation on Desktop */
@media (min-width: 992px) {
  .navbar .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    gap: 1.5rem;
    padding: 0.85rem 2.5rem !important;
  }

  .brand {
    justify-self: flex-start;
    margin-right: auto;
  }

  .nav-right-actions {
    display: flex !important;
    align-items: center !important;
    gap: 1.25rem !important;
    margin-left: auto;
  }
}

/* Responsive 1-Line Moving Carousel Topbar for Mobile */
@media (max-width: 768px) {
  .topbar {
    display: block;
    height: 34px;
    line-height: 34px;
    overflow: hidden;
    background: var(--primary-deep);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .topbar-container {
    overflow: hidden;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .topbar-marquee-wrapper {
    display: flex !important;
    width: max-content !important;
    white-space: nowrap;
    animation: topbarMarquee 22s linear infinite;
  }

  .topbar-marquee-wrapper:hover,
  .topbar-marquee-wrapper:active {
    animation-play-state: paused;
  }

  .topbar-group {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: auto !important;
    padding-right: 0.5rem;
  }

  .topbar-group-clone {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: auto !important;
    padding-right: 0.5rem;
  }

  .mobile-only-divider {
    display: inline !important;
  }

  .topbar-left,
  .topbar-right {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }

  .topbar-static-item,
  .topbar-info-item {
    font-size: 0.68rem !important;
  }
}

@keyframes topbarMarquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Stats Bar Section (relocated below hero) */
.stats-bar-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 2.2rem 0;
  position: relative;
  z-index: 10;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.stats-bar-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.stats-bar-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background-color 0.3s ease;
}

.stats-bar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.stats-bar-card:hover::after {
  background: var(--accent);
}

.stats-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--primary-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stats-bar-card:hover .stats-card-icon {
  background: var(--primary-deep);
  color: var(--accent);
}

.stats-card-content {
  display: flex;
  flex-direction: column;
}

.stats-card-content strong {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.2;
}

.stats-card-content span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 700;
  margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 991px) {

  .hero-grid,
  .about-grid,
  .finder-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .logo-strip {
    justify-content: center;
    gap: 2rem;
  }

  .industries-grid,
  .why-grid,
  .subproduct-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-premium-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
    align-items: start;
  }

  .process-num {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .navbar .container,
  .navbar-container {
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    width: 100%;
  }

  .nav-right-actions .nav-phone-link,
  .nav-right-actions .nav-pill-btn,
  .nav-right-actions .nav-cta-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
    color: #ffffff !important;
  }

  .navbar.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.25rem;
    width: 100%;
  }

  .navbar.open .nav-right-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
    margin-top: 1rem;
  }

  .navbar.open .nav-right-actions .nav-phone-link,
  .navbar.open .nav-right-actions .nav-pill-btn,
  .navbar.open .nav-right-actions .nav-cta-btn {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  .nav-dropdown-toggle span {
    transition: transform 0.2s ease;
    display: inline-block;
  }

  .nav-dropdown.expanded .nav-dropdown-toggle span {
    transform: rotate(180deg);
  }

  .navbar.open .nav-dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04) !important;
    border: none !important;
    padding-left: 1rem;
    margin-top: 0.5rem;
  }

  .navbar.open .nav-dropdown.expanded .nav-dropdown-menu {
    display: grid;
  }

  .navbar.open .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .navbar.open .nav-dropdown-menu a:hover {
    background: transparent !important;
    color: var(--accent) !important;
  }

  /* Redesign overrides */
  .problem-infographic-grid,
  .solution-pillars-grid,
  .product-solutions-grid,
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .process-timeline-premium {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-timeline-premium::before {
    display: none;
  }

  .process-premium-step {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
    align-items: start;
  }

  .process-premium-num {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .founder-img-frame {
    max-width: 320px;
    margin: 0 auto;
  }

  .founder-quote-card {
    padding-left: 0;
  }

  .founder-quote-card::before {
    left: 50%;
    transform: translateX(-50%);
    top: -2.5rem;
  }

  .hero-metrics-stack {
    margin: 2rem auto 0 auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 2.8rem 0;
  }

  .hero {
    padding: 5rem 0 4.5rem 0;
    background-position: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .industries-grid,
  .subproduct-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-banner-premium .stack-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .cta-banner-premium .stack-actions .btn {
    width: 100%;
  }

  .floating-card-1 {
    left: 2%;
    top: 4%;
  }

  .floating-card-2 {
    right: 2%;
    bottom: 4%;
  }

  /* Redesign mobile overrides */
  .solution-pillars-grid,
  .product-solutions-grid {
    grid-template-columns: 1fr;
  }

  .hero-montage {
    grid-template-columns: 1fr;
  }

  .trust-badges-row {
    gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .trusted-logos-strip {
    justify-content: center;
    gap: 1.5rem;
  }

  /* Mobile Horizontal Scroll Swiper Optimizations */
  .why-grid,
  .process-timeline-premium,
  .problem-infographic-grid,
  .stats-bar-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0.5rem 1.5rem 1.5rem 1.5rem !important;
    margin: 0 -1.5rem !important;
    gap: 1.2rem !important;
    scrollbar-width: none;
  }

  .why-grid::-webkit-scrollbar,
  .process-timeline-premium::-webkit-scrollbar,
  .problem-infographic-grid::-webkit-scrollbar,
  .stats-bar-grid::-webkit-scrollbar {
    display: none;
  }

  /* Dedicated Mobile Layout for Authorized Partners Grid */
  .partners-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    margin: 1.5rem auto 2rem auto !important;
    padding: 0 !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    width: 100% !important;
  }

  .partners-grid .partner-card {
    flex: 1 1 100% !important;
    width: 100% !important;
    padding: 1.75rem 1.25rem !important;
  }

  .why-card,
  .process-premium-step,
  .problem-card,
  .stats-bar-card {
    flex: 0 0 82% !important;
    scroll-snap-align: start !important;
    margin: 0 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
  }

  .process-premium-step {
    flex-direction: column !important;
    gap: 0.8rem !important;
    padding: 1.5rem !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    background: var(--surface) !important;
  }

  .stats-bar-card {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .hero-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding-top: 1.5rem;
    margin-top: 2rem;
  }

  .hero-stats-row .stat-divider {
    display: none;
  }

  /* Mobile Footer Accordions */
  .footer {
    padding-bottom: 6rem !important;
    /* Prevent floating WhatsApp button overlaying text links */
  }

  .footer-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 0;
  }

  .footer-column:last-child {
    border-bottom: none;
  }

  .footer-column-header {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 1.05rem;
  }

  .footer-accordion-icon {
    display: inline-block;
    transition: transform 0.2s ease;
    font-size: 0.8rem;
    opacity: 0.7;
  }

  .footer-column.open .footer-accordion-icon {
    transform: rotate(90deg);
  }

  .footer-column .footer-links {
    display: none;
    margin-top: 0.8rem;
    padding-bottom: 0.5rem;
  }

  .footer-column.open .footer-links {
    display: grid;
  }
}

/* ==========================================================================
   CAROUSEL & GALLERY STYLES
   ========================================================================== */
.carousel {
  position: relative;
  width: 100%;
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.carousel-track::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.award-photo {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-photo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
}

.award-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.award-photo figcaption {
  padding: 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  background: var(--surface);
}

.carousel-arrow {
  position: absolute;
  top: calc(50% - 25px);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-premium);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--primary-deep);
  transition: all 0.2s ease;
}

.carousel-arrow:hover {
  background: var(--primary-deep);
  color: #ffffff;
  border-color: var(--primary-deep);
  transform: scale(1.05);
}

.carousel-arrow.prev {
  left: -1.5rem;
}

.carousel-arrow.next {
  right: -1.5rem;
}

.carousel-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

/* ==========================================================================
   AWARDS PAGE LAYOUTS
   ========================================================================== */
.award-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0;
}

.award-copy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 1.5rem 0;
}

.info-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.info-panel h3 {
  font-family: "Sora", sans-serif;
  color: var(--primary-deep);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
}

.info-panel p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.info-panel p strong {
  color: var(--primary-deep);
}

/* ==========================================================================
   BLOG LAYOUTS
   ========================================================================== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.article-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.15);
  box-shadow: var(--shadow-premium);
}

.article-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.article-card:hover h3 {
  color: var(--accent);
}

.article-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   BLOG POST CONTENT LAYOUT
   ========================================================================== */
.article-content {
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 4rem;
}

.article-content p,
.article-content ul,
.article-content ol {
  max-width: 850px;
}

.article-content section.section {
  padding: 3rem 0;
}

.article-content h2 {
  font-family: "Sora", sans-serif;
  color: var(--primary-deep);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-strip {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--secondary) 100%);
  border-left: 4px solid var(--accent);
  padding: 2.5rem;
  border-radius: var(--radius);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
  box-shadow: var(--shadow-premium);
}

.cta-strip h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #ffffff;
}

.cta-strip p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0;
}

.cta-strip .stack-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES FOR ADDED PAGES
   ========================================================================== */
@media (max-width: 991px) {
  .award-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .award-photo {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .carousel-arrow.prev {
    left: -0.75rem;
  }

  .carousel-arrow.next {
    right: -0.75rem;
  }

  .category-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .category-photo {
    aspect-ratio: 16/9;
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }

  .cta-strip .stack-actions {
    width: 100%;
    margin-top: 1rem;
  }

  .cta-strip .stack-actions .btn {
    flex: 1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .award-photo {
    flex: 0 0 100%;
  }

  .carousel-arrow {
    display: none !important;
  }

  .info-panel {
    padding: 1.5rem;
  }

  .cta-strip .stack-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-strip .stack-actions .btn {
    width: 100%;
  }
}

/* Make page-hero stretch full-width inside restricted container layouts */
.container .page-hero,
.awards-page .page-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: max(1.25rem, calc(50vw - 50%));
  padding-right: max(1.25rem, calc(50vw - 50%));
}

/* ==========================================================================
   FAQ SECTION STYLING
   ========================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
}

.faq-item h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-top: 0;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* About Page Contact Grid */
.about-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.about-contact-grid .info-panel {
  text-align: center;
  border-top: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.about-contact-grid .contact-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.about-contact-grid h3 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.about-contact-grid p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.about-contact-grid .contact-details {
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: auto;
}

.about-contact-grid .contact-details a {
  color: var(--primary-deep);
}

.about-contact-grid .contact-details a:hover {
  color: var(--accent);
}

@media (max-width: 991px) {
  .about-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Decreased spacing on Awards page for a tighter, cleaner layout */
.awards-page .section {
  padding: 3rem 0;
}

.awards-page .section.page-hero {
  padding-bottom: 2.5rem;
}

.awards-page .carousel {
  margin: 1.5rem 0 0.5rem 0;
}

.awards-page .carousel-dots {
  margin-top: 1rem;
}

/* ==========================================================================
   CATEGORY GUIDE SECTION STYLING
   ========================================================================== */
.category-guide-section {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 5.5rem 0;
}

.category-guide-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: start;
}

.guide-content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.guide-content-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-top: 0;
  margin-bottom: 1rem;
}

.guide-content-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.parameter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.parameter-item {
  display: flex;
  gap: 1.25rem;
  align-items: start;
}

.parameter-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.parameter-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.parameter-details strong {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  color: var(--primary-deep);
  font-weight: 700;
}

.parameter-details span {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.guide-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.guide-stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}

.guide-stat-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.guide-stat-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* Custom styled guide sidebar card with dark gradient from html inline style */
.guide-sidebar .guide-stat-card[style*="linear-gradient"] h3 {
  color: #ffffff;
}

.guide-sidebar .guide-stat-card[style*="linear-gradient"] p {
  color: rgba(255, 255, 255, 0.85);
}

.guide-sidebar .guide-stat-card[style*="linear-gradient"] {
  border-top: 0;
  border-left: 3px solid var(--accent);
}

/* Responsive category guide */
@media (max-width: 991px) {
  .category-guide-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .guide-content-card {
    padding: 1.5rem;
  }

  .guide-stat-card {
    padding: 1.5rem;
  }

  .parameter-item {
    gap: 0.85rem;
  }
}

/* ==========================================
   Brand Slider Carousel Section
   ========================================== */
.brand-slider-section {
  position: relative;
  width: 100%;
  background: var(--primary-deep);
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.brand-slider-container {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.brand-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
}

.brand-slider-track::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome/Safari */
}

.brand-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 2006 / 784;
  height: auto;
  overflow: hidden;
}

.brand-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.brand-slide-overlay {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  background: rgba(8, 28, 52, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 480px;
  color: #fff;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.brand-slide-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.brand-slide-logo-area {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.logo-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mak-logo {
  background: linear-gradient(135deg, #005EA6 0%, #FFD500 100%);
  color: #fff;
}

.divyol-logo {
  background: linear-gradient(135deg, #FF6600 0%, #993300 100%);
}

.gandhar-logo {
  background: linear-gradient(135deg, #003366 0%, #3399CC 100%);
}

.premium-logo {
  background: linear-gradient(135deg, #D4AF37 0%, #8A6E17 100%);
}

.brand-slide-logo-area h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
}

.brand-slide-overlay p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.25rem;
}

.brand-slide-overlay .btn {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

/* Dots Navigation */
.brand-slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 12;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.slider-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Arrows Navigation */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 28, 52, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.8rem;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 12;
  transition: all 0.25s ease;
  user-select: none;
}

.slider-arrow:hover {
  background: var(--accent);
  color: var(--primary-deep);
  border-color: var(--accent);
}

.prev-arrow {
  left: 2%;
}

.next-arrow {
  right: 2%;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(-30%);
  }

  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .brand-slide-overlay {
    left: 4%;
    right: 4%;
    padding: 1.5rem;
    max-width: none;
    top: auto;
    bottom: 2rem;
    transform: none;
    animation: none;
  }

  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .brand-slide-logo-area h2 {
    font-size: 1.3rem;
  }

  .brand-slide-overlay p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .slider-arrow {
    display: none;
    /* Hide arrows on mobile for pure swiping */
  }

  .brand-slider-dots {
    bottom: 0.75rem;
  }
}

/* ALSO DEALS IN BRANDS STYLING */
.deals-in-section {
  margin-top: 3.5rem;
  width: 100%;
  text-align: center;
}

.deals-in-title {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent, #f59e0b);
  margin-bottom: 1.25rem;
}

.deals-in-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.deal-brand-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 72px;
  min-width: 125px;
}

.deal-brand-logo {
  max-height: 32px;
  max-width: 100px;
  object-fit: contain;
}

.deal-brand-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.03em;
  line-height: 1;
}

.deal-brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent, #f59e0b);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}