/*
Theme Name:  SmartLocker
Theme URI:   https://smartlocker.ca
Author:      SmartLocker
Description: Modern, fully-editable multi-page theme for SmartLocker – Smart | Secure | Simple. All content (text, images, layout) is controlled via Advanced Custom Fields in the WordPress admin. Includes 5 page templates: Homepage, Smart Tracker, Smart Key Systems, Smart Locker Storage System, and Contact.
Version:     2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     GPL-2.0-or-later
Text Domain: smartlocker
*/

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

/* ── Design tokens ── */
:root {
  --red:          #c8201e;
  --red-hover:    #a81917;
  --red-dim:      rgba(200,32,30,0.10);
  --navy:         #0b0f1a;
  --navy-2:       #111827;
  --navy-3:       #1a2235;
  --white:        #ffffff;
  --off:          #f4f5f7;
  --border-light: #e2e5ea;
  --border-dark:  rgba(255,255,255,0.07);
  --text:         #1a1f2e;
  --muted:        #6b7280;
  --hs:           'Inter', sans-serif;
  --hb:           'Inter', sans-serif;
  --radius:       6px;
  --radius-lg:    10px;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body { font-family: var(--hb); color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ── NAV ── */
.sl-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 72px;
  background: rgba(11,15,26,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow 0.3s;
}
.sl-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.sl-nav-inner {
  max-width: 1280px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.sl-logo { display: flex; align-items: center; text-decoration: none; }
.sl-logo img { height: 36px; width: auto; }
.sl-nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.sl-nav-links a {
  font-family: var(--hb); font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.65); text-decoration: none;
  padding: 8px 16px; border-radius: var(--radius);
  letter-spacing: 0.01em; transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.sl-nav-links a:hover, .sl-nav-links a.current-menu-item { color: #fff; background: rgba(255,255,255,0.07); }
.sl-nav-cta {
  background: var(--red) !important; color: #fff !important;
  font-weight: 500 !important; padding: 9px 20px !important;
  border-radius: var(--radius) !important;
}
.sl-nav-cta:hover { background: var(--red-hover) !important; }

/* ── PAGE HERO BANNER (inner pages) ── */
.sl-page-hero {
  padding-top: 72px;
  background: var(--navy); position: relative; overflow: hidden;
  min-height: 340px; display: flex; align-items: flex-end;
}
.sl-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none;
}
.sl-page-hero-slash {
  position: absolute; right: -60px; top: -80px;
  width: 520px; height: 300%;
  background: linear-gradient(180deg, rgba(200,32,30,0.12) 0%, transparent 70%);
  transform: rotate(-12deg); transform-origin: top right; pointer-events: none;
}
.sl-page-hero-slash2 {
  position: absolute; right: 60px; top: -80px;
  width: 3px; height: 300%;
  background: linear-gradient(180deg, var(--red) 0%, transparent 60%);
  transform: rotate(-12deg); transform-origin: top right; pointer-events: none;
}
.sl-page-hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 40px 64px; position: relative; z-index: 2; width: 100%;
}
.sl-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px;
}
.sl-breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; }
.sl-breadcrumb a:hover { color: rgba(255,255,255,0.65); }
.sl-breadcrumb .sep { color: rgba(255,255,255,0.2); }
.sl-breadcrumb .cur { color: var(--red); }
.sl-page-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; color: var(--red);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px;
}
.sl-page-tag::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--red); }
.sl-page-hero h1 {
  font-family: var(--hs); font-weight: 800;
  font-size: clamp(38px, 4.2vw, 60px);
  color: #fff; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 18px;
}
.sl-page-hero h1 em { font-style: normal; color: var(--red); }
.sl-page-hero-sub {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 600px;
}
.sl-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* ── HOMEPAGE HERO ── */
.sl-hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
/* Mouse-tracking gradient orb — filled by JS */
.sl-hero-glow {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background: radial-gradient(
    600px circle at 50% 50%,
    rgba(200,32,30,0.07) 0%,
    rgba(99,40,180,0.04) 35%,
    transparent 70%
  );
  transition: background 0.08s linear;
  will-change: background;
}
.sl-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  animation: sl-grid-drift 18s linear infinite;
}
@keyframes sl-grid-drift {
  0%   { background-position: 0px 0px; }
  100% { background-position: 80px 80px; }
}
.sl-hero-slash {
  position: absolute; right: -60px; top: -80px; width: 520px; height: 110vh;
  background: linear-gradient(180deg, rgba(200,32,30,0.14) 0%, rgba(200,32,30,0.03) 60%, transparent 100%);
  transform: rotate(-12deg); transform-origin: top right; pointer-events: none;
  z-index: 1;
}
.sl-hero-slash2 {
  position: absolute; right: 60px; top: -80px; width: 3px; height: 110vh;
  background: linear-gradient(180deg, var(--red) 0%, rgba(200,32,30,0.2) 50%, transparent 100%);
  transform: rotate(-12deg); transform-origin: top right; pointer-events: none;
  z-index: 1;
}
.sl-hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 520px;
  gap: 80px; align-items: center; width: 100%; position: relative; z-index: 2;
}
.sl-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; color: var(--red);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 28px;
}
.sl-hero-tag::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--red); }
.sl-hero h1 {
  font-family: var(--hs); font-weight: 800;
  font-size: clamp(52px, 5.5vw, 80px);
  color: #fff; line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 28px;
}
.sl-hero h1 em { font-style: normal; color: var(--red); }
.sl-hero-sub {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 520px; margin-bottom: 44px;
}

/* ── SLIDER PANEL (hero right) ── */
.sl-slider-panel {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark);
  border-radius: 12px; overflow: hidden;
}
.sl-slider-inner { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.sl-slides { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.645,0.045,0.355,1); }
.sl-slide {
  flex: 0 0 100%; height: 100%;
  background: var(--navy-3);
  display: flex; align-items: center; justify-content: center; position: relative;
  overflow: hidden;
}
.sl-slide img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.sl-slide-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 32px 20px 16px;
}
.sl-slide-caption { font-family: var(--hs); font-size: 13px; font-weight: 600; color: #fff; }
.sl-slide-subcaption { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.sl-slider-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-top: 1px solid var(--border-dark);
}
.sl-slider-dots { display: flex; gap: 6px; }
.sl-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.25); cursor: pointer; border: none; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.sl-dot.active { background: var(--red); transform: scale(1.3); }
.sl-slider-btns { display: flex; gap: 6px; }
.sl-slider-btn {
  width: 30px; height: 30px; border-radius: var(--radius);
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark);
  color: rgba(255,255,255,0.7); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.sl-slider-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ── STRIP (Smart / Secure / Simple) — Glassmorphism ── */
/* ── Unified dark block wrapping strip + products ── */
.sl-dark-block {
  background: #0d1117;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}
/* Single shared glow blobs for the whole block */
.sl-dark-block::before {
  content: '';
  position: absolute; top: -60px; left: 10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,32,30,0.09) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.sl-dark-block::after {
  content: '';
  position: absolute; bottom: -80px; right: 10%; width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(80,40,160,0.06) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
/* Thin divider between strip and showcase */
.sl-dark-block-divider {
  max-width: 1280px; margin: 0 auto;
  height: 1px;
  background: rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.sl-dark-block-inner {
  position: relative; z-index: 1;
}

.sl-strip {
  background: transparent;
  border-bottom: none;
  padding: 72px 40px 48px;
  position: relative;
  overflow: visible;
}
.sl-strip::before, .sl-strip::after { display: none; }
.sl-strip-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}
.sl-strip-col {
  padding: 40px 36px 36px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.sl-strip-col:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,32,30,0.4);
  transform: translateY(-3px);
}
/* Removed the old ::after red top-bar — replaced by border-color change on hover */
.sl-strip-col::after { display: none; }

/* Glass icon circle */
.sl-strip-head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.sl-strip-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: background 0.3s, box-shadow 0.3s;
}
.sl-strip-col:hover .sl-strip-icon {
  background: rgba(200,32,30,0.18);
  border-color: rgba(200,32,30,0.35);
  box-shadow: 0 4px 20px rgba(200,32,30,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.sl-strip-icon svg { width: 24px; height: 24px; }

/* Label: white on dark */
.sl-strip-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 19px;
  color: #ffffff; letter-spacing: -0.01em;
}

/* Body: light text, no bold styling */
.sl-strip-body {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
/* Strip body: strip out all bold styling — everything same weight */
.sl-strip-body strong,
.sl-strip-body b { font-weight: 400; color: rgba(255,255,255,0.55); }

/* ── SECTION COMMONS ── */
.sl-sec { padding: 96px 40px; }
.sl-sec-inner { max-width: 1280px; margin: 0 auto; }
.sl-sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; color: var(--red);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px;
}
.sl-sec-tag::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--red); }
.sl-sec-h {
  font-family: var(--hs); font-weight: 800;
  font-size: clamp(28px, 3vw, 44px); color: var(--text);
  letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 20px;
}
.sl-sec-h.light { color: #fff; }
.sl-sec-p { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 640px; }
.sl-sec-p.light { color: rgba(255,255,255,0.6); }
.sl-divider { width: 40px; height: 2px; background: var(--red); margin-bottom: 28px; }
.sl-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sl-two-col.center { align-items: center; }
.sl-three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ── BUTTONS ── */
.sl-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  font-family: var(--hb); font-size: 14px; font-weight: 500;
  padding: 14px 28px; border-radius: var(--radius);
  text-decoration: none; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.sl-btn-primary:hover { background: var(--red-hover); color: #fff; transform: translateY(-1px); }
.sl-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.75);
  font-family: var(--hb); font-size: 14px; font-weight: 400;
  padding: 14px 28px; border-radius: var(--radius);
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.02em; transition: border-color 0.2s, color 0.2s;
}
.sl-btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.sl-btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--red);
  font-family: var(--hb); font-size: 14px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius);
  text-decoration: none; letter-spacing: 0.02em;
  transition: transform 0.15s, box-shadow 0.2s;
}
.sl-btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); color: var(--red); }
.sl-btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  font-family: var(--hb); font-size: 14px; font-weight: 400;
  padding: 13px 26px; border-radius: var(--radius);
  text-decoration: none; border: 1px solid rgba(255,255,255,0.4);
  letter-spacing: 0.02em; transition: border-color 0.2s, background 0.2s;
}
.sl-btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
.sl-btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── WHY SECTION ── */
.sl-why-sec { background: var(--off); }
.sl-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sl-why-body p { font-size: 14.5px; font-weight: 300; color: #4b5563; line-height: 1.8; margin-bottom: 14px; }
.sl-why-body p strong { color: var(--text); font-weight: 600; }
.sl-why-callout {
  font-family: var(--hs); font-size: 16px; font-weight: 700;
  color: var(--red); border-left: 2px solid var(--red);
  padding-left: 14px; margin: 6px 0 14px;
}
.sl-why-features { display: flex; flex-direction: column; gap: 0; }
.sl-why-feat {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 16px;
  border-bottom: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin: 0 -16px;
  cursor: default;
  transition:
    background 0.22s ease,
    transform   0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow  0.25s ease,
    border-color 0.22s ease;
}
.sl-why-feat:first-child { padding-top: 20px; }
.sl-why-feat:last-child  { border-bottom: none; padding-bottom: 20px; }
.sl-why-feat:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  border-bottom-color: transparent;
  border-radius: var(--radius-lg);
  z-index: 1;
  position: relative;
}
.sl-why-feat:hover .sl-why-feat-num {
  border-color: var(--red);
  color: var(--red);
  background: rgba(200,32,30,0.04);
}
.sl-why-feat:hover .sl-why-feat-body h4 {
  color: var(--red);
}
.sl-why-feat-num {
  flex-shrink: 0; width: 36px; height: 36px;
  border: 1.5px solid var(--border-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--hs); font-size: 12px; font-weight: 700; color: var(--muted); margin-top: 2px;
  transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}
.sl-why-feat-body h4 {
  font-family: var(--hs); font-weight: 700; font-size: 15px;
  color: var(--text); margin-bottom: 5px; letter-spacing: -0.01em;
  transition: color 0.22s ease;
}
.sl-why-feat-body p { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.65; }

/* ── DARK SECTION ── */
.sl-dark-sec { background: var(--navy); padding: 96px 40px; }
.sl-dark-inner { max-width: 1280px; margin: 0 auto; }

/* ── SPEC GRID ── */
.sl-spec-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: var(--border-light);
  border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 56px;
}
.sl-spec-item { background: var(--white); padding: 28px 24px; }
.sl-spec-label { font-size: 11px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.sl-spec-val { font-family: var(--hs); font-weight: 700; font-size: 26px; color: var(--text); letter-spacing: -0.01em; }
.sl-spec-val small { font-family: var(--hb); font-size: 13px; font-weight: 300; color: var(--muted); }

/* ── FEATURE LIST ── */
.sl-feat-list { display: flex; flex-direction: column; }
.sl-feat-item { display: flex; align-items: flex-start; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border-light); }
.sl-feat-item:first-child { padding-top: 0; }
.sl-feat-item:last-child { border-bottom: none; padding-bottom: 0; }
.sl-feat-num { flex-shrink: 0; width: 36px; height: 36px; border: 1.5px solid var(--border-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-family: var(--hs); font-size: 12px; font-weight: 700; color: var(--muted); margin-top: 2px; }
.sl-feat-body h4 { font-family: var(--hs); font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 5px; letter-spacing: -0.01em; }
.sl-feat-body p { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.65; }
.sl-feat-body p strong { color: var(--text); font-weight: 600; }

/* ── CARD GRID ── */
.sl-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.sl-card {
  background: var(--off); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sl-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.sl-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.sl-card:hover::before { transform: scaleX(1); }
.sl-card-num { font-family: var(--hs); font-weight: 800; font-size: 52px; color: rgba(200,32,30,0.07); line-height: 1; margin-bottom: 8px; }
.sl-card-title { font-family: var(--hs); font-weight: 700; font-size: 17px; color: var(--text); letter-spacing: -0.01em; margin-bottom: 10px; }
.sl-card-body { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; }
.sl-dark-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); padding: 32px 28px; transition: border-color 0.2s; }
.sl-dark-card:hover { border-color: rgba(200,32,30,0.3); }
.sl-dark-card-icon { width: 44px; height: 44px; background: var(--red-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.sl-dark-card-icon svg { width: 22px; height: 22px; }
.sl-dark-card h4 { font-family: var(--hs); font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 8px; }
.sl-dark-card p { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── PRODUCT IMAGE ── */
.sl-product-img { border-radius: var(--radius-lg); overflow: hidden; background: var(--off); border: 1px solid var(--border-light); }
.sl-product-img img { width: 100%; height: auto; object-fit: contain; padding: 24px; }
.sl-product-img.dark { background: var(--navy-3); border-color: var(--border-dark); }
.sl-product-img.dark img { mix-blend-mode: luminosity; opacity: 0.9; }

/* ── CHECK LIST ── */
.sl-check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sl-check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14.5px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.5;
}
.sl-check-list li::before {
  content: ''; display: block; flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px;
  background: var(--red-dim); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10.5l4 4 8-8' stroke='%23c8201e' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.sl-check-list li strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.sl-check-list.dark li { color: var(--muted); }
.sl-check-list.dark li::before { background-color: rgba(200,32,30,0.06); }
.sl-check-list.dark li strong { color: var(--text); }

/* ── WHO NEEDS / INDUSTRY IMAGES ── */
.sl-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sl-who-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.sl-who-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sl-who-list li { font-size: 13.5px; font-weight: 300; color: var(--muted); padding-left: 16px; position: relative; line-height: 1.5; }
.sl-who-list li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-size: 10px; top: 3px; }
.sl-who-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-size: 13px; font-weight: 500;
  color: var(--red);
  cursor: default;
}
.sl-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.sl-photo img { width: 100%; height: 100%; object-fit: cover; }
.sl-photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 48px 24px 20px;
  font-family: var(--hs); font-weight: 700; font-size: 20px;
  color: #fff; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── GALLERY GRID ── */
.sl-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.sl-gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; background: var(--off); }
.sl-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.sl-gallery-item:hover img { transform: scale(1.04); }

/* ── BENEFITS ── */
.sl-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sl-benefits-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--navy-3); border: 1px solid var(--border-dark); }
.sl-benefits-media img { width: 100%; height: 100%; object-fit: cover; opacity: 1 !important; transform: none !important; }
.sl-benefits-intro { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 28px; }
.sl-benefits-intro strong { color: #fff; font-weight: 500; }

/* ── CTA BAND ── */
.sl-cta-band { background: var(--red); padding: 72px 40px; }
.sl-cta-band-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.sl-cta-band h2 { font-family: var(--hs); font-weight: 800; font-size: clamp(22px, 2.8vw, 36px); color: #fff; letter-spacing: -0.02em; line-height: 1.1; }
.sl-cta-band p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.8); margin-top: 8px; max-width: 500px; }

/* ── CONTACT ── */
.sl-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sl-contact-detail-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.sl-c-detail { display: flex; align-items: flex-start; gap: 16px; }
.sl-c-detail-icon { width: 42px; height: 42px; border: 1px solid var(--border-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sl-c-detail-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sl-c-detail-label { font-size: 11px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.sl-c-detail-val { font-size: 15px; font-weight: 300; color: var(--text); }
.sl-c-detail-val a { color: var(--text); text-decoration: none; }
.sl-c-detail-val a:hover { color: var(--red); }
.sl-contact-form-box { background: var(--off); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 44px 40px; }
.sl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sl-form-group { margin-bottom: 20px; }
.sl-form-group label { display: block; font-size: 11px; font-weight: 600; color: var(--text); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 7px; }
.sl-form-group input, .sl-form-group select, .sl-form-group textarea {
  width: 100%; background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 12px 14px;
  font-family: var(--hb); font-size: 15px; font-weight: 300; color: var(--text);
  outline: none; transition: border-color 0.2s; appearance: none; -webkit-appearance: none;
}
.sl-form-group input:focus, .sl-form-group select:focus, .sl-form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,32,30,0.08);
}
.sl-form-group textarea { resize: vertical; min-height: 110px; }

/* ── FOOTER ── */
.sl-footer { background: var(--navy-2); padding: 72px 40px 32px; }
.sl-footer-inner { max-width: 1280px; margin: 0 auto; }
.sl-footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 64px; padding-bottom: 52px; border-bottom: 1px solid var(--border-dark); margin-bottom: 28px; }
.sl-footer-logo { margin-bottom: 16px; }
.sl-footer-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.sl-footer-about { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.sl-footer-addr { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 2; }
.sl-footer-addr a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.sl-footer-addr a:hover { color: #fff; }
.sl-footer-col-h { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.sl-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sl-footer-links a {
  font-size: 13.5px; font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: inline-block;
  transition:
    color       0.22s ease,
    font-weight 0.22s ease,
    transform   0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-footer-links a:hover {
  color: var(--red);
  font-weight: 600;
  transform: translateX(6px);
}
.sl-footer-map { width: 100%; aspect-ratio: 3/2; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-dark); }
.sl-footer-map svg, .sl-footer-map img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sl-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.sl-footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.25); }
.sl-footer-socials { display: flex; gap: 8px; }
.sl-footer-social { width: 32px; height: 32px; border: 1px solid var(--border-dark); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 12px; font-family: var(--hs); font-weight: 600; text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.sl-footer-social:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ── ANIMATIONS ── */
@keyframes sl-fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.sl-hero-tag  { animation: sl-fadeUp 0.5s 0.1s both; }
.sl-hero h1   { animation: sl-fadeUp 0.6s 0.2s both; }
.sl-hero-sub  { animation: sl-fadeUp 0.6s 0.35s both; }
.sl-hero-btns { animation: sl-fadeUp 0.6s 0.45s both; }
.sl-slider-panel { animation: sl-fadeUp 0.7s 0.3s both; }
.sl-page-tag, .sl-page-hero h1, .sl-page-hero-sub { animation: sl-fadeUp 0.6s both; }
.sl-page-hero h1 { animation-delay: 0.12s; }
.sl-page-hero-sub { animation-delay: 0.24s; }

.sl-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.sl-reveal.visible { opacity: 1; transform: none; }
.sl-reveal-1 { transition-delay: 0.1s; }
.sl-reveal-2 { transition-delay: 0.2s; }
.sl-reveal-3 { transition-delay: 0.3s; }

/* ── Admin bar offset ── */
.admin-bar .sl-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .sl-nav { top: 46px; } }

/* ── Logo: show exactly as uploaded in nav ── */
.sl-nav .sl-logo img {
  height: 36px; width: auto; display: block;
  filter: none;  /* no invert — show the real logo */
}
/* Footer: white filter on dark bg */
.sl-footer .sl-footer-logo img {
  height: 32px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ── Corporate font refinements (Inter) ── */
/* Tighter tracking, stronger weight hierarchy */
.sl-hero h1,
.sl-page-hero h1,
.sl-sec-h,
.ks-left h1, .ks-right h2,
.tr-left h1, .tr-right h2,
.st-info h1,
.ks-security h2 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.03em;
  font-weight: 800;
}
/* Nav links: Inter medium */
.sl-nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}
/* Body text: Inter regular */
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
/* Spec labels, tags, badges */
.sl-sec-tag, .sl-page-tag, .sl-hero-tag,
.tr-spec-label, .ks-spec-label,
.sl-spec-label, .sl-card-title,
.sl-why-feat-body h4, .sl-feat-body h4,
.sl-dark-card h4,
.sl-footer-col-h {
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}
/* Footer brand name */
.sl-footer-logo .nt,
.nav-logo-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
/* Buttons */
.sl-btn-primary, .sl-btn-ghost, .sl-btn-white, .sl-btn-outline-white,
.st-cta-btn {
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}

/* ── Who Needs: Industry Image Slider ── */
.sl-who-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}
.sl-who-slides {
  position: relative;
  width: 100%; height: 100%;
}
.sl-who-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.sl-who-slide.active {
  opacity: 1;
  pointer-events: all;
}
.sl-who-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  /* Never let parent reveal animations hide slide images */
  opacity: 1 !important;
  transform: none;
}
/* Override: the active slide itself controls opacity, not parent reveal */
.sl-who-slide {
  /* keep above */ 
}
.sl-who-slider .sl-reveal,
.sl-who-slider img { opacity: 1 !important; }
/* Gradient overlay so tag is always readable */
.sl-who-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
}
/* Red brand tag — bottom left */
.sl-who-slide-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 2;
  display: inline-flex; align-items: center;
  background: var(--red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(200,32,30,0.4);
  backdrop-filter: blur(4px);
}
/* Dot navigation */
.sl-who-dots {
  position: absolute;
  bottom: 18px; right: 18px;
  z-index: 3;
  display: flex; align-items: center; gap: 6px;
}
.sl-who-dot {
  width: 8px; height: 8px;
  border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.4);
  transition: background 0.2s, transform 0.2s;
}
.sl-who-dot.active {
  background: var(--red);
  transform: scale(1.3);
  box-shadow: 0 0 6px rgba(200,32,30,0.6);
}
.sl-who-dot:hover:not(.active) { background: rgba(255,255,255,0.7); }

/* ── Who Slider: Ken Burns pan+zoom on active slide ── */
@keyframes sl-kenburns-1 {
  0%   { transform: scale(1.0) translate(0%, 0%); }
  100% { transform: scale(1.12) translate(-2%, -1.5%); }
}
@keyframes sl-kenburns-2 {
  0%   { transform: scale(1.08) translate(-1.5%, 0%); }
  100% { transform: scale(1.0)  translate(1.5%, 1%); }
}
@keyframes sl-kenburns-3 {
  0%   { transform: scale(1.0) translate(1%, -1%); }
  100% { transform: scale(1.1) translate(-1%, 1.5%); }
}
/* Apply Ken Burns to the img inside an active slide */
.sl-who-slide.active img {
  animation: sl-kenburns-1 6s ease-in-out forwards;
  transform-origin: center center;
}
/* Alternate animation directions per slide index for variety */
.sl-who-slide:nth-child(2).active img { animation-name: sl-kenburns-2; }
.sl-who-slide:nth-child(3).active img { animation-name: sl-kenburns-3; }
.sl-who-slide:nth-child(4).active img { animation-name: sl-kenburns-1; animation-direction: alternate; }
.sl-who-slide:nth-child(5).active img { animation-name: sl-kenburns-2; animation-direction: alternate; }
.sl-who-slide:nth-child(6).active img { animation-name: sl-kenburns-3; }
/* Reset animation when slide becomes inactive so it re-triggers next time */
.sl-who-slide img {
  will-change: transform;
  transition: none;
}

/* ── Who section: subtle parallax container ── */
#who {
  overflow: hidden;
  position: relative;
}
.sl-who-grid {
  will-change: transform;
}

/* ── Scroll reveal: enhanced stagger for who section ── */
#who .sl-reveal {
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
              transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
#who .sl-reveal-1 { transition-delay: 0.18s; }

/* ═══════════════════════════════════════════════════════
   SITE-WIDE SCROLL EFFECTS
═══════════════════════════════════════════════════════ */

/* ── Scroll progress bar ── */
#sl-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, #ff6b6b 100%);
  z-index: 9999;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(200,32,30,0.6);
}

/* ── Base reveal state — everything starts hidden ── */
.sl-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.sl-reveal-1 { transition-delay: 0.12s; }
.sl-reveal-2 { transition-delay: 0.24s; }
.sl-reveal-3 { transition-delay: 0.36s; }

/* Slide-in from left */
.sl-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity  0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Slide-in from right */
.sl-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity  0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scale up */
.sl-reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity  0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── Hero parallax ── */
.sl-hero {
  background-attachment: fixed;
  will-change: transform;
}
.sl-hero-slash,
.sl-hero-slash2 {
  will-change: transform;
}

/* ── Section separators: animated entrance line ── */
.sl-divider {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.visible .sl-divider,
.sl-reveal.visible .sl-divider {
  transform: scaleX(1);
}
/* Also trigger when parent becomes visible */
.sl-sec-h + .sl-divider,
.sl-why-left .sl-divider {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

/* ── Strip cards: staggered pop-in ── */
.sl-strip-col {
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-strip-col.sl-animate-ready {
  opacity: 0;
  transform: translateY(28px);
}
.sl-strip-col.sl-animate-ready.visible {
  opacity: 1;
  transform: translateY(0);
}
.sl-strip-col:nth-child(1) { transition-delay: 0.05s; }
.sl-strip-col:nth-child(2) { transition-delay: 0.18s; }
.sl-strip-col:nth-child(3) { transition-delay: 0.31s; }

/* ── Feature/why items: slide in from left ── */
.sl-why-feat {
  opacity: 0;
  transform: translateX(-20px) translateY(0px);
}
.sl-why-feat.visible {
  opacity: 1;
  transform: translateX(0) translateY(0px);
}
/* hover overrides the translateY part while keeping opacity 1 */
.sl-why-feat.visible:hover {
  transform: translateX(0) translateY(-3px);
}
.sl-why-feat:nth-child(1) { transition-delay: 0.05s; }
.sl-why-feat:nth-child(2) { transition-delay: 0.15s; }
.sl-why-feat:nth-child(3) { transition-delay: 0.25s; }
.sl-why-feat:nth-child(4) { transition-delay: 0.35s; }

/* ── Cards: pop up in sequence ── */
.sl-card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s,
    transform 0.25s;
}
.sl-card.visible { opacity: 1; transform: translateY(0); }
.sl-card:nth-child(1) { transition-delay: 0.05s; }
.sl-card:nth-child(2) { transition-delay: 0.15s; }
.sl-card:nth-child(3) { transition-delay: 0.25s; }
.sl-card:nth-child(4) { transition-delay: 0.35s; }
.sl-card:nth-child(5) { transition-delay: 0.40s; }
.sl-card:nth-child(6) { transition-delay: 0.45s; }

/* ── Spec grid items ── */
.sl-spec-item {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity  0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-spec-item.visible { opacity: 1; transform: translateY(0); }
.sl-spec-item:nth-child(1) { transition-delay: 0.04s; }
.sl-spec-item:nth-child(2) { transition-delay: 0.10s; }
.sl-spec-item:nth-child(3) { transition-delay: 0.16s; }
.sl-spec-item:nth-child(4) { transition-delay: 0.22s; }
.sl-spec-item:nth-child(5) { transition-delay: 0.28s; }
.sl-spec-item:nth-child(6) { transition-delay: 0.34s; }

/* ── Check list items ── */
.sl-check-list li {
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity  0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-check-list li.visible { opacity: 1; transform: translateX(0); }
.sl-check-list li:nth-child(1) { transition-delay: 0.05s; }
.sl-check-list li:nth-child(2) { transition-delay: 0.12s; }
.sl-check-list li:nth-child(3) { transition-delay: 0.19s; }
.sl-check-list li:nth-child(4) { transition-delay: 0.26s; }
.sl-check-list li:nth-child(5) { transition-delay: 0.33s; }
.sl-check-list li:nth-child(6) { transition-delay: 0.40s; }

/* ── Dark cards ── */
.sl-dark-card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity  0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s;
}
.sl-dark-card.visible { opacity: 1; transform: translateY(0); }
.sl-dark-card:nth-child(1) { transition-delay: 0.04s; }
.sl-dark-card:nth-child(2) { transition-delay: 0.12s; }
.sl-dark-card:nth-child(3) { transition-delay: 0.20s; }
.sl-dark-card:nth-child(4) { transition-delay: 0.28s; }
.sl-dark-card:nth-child(5) { transition-delay: 0.36s; }
.sl-dark-card:nth-child(6) { transition-delay: 0.44s; }

/* ── Feat list items ── */
.sl-feat-item {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity  0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-feat-item.visible { opacity: 1; transform: translateX(0); }
.sl-feat-item:nth-child(1) { transition-delay: 0.04s; }
.sl-feat-item:nth-child(2) { transition-delay: 0.12s; }
.sl-feat-item:nth-child(3) { transition-delay: 0.20s; }
.sl-feat-item:nth-child(4) { transition-delay: 0.28s; }
.sl-feat-item:nth-child(5) { transition-delay: 0.36s; }

/* ── CTA band: scale-in ── */
.sl-cta-band {
  overflow: hidden;
  position: relative;
}
.sl-cta-band-inner {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity  0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-cta-band-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Product image boxes ── */
.sl-product-img {
  opacity: 0;
  transform: scale(0.96) translateY(16px);
  transition:
    opacity  0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-product-img.visible { opacity: 1; transform: scale(1) translateY(0); }
/* Images inside always visible once container is */
.sl-product-img img { opacity: 1 !important; transform: none !important; }

/* ── Page hero heading animation ── */
.sl-page-tag   { animation: sl-fadeUp 0.5s 0.05s both; }
.sl-page-hero h1 { animation: sl-fadeUp 0.65s 0.18s both; }
.sl-page-hero-sub { animation: sl-fadeUp 0.65s 0.32s both; }
.sl-hero-btns  { animation: sl-fadeUp 0.65s 0.44s both; }
@keyframes sl-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Smooth page transitions ── */
html { scroll-behavior: smooth; }

/* ── Benefits: image hover ── */
.sl-benefits-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: default;
}
.sl-benefits-media::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  pointer-events: none;
  z-index: 2;
}
.sl-benefits-media:hover::after {
  border-color: rgba(200,32,30,0.55);
  box-shadow: inset 0 0 32px rgba(200,32,30,0.12), 0 0 40px rgba(200,32,30,0.15);
}
.sl-benefits-media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform: scale(1);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.sl-benefits-media:hover img {
  transform: scale(1.06);
}

/* ── Benefits: bullet point hover ── */
.sl-check-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.sl-check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14.5px; font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: default;
  transition:
    color       0.22s ease,
    transform   0.25s cubic-bezier(0.22, 1, 0.36, 1),
    background  0.22s ease,
    border-color 0.22s ease;
}
.sl-check-list li:hover {
  color: rgba(255,255,255,0.95);
  transform: translateX(6px);
  background: rgba(255,255,255,0.04);
  border-color: rgba(200,32,30,0.25);
}
/* Checkmark icon */
.sl-check-list li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background-color: rgba(200,32,30,0.15);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10.5l4 4 8-8' stroke='%23c8201e' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: background-color 0.22s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-check-list li:hover::before {
  background-color: rgba(200,32,30,0.35);
  transform: scale(1.15);
}

/* Dark list variant (used in other sections on light bg) */
.sl-check-list.dark li { color: var(--muted); }
.sl-check-list.dark li::before { background-color: rgba(200,32,30,0.06); }
.sl-check-list.dark li:hover { color: var(--text); background: rgba(200,32,30,0.04); border-color: rgba(200,32,30,0.15); }

/* ═══════════════════════════════════════════════════════
   PRODUCTS SHOWCASE SECTION
═══════════════════════════════════════════════════════ */
/* ── Grid ── */
.sl-ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Light block (showcase + why) — white background ── */
.sl-light-block {
  background: var(--white);
}

.sl-products-showcase {
  background: transparent;
  padding: 80px 40px 72px;
  position: relative;
  overflow: visible;
}
.sl-products-showcase::before,
.sl-products-showcase::after { display: none; }
.sl-ps-inner {
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 2;
}
.sl-ps-heading {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--text); text-align: center;
  letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 52px;
}

/* ── Glass card — light bg version ── */
.sl-ps-card {
  position: relative; overflow: hidden;
  border-radius: 16px;
  background: var(--off);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition:
    border-color  0.3s ease,
    transform     0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow    0.3s ease;
}
.sl-ps-card:hover {
  border-color: rgba(200,32,30,0.35);
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.10),
    0 0 0 1px rgba(200,32,30,0.12);
}
/* Glow on light bg is more subtle */
.sl-ps-glow {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background: radial-gradient(350px circle at 50% 30%,
    rgba(200,32,30,0.05) 0%,
    transparent 65%);
  transition: background 0.06s linear;
  will-change: background;
}

/* Shimmer top edge */
.sl-ps-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; z-index: 2;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--red) 50%,
    transparent 100%);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-ps-card:hover::before { transform: scaleX(1); }

/* Image wrap on light bg */
.sl-ps-img-wrap {
  position: relative; z-index: 1;
  overflow: hidden;
  height: 240px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.sl-ps-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; display: block;
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.sl-ps-card:hover .sl-ps-img { transform: scale(1.08); }

/* Card body on light bg */
.sl-ps-body {
  position: relative; z-index: 1;
  padding: 24px 28px 28px;
}
.sl-ps-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600;
  color: var(--red); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 10px;
}
.sl-ps-tag::before {
  content: ''; display: block;
  width: 16px; height: 1.5px;
  background: var(--red);
}
.sl-ps-title {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 19px; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 4px;
  transition: color 0.2s ease;
}
.sl-ps-card:hover .sl-ps-title { color: var(--red); }
.sl-ps-sub {
  font-size: 11px; font-weight: 500;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.sl-ps-desc {
  font-size: 13.5px; font-weight: 300;
  color: var(--muted);
  line-height: 1.7; margin-bottom: 20px;
}
/* Learn More button on light bg */
.sl-ps-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--red);
  background: rgba(200,32,30,0.07);
  border: 1px solid rgba(200,32,30,0.2);
  padding: 9px 18px; border-radius: 6px;
  text-decoration: none;
  transition:
    background  0.22s ease,
    border-color 0.22s ease,
    color        0.22s ease,
    transform    0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow   0.22s ease;
}
.sl-ps-btn svg { transition: transform 0.22s cubic-bezier(0.22,1,0.36,1); }
.sl-ps-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(200,32,30,0.25);
}
.sl-ps-btn:hover svg { transform: translateX(4px); }

/* ── Hero grid: shimmer sweep overlay ── */
.sl-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 40%,
    rgba(255,255,255,0.018) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 200%;
  animation: sl-grid-shimmer 8s ease-in-out infinite;
}
@keyframes sl-grid-shimmer {
  0%   { background-position: 200% 200%; }
  50%  { background-position:  0%    0%; }
  100% { background-position: 200% 200%; }
}

/* ── Footer contact items (phone + email with icons) ── */
.sl-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.sl-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition:
    color        0.22s ease,
    background   0.22s ease,
    border-color 0.22s ease,
    transform    0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-footer-contact-item:hover {
  color: var(--red);
  background: rgba(200,32,30,0.07);
  border-color: rgba(200,32,30,0.2);
  transform: translateX(5px);
}
.sl-footer-contact-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  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;
  transition: background 0.22s, border-color 0.22s;
}
.sl-footer-contact-item:hover .sl-footer-contact-icon {
  background: rgba(200,32,30,0.15);
  border-color: rgba(200,32,30,0.3);
}
.sl-footer-contact-icon svg {
  width: 15px; height: 15px;
  color: rgba(255,255,255,0.55);
  transition: color 0.22s;
}
.sl-footer-contact-item:hover .sl-footer-contact-icon svg {
  color: var(--red);
}
.sl-footer-contact-text {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color 0.22s, font-weight 0.22s;
}
.sl-footer-contact-item:hover .sl-footer-contact-text {
  color: var(--red);
  font-weight: 500;
}

/* ── Footer: phone + email contact items ── */
.sl-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sl-footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  transition:
    color      0.22s ease,
    transform  0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-footer-contact-item:hover {
  color: var(--red);
  transform: translateX(5px);
}
.sl-footer-contact-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition:
    background   0.22s ease,
    border-color 0.22s ease;
}
.sl-footer-contact-item:hover .sl-footer-contact-icon {
  background: rgba(200,32,30,0.15);
  border-color: rgba(200,32,30,0.3);
}
.sl-footer-contact-icon svg {
  width: 14px; height: 14px;
  transition: stroke 0.22s ease;
}
.sl-footer-contact-item:hover .sl-footer-contact-icon svg {
  stroke: var(--red);
}
.sl-footer-contact-text {
  font-size: 13.5px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ── Footer: address with icon ── */
.sl-footer-addr-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 2;
}
.sl-footer-addr-icon {
  flex-shrink: 0;
  margin-top: 3px;
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.sl-footer-addr-icon svg {
  width: 14px; height: 14px;
  stroke: rgba(200,32,30,0.85);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE & TABLET
   Breakpoints: 1024px (tablet), 768px (mobile), 480px (small)
═══════════════════════════════════════════════════════════════ */

/* ── TABLET (≤1024px) ─────────────────────────────────────── */
@media (max-width: 1024px) {

  /* Nav */
  .sl-nav-inner { padding: 0 24px; }
  .sl-nav-links a { padding: 8px 10px; font-size: 12px; }

  /* Hero */
  .sl-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 48px;
  }
  .sl-slider-panel { max-width: 560px; }
  .sl-hero h1 { font-size: clamp(44px, 7vw, 70px); }

  /* Strip */
  .sl-strip { padding: 60px 24px 72px; }
  .sl-strip-inner { gap: 16px; }
  .sl-strip-col { padding: 28px 24px 24px; }

  /* Showcase cards */
  .sl-ps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .sl-products-showcase { padding: 60px 24px 72px; }

  /* Two-col layouts */
  .sl-two-col { gap: 48px; }
  .sl-why-grid { gap: 48px; }
  .sl-benefits-grid { gap: 48px; }
  .sl-who-grid { gap: 48px; }
  .sl-contact-grid { gap: 48px; }

  /* Footer */
  .sl-footer-grid { gap: 40px; }
  .sl-sec { padding: 72px 24px; }
  .sl-dark-sec { padding: 72px 24px; }

  /* Inner page grids */
  .tr-features { grid-template-columns: repeat(2,1fr); }
  .ks-security-grid { grid-template-columns: repeat(3,1fr); }
  .ks-3col { gap: 20px; }
}

/* ── MOBILE (≤768px) ─────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Nav: hamburger ── */
  .sl-nav-inner { padding: 0 20px; }
  .sl-nav-links { display: none; }
  .sl-nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(11,15,26,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0 28px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    z-index: 299;
    gap: 0;
  }
  .sl-nav-links.open li { width: 100%; }
  .sl-nav-links.open a {
    display: block; padding: 14px 28px;
    font-size: 15px; border-radius: 0;
    color: rgba(255,255,255,0.75);
  }
  .sl-nav-links.open a:hover { background: rgba(255,255,255,0.05); }
  .sl-nav-links.open .sl-nav-cta {
    margin: 12px 28px 0;
    border-radius: 6px !important;
    text-align: center;
    display: block;
    width: auto !important;
    box-sizing: border-box;
  }

  /* Hamburger button */
  .sl-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px 6px;
    background: none;
    border: none;
    margin-left: auto;
    -webkit-tap-highlight-color: transparent;
  }
  .sl-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .sl-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .sl-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .sl-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── Hero ── */
  .sl-hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 20px 40px;
    gap: 36px;
  }
  .sl-hero h1 { font-size: clamp(38px, 10vw, 56px); }
  .sl-hero-sub { font-size: 15px; }
  .sl-hero-btns { flex-direction: column; gap: 10px; }
  .sl-btn-primary, .sl-btn-ghost { width: 100%; justify-content: center; }
  .sl-hero-slash, .sl-hero-slash2 { display: none; }

  /* Page hero */
  .sl-page-hero { min-height: 220px; }
  .sl-page-hero-inner { padding: 60px 20px 40px; }
  .sl-page-hero h1 { font-size: clamp(26px, 7vw, 40px); }

  /* ── Strip ── */
  .sl-strip { padding: 48px 20px 60px; }
  .sl-strip-inner { grid-template-columns: 1fr; gap: 16px; }

  /* ── Products showcase ── */
  .sl-products-showcase { padding: 48px 20px 60px; }
  .sl-ps-grid { grid-template-columns: 1fr; gap: 16px; }
  .sl-ps-img-wrap { height: 200px; }

  /* ── Sections ── */
  .sl-sec { padding: 60px 20px; }
  .sl-dark-sec { padding: 60px 20px; }
  .sl-sec-h { font-size: clamp(24px, 6vw, 36px); }

  /* ── Two-col → single col ── */
  .sl-two-col,
  .sl-why-grid,
  .sl-benefits-grid,
  .sl-who-grid,
  .sl-contact-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Who needs: reverse order so image comes first */
  .sl-who-grid { direction: ltr; }
  .sl-who-slider { aspect-ratio: 16/9; }

  /* Benefits: image first */
  .sl-benefits-media { order: -1; }

  /* ── Spec grid ── */
  .sl-spec-grid { grid-template-columns: repeat(2,1fr); }

  /* ── Card grid ── */
  .sl-card-grid { grid-template-columns: 1fr; }

  /* ── CTA band ── */
  .sl-cta-band { padding: 48px 20px; }
  .sl-cta-band-inner { flex-direction: column; gap: 20px; }
  .sl-cta-band-inner .sl-btn-white,
  .sl-cta-band-inner .sl-btn-outline-white { width: 100%; justify-content: center; }

  /* ── Footer ── */
  .sl-footer { padding: 48px 20px 24px; }
  .sl-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .sl-footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* ── Contact form ── */
  .sl-form-row { grid-template-columns: 1fr; gap: 0; }
  .sl-contact-form-box { padding: 28px 20px; }

  /* ── Tracker page ── */
  .tr-page { padding: 88px 20px 0; }
  .tr-top { grid-template-columns: 1fr; gap: 36px; }
  .tr-photo-row { grid-template-columns: repeat(2,1fr); }
  .tr-features { grid-template-columns: 1fr; gap: 0; padding: 0 20px 40px; }
  .tr-cta-bar { padding: 18px 20px; flex-direction: column; gap: 16px; }
  .tr-contact-banner-inner { flex-direction: column; gap: 12px; }

  /* ── Key systems page ── */
  .ks-page { padding: 88px 20px 0; }
  .ks-top { grid-template-columns: 1fr; gap: 36px; }
  .ks-photo-row { grid-template-columns: repeat(2,1fr); }
  .ks-3col { grid-template-columns: 1fr; gap: 16px; }
  .ks-cta-bar { flex-direction: column; gap: 16px; padding: 20px; }
  .ks-security-grid { grid-template-columns: repeat(2,1fr); }
  .ks-security-grid2 { grid-template-columns: 1fr; }
  .ks-contact-banner-inner { flex-direction: column; gap: 12px; }

  /* ── Storage page ── */
  .st-page { padding: 88px 20px 0; }
  .st-top { grid-template-columns: 1fr; gap: 36px; }
  .st-thumbs { grid-template-columns: repeat(5,1fr); }
  .st-main-img-wrap img { height: 220px; }
  .st-contact-banner-inner { flex-direction: column; gap: 12px; }
  .st-tabs { flex-wrap: wrap; }
  .st-tab { font-size: 12px; padding: 8px 12px; }
}

/* ── SMALL MOBILE (≤480px) ─────────────────────────────── */
@media (max-width: 480px) {
  .sl-hero h1 { font-size: 34px; }
  .sl-spec-grid { grid-template-columns: 1fr; }
  .tr-photo-row { grid-template-columns: repeat(2,1fr); }
  .ks-photo-row { grid-template-columns: repeat(2,1fr); }
  .st-thumbs { grid-template-columns: repeat(4,1fr); }
  .sl-who-cols { grid-template-columns: 1fr; }
  .sl-footer-grid { gap: 28px; }
  .sl-ps-heading { font-size: 24px; }
}



/* ── Homepage hero: center-align text on mobile only ── */
@media (max-width: 768px) {
  .sl-hero-content,
  .sl-hero h1,
  .sl-hero-tag,
  .sl-hero-sub {
    text-align: center;
  }
  .sl-hero-tag { justify-content: center; }
  .sl-hero-tag::before { display: none; }
  .sl-hero-btns { justify-content: center; }
}

/* ── Hamburger visibility — definitive rules (must be last) ── */
/* Always hidden on screens wider than 768px */
@media (min-width: 769px) {
  .sl-hamburger { display: none !important; }
}
/* Always visible on 768px and below */
@media (max-width: 768px) {
  .sl-hamburger { display: flex !important; }
}

/* ── Mobile hero text: center align ── */
@media (max-width: 768px) {
  .sl-hero h1,
  .sl-hero-tag,
  .sl-hero-sub,
  .sl-hero-btns {
    text-align: center;
    justify-content: center;
  }
  .sl-hero-tag::before { display: none; }
  .sl-hero-btns { align-items: center; }
}

/* ── Mobile nav layout ── */
@media (max-width: 768px) {
  .sl-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /* Dropdown menu */
  .sl-nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(11,15,26,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    z-index: 299;
    list-style: none;
  }
  .sl-nav-links.open { display: flex !important; }
  .sl-nav-links li { width: 100%; }
  .sl-nav-links a {
    display: block !important;
    padding: 14px 28px !important;
    font-size: 15px !important;
    border-radius: 0 !important;
    color: rgba(255,255,255,0.8) !important;
    background: none !important;
    width: 100%;
  }
  .sl-nav-links .sl-nav-cta {
    margin: 12px 24px 0 !important;
    border-radius: 6px !important;
    text-align: center;
    display: block !important;
    width: auto !important;
  }
}

/* ── Mobile: hero heading one line each word, no line breaks ── */
@media (max-width: 768px) {
  .sl-hero h1 {
    font-size: clamp(28px, 9vw, 44px);
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .sl-hero h1 br { display: none; }
  .sl-hero h1 em { display: inline; }
}
@media (max-width: 400px) {
  .sl-hero h1 { font-size: 8.5vw; }
}

/* ── Mobile: footer center alignment ── */
@media (max-width: 768px) {
  .sl-footer-grid { text-align: center; }
  .sl-footer-logo { justify-content: center; display: flex; }
  .sl-footer-about { text-align: center; }
  .sl-footer-addr-row { justify-content: center; }
  .sl-footer-links { align-items: center; }
  .sl-footer-links a { text-align: center; }
  .sl-footer-contact { align-items: center; }
  .sl-footer-contact-item { justify-content: center; }
  .sl-footer-col-h { text-align: center; }
  .sl-footer-map { max-width: 360px; margin: 0 auto; }
  .sl-footer-bottom { align-items: center; text-align: center; }
}

/* ═══════════════════════════════════════════
   HAMBURGER — DEFINITIVE (overrides all above)
═══════════════════════════════════════════ */

/* Desktop: hide burger, show links normally */
@media (min-width: 769px) {
  .sl-hamburger { display: none !important; }
  .sl-nav-links  { display: flex !important; opacity: 1 !important; pointer-events: all !important; position: static !important; }
}

/* Mobile: show burger, hide links until .open */
@media (max-width: 768px) {
  .sl-hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 8px;
    margin-left: auto;
    -webkit-tap-highlight-color: transparent;
    z-index: 400;
  }
  .sl-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    pointer-events: none;
  }
  .sl-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .sl-hamburger.open span:nth-child(2) { opacity: 0; }
  .sl-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Nav links: hidden by default on mobile */
  .sl-nav-links {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 72px; left: 0; right: 0;
    background: rgba(11,15,26,0.98) !important;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 12px 0 24px !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 399;
    list-style: none !important;
    gap: 0 !important;
    /* Hidden state */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  /* Open state */
  .sl-nav-links.open {
    opacity: 1 !important;
    pointer-events: all !important;
    transform: translateY(0) !important;
  }
  .sl-nav-links li { width: 100%; }
  .sl-nav-links a {
    display: block !important;
    padding: 16px 28px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    -webkit-tap-highlight-color: transparent;
  }
  .sl-nav-links a:active { background: rgba(255,255,255,0.05) !important; }
  .sl-nav-links .sl-nav-cta {
    margin: 8px 20px 0 !important;
    background: var(--red) !important;
    color: #fff !important;
    border-radius: 6px !important;
    text-align: center !important;
    font-weight: 500 !important;
  }
}

/* ── Mobile nav: fully opaque black background ── */
@media (max-width: 768px) {
  .sl-nav-links {
    background: #000 !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
}

/* ── Contact page responsive ── */
@media (max-width: 768px) {
  .sl-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .sl-contact-form-box { padding: 24px 16px; }
  .sl-form-row { grid-template-columns: 1fr; }
  .sl-c-detail-val { font-size: 14px; }
  .sl-page-hero { min-height: 200px; }
  .sl-page-hero-inner { padding: 50px 16px 32px; }
  .sl-page-hero h1 { font-size: clamp(22px, 6vw, 34px); }
  .sl-page-hero-sub { font-size: 13px; }
}

/* ── Contact page: comprehensive mobile ── */
@media (max-width: 768px) {

  /* Hero */
  .sl-page-hero { min-height: auto; padding-bottom: 0; }
  .sl-page-hero-inner { padding: 52px 20px 36px; }
  .sl-page-hero h1 { font-size: clamp(22px, 6.5vw, 36px); margin-bottom: 12px; }
  .sl-page-hero-sub { font-size: 14px; line-height: 1.6; }
  .sl-page-hero-slash, .sl-page-hero-slash2 { display: none; }

  /* Section padding */
  .sl-sec { padding: 48px 20px; }

  /* Two-col → single col */
  .sl-contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Contact info column */
  .sl-contact-detail-list { gap: 16px; margin-bottom: 24px; }
  .sl-c-detail { gap: 12px; }
  .sl-c-detail-icon { width: 36px; height: 36px; flex-shrink: 0; }
  .sl-c-detail-icon svg { width: 16px; height: 16px; }
  .sl-c-detail-label { font-size: 10px; }
  .sl-c-detail-val { font-size: 14px; }

  /* Map */
  .sl-contact-grid > div:first-child > div:last-child { /* map container */
    border-radius: 8px;
    overflow: hidden;
  }
  .sl-contact-grid > div:first-child > div:last-child iframe,
  .sl-contact-grid > div:first-child > div:last-child svg,
  .sl-contact-grid > div:first-child > div:last-child img {
    aspect-ratio: 16/9;
    height: auto;
  }

  /* Form box */
  .sl-contact-form-box { padding: 24px 16px; border-radius: 8px; }
  .sl-contact-form-box h3 { font-size: 18px; margin-bottom: 20px; }

  /* Form fields */
  .sl-form-row { grid-template-columns: 1fr; gap: 0; }
  .sl-form-group { margin-bottom: 16px; }
  .sl-form-group label { font-size: 10px; margin-bottom: 5px; }
  .sl-form-group input,
  .sl-form-group select,
  .sl-form-group textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
    padding: 11px 12px;
  }
  .sl-form-group textarea { min-height: 90px; }

  /* Submit button */
  .sl-contact-form-box .sl-btn-primary {
    font-size: 15px;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .sl-page-hero-inner { padding: 48px 16px 28px; }
  .sl-contact-form-box { padding: 20px 14px; }
}

/* ── Mobile: center hero eyebrow tag only ── */
@media (max-width: 768px) {
  .sl-hero-tag {
    justify-content: center;
    text-align: center;
  }
}

/* ── Mobile: center hero eyebrow tag ── */
@media (max-width: 768px) {
  .sl-hero-tag {
    justify-content: center;
    text-align: center;
    display: flex;
    width: 100%;
  }
}

/* ── Contact form: success state ── */
.sl-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}
.sl-form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  border: 2px solid rgba(16,185,129,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #10b981;
  animation: sl-success-pop 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
.sl-form-success-icon svg { width: 28px; height: 28px; }
@keyframes sl-success-pop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.sl-form-success h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 18px;
  color: var(--text); letter-spacing: -0.01em;
  animation: sl-fadeUp 0.5s 0.15s both;
}
.sl-form-success p {
  font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.6;
  animation: sl-fadeUp 0.5s 0.25s both;
}
