/* ========================================
   KFleet - Static Clone Stylesheet
   kfleet.kasernet.com
   ======================================== */

/* === CSS Custom Properties === */
:root {
  --green:   #00ff99;
  --orange:  #ee6f31;
  --blue:    #2786e9;
  --dark:    #182934;
  --darker:  #121212;
  --white:   #ffffff;
  --light:   #ebebeb;
  --gray:    #6c757d;
  --card-bg: #1e3545;

  --font-primary:   'Poppins', sans-serif;
  --font-heading:   'Raleway', sans-serif;
  --font-body:      'Open Sans', sans-serif;
  --font-accent:    'Montserrat', sans-serif;

  --nav-h:  72px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.3s ease;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

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

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

ul { list-style: none; }

/* === Utility === */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-title span { color: var(--green); }

.section-desc {
  font-size: 1rem;
  color: var(--light);
  opacity: 0.85;
  max-width: 640px;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--green);
  color: var(--darker);
  border-color: var(--green);
}

.btn-primary:hover {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

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

.btn-outline:hover {
  background: var(--green);
  color: var(--darker);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-orange:hover {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-blue:hover {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.75rem;
}

/* === Logo image === */
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}

/* === Product card images === */
.product-img {
  width: 100px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  display: block;
}

/* === HEADER / NAV === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--darker);
}

.nav-logo .logo-text em { color: var(--green); font-style: normal; }

/* Primary Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--green);
  background: rgba(0,255,153,0.06);
}

.nav-link .chevron {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

.nav-item:hover > .nav-link .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #1a2a35;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 200;
  overflow: hidden;
  padding-top: 8px;
}

/* Transparent bridge fills the gap so mouse stays in hover zone */
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-item:hover > .dropdown,
.nav-item.open > .dropdown {
  display: block;
  animation: fadeDown 0.2s ease;
}

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

.dropdown a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: background var(--transition), color var(--transition);
}

.dropdown a:hover {
  background: rgba(0,255,153,0.1);
  color: var(--green);
}

/* Nav CTAs */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #0f1e27;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  z-index: 999;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}

.mobile-nav.open { display: block; }

.mobile-nav-list > li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-list > li > a,
.mobile-nav-list > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.mobile-nav-list > li > a:hover,
.mobile-nav-list > li > button:hover { color: var(--green); }

.mobile-sub {
  display: none;
  padding: 0.5rem 0 0.75rem 1rem;
}

.mobile-sub.open { display: block; }

.mobile-sub a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.mobile-sub a:hover { color: var(--green); }

.mobile-nav-ctas {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.mobile-nav-ctas .btn { flex: 1; text-align: center; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background:
    linear-gradient(135deg, rgba(18,18,18,0.65) 0%, rgba(24,41,52,0.60) 100%),
    url('../images/Mileage.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--darker));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

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

.hero-video {
  position: relative;
  z-index: 1;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,255,153,0.1);
  border: 1px solid rgba(0,255,153,0.25);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

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

.hero h1,
.hero h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 .accent,
.hero h2 .accent { color: var(--green); }

.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1.25rem;
}

.hero-note span { color: var(--green); }

/* === SECTION SPACING === */
section { padding: 5rem 0; }

/* === PRODUCTS GRID === */
.products {
  background: var(--dark);
}

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

.product-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,255,153,0.12);
  border-color: rgba(0,255,153,0.3);
}

.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.product-icon.green  { background: rgba(0,255,153,0.12); }
.product-icon.orange { background: rgba(238,111,49,0.12); }
.product-icon.blue   { background: rgba(39,134,233,0.12); }
.product-icon.purple { background: rgba(139,92,246,0.12); }

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.product-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.learn-more {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}

.learn-more:hover { gap: 0.6rem; }

/* === FEATURED SECTIONS === */
.featured {
  background: var(--darker);
}

.featured.alt {
  background: var(--dark);
}

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

.featured-inner.reverse { direction: rtl; }
.featured-inner.reverse > * { direction: ltr; }

.featured-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.featured-img img {
  width: 100%;
  border-radius: 16px;
}

/* image placeholder */
.img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--card-bg), #0f1e27);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 1px solid rgba(255,255,255,0.07);
}

.featured-text { }

.featured-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.featured-text h2 span { color: var(--green); }

.featured-text p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.5rem;
  font-size: 0.97rem;
}

.feature-bullets {
  margin-bottom: 2rem;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.feature-bullets li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* === PRIVATE LABEL === */
.private-label {
  background: linear-gradient(135deg, #0d1f2d, #182934);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.private-label::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,153,0.07) 0%, transparent 70%);
}

.private-label .section-desc {
  margin: 0 auto 2rem;
}

.private-label-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  text-align: left;
}

.pl-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color var(--transition);
}

.pl-card:hover { border-color: rgba(0,255,153,0.3); }

.pl-card .pl-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.pl-card h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pl-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* === OEM INTEGRATION === */
.oem {
  background: var(--dark);
}

.oem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.oem-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.oem-service {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.25rem;
  transition: border-color var(--transition);
}

.oem-service:hover { border-color: rgba(39,134,233,0.4); }

.oem-service h4 {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.oem-service p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* === WHY KFLEET === */
.why-kfleet {
  background: var(--darker);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin: 3rem 0;
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,255,153,0.25);
}

.benefit-icon {
  font-size: 2.25rem;
  margin-bottom: 0.85rem;
}

.benefit-card h4 {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.dashboard-showcase {
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.dashboard-showcase .img-placeholder {
  aspect-ratio: 16/7;
  border-radius: 0;
  font-size: 3rem;
}

/* === COMPETITIVE === */
.competitive {
  background: linear-gradient(135deg, var(--dark), #0d1f2d);
  text-align: center;
}

.competitive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}

.competitive-points {
  margin: 2rem 0;
}

.competitive-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.cp-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,255,153,0.1);
  border: 1px solid rgba(0,255,153,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
}

.cp-text h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.cp-text p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
}

.competitive-visual .img-placeholder {
  aspect-ratio: 4/3;
}

/* === CONTACT === */
.contact-section {
  background: var(--dark);
  text-align: center;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
}

.contact-info-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  font-style: normal;
  text-align: center;
  color: var(--light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-info-item a {
  color: var(--light);
  transition: color var(--transition);
}

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

.contact-info-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.55rem;
}

@media (max-width: 767px) {
  .contact-info-grid { grid-template-columns: 1fr; gap: 0.75rem; }
}

.contact-form-wrap {
  max-width: 560px;
  margin: 2.5rem auto 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
  background: rgba(0,255,153,0.04);
}

.form-group input::placeholder { color: rgba(255,255,255,0.35); }

.form-group select option { background: #1a2a35; color: var(--white); }

.form-submit { width: 100%; margin-top: 0.5rem; }

.form-success {
  display: none;
  background: rgba(0,255,153,0.1);
  border: 1px solid rgba(0,255,153,0.3);
  border-radius: var(--radius);
  padding: 1rem;
  color: var(--green);
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

/* === FOOTER === */
.site-footer {
  background: #0a161e;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition), border-color var(--transition);
}

.social-link:hover {
  background: rgba(0,255,153,0.12);
  border-color: rgba(0,255,153,0.3);
}

.footer-col h5 {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.1rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}

.footer-contact p span { flex-shrink: 0; margin-top: 0.1rem; }

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

.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--green); }

/* ========================================
   FLOATING CONTACT US PANEL (left sticky)
   ======================================== */
.sticky-contact {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9000;
}

.sticky-contact-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 1rem 0.6rem;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  user-select: none;
  transition: background var(--transition);
}

.sticky-contact-tab:hover { background: #d45e20; }

.sticky-contact-tab .tab-arrow {
  font-size: 0.9rem;
  transition: transform 0.35s ease;
  writing-mode: horizontal-tb;
  transform: rotate(90deg);
}

.sticky-contact.open .tab-arrow { transform: rotate(-90deg); }

.sticky-contact-panel {
  position: absolute;
  left: 100%;
  top: 0;
  width: 0;
  overflow: hidden;
  transition: width 0.35s ease;
  background: #0f1e27;
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: none;
}

.sticky-contact.open .sticky-contact-panel {
  width: 200px;
}

.sticky-panel-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.sticky-panel-item:last-child { border-bottom: none; }

.sticky-panel-item:hover { background: rgba(255,255,255,0.06); }

.sticky-panel-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.sticky-panel-icon.green   { background: #26D367; }
.sticky-panel-icon.blue    { background: #007FF7; }
.sticky-panel-icon.orange  { background: var(--orange); }

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--green);
  color: var(--darker);
  border: none;
  border-radius: 8px;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  box-shadow: 0 4px 16px rgba(0,255,153,0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top:hover {
  background: #00e588;
  transform: translateY(-3px);
}

/* ========================================
   COOKIE NOTICE BAR
   ======================================== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a161e;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 8500;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
}

.cookie-bar a { color: var(--green); }
.cookie-bar a:hover { text-decoration: underline; }

.cookie-bar-btn {
  background: var(--green);
  color: var(--darker);
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.5rem;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}

.cookie-bar-btn:hover { background: #00e588; }

/* ========================================
   YOUTUBE VIDEO SECTION
   ======================================== */
.video-section {
  background: var(--darker);
  padding: 5rem 0;
}

.video-section .text-center { margin-bottom: 2.5rem; }

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.07);
  aspect-ratio: 16/9;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- In-card feature video --- */
.card-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  margin: 1rem 0;
  background: #000;
}

.card-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* --- Featured-section video --- */
.featured-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin: 1.5rem 0;
  background: #000;
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
}

.featured-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

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

/* 1200px → keep max-width container */
@media (max-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 1024px */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .private-label-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* 900px */
@media (max-width: 900px) {
  .featured-inner,
  .oem-inner,
  .competitive-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .featured-inner.reverse { direction: ltr; }

  .competitive-visual { order: -1; }

  .oem-services { grid-template-columns: 1fr 1fr; }

  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { max-width: 100%; }
}

/* 767px — tablet */
@media (max-width: 767px) {
  :root { --nav-h: 64px; }

  section { padding: 3.5rem 0; }

  .nav-menu,
  .nav-ctas { display: none; }

  .hamburger { display: flex; }

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

  .private-label-cards { grid-template-columns: 1fr; }

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

  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* 425px — mobile */
@media (max-width: 425px) {
  .hero h1, .hero h2 { font-size: 2rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }

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

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

  .oem-services { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 1.75rem 1.25rem; }

  .mobile-nav-ctas { flex-direction: column; }
}

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

@media (max-width: 767px) {
  .sticky-contact.open .sticky-contact-panel { width: 170px; }
  .scroll-to-top { bottom: 1.25rem; right: 1.25rem; width: 40px; height: 40px; font-size: 1rem; }
  .cookie-bar { padding: 0.75rem 1rem; font-size: 0.78rem; }
}

/* === FAQ Section (WP pages 14870 / 14877 / 14882) === */
.faq-section {
  background: var(--darker);
  padding: 5rem 0 4rem;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 2.25rem 0 2.75rem;
}

.faq-tab {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  border: 1px solid rgba(0,255,153,0.25);
  border-radius: 999px;
  background: rgba(0,255,153,0.05);
  color: var(--green);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}

.faq-tab:hover {
  background: var(--green);
  color: var(--darker);
}

.faq-group {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

.faq-group-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: rgba(0,255,153,0.25);
  background: rgba(0,255,153,0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 2.5rem 1rem 1.25rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
  outline: none;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--green);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0;
}

/* === Cart badge === */
.cart-badge {
  display: inline-block;
  min-width: 20px;
  padding: 0 6px;
  height: 20px;
  line-height: 20px;
  margin-left: 4px;
  border-radius: 10px;
  background: #00ff99;
  color: #003366;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  vertical-align: middle;
}
.cart-badge:empty { display: none; }
