/* ─────────────────────────────────────────────────
   CAMIXEL TECHNOLOGIES — style.css
───────────────────────────────────────────────── */

/* ── RESET & ROOT ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-0);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 80px;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ── DESIGN TOKENS ── */
:root {
  --green: #5CB890;
  --green-dark: #3d8c6a;
  --green-dim: rgba(92, 184, 144, .12);
  --green-glow: rgba(92, 184, 144, .25);
  --bg-0: #050d09;
  /* Elegant Dark Green */
  --bg-1: #06110b;
  --bg-2: #08170f;
  --bg-card: rgba(255, 255, 255, .04);
  --bg-card-h: rgba(92, 184, 144, .06);
  --border: rgba(255, 255, 255, .08);
  --border-green: rgba(92, 184, 144, .3);
  --text-primary: #e8eaed;
  --text-muted: #8a9bb0;
  --text-faint: #4a5568;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-green: 0 0 40px rgba(92, 184, 144, .15);
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ── TEAL & GREEN THEME ── */
.theme-teal-green {
  --green: #5CB890; /* Emerald Text Color */
  --green-dark: #3d8c6a;
  --green-dim: rgba(92, 184, 144, .12);
  --green-glow: rgba(92, 184, 144, .25);
  --bg-0: #020b0d; /* Deep Teal-Black BG */
  --bg-1: #031215;
  --bg-2: #051a1e;
  --bg-card: rgba(45, 212, 191, .04);
  --bg-card-h: rgba(92, 184, 144, .06);
  --text-primary: #5CB890; /* Green primary text */
  --text-muted: #3d8c6a;
  --text-faint: #1a4d3a;
  --border-green: rgba(92, 184, 144, .3);
  --shadow-green: 0 0 40px rgba(92, 184, 144, .15);
  
  /* Animated Dot Background */
  --dot-color: rgba(45, 212, 191, 0.04); /* Even more subtle for elegance */
  --gradient-bg-dots: radial-gradient(circle at 1px 1px, var(--dot-color) 1px, transparent 0);
}

body.theme-teal-green {
  background: 
    var(--gradient-bg-dots) fixed,
    radial-gradient(at 18% 99%, #064e3b 0px, transparent 50%),
    radial-gradient(at 97% 8%, #022c22 0px, transparent 50%),
    radial-gradient(at 79% 82%, #134e4a 0px, transparent 50%),
    radial-gradient(at 1% 20%, #0f766e 0px, transparent 50%),
    radial-gradient(at 44% 47%, #042f2e 0px, transparent 50%),
    #020617; /* Deepest Black Base */
  background-attachment: fixed;
  background-size: 40px 40px, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  animation: bg-dots-move 120s linear infinite, bg-elegance-flow 45s ease-in-out infinite alternate;
  color: var(--text-primary);
}

@keyframes bg-dots-move {
  from { background-position: 0 0; }
  to { background-position: 800px 800px; }
}

@keyframes bg-elegance-flow {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* For truly elegant flow, we animate the background position of the highlights */
body.theme-teal-green {
   background-position: 0 0, 0% 0%, 100% 100%, 50% 50%, 100% 0%, 0% 100%;
   transition: background-position 45s ease-in-out;
}

.theme-teal-green h1,
.theme-teal-green h2,
.theme-teal-green h3,
.theme-teal-green h4 {
  color: #fff; /* Keep headings white for impact or Green? I'll try Green as requested */
  color: var(--green);
}

.theme-teal-green .text-accent {
  color: #fff; /* Flip accent to white for contrast on Green text */
}

/* ── LIGHT THEME EXPERIMENT ── */
.theme-light {
  --green: #298d62; /* Darker accent for contrast on white */
  --green-dark: #1b6343;
  --green-dim: rgba(41, 141, 98, .1);
  --green-glow: rgba(41, 141, 98, .15);
  
  --bg-0: #ffffff; /* Clean White */
  --bg-1: #f8fafc; /* Very light cool gray */
  --bg-2: #f1f5f9; /* Light cool gray */
  --bg-card: #ffffff;
  --bg-card-h: rgba(41, 141, 98, .04);
  
  --text-primary: #0f172a; /* Slate 900 (almost black) */
  --text-muted: #475569; /* Slate 600 */
  --text-faint: #94a3b8; /* Slate 400 */
  
  --border: #e2e8f0; /* Slate 200 */
  --border-green: rgba(41, 141, 98, .3);
  --shadow-green: 0 4px 20px rgba(41, 141, 98, .15);
}

body.theme-light {
   background: var(--bg-0);
}

.theme-light .hero-grid-overlay {
  background-image:
    linear-gradient(rgba(15, 23, 42, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .04) 1px, transparent 1px);
}

.theme-light .btn-outline {
  border-width: 1px;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -.02em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.01em;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

p {
  color: var(--text-muted);
  line-height: 1.75;
}

.text-accent {
  color: var(--green);
}

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

section {
  padding: 60px 0;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 0 0 var(--green-glow);
}

.btn-primary:hover {
  background: #6fd8a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(92, 184, 144, .4);
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--green-dim);
  transform: translateY(-2px);
}

.btn-outline-sm {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--border-green);
  padding: 10px 20px;
  font-size: .85rem;
}

.btn-outline-sm:hover {
  background: var(--green-dim);
}

.btn-primary-sm {
  background: var(--green);
  color: #000;
  padding: 10px 20px;
  font-size: .85rem;
}

.btn-primary-sm:hover {
  background: #6fd8a8;
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1.05rem;
}

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

.mt-sm {
  margin-top: 16px;
}

/* ── SECTION HEADERS ── */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

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

.section-desc {
  font-size: 1.05rem;
}

/* ═════════════════════════════════════
   NAVIGATION
═════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: #000000;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}

.nav-header.scrolled {
  background: rgba(4, 6, 10, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-header {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .07em;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
}

.nav-link:hover,
a.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.chevron {
  transition: transform var(--transition);
}

.has-dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #0d1520;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  width: 540px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6), 0 0 0 1px rgba(92, 184, 144, .1);
}

.has-dropdown:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  text-decoration: none;
}

.dropdown-item:hover {
  background: var(--green-dim);
}

.dropdown-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.dropdown-item strong {
  display: block;
  font-size: .9rem;
  color: #fff;
  margin-bottom: 2px;
}

.dropdown-item small {
  font-size: .75rem;
  color: var(--text-muted);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

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

/* ═════════════════════════════════════
   HERO
═════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 500px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  transition: opacity 1.2s ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(4, 6, 10, 0.95) 0%, rgba(4, 6, 10, 0.8) 40%, transparent 90%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 184, 144, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 184, 144, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 24px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-content-slide {
  display: none;
}

.hero-content-slide.active {
  display: block;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(92, 184, 144, .1);
  border: 1px solid var(--border-green);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--green);
  animation: fadeInDown .8s ease forwards;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(92, 184, 144, .6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(92, 184, 144, 0);
  }
}

.hero-headline {
  display: flex;
  flex-direction: column;
  font-size: clamp(1rem, 2.6vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero-line {
  opacity: 0;
  animation: heroLineIn .7s ease forwards;
}

.hero-line:nth-child(1) {
  animation-delay: .2s;
}

.hero-line:nth-child(2) {
  animation-delay: .4s;
}

.hero-line:nth-child(3) {
  animation-delay: .6s;
}

.hero-line-accent {
  color: var(--green);
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: clamp(0.6rem, 1vw, 0.85rem);
  max-width: 620px;
  margin: 0 0 40px 0;
  color: rgba(232, 234, 237, .7);
  line-height: 1.8;
  opacity: 0;
  animation: heroLineIn .7s .8s ease forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: heroLineIn .7s 1s ease forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroLineIn .7s 1.1s ease forwards;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.stat-label {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-controls {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .3);
  transition: all var(--transition);
}

.slide-dot.active {
  background: var(--green);
  width: 24px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .65rem;
  letter-spacing: .15em;
  color: var(--text-muted);
}

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

/* ═════════════════════════════════════
   PARTNERS MARQUEE
═════════════════════════════════════ */
.partners-bar {
  padding: 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-label {
  text-align: center;
  font-size: .7rem;
  letter-spacing: .18em;
  color: var(--text-faint);
  padding: 20px 24px 0;
  font-weight: 700;
  text-transform: uppercase;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  padding: 24px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.partner-logo {
  flex-shrink: 0;
  opacity: .6;
  transition: opacity var(--transition), filter var(--transition);
  cursor: default;
}

.partner-logo:hover {
  opacity: 1;
  filter: brightness(1.3);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

/* ═════════════════════════════════════
   SOLUTIONS
═════════════════════════════════════ */
.solutions {
  background: var(--bg-0);
}

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

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  transition-delay: attr(data-delay ms);
}

.solution-card:hover {
  border-color: var(--border-green);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4), var(--shadow-green);
}

.card-visual {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.solution-card:hover .card-visual img {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(8, 13, 18, .95) 100%);
}

.card-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.8rem;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Healthcare card special */
.healthcare-card {
  background: #060e18;
}

.healthcare-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.hc-screen {
  width: 180px;
  height: 160px;
  background: #0a1929;
  border: 1px solid rgba(92, 184, 144, .3);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hc-scan {
  flex: 1;
  background: radial-gradient(ellipse at 50% 40%, rgba(92, 184, 144, .15) 0%, transparent 70%);
  border-radius: 4px;
  border: 1px solid rgba(92, 184, 144, .1);
  position: relative;
  overflow: hidden;
}

.hc-scan::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: scan 2s ease-in-out infinite;
}

@keyframes scan {

  0%,
  100% {
    top: 0;
    opacity: 0;
  }

  10%,
  90% {
    opacity: 1;
  }

  50% {
    top: 100%;
  }
}

.hc-data {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hc-bar {
  height: 6px;
  background: rgba(92, 184, 144, .5);
  border-radius: 3px;
}

.card-body {
  padding: 24px;
}

.card-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.card-body h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.card-body p {
  font-size: .9rem;
  margin-bottom: 16px;
}

.card-brands {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.card-brands span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid var(--border-green);
  border-radius: 100px;
  padding: 4px 12px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 10px;
}

/* ═════════════════════════════════════
   FEATURED SOLUTION
═════════════════════════════════════ */
.featured-solution {
  background: var(--bg-1);
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.featured-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 0 1px var(--border);
}

.featured-media img {
  width: 100%;
  height: auto;
  display: block;
}

.featured-media-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(4, 6, 10, .8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-green);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

.featured-content h2 {
  margin-bottom: 20px;
}

.featured-content .section-tag {
  margin-bottom: 16px;
}

.featured-content>p {
  margin-bottom: 32px;
}

.setup-components {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.component-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.component-item:hover {
  border-color: var(--border-green);
}

.comp-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.component-item strong {
  display: block;
  font-size: .95rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.component-item small {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ═════════════════════════════════════
   ABOUT
═════════════════════════════════════ */
.about {
  background: var(--bg-0);
}

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

.about-numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-number-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.about-number-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-green), transparent);
}

.about-number-card.accent {
  background: var(--green-dim);
  border-color: var(--border-green);
}

.about-number-card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
}

.an-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.about-number-card.accent .an-num {
  color: var(--green);
}

.an-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}

.an-label {
  display: block;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content>p {
  margin-bottom: 16px;
}

.about-content>p:last-of-type {
  margin-bottom: 32px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: .95rem;
}

.pillar p {
  font-size: .85rem;
  margin: 0;
}

/* ═════════════════════════════════════
   INDUSTRIES
═════════════════════════════════════ */
.industries {
  background: var(--bg-1);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--green-dim) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.industry-card:hover {
  border-color: var(--border-green);
  transform: translateY(-6px);
}

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

.industry-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 20px;
}

.industry-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.industry-card p {
  font-size: .85rem;
}

/* ═════════════════════════════════════
   TESTIMONIALS
═════════════════════════════════════ */
.testimonials {
  background: var(--bg-0);
}

.testimonials-track-wrapper {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.quote-icon {
  font-size: 6rem;
  line-height: .8;
  color: var(--green);
  opacity: .25;
  font-family: Georgia, serif;
  position: absolute;
  top: 24px;
  left: 40px;
}

.testimonial-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
  text-align: center;
}

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

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--text-primary);
}

.testimonial-author small {
  font-size: .82rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.t-prev,
.t-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.t-prev:hover,
.t-next:hover {
  border-color: var(--border-green);
  color: var(--green);
}

.t-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--border);
  transition: all var(--transition);
}

.t-dot.active {
  background: var(--green);
  width: 24px;
}

/* ═════════════════════════════════════
   CTA BAND
═════════════════════════════════════ */
.cta-band {
  padding: 50px 0;
  background: linear-gradient(135deg, var(--bg-1) 0%, #061510 50%, var(--bg-1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(92, 184, 144, .12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  margin-bottom: 12px;
}

.cta-text p {
  max-width: 480px;
}

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

/* ═════════════════════════════════════
   CONTACT
═════════════════════════════════════ */
.contact {
  background: var(--bg-1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info>p {
  margin-bottom: 36px;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  color: var(--text-primary);
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
  font-size: .95rem;
  color: var(--text-muted);
}

.contact-item a:hover {
  color: var(--green);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.social-btn:hover {
  border-color: var(--border-green);
  color: var(--green);
  background: var(--green-dim);
}

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

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

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

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(92, 184, 144, .12);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

.form-success {
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
}

.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.form-success p {
  color: var(--text-primary);
}

/* ═════════════════════════════════════
   FOOTER
═════════════════════════════════════ */
.footer {
  background: #020408;
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 80px 0 60px;
}

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

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

.site-logo-footer {
  height: 60px;
  /* Slightly larger for the footer block */
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: .78rem;
  letter-spacing: .12em;
  color: #fff;
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--green);
}

.contact-list {
  gap: 16px !important;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-list li svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-list li a,
.contact-list li span {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-list li a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: .78rem;
  color: var(--text-faint);
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(92, 184, 144, .4);
}

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

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(92, 184, 144, .5);
}

/* ═════════════════════════════════════
   RESPONSIVE
═════════════════════════════════════ */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(4, 6, 10, .97);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    align-items: stretch;
  }

  .nav-links.open .nav-cta {
    display: flex;
    margin-top: 16px;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .hero-stats {
    gap: 20px;
  }

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

  .featured-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .hero-scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .testimonial-card {
    padding: 32px 24px;
  }

  .about-numbers-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ─────────────────────────────────────────────────
   CAMIXEL TECHNOLOGIES — support.css
   Theme: Light / White / Elegant for Support Portal
───────────────────────────────────────────────── */

/* Base & Typography */
.support-portal {
  background-color: transparent;
  color: var(--text-color);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
}

.support-portal h1,
.support-portal h2,
.support-portal h3,
.support-portal h4 {
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.support-portal p {
  color: #aaa;
}

.support-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 🧭 1. HERO SECTION */
.support-hero {
  background: transparent;
  text-align: center;
  padding: 40px 24px 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.support-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #ffffff, #5cb890);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Search Bar */
.search-wrapper {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.3s ease;
}

.search-wrapper:focus-within {
  box-shadow: 0 8px 30px rgba(92, 184, 144, 0.2);
  border-color: #5cb890;
}

.search-wrapper input {
  flex: 1;
  padding: 20px 24px;
  border: none;
  outline: none;
  font-size: 1.1rem;
  background: transparent;
}

.search-wrapper button {
  padding: 0 30px;
  background: #5cb890;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.search-wrapper button:hover {
  background: #4a9d78;
}

/* Quick Actions */
.quick-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.quick-action-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-green);
  padding: 12px 24px;
  border-radius: 20px;
  color: #ddd;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.quick-action-btn:hover {
  border-color: #5cb890;
  color: #5cb890;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(92, 184, 144, 0.1);
}

/* 🧩 2. PRODUCT-BASED SUPPORT NAVIGATION */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: #aaa;
  margin-bottom: 48px;
  font-size: 1.1rem;
}

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

.product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-green);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border-color: #5cb890;
}

.product-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-block;
}

.product-card h3 {
  font-size: 1.1rem;
  color: #222;
  margin: 0;
}

.product-card span {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-top: 8px;
}

/* ⚡ 3. QUICK TROUBLESHOOTING */
.trouble-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.trouble-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-green);
  border-radius: 12px;
  padding: 0;
  transition: box-shadow 0.3s;
}

.trouble-item[open] {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border-color: #d0f0e0;
}

.trouble-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.trouble-item summary::-webkit-details-marker {
  display: none;
}

.trouble-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: #5cb890;
  transition: transform 0.3s;
}

.trouble-item[open] summary::after {
  transform: rotate(45deg);
}

.trouble-item .trouble-content {
  padding: 0 24px 24px;
  color: #aaa;
}

.trouble-item ol {
  padding-left: 20px;
  margin: 10px 0;
}

.trouble-item li {
  margin-bottom: 8px;
}

/* 📥 4. DOWNLOAD CENTER */
.download-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.download-table th,
.download-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.download-table th {
  background: #f9f9f9;
  font-weight: 600;
  color: #fff;
}

.download-table tr:hover td {
  background: #fdfdfd;
}

.btn-download {
  background: #eaf6f0;
  color: #5cb890;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.btn-download:hover {
  background: #5cb890;
  color: #fff;
}

/* 🛠️ 5. SERVICE & REPAIR SECTION */
.service-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-green);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.service-info {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  background: rgba(92, 184, 144, 0.1);
  color: #fff;
}

.service-info h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-info p {
  color: #aaa;
  margin-bottom: 24px;
}

.service-info ul {
  list-style: none;
  padding: 0;
}

.service-info li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
}

.service-info li::before {
  content: '✓';
  color: #5cb890;
}

.service-form {
  flex: 1.5;
  min-width: 300px;
  padding: 40px;
}

.form-group-light {
  margin-bottom: 20px;
}

.form-group-light label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #ddd;
}

.form-control-light {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s;
  font-family: inherit;
}

.form-control-light:focus {
  outline: none;
  border-color: #5cb890;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 0 3px rgba(92, 184, 144, 0.1);
}

.file-upload {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.3s;
}

.file-upload:hover {
  border-color: #5cb890;
}

.btn-submit {
  background: rgba(92, 184, 144, 0.1);
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #5cb890;
}

/* 📞 6. CONTACT SUPPORT & 📊 7. WARRANTY */
.dual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.contact-card,
.warranty-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-green);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.contact-card h3,
.warranty-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-method .icon {
  width: 40px;
  height: 40px;
  background: #f0f8f4;
  color: #5cb890;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-method a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-method a:hover {
  color: #5cb890;
}

/* Warranty specific */
.warranty-checker {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.warranty-checker input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.warranty-checker button {
  padding: 12px 24px;
  background: rgba(92, 184, 144, 0.1);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.warranty-checker button:hover {
  background: #5cb890;
}

/* 🎓 8. LEARNING & RESOURCES */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.resource-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-green);
  transition: transform 0.3s;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.resource-thumb {
  height: 160px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  position: relative;
}

.resource-thumb::after {
  content: '▶';
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.resource-body {
  padding: 20px;
}

.resource-body h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.resource-body p {
  font-size: 0.9rem;
  color: #aaa;
  margin: 0;
}

/* Responsiveness */
@media(max-width: 768px) {
  .service-flex {
    flex-direction: column;
  }
}

#bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0.8;
}


/* Animated Support Background */
.support-bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

.support-portal {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════
   INDEX-SPECIFIC STYLES
═══════════════════════════ */
    /* ═══════════════════════════
       HERO ENHANCEMENTS
    ═══════════════════════════ */
    .hero-gradient-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, #5CB890, #00c9a7, #5CB890, transparent);
      background-size: 200% 100%;
      animation: shimmerBar 3s linear infinite;
      z-index: 3;
    }

    @keyframes shimmerBar {
      0% {
        background-position: -200% 0;
      }

      100% {
        background-position: 200% 0;
      }
    }

    /* ═══════════════════════════
       TRUST STATEMENT
    ═══════════════════════════ */
    .trust-statement {
      padding: 60px 0 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .trust-statement::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(92, 184, 144, .055) 0%, transparent 70%);
      pointer-events: none;
    }

    .trust-eyebrow {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .2em;
      color: var(--green);
      text-transform: uppercase;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
    }

    .trust-eyebrow::before,
    .trust-eyebrow::after {
      content: '';
      display: block;
      width: 64px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--green));
    }

    .trust-eyebrow::after {
      background: linear-gradient(270deg, transparent, var(--green));
    }

    .trust-headline {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2.4rem, 5.5vw, 4.4rem);
      font-weight: 900;
      letter-spacing: -.025em;
      line-height: 1.1;
      color: var(--text-primary);
      max-width: 860px;
      margin: 0 auto 40px;
    }

    .trust-headline em {
      font-style: normal;
      color: var(--green);
    }

    .trust-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .trust-divider-line {
      width: 120px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border));
    }

    .trust-divider-line.right {
      background: linear-gradient(270deg, transparent, var(--border));
    }

    .trust-divider-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 14px var(--green);
    }

    /* ═══════════════════════════
       BRANDS MARQUEE
    ═══════════════════════════ */
    .brands-section {
      padding: 70px 0;
      position: relative;
      overflow: hidden;
      background: radial-gradient(ellipse at center, rgba(92, 184, 144, .08) 0%, transparent 60%);
      border-top: 1px solid rgba(92, 184, 144, .1);
      border-bottom: 1px solid rgba(92, 184, 144, .1);
    }

    .brands-section::before,
    .brands-section::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 140px;
      z-index: 2;
      pointer-events: none;
    }

    .brands-section::before {
      left: 0;
      background: linear-gradient(90deg, var(--bg-0), transparent);
    }

    .brands-section::after {
      right: 0;
      background: linear-gradient(270deg, var(--bg-0), transparent);
    }

    .brands-section-title {
      text-align: center;
      font-size: 1.2rem;
      font-weight: 800;
      letter-spacing: .25em;
      color: var(--green);
      text-transform: uppercase;
      margin-bottom: 40px;
      text-shadow: 0 0 20px rgba(92, 184, 144, 0.4);
    }

    .brands-marquee-outer {
      overflow: hidden;
      padding: 20px 0;
      margin: -20px 0;
    }

    .brands-marquee-track {
      display: flex;
      animation: brandsScroll 24s linear infinite;
      width: max-content;
    }

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

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

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

    .brand-card {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 36px 64px;
      margin: 0 12px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      background: rgba(255, 255, 255, 0.02);
      border-radius: var(--radius-lg);
      transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      position: relative;
      min-width: 250px;
      text-decoration: none;
    }

    .brand-card:hover {
      border-color: var(--green);
      background: rgba(92, 184, 144, .08);
      box-shadow: 0 10px 40px rgba(92, 184, 144, .15);
      transform: translateY(-6px);
    }

    .brand-card-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }

    .brand-logo-img {
      height: 64px;
      width: auto;
      object-fit: contain;
      opacity: 0.85;
      transition: opacity 0.4s, transform 0.4s, filter 0.4s;
      margin-bottom: 12px;
    }

    .brand-card:hover .brand-logo-img {
      opacity: 1;
      transform: scale(1.08);
      filter: drop-shadow(0 0 12px rgba(92, 184, 144, 0.3));
    }

    .brand-sub {
      font-size: .8rem;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: .08em;
      text-align: center;
      transition: color .4s;
    }

    .brand-card:hover .brand-sub {
      color: var(--green);
    }

    .brand-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--green);
      opacity: 0;
      transition: opacity .35s;
    }

    .brand-card:hover .brand-dot {
      opacity: 1;
    }

    /* ═══════════════════════════
       ABOUT REDESIGNED
    ═══════════════════════════ */
    .about-redesigned {
      padding: 60px 0;
      position: relative;
    }

    .about-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .about-left .section-tag {
      margin-bottom: 24px;
    }

    .about-left h2 {
      margin-bottom: 28px;
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    }

    .about-left>p {
      margin-bottom: 18px;
      font-size: 1.02rem;
      line-height: 1.82;
    }

    .about-highlight {
      color: var(--green);
      font-weight: 600;
    }

    .about-pillars-new {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin: 32px 0 38px;
    }

    .pillar-new {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 20px;
      transition: all .3s ease;
    }

    .pillar-new:hover {
      border-color: var(--border-green);
      background: var(--bg-card-h);
    }

    .pillar-new-icon {
      font-size: 1.4rem;
      margin-bottom: 10px;
    }

    .pillar-new strong {
      display: block;
      font-size: .88rem;
      color: var(--text-primary);
      margin-bottom: 4px;
    }

    .pillar-new p {
      font-size: .78rem;
      margin: 0;
    }

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

    .about-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .about-slide.active {
      opacity: 1;
    }

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

    .about-slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(5, 13, 8, .85), transparent 55%);
    }

    .about-slide-caption {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
    }

    .about-slide-caption strong {
      display: block;
      font-size: .9rem;
      color: #fff;
      margin-bottom: 3px;
    }

    .about-slide-caption span {
      font-size: .75rem;
      color: var(--green);
    }

    .about-slide-nav {
      position: absolute;
      bottom: -22px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 2;
    }

    .about-slide-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: all .3s;
      border: none;
    }

    .about-slide-dot.active {
      background: var(--green);
      width: 24px;
      border-radius: 4px;
    }

    .about-nums {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 48px;
    }

    .about-num-item {
      text-align: center;
      padding: 22px 12px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      transition: border-color .3s;
    }

    .about-num-item:hover {
      border-color: var(--border-green);
    }

    .big-num {
      font-family: 'Outfit', sans-serif;
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--green);
      line-height: 1;
    }

    .num-label {
      font-size: .72rem;
      color: var(--text-muted);
      margin-top: 5px;
      letter-spacing: .05em;
    }

    /* ═══════════════════════════
       INDUSTRIES REDESIGNED
    ═══════════════════════════ */
    .industries-redesigned {
      padding: 60px 0;
      background: var(--bg-1);
      position: relative;
    }

    .industries-mega-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 32px;
    }

    .industry-tile {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 0;
      transition: all .4s cubic-bezier(.4, 0, .2, 1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .industry-tile::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--green), #00c9a7);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s ease;
      z-index: 5;
    }

    .industry-tile:hover {
      border-color: var(--border-green);
      background: var(--bg-card-h);
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, .3), 0 0 30px rgba(92, 184, 144, .08);
    }

    .industry-tile:hover::after {
      transform: scaleX(1);
    }

    .industry-tile-img {
      height: 160px;
      width: 100%;
      background-size: cover;
      background-position: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .industry-tile:hover .industry-tile-img {
      transform: scale(1.06);
    }

    .industry-tile-content {
      padding: 24px 22px 30px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      background: var(--bg-card);
      position: relative;
      z-index: 2;
    }

    .industry-tile h3 {
      font-size: .98rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 8px;
    }

    .industry-tile p {
      font-size: .78rem;
      line-height: 1.6;
    }

    .industry-tile-badge {
      display: inline-block;
      font-size: .63rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green);
      border: 1px solid var(--border-green);
      border-radius: 100px;
      padding: 3px 10px;
      margin-top: 14px;
    }

    /* ═══════════════════════════
       CUSTOMER STORIES
    ═══════════════════════════ */
    .customer-stories {
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }

    .customer-stories::before {
      content: '';
      position: absolute;
      top: 50%;
      left: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(92, 184, 144, .04), transparent 70%);
      transform: translateY(-50%);
    }

    .stories-carousel {
      position: relative;
      overflow: hidden;
      margin-top: 64px;
    }

    .stories-track {
      display: flex;
      transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    }

    .story-card {
      min-width: 100%;
      padding: 0 8%;
    }

    .story-inner {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 56px;
      display: grid;
      grid-template-columns: 1fr 220px;
      gap: 56px;
      align-items: start;
      position: relative;
      overflow: hidden;
    }

    .story-inner::before {
      content: '\201C';
      position: absolute;
      top: -24px;
      left: 40px;
      font-size: 200px;
      font-family: 'Outfit', sans-serif;
      font-weight: 900;
      color: rgba(92, 184, 144, .055);
      line-height: 1;
      pointer-events: none;
    }

    .story-result {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(92, 184, 144, .1);
      border: 1px solid var(--border-green);
      border-radius: 100px;
      padding: 8px 20px;
      font-size: .78rem;
      font-weight: 600;
      color: var(--green);
      margin-bottom: 28px;
    }

    .story-result-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
    }

    .story-quote {
      font-size: 1.08rem;
      color: var(--text-primary);
      line-height: 1.78;
      font-weight: 400;
      margin-bottom: 32px;
      font-style: italic;
    }

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

    .story-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: .92rem;
      flex-shrink: 0;
      border: 2px solid var(--border-green);
    }

    .story-author-info strong {
      display: block;
      font-size: .92rem;
      color: var(--text-primary);
    }

    .story-author-info small {
      font-size: .75rem;
      color: var(--text-muted);
    }

    .story-visual-box {
      aspect-ratio: 1;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: var(--bg-2);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .story-visual-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .story-brand-tag {
      text-align: center;
      margin-top: 10px;
      font-size: .68rem;
      color: var(--text-faint);
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    .stories-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 48px;
    }

    .story-nav-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--bg-card);
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      transition: all .25s ease;
    }

    .story-nav-btn:hover {
      border-color: var(--green);
      color: var(--green);
      background: var(--green-dim);
    }

    .story-dots {
      display: flex;
      gap: 8px;
    }

    .story-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border);
      border: none;
      cursor: pointer;
      transition: all .3s;
    }

    .story-dot.active {
      background: var(--green);
      width: 24px;
      border-radius: 4px;
    }

    /* ═══════════════════════════
       CONTACT REDESIGNED
    ═══════════════════════════ */
    .contact-redesigned {
      padding: 60px 0;
      position: relative;
      background: var(--bg-1);
    }

    .contact-redesigned::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 40% at 18% 50%, rgba(92, 184, 144, .04), transparent),
        radial-gradient(ellipse 40% 55% at 82% 60%, rgba(0, 201, 167, .03), transparent);
      pointer-events: none;
    }

    .contact-header-new {
      text-align: center;
      margin-bottom: 80px;
    }

    .contact-header-new .section-tag {
      margin-bottom: 20px;
    }

    .contact-header-new h2 {
      margin-bottom: 16px;
    }

    .contact-header-new p {
      max-width: 540px;
      margin: 0 auto;
      font-size: 1.02rem;
    }

    .contact-grid-new {
      display: grid;
      grid-template-columns: 1fr 1.45fr;
      gap: 60px;
      align-items: start;
    }

    .contact-info-title {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .16em;
      color: var(--text-faint);
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
    }

    .contact-detail:last-of-type {
      border-bottom: none;
    }

    .contact-detail-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      background: var(--green-dim);
      border: 1px solid var(--border-green);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-detail-body strong {
      display: block;
      font-size: .83rem;
      color: var(--text-primary);
      font-weight: 600;
      margin-bottom: 4px;
    }

    .contact-detail-body a,
    .contact-detail-body span {
      font-size: .88rem;
      color: var(--text-muted);
      transition: color .25s;
    }

    .contact-detail-body a:hover {
      color: var(--green);
    }

    .contact-socials {
      display: flex;
      gap: 12px;
      margin-top: 36px;
    }

    .social-icon-btn {
      width: 42px;
      height: 42px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      background: var(--bg-card);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      transition: all .25s ease;
      text-decoration: none;
    }

    .social-icon-btn:hover {
      border-color: var(--green);
      color: var(--green);
      background: var(--green-dim);
    }

    .contact-form-new {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 48px;
    }

    .form-title-new {
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 32px;
    }

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

    .form-group-new {
      margin-bottom: 18px;
    }

    .form-group-new label {
      display: block;
      font-size: .75rem;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .form-group-new input,
    .form-group-new select,
    .form-group-new textarea {
      width: 100%;
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 13px 18px;
      color: var(--text-primary);
      font-family: 'Inter', sans-serif;
      font-size: .88rem;
      transition: border-color .25s, box-shadow .25s, background .25s;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
    }

    .form-group-new input::placeholder,
    .form-group-new textarea::placeholder {
      color: var(--text-faint);
    }

    .form-group-new input:focus,
    .form-group-new select:focus,
    .form-group-new textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(92, 184, 144, .12);
      background: rgba(92, 184, 144, .04);
    }

    .form-group-new select option {
      background: #0d1520;
      color: var(--text-primary);
    }

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

    .submit-btn-new {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: var(--green);
      color: #050d09;
      font-weight: 700;
      font-size: 1rem;
      padding: 18px 24px;
      border: none;
      border-radius: var(--radius-md);
      cursor: pointer;
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      font-family: 'Outfit', sans-serif;
      letter-spacing: .02em;
    }

    .submit-btn-new:hover {
      background: #4da67f;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(92, 184, 144, 0.2);
    }

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

    .submit-btn-new:disabled {
      background: var(--bg-2);
      color: var(--text-faint);
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .submit-btn-new:disabled::before {
      display: none;
    }

    .submit-btn-new::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
      transform: translateX(-100%);
      transition: transform .5s ease;
    }

    .submit-btn-new:hover::before {
      transform: translateX(100%);
    }

    .form-success-new {
      text-align: center;
      padding: 40px 20px;
    }

    /* Loader Dots */
    .loader-dots {
      display: inline-flex;
      gap: 3px;
    }

    .loader-dots span {
      width: 4px;
      height: 4px;
      background: currentColor;
      border-radius: 50%;
      animation: dots 1.4s infinite ease-in-out both;
    }

    .loader-dots span:nth-child(1) { animation-delay: -0.32s; }
    .loader-dots span:nth-child(2) { animation-delay: -0.16s; }

    @keyframes dots {
      0%, 80%, 100% { transform: scale(0); }
      40% { transform: scale(1.0); }
    }

    .success-circle {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--green-dim);
      border: 2px solid var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin: 0 auto 20px;
    }

    .form-success-new p {
      font-size: 1rem;
      color: var(--text-primary);
    }

    /* ═══════════════════════════
       RESPONSIVE
    ═══════════════════════════ */
    @media (max-width: 960px) {
      .about-split {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .industries-mega-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .story-card {
        padding: 0 3%;
      }

      .story-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px;
      }

      .story-visual {
        display: none;
      }

      .contact-grid-new {
        grid-template-columns: 1fr;
      }

      .about-pillars-new {
        grid-template-columns: 1fr 1fr;
      }

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

      .contact-form-new {
        padding: 28px;
      }
    }

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

      .trust-headline {
        font-size: 2rem;
      }

      .about-pillars-new {
        grid-template-columns: 1fr;
      }
    }

/* ═════════════════════════════════════
   SOLUTIONS PAGE SPECIFIC STYLES
═════════════════════════════════════ */

/* ── SOLUTIONS HERO ── */
.sol-hero {
  position: relative;
  padding: 100px 0 100px;
  overflow: hidden;
  background: var(--bg-0);
  text-align: center;
}

.sol-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(92,184,144,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(92,184,144,.06) 0%, transparent 60%);
  pointer-events: none;
}

.sol-hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 184, 144, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 184, 144, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

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

.sol-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
  margin: 20px 0 24px;
  line-height: 1;
}

.sol-hero-sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}
/* ── SOLUTIONS FILTER BAR ── */
.sol-filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.sol-filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sol-filter-btn:hover {
  border-color: rgba(92, 184, 144, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

.sol-filter-btn.active {
  background: rgba(92, 184, 144, 0.15);
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 15px rgba(92, 184, 144, 0.2);
}

/* ── COMPACT SOLUTIONS GRID ── */
.solutions-grid.sol-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px;
}

.solution-card.compact {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.solution-card.filtered-out {
  display: none !important;
}

.solution-card.compact:hover {
  transform: translateY(-6px);
  border-color: rgba(92, 184, 144, 0.5);
  background: rgba(92, 184, 144, 0.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(92, 184, 144, 0.15);
}

.solution-card.compact .card-body {
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.solution-card.compact h3 {
  font-size: 1.15rem;
  margin: 12px 0 8px;
  color: #fff;
  line-height: 1.3;
}

.solution-card.compact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.solution-card.compact .sol-workflow-bar {
  margin-top: auto;
  margin-bottom: 20px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
}

.card-link-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.solution-card.compact:hover .card-link-text {
  gap: 10px;
}

.solution-card.compact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(92, 184, 144, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card.compact:hover::after {
  opacity: 1;
}

/* ── WORKFLOW BAR ── */
.sol-workflow-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
  padding: 10px 12px;
  background: rgba(92, 184, 144, .05);
  border: 1px solid rgba(92, 184, 144, .12);
  border-radius: var(--radius-sm);
}

.sol-workflow-bar span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-muted);
  white-space: nowrap;
}

.wf-arrow {
  color: var(--green) !important;
  font-weight: 700 !important;
  font-size: .8rem !important;
}

/* ── MODAL OVERLAY ── */
.sol-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.sol-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.sol-modal {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .7), 0 0 0 1px rgba(92, 184, 144, .1);
  scrollbar-width: thin;
  scrollbar-color: var(--border-green) transparent;
}

.sol-modal-overlay.open .sol-modal {
  transform: translateY(0) scale(1);
}

.sol-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.sol-modal-close:hover {
  border-color: var(--border-green);
  color: var(--green);
  background: var(--green-dim);
}

/* Modal image */
.sol-modal-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.sol-modal-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg-1) 100%);
}

.sol-modal-badge {
  position: absolute;
  top: 16px;
  left: 20px;
  background: rgba(5, 13, 9, .85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-green);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--green);
  text-transform: uppercase;
}

/* Modal body */
.sol-modal-body {
  padding: 24px 32px 36px;
}

.sol-modal-body .section-tag {
  margin-bottom: 12px;
}

.sol-modal-body h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 14px;
  color: #fff;
}

.sol-modal-intro {
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.75;
}

/* Modal sections */
.sol-modal-section {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.sol-modal-section:hover {
  border-color: var(--border-green);
}

.sol-modal-section-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
}

/* Lists */
.sol-modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.sol-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.sol-modal-list li::before {
  content: '—';
  color: var(--green);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

.sol-modal-check li::before {
  content: '✓';
  color: var(--green);
  font-size: .85rem;
}

/* Modal workflow stages */
.sol-modal-workflow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.sol-modal-wf-stage {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sol-modal-wf-step {
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}

.sol-modal-wf-arrow {
  color: var(--text-faint);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Approach text */
#sol-modal-approach {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Modal Highlights Section */
.sol-modal-highlight {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: rgba(92, 184, 144, 0.05);
  border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0;
}

.sol-modal-highlight .sol-modal-section-title {
  margin-bottom: 0.75rem;
  color: var(--green);
}

.sol-modal-highlight-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sol-modal-highlight-list li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sol-modal-highlight-list li::before {
  content: '✨';
  font-size: 0.8rem;
}

/* ── SOLUTIONS RESPONSIVE ── */
@media (max-width: 1024px) {
  .sol-3col {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .sol-hero {
    padding: 140px 0 80px;
  }
  .sol-3col {
    grid-template-columns: 1fr !important;
  }
  .sol-modal-body {
    padding: 20px 20px 28px;
  }
  .sol-modal-img-wrap {
    height: 180px;
  }
}

/* ── BUILD YOUR SOLUTION FORM ── */
.sol-form-section {
  padding: 100px 0;
  background: var(--bg-0);
  border-top: 1px solid var(--border);
}

.sol-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
}

.sol-form-header {
  text-align: center;
  margin-bottom: 50px;
}

.sol-form-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
  color: #fff;
}

.sol-form-header p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.form-section-group {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.form-section-title {
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 25px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: .02em;
}

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

.form-sublabel {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

/* Checkbox Grid */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 10px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .2s ease;
}

.checkbox-container:hover {
  background: rgba(92,184,144,.05);
  border-color: rgba(92,184,144,.3);
}

.checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  cursor: pointer;
}

.checkbox-label {
  font-size: .85rem;
  color: var(--text-primary);
}

.form-submit-wrap {
  margin-top: 40px;
}

/* Success State */
.sol-form-success {
  text-align: center;
  padding: 40px 0;
  animation: fadeInDown .5s ease;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--green-dim);
  color: var(--green);
  border: 2px solid var(--border-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
}

.sol-form-success h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}

.sol-form-success p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .sol-form-container {
    padding: 30px 20px;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .interests-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═════════════════════════════════════
   CUSTOMER STORIES (SOCIAL FEED)
═════════════════════════════════════ */
.customer-stories {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--bg-1);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.story-card {
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--green-dim);
}

.story-header {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.story-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  border: 1px solid var(--border-green);
}

.story-user {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.story-user strong {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.story-user span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.story-icon {
  color: var(--text-muted);
  transition: color var(--transition);
}

.story-icon:hover {
  color: var(--green);
}

.story-image-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-2);
}

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

.story-card:hover .story-img {
  transform: scale(1.03);
}

.story-body {
  padding: 16px;
}

.story-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.story-actions svg {
  cursor: pointer;
  transition: color var(--transition), transform 0.2s;
}

.story-actions svg:hover {
  color: var(--green);
  transform: scale(1.1);
}

.story-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.story-caption strong {
  color: var(--text-primary);
  margin-right: 6px;
}

/* ═════════════════════════════════════
   MOBILE FIXES (ADDED VIA IMPLEMENTATION PLAN)
═════════════════════════════════════ */
@media (max-width: 768px) {
  /* Fix home page banner (Hero) typography */
  .hero {
    min-height: auto;
    max-height: none;
    height: auto;
    aspect-ratio: auto;
    padding: 60px 0 80px 0;
  }
  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3.5rem) !important;
    line-height: 1.1;
  }
  .hero-line[style] {
    font-size: 1rem !important; /* The 'We Represent' text which was 0.5em of the tiny headline */
    letter-spacing: 0.15em !important;
  }
  .hero-sub {
    font-size: 1rem;
    line-height: 1.5;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 16px;
  }
  .hero-actions .btn {
    justify-content: center;
  }

  /* Global Typography adjustments for mobile */
  h1 { font-size: clamp(2.2rem, 8vw, 3rem) !important; }
  h2 { font-size: clamp(1.8rem, 6vw, 2.5rem) !important; }
  h3 { font-size: clamp(1.2rem, 5vw, 1.5rem) !important; }

  /* Stack multi-column grids */
  .i-grid,
  .brand-grid,
  .features-grid,
  .stats-grid,
  .who-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  /* Images responsive */
  img {
    max-width: 100%;
    height: auto;
  }
}
