/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   RMCOS Enterprise SaaS â enterprise.css
   White + Gold (#D89B1D) + Dark Gray (#333333) Theme
   âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */

/* ââ RESET & BASE ââââââââââââââââââââââââââââââââââââââââââââ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #D89B1D;
  --gold-light: #F0C050;
  --gold-dark: #B07B10;
  --gold-bg: #FDF6E3;
  --dark: #333333;
  --dark2: #1a1a2e;
  --gray: #F8F9FB;
  --gray2: #F1F3F6;
  --gray3: #e5e7eb;
  --gray-text: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --green: #10b981;
  --red: #ef4444;
  --orange: #f59e0b;
  --blue: #3b82f6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 30px rgba(216,155,29,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ââ TYPOGRAPHY âââââââââââââââââââââââââââââââââââââââââââââââ */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.2rem; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.text-gold { color: var(--gold); }
.white { color: var(--white) !important; }

/* ââ SECTION HEADER âââââââââââââââââââââââââââââââââââââââââââ */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block;
}
.section-eyebrow.light { color: rgba(216,155,29,0.8); }
.section-h2 { margin-bottom: 1rem; }
.section-h2.white { color: #fff; }
.section-sub { color: var(--gray-text); font-size: 1.1rem; }
.section-sub.white { color: rgba(255,255,255,0.75); }

/* ââ BUTTONS âââââââââââââââââââââââââââââââââââââââââââââââââââ */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0.85rem 2rem; background: var(--gold); color: #fff;
  font-weight: 700; font-size: 1rem; border-radius: var(--radius-sm);
  border: none; cursor: pointer; font-family: var(--font);
  transition: var(--transition); box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(216,155,29,0.4); }
.btn-gold.btn-full { width: 100%; }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 1.8rem; background: transparent; color: var(--dark);
  font-weight: 600; font-size: 1rem; border-radius: var(--radius-sm);
  border: 2px solid var(--border); cursor: pointer; font-family: var(--font);
  transition: var(--transition);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }

.btn-nav-demo {
  display: inline-flex; align-items: center;
  padding: 0.6rem 1.4rem; background: var(--gold); color: #fff;
  font-weight: 700; font-size: 0.9rem; border-radius: var(--radius-sm);
  transition: var(--transition); box-shadow: 0 3px 12px rgba(216,155,29,0.3);
}
.btn-nav-demo:hover { background: var(--gold-dark); transform: translateY(-1px); }

.play-ic { font-size: 0.8rem; }

/* ââ NAVIGATION âââââââââââââââââââââââââââââââââââââââââââââââ */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-weight: 500; font-size: 0.95rem; color: #4b5563;
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.2s; transform-origin: left;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-dropdown-wrap { position: relative; }
.nav-dd-trigger { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.dd-caret { font-size: 0.65rem; transition: var(--transition); }
.nav-dropdown-wrap:hover .dd-caret { transform: rotate(180deg); }

.nav-dd-panel {
  display: none; position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%); background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1rem;
  min-width: 240px; z-index: 100;
}
.nav-dropdown-wrap:hover .nav-dd-panel { display: flex; flex-direction: column; gap: 0.25rem; }
.nav-dd-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 0.6rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; color: #374151;
}
.nav-dd-panel a::after { display: none !important; }
.nav-dd-panel a:hover { background: var(--gold-bg); color: var(--gold); }
.nav-dd-panel a span { font-size: 1rem; }

.nav-actions { display: flex; align-items: center; gap: 1.25rem; }
.nav-link-plain { font-weight: 500; font-size: 0.95rem; color: #6b7280; transition: color 0.2s; }
.nav-link-plain:hover { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ââ HERO SECTION ââââââââââââââââââââââââââââââââââââââââââââââ */
.hero-section {
  min-height: 100vh; padding-top: 72px;
  background: linear-gradient(160deg, #fff 60%, #FDF6E3 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

.hero-bg-silhouette {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 800px 400px at 80% 60%, rgba(216,155,29,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 20% 90%, rgba(216,155,29,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem;
  align-items: center; max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(216,155,29,0.1); border: 1px solid rgba(216,155,29,0.2);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
  animation: eyebrowPulse 2s ease-in-out infinite;
}
@keyframes eyebrowPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero-h1 { color: var(--dark); margin-bottom: 1.25rem; line-height: 1.1; }
.hero-gold { color: var(--gold); }

.hero-sub { color: var(--gray-text); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 480px; }

.hero-features {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-feat {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
}
.hf-icon { font-size: 1.6rem; }
.hf-text { font-size: 0.75rem; font-weight: 600; color: #4b5563; line-height: 1.3; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ââ HERO RIGHT / DASHBOARD âââââââââââââââââââââââââââââââââââ */
.hero-right { position: relative; }
.hero-dashboard-wrap { position: relative; }

/* Laptop */
.laptop-frame {
  position: relative; background: #1e2533; border-radius: 12px;
  padding: 10px 10px 0; box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.1);
  max-width: 560px; margin: 0 auto;
}
.laptop-screen {
  background: #f8f9fb; border-radius: 6px; overflow: hidden;
  aspect-ratio: 16/10; position: relative;
}
.laptop-base {
  background: linear-gradient(to bottom, #2a3040, #3a4050);
  height: 10px; border-radius: 0 0 4px 4px; margin: 0 -4px;
}
.laptop-stand {
  width: 40%; height: 8px; background: #2a3040;
  border-radius: 0 0 8px 8px; margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Dashboard UI inside laptop */
.dash-ui { display: flex; height: 100%; }
.dash-sidebar {
  width: 110px; background: #1e2533; padding: 12px 8px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.dash-logo-mini { padding: 4px 0 12px; text-align: center; }
.dash-nav-mini { display: flex; flex-direction: column; gap: 2px; }
.dn-item {
  padding: 5px 8px; border-radius: 6px; font-size: 0.6rem;
  color: rgba(255,255,255,0.55); cursor: pointer; transition: 0.2s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dn-item.active { background: rgba(216,155,29,0.2); color: var(--gold); }
.dn-item:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }

.dash-main { flex: 1; padding: 10px; background: #f8f9fb; overflow: hidden; }
.dash-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.dash-title { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.dash-topbar-right { display: flex; gap: 8px; align-items: center; font-size: 0.65rem; color: var(--gray-text); }
.dash-notif { font-size: 0.85rem; }
.dash-avatar { background: var(--gold); color: #fff; padding: 2px 6px; border-radius: 4px; font-weight: 700; font-size: 0.6rem; }

.dash-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 8px; }
.ds-card {
  background: #fff; border: 1px solid var(--border); border-radius: 6px;
  padding: 6px 8px;
}
.ds-label { font-size: 0.5rem; color: var(--gray-text); margin-bottom: 2px; }
.ds-val { font-size: 0.85rem; font-weight: 800; color: var(--dark); }
.ds-val.gold { color: var(--gold); }
.ds-val.orange { color: var(--orange); }

.dash-charts-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 6px; margin-bottom: 8px; }
.dc-box { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 6px 8px; }
.dc-head { font-size: 0.55rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.line-chart-svg { width: 100%; height: 36px; }
.donut-wrap { display: flex; align-items: center; gap: 6px; }
.donut-svg { width: 44px; height: 44px; flex-shrink: 0; }
.donut-legend { display: flex; flex-direction: column; gap: 2px; }
.dl-item { display: flex; align-items: center; gap: 3px; font-size: 0.45rem; color: #4b5563; }
.dl-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

.dash-bottom-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.db-item { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 6px 8px; }
.db-label { font-size: 0.48rem; color: var(--gray-text); margin-bottom: 2px; }
.db-val { font-size: 0.75rem; font-weight: 800; color: var(--dark); }
.db-val.gold { color: var(--gold); }
.db-bar { height: 3px; background: var(--gray3); border-radius: 2px; margin-top: 3px; }
.db-fill { height: 100%; background: #374151; border-radius: 2px; }
.db-fill.gold-fill { background: var(--gold); }

/* Phone float */
.phone-float {
  position: absolute; bottom: -20px; right: -40px;
  z-index: 10;
}
.phone-frame {
  background: #1e2533; border-radius: 24px;
  padding: 8px 8px 12px; width: 140px;
  box-shadow: var(--shadow-xl); border: 1px solid rgba(255,255,255,0.08);
}
.phone-screen {
  background: #fff; border-radius: 18px; overflow: hidden;
  aspect-ratio: 9/16; display: flex; flex-direction: column;
}
.ph-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px; background: #fff; border-bottom: 1px solid var(--border);
}
.ph-title { font-size: 0.55rem; font-weight: 700; color: var(--dark); }
.ph-search { font-size: 0.65rem; }
.ph-map { flex: 1; position: relative; overflow: hidden; }
.ph-map-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #d1e8f0 0%, #b8d4e8 100%);
}
.ph-truck-dot {
  position: absolute; top: 35%; left: 40%; font-size: 1rem;
  animation: phoneTruckMove 4s ease-in-out infinite;
}
@keyframes phoneTruckMove {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(8px,-6px); }
}
.ph-route-line {
  position: absolute; top: 10%; left: 10%; right: 20%; bottom: 30%;
  border: 1.5px dashed rgba(216,155,29,0.6); border-radius: 50%;
}
.ph-dest-pin { position: absolute; top: 15%; right: 15%; font-size: 0.9rem; }
.ph-card { padding: 6px; background: #fff; }
.ph-truck-id { font-size: 0.55rem; font-weight: 700; color: var(--dark); }
.ph-status { font-size: 0.45rem; color: var(--gold); font-weight: 600; margin-bottom: 2px; }
.ph-site, .ph-eta { font-size: 0.45rem; color: var(--gray-text); }
.ph-btn {
  display: block; width: 100%; padding: 4px; background: var(--gold);
  color: #fff; font-size: 0.45rem; font-weight: 700; border: none;
  border-radius: 4px; cursor: pointer; margin-top: 4px;
}

/* Floating badges */
.hero-badge-float {
  position: absolute; background: #fff; border-radius: var(--radius);
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  animation: badgeFloat 4s ease-in-out infinite;
}
.badge-orders { top: 10%; left: -20px; animation-delay: 0s; }
.badge-revenue { bottom: 20%; right: 10px; animation-delay: 1.5s; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-icon { font-size: 1.2rem; }
.badge-val { font-size: 0.9rem; font-weight: 800; color: var(--dark); line-height: 1.2; }
.badge-lbl { font-size: 0.65rem; color: var(--gray-text); }

/* ââ MARQUEE âââââââââââââââââââââââââââââââââââââââââââââââââââ */
.marquee-band {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--gray); padding: 14px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 2rem; width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.mq-item { font-size: 0.82rem; font-weight: 600; color: #4b5563; white-space: nowrap; }
.mq-sep { color: var(--gold); font-size: 0.7rem; }

/* ââ SECTION 2: PLATFORM FEATURES âââââââââââââââââââââââââââââ */
.section-platform { padding: 100px 0; background: #fff; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.feat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; transition: var(--transition);
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(216,155,29,0.3); }
.feat-card:hover::before { transform: scaleX(1); }

.feat-card-icon-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.feat-icon-circle {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-bg); border: 1px solid rgba(216,155,29,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(216,155,29,0.1); border: 1px solid rgba(216,155,29,0.2);
  padding: 3px 8px; border-radius: 100px;
}

.feat-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }

.feat-list {
  margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.feat-list li {
  font-size: 0.82rem; color: #4b5563; display: flex; align-items: center; gap: 6px;
}
.feat-list li::before { content: 'â¢'; color: var(--gold); font-weight: 900; font-size: 1rem; flex-shrink: 0; }

/* Feature widgets */
.feat-widget { border-radius: var(--radius-sm); overflow: hidden; background: var(--gray); border: 1px solid var(--border); }

/* Table widget */
.feat-widget-table {}
.fw-head, .fw-row {
  display: grid; grid-template-columns: 1.5fr 1fr 0.8fr 1fr;
  padding: 5px 8px; font-size: 0.55rem;
}
.fw-head { background: var(--gray2); font-weight: 700; color: var(--gray-text); }
.fw-row { border-top: 1px solid var(--border); color: #374151; align-items: center; }

/* Status badges */
.s-badge {
  display: inline-block; font-size: 0.5rem; font-weight: 700;
  padding: 2px 6px; border-radius: 100px;
}
.s-green { background: rgba(16,185,129,0.12); color: #047857; }
.s-gold { background: rgba(216,155,29,0.12); color: var(--gold-dark); }
.s-gray { background: var(--gray3); color: var(--gray-text); }
.s-red { background: rgba(239,68,68,0.1); color: #dc2626; }

/* Map dispatch widget */
.feat-widget-map { }
.fw-map-bg { padding: 4px; }
.dispatch-map-svg { width: 100%; height: 80px; }
.fw-dispatch-list { padding: 6px 8px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 3px; }
.fw-dl-item { font-size: 0.55rem; color: #374151; display: flex; align-items: center; justify-content: space-between; }
.truck-ic { font-size: 0.8rem; margin-right: 4px; }

/* GPS widget */
.feat-widget-gps { }
.gps-map-area { padding: 4px; }
.gps-map-svg { width: 100%; height: 75px; }
.gps-truck-anim { animation: gpsTruckAnim 3s ease-in-out infinite; }
@keyframes gpsTruckAnim { 0%,100% { transform: translateX(0); } 50% { transform: translateX(10px); } }
.gps-info-row {
  display: flex; border-top: 1px solid var(--border); padding: 6px 8px; gap: 8px;
}
.gps-stat { flex: 1; text-align: center; }
.gs-num { font-size: 0.75rem; font-weight: 800; color: var(--dark); display: block; }
.gs-num.gold { color: var(--gold); }
.gs-lab { font-size: 0.45rem; color: var(--gray-text); }

/* POD widget */
.feat-widget-pod { padding: 0; }
.pod-screen { padding: 10px; }
.pod-header { font-size: 0.58rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; padding-bottom: 4px; border-bottom: 1px solid var(--border); }
.pod-info-row { display: flex; justify-content: space-between; font-size: 0.5rem; color: #4b5563; margin-bottom: 2px; }
.pod-photo-area { font-size: 0.5rem; background: var(--gray); border-radius: 4px; padding: 4px 6px; margin: 6px 0; color: var(--gray-text); }
.pod-check { color: var(--green); margin-left: 4px; }
.pod-sig-area { margin-top: 4px; }
.pod-sig-label { font-size: 0.48rem; color: var(--gray-text); display: block; margin-bottom: 2px; }
.pod-sig-line { border-bottom: 1px solid var(--border); }
.pod-confirmed { font-size: 0.5rem; color: var(--green); font-weight: 700; margin-top: 4px; }

/* Invoice widget */
.feat-widget-invoice { padding: 8px; }
.inv-toprow { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.inv-total-lbl { font-size: 0.5rem; color: var(--gray-text); }
.inv-total-val { font-size: 0.75rem; font-weight: 800; color: var(--gold); }
.inv-list { display: flex; flex-direction: column; gap: 4px; }
.inv-row { display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 4px; align-items: center; font-size: 0.5rem; color: #374151; }

/* Analytics bar chart widget */
.feat-widget-analytics { padding: 10px; }
.an-mini-stats { display: flex; gap: 8px; margin-bottom: 10px; }
.an-ms { display: flex; flex-direction: column; gap: 1px; }
.an-ms-val { font-size: 0.7rem; font-weight: 800; color: var(--dark); }
.an-ms-val.gold { color: var(--gold); }
.an-ms-val.green { color: var(--green); }
.an-ms-lbl { font-size: 0.45rem; color: var(--gray-text); }
.an-bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 48px; }
.an-bar {
  flex: 1; background: linear-gradient(to top, var(--gold), var(--gold-light));
  border-radius: 3px 3px 0 0; height: var(--h);
  position: relative; min-height: 4px;
}
.an-bar-val { position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%); font-size: 0.4rem; color: var(--gray-text); white-space: nowrap; }

/* ââ SECTION 3: OPS DASHBOARD ââââââââââââââââââââââââââââââââââ */
.section-ops-dashboard { padding: 0; }
.ops-dashboard-bg {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
  padding: 100px 0;
}

.ops-dash-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 3rem;
}

.ops-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.5rem;
  transition: var(--transition); text-align: center;
}
.ops-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.ops-card.gold-card { background: rgba(216,155,29,0.12); border-color: rgba(216,155,29,0.3); }

.ops-card-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.ops-card-val {
  font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1;
  margin-bottom: 0.4rem; font-feature-settings: 'tnum';
}
.gold-card .ops-card-val { color: var(--gold); }
.ops-card-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; font-weight: 500; }
.ops-card-trend { font-size: 0.68rem; font-weight: 700; }
.ops-card-trend.up { color: #34d399; }
.ops-card-trend.neutral { color: rgba(255,255,255,0.4); }

/* Large Preview */
.ops-large-preview {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); overflow: hidden;
}
.olp-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; background: rgba(0,0,0,0.2); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.olp-dots { display: flex; gap: 6px; }
.olp-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.olp-dots span:first-child { background: #ef4444; }
.olp-dots span:nth-child(2) { background: var(--orange); }
.olp-dots span:last-child { background: var(--green); }
.olp-title { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); flex: 1; }
.olp-badge { font-size: 0.65rem; font-weight: 700; color: #34d399; }

.olp-body { display: grid; grid-template-columns: 1fr 300px; }
.olp-chart-area { padding: 1.5rem; border-right: 1px solid rgba(255,255,255,0.06); }
.olp-chart-title { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.olp-chart-svg { width: 100%; height: 120px; }

.olp-side-panel { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; justify-content: center; }
.olp-plant-row { display: flex; align-items: center; gap: 10px; }
.olp-plant-row > span:first-child { font-size: 0.7rem; color: rgba(255,255,255,0.6); min-width: 100px; }
.mini-prog { flex: 1; height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.mini-prog-fill { height: 100%; background: var(--gold); border-radius: 3px; }
.olp-pct { font-size: 0.7rem; font-weight: 700; color: var(--gold); min-width: 32px; text-align: right; }

/* ââ SECTION 4: WORKFLOW âââââââââââââââââââââââââââââââââââââââ */
.section-workflow { padding: 100px 0; background: var(--gray); }

.workflow-track {
  display: flex; align-items: flex-start; justify-content: center;
  flex-wrap: nowrap; gap: 0; overflow-x: auto; padding: 1rem 0;
}

.wf-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  position: relative; flex-shrink: 0;
  opacity: 0.6; transition: var(--transition);
}
.wf-step:hover, .wf-step.active { opacity: 1; }

.wf-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.wf-step.active .wf-icon-wrap {
  background: var(--gold-bg); border-color: var(--gold);
  box-shadow: 0 0 0 8px rgba(216,155,29,0.12), var(--shadow-md);
}
.wf-step:hover .wf-icon-wrap {
  border-color: var(--gold); background: var(--gold-bg);
}
.wf-icon { }
.wf-label { font-size: 0.72rem; font-weight: 600; color: var(--dark); text-align: center; line-height: 1.3; }
.wf-num {
  font-size: 0.6rem; font-weight: 700; color: var(--gold);
  background: rgba(216,155,29,0.1); padding: 1px 6px; border-radius: 100px;
}

.wf-arrow {
  display: flex; align-items: flex-start; padding-top: 24px; flex-shrink: 0;
  opacity: 0.5;
}

/* ââ SECTION 5: FLEET ââââââââââââââââââââââââââââââââââââââââââ */
.section-fleet { padding: 100px 0; background: #fff; }
.fleet-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }

.fleet-widgets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.fw-widget {
  display: flex; align-items: center; gap: 12px;
  background: var(--gray); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem;
  transition: var(--transition);
}
.fw-widget:hover { border-color: rgba(216,155,29,0.3); background: var(--gold-bg); }
.fww-icon { font-size: 1.4rem; flex-shrink: 0; }
.fww-title { font-size: 0.72rem; color: var(--gray-text); margin-bottom: 2px; }
.fww-val { font-size: 0.95rem; font-weight: 800; color: var(--dark); }
.fww-val.gold { color: var(--gold); }

/* Fleet Map */
.fleet-map-mockup {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.fleet-map-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; background: #fff; border-bottom: 1px solid var(--border);
}
.fm-title { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.fm-badge { font-size: 0.7rem; font-weight: 700; color: var(--green); }
.fleet-map-area { background: var(--gray); }
.fleet-map-svg { width: 100%; height: 280px; display: block; }
.fleet-map-footer {
  display: flex; gap: 1.5rem; padding: 10px 16px; background: #fff;
  border-top: 1px solid var(--border);
}
.fmf-item { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: #4b5563; }
.fmf-dot { width: 8px; height: 8px; border-radius: 50%; }
.fmf-dot.green { background: var(--green); }
.fmf-dot.gold { background: var(--gold); }
.fmf-dot.gray { background: var(--gray-text); }

/* Fleet truck animations */
.fleet-truck-1 { animation: fleetMove1 5s ease-in-out infinite; }
.fleet-truck-2 { animation: fleetMove2 6s ease-in-out infinite; }
.fleet-truck-3 { animation: fleetMove3 4s ease-in-out infinite; }
.fleet-truck-4 { animation: fleetMove4 7s ease-in-out infinite; }
.fleet-truck-5 { animation: fleetMove1 5.5s ease-in-out infinite reverse; }
@keyframes fleetMove1 { 0%,100% { transform: translateX(0); } 50% { transform: translateX(12px); } }
@keyframes fleetMove2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fleetMove3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(8px,6px); } }
@keyframes fleetMove4 { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-10px); } }

/* ââ SECTION 6: CUSTOMER PORTAL ââââââââââââââââââââââââââââââââ */
.section-customer { padding: 0; }
.customer-bg { background: linear-gradient(160deg, var(--gray) 0%, #EEF2F8 100%); padding: 100px 0; }

.customer-showcase { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; margin-top: 1rem; }

.customer-features { display: flex; flex-direction: column; gap: 1.25rem; }
.customer-feat-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem; transition: var(--transition);
}
.customer-feat-item:hover { border-color: rgba(216,155,29,0.3); box-shadow: var(--shadow-sm); }
.cfi-icon { font-size: 1.4rem; flex-shrink: 0; }
.cfi-body h4 { font-size: 0.9rem; margin-bottom: 2px; }
.cfi-body p { font-size: 0.78rem; color: var(--gray-text); }

.customer-devices { display: flex; gap: 1.5rem; align-items: flex-start; }

/* Laptop */
.cust-laptop { flex: 1.4; }
.cust-laptop-screen {
  background: #1e2533; border-radius: 10px;
  padding: 10px; box-shadow: var(--shadow-xl);
}
.cust-portal-ui { background: #f8f9fb; border-radius: 6px; overflow: hidden; }
.cp-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px; background: #1e2533; color: #fff;
}
.cp-logo { font-size: 0.7rem; font-weight: 800; }
.cp-logo-sub { font-size: 0.55rem; font-weight: 400; color: rgba(255,255,255,0.6); }
.cp-user { font-size: 0.6rem; color: rgba(255,255,255,0.6); }
.cp-body { padding: 8px; }
.cp-card-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 8px; }
.cp-mini-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 8px; text-align: center; }
.cp-mini-card.gold-bg { background: var(--gold-bg); border-color: rgba(216,155,29,0.2); }
.cp-mc-icon { font-size: 1rem; margin-bottom: 2px; }
.cp-mc-val { font-size: 0.9rem; font-weight: 800; color: var(--dark); }
.cp-mc-lbl { font-size: 0.45rem; color: var(--gray-text); }
.cp-recent-title { font-size: 0.55rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cp-tbl-row { display: grid; grid-template-columns: 1fr 0.8fr 0.8fr auto; gap: 4px; align-items: center; font-size: 0.5rem; color: #374151; padding: 3px 0; border-bottom: 1px solid var(--border); }

/* Phone */
.cust-phone { flex: 0 0 120px; }
.cust-phone-screen {
  background: #1e2533; border-radius: 20px; padding: 8px;
  box-shadow: var(--shadow-xl);
}
.cph-status { font-size: 0.5rem; color: rgba(255,255,255,0.5); text-align: center; margin-bottom: 2px; }
.cph-head { font-size: 0.6rem; font-weight: 700; color: #fff; text-align: center; margin-bottom: 6px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cph-delivery-card { background: #fff; border-radius: 8px; padding: 8px; }
.cph-order-id { font-size: 0.52rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.cph-stepper { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.cph-step {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.45rem; color: #9ca3af; padding-left: 2px;
}
.cph-step span { font-size: 0.6rem; width: 14px; text-align: center; }
.cph-step.done { color: var(--green); }
.cph-step.active { color: var(--gold); font-weight: 700; }
.cph-eta { font-size: 0.45rem; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.cph-track-btn {
  display: block; width: 100%; background: var(--gold); color: #fff;
  font-size: 0.5rem; font-weight: 700; padding: 5px; border-radius: 5px;
  border: none; cursor: pointer; text-align: center;
}

/* ââ SECTION 7: ANALYTICS ââââââââââââââââââââââââââââââââââââââ */
.section-analytics { padding: 100px 0; background: #fff; }

.analytics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.an-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; transition: var(--transition);
}
.an-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.an-card-head { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; }
.an-icon { font-size: 1.2rem; }
.an-title { font-size: 0.88rem; font-weight: 700; color: var(--dark); flex: 1; }
.an-trend { font-size: 0.72rem; font-weight: 700; }
.an-trend.up { color: var(--green); }

.an-chart-svg { width: 100%; height: 80px; }

.an-bar-row { display: flex; flex-direction: column; gap: 8px; }
.an-br { display: flex; align-items: center; gap: 8px; font-size: 0.7rem; }
.an-br > span:first-child { min-width: 60px; color: var(--gray-text); }
.an-prog { flex: 1; height: 6px; background: var(--gray3); border-radius: 3px; overflow: hidden; }
.an-prog-fill { height: 100%; background: var(--gold); border-radius: 3px; }
.an-pct { font-size: 0.7rem; font-weight: 700; min-width: 30px; color: var(--dark); }

.an-donut-area { position: relative; display: flex; justify-content: center; align-items: center; }
.an-donut { width: 120px; height: 120px; }
.an-donut-center {
  position: absolute; text-align: center;
}
.an-donut-val { font-size: 1.4rem; font-weight: 900; color: var(--dark); line-height: 1; }
.an-donut-lbl { font-size: 0.6rem; color: var(--gray-text); }

.an-circle-stats { display: flex; gap: 1rem; justify-content: center; }
.an-cs-item { text-align: center; }
.an-cs-circle {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 4px;
  background: conic-gradient(var(--gold) var(--pct), var(--gray3) var(--pct));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.an-cs-circle::after {
  content: ''; position: absolute; inset: 6px; border-radius: 50%; background: #fff;
}
.an-cs-circle span { position: relative; z-index: 1; font-size: 0.55rem; font-weight: 800; color: var(--dark); }
.an-cs-lbl { font-size: 0.6rem; color: var(--gray-text); }

.an-profit-row { display: flex; gap: 1rem; justify-content: space-around; }
.an-profit-item { text-align: center; }
.an-profit-val { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.an-profit-val.green { color: var(--green); }
.an-profit-val.gold { color: var(--gold); }
.an-profit-lbl { font-size: 0.6rem; color: var(--gray-text); }

/* ââ SECTION 8: WHY RMCOS ââââââââââââââââââââââââââââââââââââââ */
.section-why { padding: 100px 0; background: var(--gray); }

.why-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }

.why-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem 1.25rem; text-align: center; transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(216,155,29,0.3); }

.why-icon-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold-bg); border: 2px solid rgba(216,155,29,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.why-card:hover .why-icon-circle { background: var(--gold); border-color: var(--gold); }
.why-card:hover .why-icon-circle svg { stroke: #fff; }

.why-card h3 { font-size: 0.95rem; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.78rem; color: var(--gray-text); line-height: 1.5; margin-bottom: 1rem; }
.why-stat { display: flex; flex-direction: column; gap: 2px; }
.ws-val { font-size: 1.15rem; font-weight: 900; color: var(--gold); }
.ws-lbl { font-size: 0.6rem; color: var(--gray-text); font-weight: 600; }

/* ââ SECTION 9: INDUSTRY âââââââââââââââââââââââââââââââââââââââ */
.section-industry { padding: 100px 0; background: #fff; }

.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.industry-card {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: var(--transition);
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.industry-illustration {
  height: 160px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ind-ill-bg { position: absolute; inset: 0; }
.rmc-bg { background: linear-gradient(135deg, #1a2535, #2d3748); }
.pump-bg { background: linear-gradient(135deg, #1a2535, #1e3a5f); }
.supplier-bg { background: linear-gradient(135deg, #2d1b0e, #4a2f1a); }
.multi-bg { background: linear-gradient(135deg, #0f2027, #203a43); }

.ind-emoji { font-size: 3rem; position: relative; z-index: 2; }
.ind-truck-float {
  position: absolute; bottom: 16px; right: 16px; font-size: 2rem;
  z-index: 3; animation: indTruckFloat 3s ease-in-out infinite;
}
@keyframes indTruckFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

.industry-body { padding: 1.25rem; }
.industry-body h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.industry-body p { font-size: 0.78rem; color: var(--gray-text); margin-bottom: 0.75rem; line-height: 1.5; }

.industry-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.industry-tags span {
  font-size: 0.6rem; font-weight: 600; padding: 3px 8px; border-radius: 100px;
  background: var(--gold-bg); color: var(--gold-dark); border: 1px solid rgba(216,155,29,0.15);
}

/* ââ SECTION 10: CTA âââââââââââââââââââââââââââââââââââââââââââ */
.section-cta { padding: 0; }
.cta-bg {
  background: linear-gradient(135deg, #D89B1D 0%, #B07B10 50%, #8B6010 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta-texture {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px, 50px 50px;
}
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }

.cta-truck-wrap { position: relative; text-align: center; }
.cta-truck-glow {
  position: absolute; bottom: -20px; left: 10%; right: 10%;
  height: 60px; background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
  filter: blur(15px);
}
.cta-truck-img {
  max-width: 420px; margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: ctaTruckFloat 5s ease-in-out infinite;
}
@keyframes ctaTruckFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.cta-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1rem; display: block;
}
.cta-h2 { font-size: clamp(2rem,4vw,3rem); color: #fff; margin-bottom: 1rem; line-height: 1.1; }
.cta-gold { color: rgba(255,255,255,0.9); }
.cta-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2rem; }

.cta-btns { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.btn-cta-white {
  display: inline-flex; align-items: center; padding: 0.9rem 2rem;
  background: #fff; color: var(--gold-dark); font-weight: 700; font-size: 1rem;
  border-radius: var(--radius-sm); border: none; cursor: pointer; font-family: var(--font);
  transition: var(--transition); text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.btn-cta-outline {
  display: inline-flex; align-items: center; padding: 0.9rem 2rem;
  background: transparent; color: #fff; font-weight: 600; font-size: 1rem;
  border-radius: var(--radius-sm); border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer; font-family: var(--font); transition: var(--transition); text-decoration: none;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

.cta-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.cta-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.8); }
.cta-trust-item span { color: rgba(255,255,255,0.6); }

/* ââ CONTACT SECTION âââââââââââââââââââââââââââââââââââââââââââ */
.section-contact { padding: 100px 0; background: var(--gray); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }

.contact-info-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.ci-item { font-size: 0.9rem; color: #4b5563; display: flex; align-items: center; gap: 10px; }

.contact-form-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
}
.cf-title { font-size: 1.35rem; margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: #374151; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: var(--font); color: var(--dark);
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,155,29,0.1);
}
.form-group textarea { resize: vertical; }
.cf-feedback { margin-top: 0.75rem; font-size: 0.85rem; font-weight: 600; text-align: center; }
.cf-feedback.success { color: var(--green); }
.cf-feedback.error { color: var(--red); }

/* ââ FOOTER ââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.site-footer { background: #1a1a2e; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 1rem; max-width: 240px; }
.footer-logo { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 0.5rem; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.footer-col h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.footer-col a {
  display: block; font-size: 0.82rem; color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-cta-btn {
  display: inline-flex; align-items: center; padding: 0.55rem 1.25rem;
  background: var(--gold); color: #fff; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 700; margin-bottom: 0.75rem;
  transition: var(--transition);
}
.footer-cta-btn:hover { background: var(--gold-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
}

/* ââ SCROLL ANIMATIONS âââââââââââââââââââââââââââââââââââââââââ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0,0,1);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}

/* Staggered delay */
[style*="--delay"] { transition-delay: var(--delay, 0s); }

/* ââ RESPONSIVE ââââââââââââââââââââââââââââââââââââââââââââââââ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-cards { grid-template-columns: repeat(3, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .fleet-inner { grid-template-columns: 1fr; }
  .fleet-right { display: none; }
  .customer-showcase { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-left { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .analytics-grid { grid-template-columns: repeat(2, 1fr); }
  .ops-dash-grid { grid-template-columns: repeat(2, 1fr); }
  .olp-body { grid-template-columns: 1fr; }
  .workflow-track { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .nav-link-plain { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; position: fixed;
    top: 72px; left: 0; right: 0; background: #fff; padding: 1.5rem;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); gap: 1rem;
    z-index: 999;
  }
  .features-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .workflow-track { flex-wrap: wrap; justify-content: center; }
  .wf-arrow { display: none; }
  h1 { font-size: 2.2rem; }
  .ops-dash-grid { grid-template-columns: repeat(2, 1fr); }
  .analytics-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-features { gap: 1rem; }
  .hero-ctas { flex-direction: column; }
  .btn-gold, .btn-outline-dark { width: 100%; justify-content: center; }
  .why-cards { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .ops-dash-grid { grid-template-columns: 1fr; }
}

/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   NEW SECTIONS CSS
   âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */

/* ââ NAV DROPDOWN FIX (JS click-toggle) âââââââââââââââââââââââ */
.nav-dd-trigger {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
  background: none; border: none; font-family: var(--font);
  font-size: 0.95rem; font-weight: 500; color: #4b5563; padding: 0;
  transition: color 0.2s;
}
.nav-dd-trigger:hover { color: var(--gold); }
.nav-dd-trigger::after { display: none !important; }
.nav-dd-panel {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%); background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 0.75rem;
  min-width: 240px; z-index: 1001; flex-direction: column; gap: 2px;
}
.nav-dd-panel.open { display: flex; animation: ddFadeIn 0.18s ease; }
@keyframes ddFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dd-panel a { display: flex; align-items: center; gap: 10px; padding: 0.6rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.9rem; color: #374151; transition: 0.15s; }
.nav-dd-panel a::after { display: none !important; }
.nav-dd-panel a:hover { background: var(--gold-bg); color: var(--gold); }
.nav-dd-panel a span { font-size: 1.05rem; }
.dd-caret { font-size: 0.65rem; transition: transform 0.25s; display: inline-block; }
.dd-caret.rotated { transform: rotate(180deg); }

/* ââ PROBLEM SECTION âââââââââââââââââââââââââââââââââââââââââââ */
.section-problem { padding: 100px 0; background: #fff; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.problem-stats { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.prob-stat { display: flex; align-items: baseline; gap: 1rem; }
.ps-val { font-size: 2.4rem; font-weight: 900; color: var(--gold); flex-shrink: 0; line-height: 1; }
.ps-lbl { font-size: 0.92rem; color: var(--gray-text); line-height: 1.4; }
.problem-cards { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.prob-card { display: flex; align-items: center; gap: 1rem; background: var(--gray); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem 1.25rem; transition: var(--transition); }
.prob-card:hover { border-color: rgba(216,155,29,0.3); background: var(--gold-bg); }
.pc-icon { font-size: 1.6rem; flex-shrink: 0; }
.pc-body { flex: 1; }
.pc-body h4 { font-size: 0.9rem; margin-bottom: 2px; }
.pc-body p { font-size: 0.78rem; color: var(--gray-text); }
.pc-arrow { font-size: 1.2rem; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.prob-card-3 .pc-arrow { color: var(--red); }
.problem-solution-badge { display: flex; align-items: center; gap: 1rem; background: linear-gradient(135deg, var(--gold-bg), #fff); border: 1.5px solid rgba(216,155,29,0.3); border-radius: var(--radius); padding: 1rem 1.25rem; }
.psb-icon { font-size: 1.5rem; flex-shrink: 0; }
.problem-solution-badge strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.problem-solution-badge span { font-size: 0.78rem; color: var(--gray-text); }

/* ââ LIFECYCLE SLIDER ââââââââââââââââââââââââââââââââââââââââââ */
.section-lifecycle { padding: 100px 0 60px; background: var(--gray); overflow: hidden; }
.lifecycle-scroll-wrap { position: relative; padding: 0 0 2rem; }
.lifecycle-slider { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: 1rem 1.5rem 1.5rem; cursor: grab; }
.lifecycle-slider::-webkit-scrollbar { display: none; }
.lifecycle-slider.grabbing { cursor: grabbing; }
.lc-card { flex: 0 0 320px; scroll-snap-align: start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: transform 0.3s, box-shadow 0.3s; }
.lc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.lc-card-visual { height: 220px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.lc-visual-order    { background: linear-gradient(135deg, #0f2027 0%, #1a3a2e 100%); }
.lc-visual-production{ background: linear-gradient(135deg, #1a1a2e 0%, #2d2d3e 100%); }
.lc-visual-truck    { background: linear-gradient(135deg, #1a2535 0%, #2d3748 100%); }
.lc-visual-dispatch { background: linear-gradient(135deg, #0f1e35 0%, #1a3050 100%); }
.lc-visual-gps      { background: linear-gradient(135deg, #0a1628 0%, #1a2a44 100%); }
.lc-visual-pour     { background: linear-gradient(135deg, #1a0f00 0%, #3d2000 100%); }
.lc-visual-pod      { background: linear-gradient(135deg, #0f2027 0%, #1a3020 100%); }
.lc-visual-invoice  { background: linear-gradient(135deg, #1a1a2e 0%, #2d2040 100%); }
.lcv-step-num { position: absolute; top: 12px; left: 16px; font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,0.08); line-height: 1; letter-spacing: -0.05em; }
.lcv-illustration { position: relative; z-index: 2; width: 85%; }
/* Phone mock */
.lcv-phone-mock { background: #fff; border-radius: 10px; padding: 10px 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.lcv-pm-head { font-size: 0.65rem; font-weight: 800; color: var(--dark); border-bottom: 1px solid var(--border); padding-bottom: 5px; margin-bottom: 5px; }
.lcv-pm-row { display: flex; justify-content: space-between; font-size: 0.58rem; color: #4b5563; padding: 2px 0; }
.lcv-pm-row .gold { color: var(--gold); font-weight: 700; }
.lcv-pm-btn { background: var(--gold); color: #fff; font-size: 0.6rem; font-weight: 700; text-align: center; padding: 5px; border-radius: 5px; margin-top: 6px; }
.lcv-notif { position: absolute; bottom: -8px; right: -8px; background: var(--green); color: #fff; font-size: 0.55rem; font-weight: 700; padding: 4px 8px; border-radius: 8px; box-shadow: 0 4px 12px rgba(16,185,129,0.4); white-space: nowrap; }
/* Plant mock */
.lcv-plant-mock { background: #fff; border-radius: 8px; padding: 10px; box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.lcv-plant-title { font-size: 0.6rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.lcv-batch-row { display: grid; grid-template-columns: 1fr 1fr 1fr 1.2fr; gap: 4px; font-size: 0.52rem; color: #4b5563; padding: 3px 0; border-bottom: 1px solid var(--border); }
.lcv-batch-row.active { background: rgba(216,155,29,0.06); }
.lb-stat.gold { color: var(--gold); font-weight: 700; }
.lb-stat.gray { color: var(--gray-text); }
.lcv-progress-wrap { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.lcv-prog-lbl { font-size: 0.5rem; color: var(--gray-text); white-space: nowrap; }
.lcv-prog-bar { flex: 1; height: 5px; background: var(--gray3); border-radius: 3px; overflow: hidden; }
.lcv-prog-fill { height: 100%; background: var(--gold); border-radius: 3px; animation: progPulse 2s ease-in-out infinite; }
@keyframes progPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }
.lcv-prog-pct { font-size: 0.52rem; font-weight: 700; color: var(--gold); }
/* Truck scene */
.lcv-truck-scene { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.lcv-truck-icon { font-size: 3rem; animation: truckBounce 2s ease-in-out infinite; }
@keyframes truckBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.lcv-driver-card { background: #fff; border-radius: 8px; padding: 8px 10px; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.3); width: 100%; }
.lcv-driver-av { font-size: 1.5rem; }
.lcv-driver-name { font-size: 0.62rem; font-weight: 700; color: var(--dark); }
.lcv-driver-vehicle { font-size: 0.52rem; color: var(--gray-text); }
.lcv-driver-rating { font-size: 0.5rem; color: var(--gold); }
.lcv-assign-badge { background: var(--green); color: #fff; font-size: 0.62rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.lcv-load-bar { width: 100%; }
.lcv-load-label { font-size: 0.52rem; color: rgba(255,255,255,0.7); margin-bottom: 3px; }
.lcv-load-track { height: 5px; background: rgba(255,255,255,0.2); border-radius: 3px; overflow: hidden; }
.lcv-load-fill { height: 100%; background: var(--gold); border-radius: 3px; animation: loadAnim 3s ease-in-out infinite; }
@keyframes loadAnim { 0% { width: 20%; } 50% { width: 85%; } 100% { width: 20%; } }
/* Dispatch map */
.lcv-dispatch-scene { width: 100%; }
.lcv-dispatch-map { margin-bottom: 6px; }
.lcv-map-svg { width: 100%; height: 95px; }
.lcv-moving-truck { animation: mapTruckMove 4s ease-in-out infinite; }
@keyframes mapTruckMove { 0% { transform: translateX(0); } 50% { transform: translateX(28px) translateY(-14px); } 100% { transform: translateX(0); } }
.lcv-dispatch-info { background: rgba(255,255,255,0.08); border-radius: 6px; padding: 6px 10px; display: flex; flex-direction: column; gap: 3px; }
.lcv-di-row { display: flex; justify-content: space-between; font-size: 0.58rem; color: rgba(255,255,255,0.7); }
.lcv-di-row .gold { color: var(--gold); font-weight: 700; }
/* GPS */
.lcv-gps-scene { width: 100%; }
.lcv-tracking-card { background: #fff; border-radius: 10px; padding: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.ltc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.ltc-live { font-size: 0.55rem; font-weight: 700; color: var(--green); animation: livePulse 1.5s ease-in-out infinite; }
@keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.ltc-title { font-size: 0.6rem; font-weight: 800; color: var(--dark); }
.ltc-map-mini { margin-bottom: 6px; }
.ltc-svg { width: 100%; height: 70px; }
.ltc-truck-anim { animation: ltcTruck 3s ease-in-out infinite; }
@keyframes ltcTruck { 0%,100% { transform: translateX(0); } 50% { transform: translateX(20px) translateY(-10px); } }
.ltc-eta-row { display: flex; gap: 4px; }
.ltc-eta-item { flex: 1; text-align: center; background: var(--gray); border-radius: 5px; padding: 4px 2px; }
.ltc-ev { font-size: 0.62rem; font-weight: 800; color: var(--dark); display: block; }
.ltc-el { font-size: 0.42rem; color: var(--gray-text); }
.lcv-notif-float { position: absolute; bottom: 8px; right: 8px; background: var(--gold); color: #fff; font-size: 0.55rem; font-weight: 700; padding: 4px 8px; border-radius: 8px; animation: notifBounce 2s ease-in-out infinite; }
@keyframes notifBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
/* Pour */
.lcv-pour-scene { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 100%; }
.lcv-pour-truck { font-size: 2.5rem; }
.lcv-pour-visual { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.lcv-pour-stream { width: 12px; height: 30px; background: linear-gradient(to bottom, #8B6010, var(--gold), #ccc); border-radius: 3px; animation: pourStream 1.5s ease-in-out infinite; }
@keyframes pourStream { 0%,100% { height: 30px; } 50% { height: 22px; } }
.lcv-pour-pool { width: 60px; height: 10px; border-radius: 50%; background: linear-gradient(90deg, #8B6010, var(--gold), #8B6010); animation: pourPool 1.5s ease-in-out infinite; }
@keyframes pourPool { 0%,100% { width: 60px; } 50% { width: 70px; } }
.lcv-pour-stats { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 6px 10px; width: 100%; display: flex; flex-direction: column; gap: 3px; }
.lps-item { display: flex; align-items: center; gap: 6px; font-size: 0.55rem; color: rgba(255,255,255,0.85); }
.lps-icon { font-size: 0.8rem; }
.lcv-pour-timer { font-size: 0.62rem; font-weight: 700; color: var(--gold); }
/* POD */
.lcv-pod-mock { background: #fff; border-radius: 8px; padding: 10px 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); width: 100%; }
.lcv-pod-header { font-size: 0.65rem; font-weight: 800; color: var(--dark); border-bottom: 1px solid var(--border); padding-bottom: 5px; margin-bottom: 5px; }
.lcv-pod-info { display: flex; justify-content: space-between; font-size: 0.56rem; color: #4b5563; padding: 1px 0; }
.lcv-pod-photo { font-size: 0.55rem; color: var(--gray-text); background: var(--gray); padding: 4px 6px; border-radius: 4px; margin: 4px 0; }
.lcv-pod-sig { margin: 4px 0; }
.lcv-sig-label { font-size: 0.48rem; color: var(--gray-text); display: block; margin-bottom: 2px; }
.lcv-pod-confirmed { font-size: 0.58rem; color: var(--green); font-weight: 700; margin-top: 4px; }
/* Invoice */
.lcv-invoice-mock { background: #fff; border-radius: 8px; padding: 10px 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); width: 100%; }
.lcv-inv-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1.5px solid var(--gold); padding-bottom: 5px; margin-bottom: 6px; }
.lcv-inv-logo { font-size: 0.7rem; font-weight: 900; color: var(--gold); }
.lcv-inv-title { font-size: 0.5rem; font-weight: 700; color: var(--gray-text); letter-spacing: 0.1em; }
.lcv-inv-row { display: flex; justify-content: space-between; font-size: 0.56rem; color: #4b5563; padding: 2px 0; border-bottom: 1px solid var(--gray); }
.lcv-inv-total { display: flex; justify-content: space-between; font-size: 0.65rem; font-weight: 800; padding: 4px 0; margin-top: 2px; border-top: 1.5px solid var(--border); }
.lcv-inv-total .gold { color: var(--gold); }
.lcv-inv-sent { font-size: 0.52rem; color: var(--green); font-weight: 600; margin-top: 5px; }
/* Card body */
.lc-card-body { padding: 1.25rem; }
.lc-card-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 8px; }
.lc-card-body p { font-size: 0.8rem; color: var(--gray-text); line-height: 1.6; margin-bottom: 0.75rem; }
.lc-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.lc-status-dot.green { background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
.lc-status-dot.gold { background: var(--gold); box-shadow: 0 0 0 3px rgba(216,155,29,0.2); }
.lc-status-dot.blue { background: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.2); }
.lc-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.lc-tags span { font-size: 0.62rem; font-weight: 600; padding: 3px 8px; border-radius: 100px; background: var(--gold-bg); color: var(--gold-dark); border: 1px solid rgba(216,155,29,0.15); }
/* Controls */
.lc-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 0.5rem 0; }
.lc-btn { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--border); font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--dark); line-height: 1; }
.lc-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.lc-dots { display: flex; gap: 6px; }
.lc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray3); cursor: pointer; transition: 0.2s; }
.lc-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ââ VALUE PROPOSITIONS ââââââââââââââââââââââââââââââââââââââââ */
.section-value-props { padding: 100px 0; background: #fff; }
.vp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.vp-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.vp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vp-card-header { padding: 1.5rem; display: flex; align-items: center; justify-content: space-between; position: relative; overflow: hidden; }
.vp-h-1 { background: linear-gradient(135deg, #0f2027, #1a3040); }
.vp-h-2 { background: linear-gradient(135deg, #1a1a2e, #2d2d44); }
.vp-h-3 { background: linear-gradient(135deg, #0f2027, #1a3020); }
.vp-h-4 { background: linear-gradient(135deg, #1a0f00, #3d2500); }
.vp-num { font-size: 3rem; font-weight: 900; color: rgba(255,255,255,0.08); line-height: 1; letter-spacing: -0.04em; }
.vp-icon-lg { font-size: 2.2rem; }
.vp-card-body { padding: 1.5rem; }
.vp-card-body h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.vp-card-body p { font-size: 0.8rem; color: var(--gray-text); line-height: 1.6; margin-bottom: 1rem; }
.vp-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.vp-feat { font-size: 0.78rem; color: #4b5563; display: flex; align-items: flex-start; gap: 8px; }
.vpf-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 6px; flex-shrink: 0; }
.vp-metric { background: var(--gold-bg); border-radius: var(--radius-sm); padding: 0.75rem 1rem; display: flex; align-items: baseline; gap: 8px; border: 1px solid rgba(216,155,29,0.15); }
.vpm-val { font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.vpm-lbl { font-size: 0.72rem; color: var(--gray-text); line-height: 1.3; }

/* ââ STAKEHOLDER BENEFITS ââââââââââââââââââââââââââââââââââââââ */
.section-stakeholders { padding: 0; }
.stakeholders-bg { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%); padding: 100px 0; }
.stakeholder-tabs-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); overflow: hidden; }
.stakeholder-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.2); }
.sk-tab { flex: 1; padding: 1rem; background: none; border: none; cursor: pointer; font-family: var(--font); font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.5); transition: var(--transition); border-bottom: 2px solid transparent; }
.sk-tab:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.04); }
.sk-tab.active { color: var(--gold); border-bottom-color: var(--gold); background: rgba(216,155,29,0.06); }
.sk-panel { display: none; padding: 2rem; }
.sk-panel.active { display: block; }
.sk-panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.sk-benefit { display: flex; align-items: flex-start; gap: 1rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 1rem; }
.sk-bi { font-size: 1.4rem; flex-shrink: 0; }
.sk-benefit h4 { font-size: 0.88rem; color: #fff; margin-bottom: 4px; }
.sk-benefit p { font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.sk-stat-row { display: flex; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); overflow: hidden; }
.sk-stat { flex: 1; padding: 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); background: rgba(216,155,29,0.06); }
.sk-stat:last-child { border-right: none; }
.sk-sv { display: block; font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.sk-sl { font-size: 0.7rem; color: rgba(255,255,255,0.5); }

/* ââ TECHNICAL EDGE ââââââââââââââââââââââââââââââââââââââââââââ */
.section-tech-edge { padding: 100px 0; background: var(--gray); }
.tech-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.tech-quote { margin-top: 1.5rem; border-left: 3px solid var(--gold); padding-left: 1.25rem; }
.tech-quote blockquote { font-size: 0.95rem; color: var(--gray-text); line-height: 1.7; font-style: italic; }
.tech-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tech-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; transition: var(--transition); }
.tech-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(216,155,29,0.2); }
.tc-icon { font-size: 1.8rem; }
.tc-body h4 { font-size: 0.9rem; margin-bottom: 4px; }
.tc-body p { font-size: 0.75rem; color: var(--gray-text); line-height: 1.5; }
.tc-badge { display: inline-block; font-size: 0.62rem; font-weight: 700; padding: 3px 8px; border-radius: 100px; margin-top: 4px; }
.tc-badge.green { background: rgba(16,185,129,0.1); color: #047857; }
.tc-badge.blue { background: rgba(59,130,246,0.1); color: #1d4ed8; }
.tc-badge.gold { background: rgba(216,155,29,0.1); color: var(--gold-dark); }

/* ââ NEW RESPONSIVE ââââââââââââââââââââââââââââââââââââââââââââ */
@media (max-width: 1100px) {
  .vp-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
  .tech-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .sk-panel-grid { grid-template-columns: 1fr; }
  .tech-cards { grid-template-columns: 1fr; }
  .lc-card { flex: 0 0 280px; }
}
@media (max-width: 768px) {
  .vp-grid { grid-template-columns: 1fr; }
  .stakeholder-tabs { flex-direction: column; }
  .sk-stat-row { flex-direction: column; }
  .sk-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .sk-stat:last-child { border-bottom: none; }
  .lc-card { flex: 0 0 260px; }
}

/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   LIFECYCLE 2 â MOCKUP MATCH
   âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */

/* Container */
.section-lifecycle2 { padding: 60px 0 0; background: #fff; }
.lc2-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* ââ HEADER ââ */
.lc2-header {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem; margin-bottom: 2.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--border);
}

/* Logo */
.lc2-logo { display: flex; align-items: center; gap: 0.75rem; }
.lc2-logo-ring {
  width: 68px; height: 68px; border-radius: 50%;
  border: 3px solid var(--gold);
  background: linear-gradient(135deg, #1a1a2e, #333);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(216,155,29,0.15);
}
.lc2-logo-truck { font-size: 1.6rem; }
.lc2-logo-text { display: flex; flex-direction: column; gap: 2px; }
.lc2-brand { font-size: 1.8rem; font-weight: 900; color: #1a1a2e; letter-spacing: -0.02em; line-height: 1; }
.lc2-os { color: var(--gold); }
.lc2-brand-sub { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em; color: var(--gray-text); text-transform: uppercase; }

/* Title */
.lc2-title-wrap { text-align: center; }
.lc2-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: #1a1a2e; margin-bottom: 0.4rem; }
.lc2-title-gold { color: var(--gold); font-style: italic; }
.lc2-subtitle { font-size: 0.95rem; color: var(--gray-text); margin-bottom: 0.5rem; }
.lc2-subtitle-line { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 0 auto; }

/* Trucks visual */
.lc2-header-trucks { display: flex; justify-content: flex-end; }
.lc2-trucks-visual {
  display: flex; align-items: flex-end; gap: 4px;
  background: linear-gradient(135deg, #f0e8d0, #e8d8b0);
  border-radius: 12px; padding: 8px 12px; min-width: 120px; min-height: 70px;
  justify-content: center; overflow: hidden; position: relative;
}
.lc2-silo { font-size: 2rem; position: relative; z-index: 2; }
.lc2-truck-img { font-size: 1.8rem; }
.lc2-truck-2 { font-size: 1.4rem; opacity: 0.7; }

/* ââ LIFECYCLE FLOW ââ */
.lc2-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start; margin-bottom: 2.5rem;
  overflow-x: auto;
}

/* ââ CARD ââ */
.lc2-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 16px; padding: 1.1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 0;
}
.lc2-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.lc2-card-success { border-color: rgba(16,185,129,0.3); background: linear-gradient(180deg, #f0fdf8 0%, #fff 100%); }

/* Icon ring */
.lc2-card-icon { display: flex; justify-content: center; margin-bottom: 0.25rem; }
.lc2-icon-ring {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gray); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; transition: 0.3s;
}
.lc2-card:hover .lc2-icon-ring { background: var(--gold-bg); border-color: var(--gold); }
.lc2-icon-gold { background: var(--gold-bg); border-color: var(--gold); }
.lc2-icon-success { background: rgba(16,185,129,0.1); border-color: var(--green); }

/* Step num + title */
.lc2-card-step { display: flex; align-items: baseline; gap: 6px; }
.lc2-num { font-size: 0.78rem; font-weight: 900; color: var(--gold); }
.lc2-step-title { font-size: 0.88rem; font-weight: 800; color: #1a1a2e; }

/* Desc */
.lc2-desc { font-size: 0.72rem; color: var(--gray-text); line-height: 1.5; }

/* ââ WIDGETS ââ */
.lc2-widget {
  background: var(--gray); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; margin-top: 0.25rem;
}

/* Form widget */
.lc2-form-head { font-size: 0.6rem; font-weight: 800; color: #1a1a2e; background: #fff; padding: 5px 8px; border-bottom: 1px solid var(--border); }
.lc2-form-row { display: flex; justify-content: space-between; padding: 3px 8px; font-size: 0.52rem; color: #4b5563; border-bottom: 1px solid rgba(0,0,0,0.04); gap: 4px; }
.lc2-form-row span:last-child { text-align: right; }
.lc2-gold { color: var(--gold); font-weight: 700; }
.lc2-form-btn {
  display: block; width: calc(100% - 16px); margin: 6px 8px 8px;
  background: var(--gold); color: #fff; border: none; border-radius: 6px;
  font-size: 0.58rem; font-weight: 700; padding: 6px; cursor: pointer;
  font-family: var(--font); transition: 0.2s;
}
.lc2-form-btn:hover { background: var(--gold-dark); }

/* Assign widget */
.lc2-assign-head { display: flex; justify-content: space-between; align-items: center; padding: 5px 8px; background: #fff; border-bottom: 1px solid var(--border); font-size: 0.6rem; font-weight: 700; color: #1a1a2e; }
.lc2-assign-icon { font-size: 0.9rem; }
.lc2-assign-row { display: flex; justify-content: space-between; padding: 3px 8px; font-size: 0.52rem; color: #4b5563; border-bottom: 1px solid rgba(0,0,0,0.04); gap: 4px; }
.lc2-bold { font-weight: 700; color: #1a1a2e; text-align: right; }
.lc2-status-badge {
  background: rgba(16,185,129,0.12); color: #047857;
  font-size: 0.5rem; font-weight: 700; padding: 2px 6px; border-radius: 20px;
}

/* Map widget */
.lc2-widget-map { padding: 0; }
.lc2-map-svg { width: 100%; display: block; }
.lc2-map-truck { animation: lc2TruckMove 4s ease-in-out infinite; }
@keyframes lc2TruckMove {
  0%   { transform: translateX(0) translateY(0); }
  33%  { transform: translateX(20px) translateY(-15px); }
  66%  { transform: translateX(40px) translateY(-10px); }
  100% { transform: translateX(0) translateY(0); }
}
.lc2-map-footer { padding: 6px 8px; background: #fff; border-top: 1px solid var(--border); }
.lc2-map-info-row { margin-bottom: 3px; }
.lc2-truck-id { font-size: 0.6rem; font-weight: 700; color: #1a1a2e; }
.lc2-map-stats { display: flex; gap: 1rem; }
.lc2-ms { display: flex; gap: 4px; align-items: baseline; }
.lc2-ms-lbl { font-size: 0.48rem; color: var(--gray-text); }
.lc2-ms-val { font-size: 0.6rem; font-weight: 700; color: #1a1a2e; }

/* Transit widget */
.lc2-widget-transit { padding: 0; }
.lc2-transit-svg { width: 100%; display: block; }
.lc2-transit-truck { animation: lc2TransitMove 5s ease-in-out infinite; }
@keyframes lc2TransitMove {
  0%   { transform: translateX(-20px) translateY(8px); }
  100% { transform: translateX(40px) translateY(-12px); }
}
.lc2-route-progress { animation: lc2RouteProgress 3s ease-in-out infinite alternate; }
@keyframes lc2RouteProgress {
  0%   { stroke-dashoffset: 80; }
  100% { stroke-dashoffset: 0; }
}
.lc2-transit-stats { display: flex; justify-content: space-around; padding: 6px 4px; background: #fff; border-top: 1px solid var(--border); }
.lc2-ts { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.lc2-ts-icon { font-size: 0.8rem; }
.lc2-ts-lbl { font-size: 0.42rem; color: var(--gray-text); }
.lc2-ts-val { font-size: 0.6rem; font-weight: 800; color: #1a1a2e; }

/* POD widget */
.lc2-widget-pod { padding: 0; }
.lc2-pod-done { display: flex; align-items: center; gap: 5px; padding: 5px 8px; background: rgba(16,185,129,0.08); border-bottom: 1px solid rgba(16,185,129,0.15); font-size: 0.58rem; font-weight: 700; color: #047857; }
.lc2-pod-check { background: var(--green); color: #fff; width: 14px; height: 14px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.5rem; flex-shrink: 0; }
.lc2-pod-row { display: flex; justify-content: space-between; align-items: center; padding: 3px 8px; font-size: 0.52rem; color: #4b5563; border-bottom: 1px solid rgba(0,0,0,0.04); gap: 4px; }
.lc2-pod-photos { display: flex; gap: 3px; }
.lc2-pod-photo { width: 22px; height: 16px; border-radius: 3px; }

/* ââ ANIMATED ARROWS ââ */
.lc2-arrow {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding-top: 52px; gap: 2px;
}
.lc2-arrow-line {
  width: 100%; height: 3px; background: rgba(216,155,29,0.15);
  border-radius: 2px; overflow: hidden; position: relative;
  min-width: 20px;
}
.lc2-arrow-flow {
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: arrowFlow 1.8s linear infinite;
}
@keyframes arrowFlow {
  0%   { left: -100%; }
  100% { left: 100%; }
}
.lc2-arrow-head {
  font-size: 1.2rem; color: var(--gold); font-weight: 900; line-height: 1;
  animation: arrowPulse 1.8s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,100% { transform: translateX(0); opacity: 0.6; }
  50%      { transform: translateX(3px); opacity: 1; }
}

/* ââ SHOWCASE ROW ââ */
.lc2-showcase {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem; margin-bottom: 1.5rem;
}
.lc2-showcase-card { border-radius: 12px; overflow: hidden; cursor: pointer; }
.lc2-sc-img {
  height: 180px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.lc2-showcase-card:hover .lc2-sc-img { transform: scale(1.05); }
.lc2-sc-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 8px 10px 6px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1px;
}
.lc2-sc-emoji { font-size: 1rem; }
.lc2-sc-text { font-size: 0.62rem; font-weight: 700; color: #fff; }

/* Concrete pour scene */
.lc2-concrete-pour { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.lc2-pour-worker { font-size: 2.5rem; }
.lc2-pour-stream-anim {
  width: 8px; height: 40px;
  background: linear-gradient(to bottom, rgba(139,96,16,0.8), rgba(216,155,29,0.6), rgba(180,140,60,0.4));
  border-radius: 4px; animation: pourAnim 1.2s ease-in-out infinite;
}
@keyframes pourAnim { 0%,100% { height:40px; opacity:1; } 50% { height:28px; opacity:0.8; } }

/* Plant scene */
.lc2-plant-scene { display: flex; align-items: flex-end; gap: 4px; }
.lc2-silo-visual { font-size: 3rem; }
.lc2-truck-at-plant { font-size: 2rem; }

/* Brand card */
.lc2-brand-bg { background: #fff !important; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; }
.lc2-brand-content { padding: 1rem; text-align: center; }
.lc2-brand-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 0.75rem; justify-content: center; }
.lc2-bl-ring { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,#1a1a2e,#333); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.lc2-bl-text { display: flex; flex-direction: column; }
.lc2-bl-name { font-size: 1.2rem; font-weight: 900; color: #1a1a2e; line-height: 1; }
.lc2-bl-name span { color: var(--gold); }
.lc2-bl-sub { font-size: 0.42rem; letter-spacing: 0.1em; color: var(--gray-text); font-weight: 700; }
.lc2-brand-tagline { font-size: 0.82rem; font-weight: 700; color: #1a1a2e; line-height: 1.5; }
.lc2-gold-text { color: var(--gold); }

/* Delivery scene */
.lc2-delivery-scene { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.lc2-delivery-workers { font-size: 1.8rem; }
.lc2-delivery-truck { font-size: 2rem; }

/* Concrete texture */
.lc2-concrete-scene { width: 100%; height: 100%; position: relative; }
.lc2-concrete-texture {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px,
    transparent 2px, transparent 8px
  );
}

/* ââ BENEFITS ROW ââ */
.lc2-benefits {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border); padding: 1.25rem 0;
  gap: 0;
}
.lc2-benefit {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0.75rem; border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.lc2-benefit:last-child { border-right: none; }
.lc2-benefit:hover { background: var(--gold-bg); }
.lc2-benefit-icon { transition: transform 0.3s; }
.lc2-benefit:hover .lc2-benefit-icon { transform: scale(1.15); }
.lc2-benefit-lbl { font-size: 0.72rem; font-weight: 700; color: var(--dark); text-align: center; }

/* ââ RESPONSIVE ââ */
@media (max-width: 1200px) {
  .lc2-flow { grid-template-columns: 1fr auto 1fr auto 1fr; row-gap: 1.5rem; }
  /* Show 3 cards + 2 arrows in row 1, then 2 + 2 in row 2 */
}
@media (max-width: 900px) {
  .lc2-header { grid-template-columns: 1fr; text-align: center; }
  .lc2-header-trucks { justify-content: center; }
  .lc2-logo { justify-content: center; }
  .lc2-flow { grid-template-columns: 1fr; }
  .lc2-arrow { flex-direction: row; padding-top: 0; padding-left: 2rem; align-items: center; height: 30px; }
  .lc2-arrow-line { height: 3px; width: 40px; }
  .lc2-arrow-head { transform: rotate(90deg); }
  .lc2-showcase { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 600px) {
  .lc2-showcase { grid-template-columns: 1fr 1fr; }
  .lc2-benefits { grid-template-columns: 1fr 1fr; }
  .lc2-benefit { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .lc2-benefit:nth-child(2n) { border-right: none; }
}

/* ======================================================
   MEGA-MENU NAVIGATION (Motive-style)
   ====================================================== */

/* Nav Header */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; height: 68px; gap: 0;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; margin-right: 2rem; flex-shrink: 0; }
.nav-logo-mark { flex-shrink: 0; }
.nav-logo-text-wrap { display: flex; flex-direction: column; gap: 0; }
.nav-logo-rmc { font-size: 1.45rem; font-weight: 900; color: #1a1a2e; line-height: 1; letter-spacing: -0.03em; }
.nav-logo-os  { font-size: 1.45rem; font-weight: 900; color: #D89B1D; line-height: 1; letter-spacing: -0.03em; }
.nav-logo-sub { font-size: 0.5rem; font-weight: 700; color: #9ca3af; letter-spacing: 0.1em; text-transform: uppercase; }

/* Nav Links */
.nav-links {
  display: flex; align-items: center; gap: 0; flex: 1; margin: 0;
}

/* Mega Wrap */
.mega-wrap { position: relative; }

/* Trigger button */
.mega-trigger {
  display: flex; align-items: center; gap: 4px; padding: 0.5rem 0.75rem;
  background: none; border: none; font-family: var(--font);
  font-size: 0.9rem; font-weight: 600; color: #374151;
  cursor: pointer; border-radius: 6px; transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.mega-trigger:hover { color: #1a1a2e; background: rgba(0,0,0,0.04); }
.mega-trigger.active { color: #D89B1D; }
.mega-caret { flex-shrink: 0; transition: transform 0.25s; }
.mega-trigger[aria-expanded="true"] .mega-caret { transform: rotate(180deg); }

/* Plain link (no dropdown) */
.mega-trigger-link {
  display: flex; align-items: center; padding: 0.5rem 0.75rem;
  font-size: 0.9rem; font-weight: 600; color: #374151;
  text-decoration: none; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.mega-trigger-link:hover { color: #1a1a2e; background: rgba(0,0,0,0.04); }
.mega-trigger-link::after { display: none !important; }

/* ---- MEGA PANEL ---- */
.mega-panel {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: #fff; border-top: 2px solid #D89B1D;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  z-index: 999; animation: megaFadeIn 0.2s ease;
}
.mega-wrap:has(.mega-panel.open)::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0; height: 24px;
  background: transparent;
  z-index: 10;
}
.mega-panel.open { display: block; }
@keyframes megaFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mega inner layout */
.mega-inner {
  max-width: 1400px; margin: 0 auto; padding: 2rem 2rem;
  display: grid; grid-template-columns: 1fr 180px 300px; gap: 2rem;
}

/* For solutions: 2-col industry grid + promo */
.mega-inner:has(.mega-col-industry) {
  grid-template-columns: 1fr 300px;
}

/* Small panel */
.mega-panel-sm {}
.mega-inner-sm {
  max-width: 1400px; margin: 0 auto; padding: 1.25rem 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem;
}

/* Section label */
.mega-section-label {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em;
  color: #9ca3af; margin-bottom: 1rem; text-transform: uppercase;
}

/* ---- PRODUCTS GRID (8 items, 2 columns) ---- */
.mega-items-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem;
}

/* Mega item (product) */
.mega-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0.75rem; border-radius: 8px;
  text-decoration: none; transition: background 0.15s;
}
.mega-item:hover { background: #f8f9fb; }
.mega-item::after { display: none !important; }

.mi-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mi-icon-blue { background: #eff6ff; color: #2563eb; }
.mi-icon-gold { background: rgba(216,155,29,0.1); color: #D89B1D; }

.mi-body { display: flex; flex-direction: column; gap: 2px; }
.mi-title { font-size: 0.82rem; font-weight: 700; color: #1f2937; line-height: 1.2; }
.mi-desc  { font-size: 0.7rem; color: #6b7280; line-height: 1.4; }

/* ---- FEATURED LIST ---- */
.mega-featured-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.1rem;
}
.mega-featured-list li a {
  display: block; font-size: 0.82rem; font-weight: 500; color: #374151;
  padding: 0.4rem 0.5rem; border-radius: 5px; text-decoration: none;
  transition: 0.15s;
}
.mega-featured-list li a::after { display: none !important; }
.mega-featured-list li a:hover { background: #f3f4f6; color: #D89B1D; padding-left: 0.9rem; }

/* ---- INDUSTRY GRID (2 col, 5 rows) ---- */
.mega-industry-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem;
}
.mega-industry-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.75rem; border-radius: 8px;
  text-decoration: none; transition: background 0.15s;
  font-size: 0.85rem; font-weight: 600; color: #1f2937;
}
.mega-industry-item:hover { background: #f8f9fb; color: #D89B1D; }
.mega-industry-item::after { display: none !important; }
.mii-icon {
  width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  background: #f3f4f6; border-radius: 8px;
  transition: background 0.15s;
}
.mega-industry-item:hover .mii-icon { background: rgba(216,155,29,0.1); }
.mega-industry-item:hover .mii-icon svg path,
.mega-industry-item:hover .mii-icon svg rect,
.mega-industry-item:hover .mii-icon svg circle { stroke: #D89B1D; }

/* ---- PROMO CARD ---- */
.mega-promo-card {
  background: #1a1a2e; border-radius: 12px; overflow: hidden;
  height: 100%; display: flex; flex-direction: column;
  min-height: 220px;
}
.mega-promo-visual { flex-shrink: 0; }
.mega-promo-img { width: 100%; height: 140px; overflow: hidden; }
.mega-promo-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.mega-promo-text { font-size: 0.82rem; font-weight: 700; color: #fff; line-height: 1.5; margin: 0; }
.mega-promo-link {
  font-size: 0.72rem; font-weight: 600; color: #D89B1D;
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.mega-promo-link:hover { gap: 8px; }
.mega-promo-link::after { display: none !important; }

/* ---- SMALL PANEL ITEMS ---- */
.mega-sm-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem; border-radius: 8px; text-decoration: none;
  transition: background 0.15s;
}
.mega-sm-item:hover { background: #f8f9fb; }
.mega-sm-item::after { display: none !important; }
.msi-icon {
  width: 32px; height: 32px; border-radius: 6px; background: #f3f4f6;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #4b5563; transition: background 0.15s;
}
.mega-sm-item:hover .msi-icon { background: rgba(216,155,29,0.1); color: #D89B1D; }
.msi-title { display: block; font-size: 0.82rem; font-weight: 700; color: #1f2937; margin-bottom: 2px; }
.msi-sub   { display: block; font-size: 0.68rem; color: #6b7280; }

/* ---- NAV ACTIONS ---- */
.nav-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; flex-shrink: 0; }
.nav-action-contact {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.88rem; font-weight: 600; color: #374151; text-decoration: none;
  padding: 0.4rem 0.75rem; border-radius: 6px; transition: 0.2s;
}
.nav-action-contact:hover { background: rgba(0,0,0,0.05); color: #1a1a2e; }
.nav-action-contact::after { display: none !important; }
.btn-nav-demo {
  background: #D89B1D; color: #fff; font-size: 0.88rem; font-weight: 700;
  padding: 0.5rem 1.25rem; border-radius: 8px; text-decoration: none;
  transition: 0.2s; white-space: nowrap;
}
.btn-nav-demo:hover { background: #b8820f; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(216,155,29,0.4); }
.btn-nav-demo::after { display: none !important; }

/* ---- HAMBURGER ---- */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: #374151; border-radius: 2px; transition: 0.3s; }

/* ---- MOBILE ---- */
@media (max-width: 1024px) {
  .mega-inner { grid-template-columns: 1fr !important; }
  .mega-inner-sm { grid-template-columns: 1fr 1fr; }
  .mega-items-grid { grid-template-columns: 1fr; }
  .mega-industry-grid { grid-template-columns: 1fr; }
  .mega-col-promo { display: none; }
  .mega-col-featured { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: #fff; padding: 1rem; overflow-y: auto; z-index: 998; }
  .nav-links.mobile-open { display: flex; }
  .mega-panel { position: static; border-top: none; box-shadow: none; border-left: 2px solid #D89B1D; margin-left: 1rem; }
  .mega-inner-sm { grid-template-columns: 1fr; }
  .hamburger { display: flex; }
  .nav-logo-sub { display: none; }
  .mega-trigger, .mega-trigger-link { width: 100%; justify-content: space-between; }
}

/* ============================================================
   SUBPAGE STYLING (Platform & Solutions)
   ============================================================ */
.subpage-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.subpage-hero {
  padding: 8rem 0 5rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(216,155,29,0.05) 0%, rgba(255,255,255,0) 50%), #fff;
  border-bottom: 1px solid #e5e7eb;
}
.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .subpage-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.subpage-tagline {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D89B1D;
  margin-bottom: 1rem;
}
.subpage-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.subpage-title span {
  color: #D89B1D;
}
.subpage-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 2rem;
}
.subpage-ctas {
  display: flex;
  gap: 1rem;
}
.subpage-hero-visual {
  position: relative;
}
.subpage-visual-wrap {
  position: relative;
  background: #f3f4f6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
}
.subpage-visual-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.subpage-visual-wrap:hover img {
  transform: scale(1.03);
}

.subpage-features {
  padding: 6rem 0;
  background: #f9fafb;
}
.subpage-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.subpage-feat-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  border: 1px solid #f3f4f6;
  transition: transform 0.3s, box-shadow 0.3s;
}
.subpage-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: rgba(216,155,29,0.3);
}
.subpage-feat-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  background: rgba(216,155,29,0.1);
  color: #D89B1D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.subpage-feat-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.subpage-feat-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4b5563;
}

.subpage-cta {
  padding: 6rem 0;
  background: #fff;
}
.subpage-cta-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #111827 100%);
  padding: 5rem 3rem;
  border-radius: 24px;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(216,155,29,0.2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.subpage-cta-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.subpage-cta-card p {
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.1rem;
  color: #9ca3af;
  line-height: 1.6;
}


/* ============================================================
   SHOWCASE IMAGE CARD STYLING
   ============================================================ */
.lc2-sc-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.lc2-sc-overlay {
  z-index: 2;
}


/* ============================================================
   PRECISION IN EVERY POUR SCROLLING BANNER
   ============================================================ */
.vp-scroll-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  margin-top: 2.5rem;
}
.vp-scroll-viewport::before,
.vp-scroll-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.vp-scroll-viewport::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.vp-scroll-viewport::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

@keyframes vpMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.vp-scroll-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: vpMarquee 45s linear infinite;
}
.vp-scroll-track:hover {
  animation-play-state: paused;
}
.vp-card {
  width: 320px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.vp-card-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background: #f9fafb;
}
.vp-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.vp-card:hover .vp-card-img-wrap img {
  transform: scale(1.05);
}


/* ============================================================
   MEGA MENU HOVER STYLES FOR DESKTOP
   ============================================================ */
@media (min-width: 1024px) {
  /* Visibility is managed by JS to allow hover delay buffers */
  .mega-wrap:hover .mega-trigger {
    color: #D89B1D !important;
    background: rgba(0,0,0,0.04) !important;
  }
  .mega-wrap:hover .mega-trigger .mega-caret {
    transform: rotate(180deg) !important;
  }
}

/* ============================================================
   GLOBAL DIVE-ROW & DEEP-DIVE SHOWN STYLES
   ============================================================ */
.feature-deep-dives {
  background: #fafafa;
  padding: 6rem 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.dive-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 7rem;
}
.dive-row:last-child {
  margin-bottom: 0;
}
.dive-row-reverse {
  flex-direction: row-reverse;
}
.dive-content, .dive-visual {
  flex: 1;
  width: 50%;
}
.dive-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #D89B1D;
  margin-bottom: 0.75rem;
  letter-spacing: 1.5px;
}
.dive-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
}
.dive-content p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 2rem;
}
.dive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dive-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1rem;
}
.dive-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #D89B1D;
}
@media (max-width: 991px) {
  .dive-row {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
  }
  .dive-row-reverse {
    flex-direction: column;
  }
  .dive-content, .dive-visual {
    width: 100%;
  }
}

/* ============================================================
   HOME PAGE REVAMP STYLES
   ============================================================ */

/* -- 1. LOGO MARQUEE -- */
.marquee-logos-sec {
  background: #111827;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(216,155,29,0.2);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-logos-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 35s linear infinite;
  align-items: center;
}
.marquee-logos-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 3rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-logos-icon {
  color: #D89B1D;
  font-size: 1.4rem;
}
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -- 2. HORIZONTAL INDUSTRY GALLERY -- */
.operation-gallery-sec {
  padding: 6rem 0;
  background: radial-gradient(circle at 10% 80%, rgba(216,155,29,0.03) 0%, rgba(255,255,255,0) 60%), #fff;
  overflow: hidden;
}
.op-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
}
@media (min-width: 1024px) {
  .op-gallery-grid {
    grid-template-columns: 1.1fr 2fr;
    align-items: center;
  }
}
.op-gallery-featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  border: 1px solid rgba(216,155,29,0.2);
}
.op-gallery-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.op-gallery-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #111827 15%, rgba(17,24,39,0.8) 50%, rgba(17,24,39,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  color: #fff;
}
.op-gallery-featured-tag {
  color: #D89B1D;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.op-gallery-featured-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.op-gallery-featured-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #9ca3af;
}
.op-cards-viewport {
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
}
.op-cards-track {
  display: flex;
  gap: 2rem;
  animation: scrollOpCards 45s linear infinite;
  width: max-content;
}
.op-cards-track:hover {
  animation-play-state: paused;
}
.op-card {
  width: 280px;
  background: #1e293b;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem;
  color: #fff;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.op-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216,155,29,0.4);
  box-shadow: 0 20px 30px -10px rgba(216,155,29,0.15);
}
.op-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.op-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}
.op-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}
@keyframes scrollOpCards {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -- 3. PRODUCT SCREENS CAROUSEL -- */
.product-tour-sec {
  padding: 7rem 0;
  background: #0b0f19;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.product-tour-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 3rem auto;
  max-width: 1100px;
}
.pt-tab {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pt-tab:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(216,155,29,0.3);
}
.pt-tab.active {
  background: #D89B1D;
  color: #111827;
  border-color: #D89B1D;
  box-shadow: 0 4px 15px rgba(216,155,29,0.25);
}
.pt-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}
.pt-slider-viewport {
  overflow: hidden;
  border-radius: 16px;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 25px 60px -15px rgba(0,0,0,0.5);
}
.pt-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.pt-slide {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 992px) {
  .pt-slide {
    grid-template-columns: 1.2fr 1fr;
  }
}
.pt-slide-visual {
  padding: 2.5rem;
  background: #182232;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.pt-slide-img-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background: #0f172a;
}
.pt-slide-img-wrap img {
  width: 100%;
  display: block;
  object-fit: contain;
}
.pt-slide-content {
  padding: 3.5rem;
}
.pt-slide-label {
  color: #D89B1D;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.pt-slide-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.pt-slide-desc {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.pt-slide-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pt-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #e2e8f0;
}
.pt-checklist-icon {
  color: #D89B1D;
  font-weight: bold;
}
.pt-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}
.pt-nav-btn:hover {
  background: #D89B1D;
  color: #111827;
  border-color: #D89B1D;
  box-shadow: 0 0 15px rgba(216,155,29,0.3);
}
.pt-nav-btn.prev { left: -0.5rem; }
.pt-nav-btn.next { right: -0.5rem; }

/* -- 4. LIVE FLEET MAP -- */
.live-fleet-map-sec {
  padding: 6rem 0;
  background: #0a0e17;
  position: relative;
  overflow: hidden;
}
.map-full-container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  position: relative;
}
.map-viewport {
  width: 100%;
  height: 600px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border-top: 1px solid rgba(216,155,29,0.2);
  border-bottom: 1px solid rgba(216,155,29,0.2);
}
@media (min-width: 768px) {
  .map-viewport {
    height: 700px;
  }
}
.map-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: grayscale(1) brightness(0.6) contrast(1.2);
}
.map-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
/* Live dashboard layout elements over map */
.map-dashboard-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}
.map-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.map-control-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid #D89B1D;
  border-radius: 12px;
  padding: 1.5rem;
  color: #fff;
  pointer-events: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  max-width: 320px;
}
.map-control-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.map-control-card p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.4;
}
.map-counters-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  display: flex;
  gap: 2.5rem;
  color: #fff;
  pointer-events: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.map-count-item {
  text-align: center;
}
.map-count-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.map-count-num.gold { color: #D89B1D; }
.map-count-num.green { color: #10b981; }
.map-count-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-top: 0.25rem;
}
.map-overlay-bottom {
  display: flex;
  justify-content: flex-end;
}
.map-feed-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem;
  color: #fff;
  pointer-events: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  width: 320px;
  max-height: 250px;
  display: flex;
  flex-direction: column;
}
.map-feed-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.map-feed-pulse {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  animation: mapPulse 1.5s infinite;
}
.map-feed-rows {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.map-feed-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-bottom: 0.5rem;
}
.map-feed-row:last-child {
  border-bottom: none;
}
.map-feed-row span:first-child {
  color: #e2e8f0;
}
.map-feed-row span:last-child {
  color: #D89B1D;
  font-weight: 600;
}
/* Telemetry animation styles */
.map-route-path {
  fill: none;
  stroke-linecap: round;
}
.map-route-completed {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 8, 4;
}
.map-pin {
  cursor: pointer;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}
.map-pin-pulse {
  animation: mapPinPulse 2s infinite;
}
.map-truck-icon {
  font-size: 1.4rem;
  transition: transform 0.3s;
  cursor: pointer;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}
@keyframes mapPulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}
@keyframes mapPinPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* -- 5. FROM PLANT TO POUR TIMELINE -- */
.timeline-pour-sec {
  padding: 6.5rem 0;
  background: #f8fafc;
}
.timeline-pour-container {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 1024px) {
  .timeline-pour-container {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }
}
.timeline-stages {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 2rem;
}
.timeline-stages::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: #e2e8f0;
}
.timeline-stage-item {
  position: relative;
  padding-bottom: 2rem;
  cursor: pointer;
}
.timeline-stage-item:last-child {
  padding-bottom: 0;
}
.timeline-stage-node {
  position: absolute;
  left: -2rem;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #cbd5e1;
  transition: all 0.3s;
  z-index: 2;
}
.timeline-stage-item:hover .timeline-stage-node {
  border-color: rgba(216,155,29,0.5);
  transform: scale(1.2);
}
.timeline-stage-item.active .timeline-stage-node {
  border-color: #D89B1D;
  background: #D89B1D;
  box-shadow: 0 0 0 4px rgba(216,155,29,0.2);
}
.timeline-stage-content {
  padding-left: 1rem;
}
.timeline-stage-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.3rem;
  transition: color 0.3s;
}
.timeline-stage-item.active .timeline-stage-title {
  color: #D89B1D;
}
.timeline-stage-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
  display: none;
}
.timeline-stage-item.active .timeline-stage-desc {
  display: block;
}
.timeline-pour-visual {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  height: 420px;
}
.timeline-pour-img-track {
  width: 100%;
  height: 100%;
  position: relative;
}
.timeline-pour-img-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.timeline-pour-img-slide.active {
  opacity: 1;
  visibility: visible;
}
.timeline-pour-img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.timeline-pour-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: #fff;
}
.timeline-pour-img-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.timeline-pour-img-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* -- 6. LIVE FLEET ACROSS INDIA (TRUCK GALLERY) -- */
.fleet-india-sec {
  padding: 5rem 0;
  background: #111827;
  overflow: hidden;
}
.fleet-india-banner {
  max-width: 1300px;
  margin: 0 auto 3rem auto;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(216,155,29,0.15);
}
.fleet-india-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-india-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,24,39,0.95) 30%, rgba(17,24,39,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  color: #fff;
}
.fleet-india-banner-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.fleet-india-banner-sub {
  font-size: 1.1rem;
  color: #9ca3af;
  max-width: 500px;
  line-height: 1.5;
}
.fleet-india-track-viewport {
  overflow: hidden;
  padding: 1rem 0;
}
.fleet-india-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollFleetIndia 40s linear infinite;
  width: max-content;
}
.fleet-india-card {
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  height: 200px;
}
.fleet-india-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.fleet-india-card:hover img {
  transform: scale(1.05);
}
.fleet-india-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
@keyframes scrollFleetIndia {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -- 7. CUSTOMER STORIES CAROUSEL -- */
.stories-sec {
  padding: 6.5rem 0;
  background: #f8fafc;
}
.stories-track-viewport {
  overflow: hidden;
  padding: 2rem 0;
  margin-top: 3rem;
}
.stories-track {
  display: flex;
  gap: 2.5rem;
  animation: scrollStories 45s linear infinite;
  width: max-content;
}
.stories-track:hover {
  animation-play-state: paused;
}
.story-card {
  width: 380px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: all 0.3s;
}
.story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216,155,29,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.story-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
}
.story-industry {
  background: rgba(216,155,29,0.1);
  color: #D89B1D;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.story-quote {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}
.story-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.5rem;
}
.story-metric-item h5 {
  font-size: 1.6rem;
  font-weight: 900;
  color: #D89B1D;
  margin-bottom: 0.25rem;
}
.story-metric-item p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.3;
}
@keyframes scrollStories {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -- 8. CONCRETE PROJECTS GALLERY -- */
.projects-gallery-sec {
  padding: 6.5rem 0;
  background: #0f172a;
  color: #fff;
}
.projects-slider-container {
  position: relative;
  margin-top: 3.5rem;
  padding: 0 3rem;
}
.projects-slider-viewport {
  overflow: hidden;
}
.projects-slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}
.project-slide-card {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 640px) {
  .project-slide-card {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media (min-width: 1024px) {
  .project-slide-card {
    flex: 0 0 calc(33.333% - 1.333rem);
  }
}
.project-slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-slide-card:hover img {
  transform: scale(1.05);
}
.project-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.project-slide-type {
  color: #D89B1D;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.project-slide-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.project-slide-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.4;
}

