/* ============================================================
   LabelIQ — Smart Label Technology Website
   Light Theme Stylesheet
   ============================================================ */

/* ── Root Variables ── */
:root {
  --primary:        #0D7A3E;
  --primary-dark:   #085C2E;
  --primary-light:  #EAF5EE;
  --accent:         #FF6B35;
  --accent-dark:    #E0541C;
  --text-dark:      #1A2B1A;
  --text-body:      #444F44;
  --text-muted:     #7A8A7A;
  --bg-white:       #FFFFFF;
  --bg-light:       #F7FBF8;
  --bg-light-green: #F0F8F3;
  --border:         #D8EAE0;
  --shadow-sm:      0 2px 12px rgba(13,122,62,0.08);
  --shadow-md:      0 6px 30px rgba(13,122,62,0.12);
  --shadow-lg:      0 12px 50px rgba(13,122,62,0.15);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --font-main:      'Inter', sans-serif;
  --font-heading:   'Space Grotesk', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
}

a { text-decoration: none; transition: color 0.2s; }

img { max-width: 100%; }

/* ── Utilities ── */
.section-pad { padding: 96px 0; }
.bg-white { background: var(--bg-white); }
.bg-light-green { background: var(--bg-light-green); }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 0;
  transition: all 0.3s;
}

#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), #19A65A);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.brand-accent { color: var(--primary); }

.navbar-nav .nav-link {
  color: var(--text-body) !important;
  font-weight: 500;
  font-size: 14.5px;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
  background: var(--primary-light);
}

.btn-demo {
  background: var(--primary);
  color: #fff !important;
  border-radius: 10px;
  padding: 10px 22px !important;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  border: none;
}

.btn-demo:hover {
  background: var(--primary-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13,122,62,0.3);
}

.navbar-toggler { color: var(--text-dark); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%231A2B1A' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background: linear-gradient(160deg, #FFFFFF 0%, #EAF5EE 50%, #D5EDDF 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(13,122,62,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(25,166,90,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid rgba(13,122,62,0.2);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 600;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #2ECC71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-body);
  max-width: 540px;
  line-height: 1.7;
}

.btn-primary-cta {
  background: linear-gradient(135deg, var(--primary), #1AB558);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,122,62,0.35);
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-secondary-cta {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
}

.btn-secondary-cta:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary-cta {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}

.btn-outline-primary-cta:hover {
  background: var(--primary);
  color: #fff;
}

/* Hero Stats */
.hero-stats { gap: 28px; }

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 3px; font-weight: 500; }

.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.label-card-main {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(13,122,62,0.18), 0 4px 20px rgba(0,0,0,0.08);
  padding: 24px;
  position: relative;
  z-index: 2;
  border: 1px solid var(--border);
}

.lc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.lc-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--text-dark);
}

.lc-logo span { color: var(--primary); }

.lc-badge {
  background: #ECFDF5;
  color: #059669;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #A7F3D0;
}

.lc-product {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}

.lc-brand {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.lc-qr-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--bg-light-green);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.lc-qr-box { flex: 0 0 auto; text-align: center; }

.qr-grid {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  position: relative;
  display: grid;
  grid-template-areas: "tl . tr" ". cb ." "bl . qd";
  grid-template-columns: 16px 1fr 16px;
  grid-template-rows: 16px 1fr 16px;
  gap: 3px;
  padding: 5px;
  margin: 0 auto 4px;
}

.primary-qr { background: var(--primary-light); border: 2px solid var(--primary); }
.auth-qr { background: #FFF7ED; border: 2px solid var(--accent); }

.qr-corner {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.primary-qr .qr-corner { background: var(--primary); }
.auth-qr .qr-corner { background: var(--accent); }

.qr-corner.tl { grid-area: tl; }
.qr-corner.tr { grid-area: tr; }
.qr-corner.bl { grid-area: bl; }

.qr-center-block {
  grid-area: cb;
  border-radius: 2px;
  width: 10px;
  height: 10px;
  margin: auto;
}

.primary-qr .qr-center-block { background: var(--primary); }
.auth-qr .qr-center-block { background: var(--accent); }

.qr-dots {
  grid-area: qd;
  width: 8px;
  height: 8px;
  background: repeating-linear-gradient(45deg, currentColor 0px, currentColor 2px, transparent 2px, transparent 4px);
  border-radius: 1px;
}

.primary-qr .qr-dots { color: var(--primary); }
.auth-qr .qr-dots { color: var(--accent); }

.qr-label { font-size: 9px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.lc-info { flex: 1; }

.info-row {
  font-size: 11px;
  color: var(--text-body);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.info-row i { color: var(--primary); font-size: 10px; }

/* Journey Bar */
.lc-journey {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
  opacity: 0.35;
}

.journey-step.active { opacity: 1; }

.journey-step i {
  width: 26px;
  height: 26px;
  background: #E8F5EE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
}

.journey-step.active i {
  background: var(--primary);
  color: #fff;
}

.journey-step span { font-size: 9px; font-weight: 600; color: var(--text-muted); }
.journey-step.active span { color: var(--primary); }

.journey-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
}

.journey-line.active { background: var(--primary); }

/* Floating Badges */
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 3;
  border: 1px solid var(--border);
}

.float-badge i { font-size: 20px; }

.float-badge strong { display: block; font-size: 12px; color: var(--text-dark); line-height: 1.2; }
.float-badge small { font-size: 10px; color: var(--text-muted); }

.fb-scan { top: 10px; right: -30px; animation: float-anim 3s ease-in-out infinite; }
.fb-alert { bottom: 60px; right: -20px; animation: float-anim 3s ease-in-out infinite 1s; }
.fb-verified { bottom: 0; left: -20px; animation: float-anim 3s ease-in-out infinite 2s; }

@keyframes float-anim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-section { background: #fff; border-bottom: 1px solid var(--border); }

.trust-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 600; }

.trust-logo-item {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: var(--bg-light);
  border-radius: 40px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.trust-logo-item i { color: var(--primary); }

.trust-logo-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(13,122,62,0.3);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  border: 1px solid rgba(13,122,62,0.2);
}

.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-title.light { color: #fff; }

.section-sub { font-size: 16.5px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 16px;
}

@media (max-width: 991px) {
  .hiw-steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .hiw-connector { transform: rotate(90deg); justify-self: center; }
}

.hiw-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.hiw-step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.hiw-icon-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 16px;
}

.hiw-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), #D4EED8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
}

.step-num {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.hiw-step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.hiw-step p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

.hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  margin-top: 32px;
  opacity: 0.6;
}

/* Dual QR Callout */
.dual-qr-callout {
  background: linear-gradient(135deg, var(--primary-light), #E0F2E8);
  border: 1px solid rgba(13,122,62,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.dqr-icon {
  font-size: 36px;
  color: var(--primary);
  display: flex;
  gap: -6px;
  justify-content: center;
}

.dqr-icon i:last-child { margin-left: -10px; color: var(--accent); }

/* ============================================================
   FEATURES
   ============================================================ */
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card--highlight {
  background: linear-gradient(145deg, var(--primary), #19A65A);
  border-color: transparent;
  color: #fff;
}

.feature-card--highlight h5,
.feature-card--highlight p { color: rgba(255,255,255,0.92); }

.feature-card--highlight .fc-icon { background: rgba(255,255,255,0.2); color: #fff; }

.feature-card--highlight:hover { border-color: transparent; transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,122,62,0.35); }

.fc-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }

.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.feature-card--highlight p { color: rgba(255,255,255,0.82); }

.fc-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industry-nav .nav-link {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}

.industry-nav .nav-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.industry-nav .nav-link.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13,122,62,0.3);
}

.ind-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 14px;
}

.ind-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.ind-points { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

.ind-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.5;
}

.ind-point i { color: var(--primary); flex-shrink: 0; margin-top: 2px; font-size: 16px; }

/* Industry Visuals */
.ind-visual {
  background: var(--bg-light-green);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid var(--border);
}

.iv-card { background: #fff; border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-sm); }

.iv-header {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.iv-chain { display: flex; flex-direction: column; align-items: center; gap: 0; }

.ivc-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  width: 100%;
}

.ivc-final { background: var(--primary-light); border-color: var(--primary); }

.ivcs-icon {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.ivcs-text strong { display: block; font-size: 13px; color: var(--text-dark); }
.ivcs-text small { font-size: 11px; color: var(--text-muted); }

.ivc-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  margin: 2px 0;
}

/* Stat grid for industries */
.iv-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ivsg-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ivsg-item.ivsg-green {
  background: var(--primary-light);
  border-color: rgba(13,122,62,0.2);
}

.ivsg-num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.ivsg-label { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* Feature list for industries */
.iv-feature-list { display: flex; flex-direction: column; gap: 14px; }

.ivfl-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.ivfl-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }

.ivfl-item > i {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.ivfl-item > div strong { display: block; font-size: 14px; color: var(--text-dark); margin-bottom: 3px; }
.ivfl-item > div p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0D7A3E 50%, #1AB558 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.sc-icon {
  font-size: 28px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.sc-num {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: inline;
}

.sc-suffix {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.sc-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.case-card--featured {
  background: linear-gradient(160deg, var(--primary-light), #fff);
  border-color: rgba(13,122,62,0.25);
}

.cc-featured-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 14px;
  border-bottom-left-radius: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cc-industry {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.cc-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.cc-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

.cc-solution {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin: 14px 0;
  border-left: 3px solid var(--primary);
}

.cc-solution strong { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--primary); }
.cc-solution p { font-size: 13px; color: var(--text-body); margin: 6px 0 0; line-height: 1.6; }

.cc-results {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.cc-result {
  flex: 1;
  text-align: center;
  background: var(--bg-light-green);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  border: 1px solid var(--border);
}

.ccr-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.ccr-label { font-size: 10px; color: var(--text-muted); line-height: 1.4; display: block; margin-top: 3px; }

/* ============================================================
   WHY LABELIQ
   ============================================================ */
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  text-align: center;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.wc-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), #D4EED8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin: 0 auto 18px;
}

.why-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* Comparison Table */
.comparison-table {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.comp-table {
  margin: 0;
  font-size: 14px;
}

.comp-table thead th {
  background: var(--bg-light-green);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 13px;
  border: none;
  padding: 12px 16px;
}

.comp-table thead th:first-child { border-radius: 8px 0 0 8px; }
.comp-table thead th:last-child { border-radius: 0 8px 8px 0; }

.comp-table tbody tr:hover { background: var(--bg-light); }

.comp-table tbody td {
  padding: 11px 16px;
  vertical-align: middle;
  border-color: var(--border);
  font-size: 14px;
}

.comp-table .text-success { color: var(--primary) !important; font-size: 18px; }
.comp-table .text-danger { color: #EF4444 !important; font-size: 18px; }
.comp-table .text-warning { color: #F59E0B !important; font-size: 18px; }

/* ============================================================
   TECHNOLOGY
   ============================================================ */
.tech-label-viz {
  position: relative;
  display: flex;
  justify-content: center;
}

.tlv-label {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  width: 280px;
  box-shadow: var(--shadow-lg);
}

.tlv-brand {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.tlv-product { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }

.tlv-qr-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-light);
  border-radius: 10px;
  padding: 14px;
  gap: 10px;
  margin-bottom: 12px;
}

.tlv-qr { text-align: center; flex: 1; }
.tlv-qr span { display: block; font-size: 9px; font-weight: 600; color: var(--text-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.tlv-qr-desc { color: var(--text-muted); font-size: 9px !important; text-transform: none !important; letter-spacing: 0 !important; }

.tlv-qr-inner {
  width: 60px;
  height: 60px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  position: relative;
}

.auth-inner { border-color: var(--accent); background: #FFF7ED; }

.qr-sim {
  width: 40px;
  height: 40px;
  background:
    linear-gradient(var(--primary) 2px, transparent 2px) 0 0/8px 8px,
    linear-gradient(var(--primary) 2px, transparent 2px) 0 0/3px 3px;
  opacity: 0.4;
}

.auth-inner .qr-sim {
  background:
    linear-gradient(var(--accent) 2px, transparent 2px) 0 0/8px 8px,
    linear-gradient(var(--accent) 2px, transparent 2px) 0 0/3px 3px;
}

.auth-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
}

.tlv-divider { width: 1px; background: var(--border); align-self: stretch; }

.tlv-footer {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
  gap: 8px;
}

.tlv-footer span { display: flex; align-items: center; gap: 4px; }
.tlv-footer i { color: var(--primary); }

/* Annotations */
.tlv-annotations { position: absolute; inset: 0; pointer-events: none; }

.tlv-ann {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ann-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.ann-text {
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.ann-1 { top: 30%; left: -130px; flex-direction: row-reverse; }
.ann-2 { top: 55%; left: -120px; flex-direction: row-reverse; }
.ann-3 { top: 75%; right: -130px; }

.ann-1 .ann-dot, .ann-2 .ann-dot { background: var(--primary); }
.ann-3 .ann-dot { background: var(--accent); }
.ann-3 .ann-text { background: var(--accent); }

@media (max-width: 767px) {
  .tlv-annotations { display: none; }
}

/* Tech points */
.tech-points { display: flex; flex-direction: column; gap: 6px; }

.tech-point {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.tech-point:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }

.tp-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}

.tp-body h5 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.tp-body p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  background: #fff;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item .accordion-button {
  background: #fff;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 18px 22px;
  border: none;
  box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary);
}

.faq-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230D7A3E' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-item .accordion-body {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 16px 22px 20px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CONTACT / DEMO FORM
   ============================================================ */
.contact-section {
  background: linear-gradient(160deg, var(--bg-light-green), #fff);
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(13,122,62,0.12);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-info {
  background: linear-gradient(150deg, var(--primary), #19A65A);
  padding: 48px 36px;
  height: 100%;
  color: #fff;
}

.contact-info h2 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 800; color: #fff; line-height: 1.2; }
.contact-info p { color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.65; }

.ci-points { display: flex; flex-direction: column; gap: 10px; }

.ci-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.ci-point i { color: #7EE8A2; font-size: 16px; flex-shrink: 0; }

.ci-contact-details { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; }

.ci-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.ci-contact-item i { color: #7EE8A2; flex-shrink: 0; }

.contact-form-wrap { padding: 40px 36px; }

.contact-form-wrap h4 { font-size: 20px; font-weight: 800; color: var(--text-dark); }

.form-label { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  transition: all 0.2s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,122,62,0.12);
  outline: none;
}

.form-control::placeholder { color: #B0C4B0; }

.form-note { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text-dark);
  padding: 64px 0 28px;
  color: #B0C4B0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-accent { color: #4ADE80; }
.footer-brand .brand-icon { background: rgba(74,222,128,0.15); color: #4ADE80; }

.footer-tagline { font-size: 13.5px; color: #7A9A7A; line-height: 1.65; max-width: 280px; }

.footer-socials { display: flex; gap: 10px; }

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7A9A7A;
  font-size: 16px;
  transition: all 0.2s;
}

.footer-social:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 14px; }

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }

.footer-links li a, .footer-links li span {
  font-size: 13.5px;
  color: #7A9A7A;
  transition: color 0.2s;
}

.footer-links li a:hover { color: #4ADE80; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #4A664A;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: #4A664A; }
.footer-bottom-links a:hover { color: #4ADE80; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .section-pad { padding: 72px 0; }

  .fb-scan, .fb-alert { display: none; }

  .fb-verified { position: relative; left: auto; bottom: auto; margin-top: 16px; }

  .hero-visual { margin-top: 20px; }

  .contact-info { padding: 36px 24px; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }

  .hero-headline { font-size: 34px; }

  .hero-stats { gap: 16px; }

  .stat-number { font-size: 22px; }

  .hiw-step { padding: 20px 16px; }

  .contact-card { border-radius: var(--radius-lg); }

  .dual-qr-callout { padding: 20px; }

  .dqr-icon { margin-bottom: 12px; }

  .iv-stat-grid { grid-template-columns: 1fr; }

  .cc-results { flex-direction: column; }

  .ann-1, .ann-2, .ann-3 { display: none; }

  .float-badge { display: none !important; }

  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 575px) {
  .hero-ctas { flex-direction: column; }
  .btn-primary-cta, .btn-secondary-cta { width: 100%; justify-content: center; }
  .industry-nav { justify-content: flex-start !important; overflow-x: auto; flex-wrap: nowrap !important; padding-bottom: 8px; }
  .industry-nav::-webkit-scrollbar { height: 4px; }
  .industry-nav::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
}
