/* ============================================================
   LES LED — Main Stylesheet
   Version: 1.0.0
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--les-font-body);
  color: var(--les-text);
  background: var(--les-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5 { font-family: var(--les-font-heading); font-weight: 700; letter-spacing: -0.02em; margin: 0; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--les-blue-600); text-decoration: none; }
button { font-family: inherit; }

.les-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }
.skip-link:focus { position: absolute; top: 8px; left: 8px; z-index: 999; padding: 10px 16px; background: var(--les-navy-900); color: white; border-radius: 8px; }

/* ---------- RAINBOW UTILITIES ---------- */
.les-rainbow-text {
  background: var(--les-rainbow);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.les-rainbow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--les-rainbow);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.9);
  animation: lesPulse 2s infinite;
  display: inline-block;
}
.les-rainbow-line { height: 3px; background: var(--les-rainbow); border-radius: 3px; }
@keyframes lesPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.2)} }

/* ---------- TOP BAR ---------- */
.les-topbar { background: var(--les-navy-950); color: rgba(255,255,255,0.85); font-size: 12.5px; position: relative; }
.les-topbar::after { content:''; position:absolute; left:0; right:0; bottom:0; height:2px; background: var(--les-rainbow); opacity:0.85; }
.les-topbar-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; padding: 9px 24px; }
.les-topbar-left, .les-topbar-right { display:flex; gap:18px; align-items:center; flex-wrap:wrap; }
.les-topbar a, .les-topbar-item { color: rgba(255,255,255,0.85); text-decoration:none; display: inline-flex; align-items:center; gap:6px; }
.les-topbar a:hover { color:#fff; }
.les-topbar-region { opacity:0.65; }

/* ---------- NAV ---------- */
.les-nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--les-border);
  position: sticky; top: 0; z-index: 100;
}
.les-nav-inner { display:flex; align-items:center; justify-content:space-between; padding: 14px 24px; gap: 20px; }
.les-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.les-logo-text { font-family: var(--les-font-heading); font-weight:800; font-size:22px; letter-spacing:-0.03em; background: var(--les-rainbow); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.les-nav-menu ul, .les-menu-list { list-style:none; margin:0; padding:0; display:flex; gap:26px; }
.les-menu-list li a { color: var(--les-text); font-size: 14px; font-weight:500; text-decoration:none; padding: 6px 0; position:relative; transition: color 0.2s; }
.les-menu-list li a:hover, .les-menu-list li.current-menu-item a { color: var(--les-r-blue); }
.les-menu-list li.current-menu-item a::after { content:''; position:absolute; bottom:-6px; left:0; right:0; height:2px; background: var(--les-rainbow); border-radius:2px; }

.les-cta-btn { display:inline-flex; align-items:center; gap:6px; padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight:600; text-decoration:none; border:none; cursor:pointer; transition: all 0.25s; letter-spacing:-0.01em; }
.les-cta-primary { background: var(--les-navy-900); color: white; position:relative; overflow:hidden; z-index:1; }
.les-cta-primary::before { content:''; position:absolute; inset:0; background: var(--les-rainbow); opacity:0; transition: opacity 0.3s; z-index:-1; }
.les-cta-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(175,82,222,0.35); }
.les-cta-primary:hover::before { opacity: 1; }

.les-mobile-toggle { display:none; background:none; border:none; cursor:pointer; width:36px; height:36px; padding:8px; flex-direction:column; gap:5px; }
.les-mobile-toggle span { display:block; width:20px; height:2px; background: var(--les-navy-900); border-radius:2px; transition: all 0.3s; }
.les-mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.les-mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
.les-mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.les-btn { display:inline-flex; align-items:center; gap:8px; padding: 13px 24px; border-radius: 12px; font-size:14.5px; font-weight:600; text-decoration:none; border:none; cursor:pointer; transition: all 0.25s; letter-spacing:-0.01em; }
.les-btn-primary-rainbow { color: white; background: var(--les-navy-900); position:relative; overflow:hidden; z-index:1; }
.les-btn-primary-rainbow::before { content:''; position:absolute; inset:0; background: var(--les-rainbow); z-index:-1; transition: transform 0.3s; }
.les-btn-primary-rainbow:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(175,82,222,0.45); }
.les-btn-primary-rainbow:hover::before { transform: scale(1.05); }
.les-btn-whatsapp { background: #25D366; color: white; }
.les-btn-whatsapp:hover { background: #1EBE57; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,0.4); }
.les-btn-ghost { background: rgba(255,255,255,0.10); color: white; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(10px); }
.les-btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.les-btn-light { background: #F0F4F9; color: var(--les-navy-900); }
.les-btn-light:hover { background: #E4EAF3; transform: translateY(-2px); }
.les-btn-row { display:flex; gap:12px; flex-wrap:wrap; }
.les-btn-row-center { justify-content:center; }

/* ---------- HERO — Full width video ---------- */
.les-hero { position: relative; min-height: 720px; background: #000; overflow: hidden; color: white; }
.les-hero-video-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.les-hero-overlay {
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg, rgba(5,11,24,0.72) 0%, rgba(5,11,24,0.55) 40%, rgba(5,11,24,0.82) 100%),
    radial-gradient(circle at 20% 30%, rgba(10,132,255,0.30), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(175,82,222,0.28), transparent 50%);
}
.les-hero-grid {
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.les-hero-content { position:relative; z-index:3; padding: 90px 24px 120px; text-align:center; max-width: 1200px; margin: 0 auto; }
.les-hero-badge { display:inline-flex; align-items:center; gap:10px; background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.20); color:white; padding: 8px 18px; border-radius: 100px; font-size: 12.5px; font-weight:600; margin-bottom: 26px; backdrop-filter: blur(10px); }
.les-hero h1 { font-size: 64px; line-height: 1.03; font-weight:800; letter-spacing:-0.035em; margin: 0 auto 24px; max-width: 900px; }
.les-hero-sub { font-size: 19px; color: rgba(255,255,255,0.85); margin: 0 auto 14px; line-height:1.5; max-width: 720px; }
.les-hero-support { font-size: 15px; color: rgba(255,255,255,0.60); margin: 0 auto 36px; max-width: 680px; }
.les-hero-btns { display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 40px; justify-content:center; }
.les-trust-pills { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
.les-trust-pill { background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); padding: 9px 16px; border-radius:100px; font-size:13px; color: rgba(255,255,255,0.9); display:inline-flex; align-items:center; gap:8px; font-weight:500; backdrop-filter: blur(10px); }
.les-trust-pill:nth-child(1) svg { color: #FF3B30; }
.les-trust-pill:nth-child(2) svg { color: #FFCC00; }
.les-trust-pill:nth-child(3) svg { color: #34C759; }
.les-trust-pill:nth-child(4) svg { color: #00D4FF; }
.les-hero-controls { position:absolute; bottom:24px; right:24px; z-index:3; display:flex; align-items:center; gap:10px; background: rgba(0,0,0,0.55); backdrop-filter: blur(10px); padding: 8px 14px; border-radius:100px; color:white; font-size:12px; border:1px solid rgba(255,255,255,0.15); }
.les-live-dot { width:8px; height:8px; border-radius:50%; background:#FF3B30; box-shadow: 0 0 10px #FF3B30; animation: lesPulse 1.4s infinite; }
.les-mute-btn { background: rgba(255,255,255,0.10); border:none; color:white; cursor:pointer; padding:4px 10px; border-radius:6px; font-size:11px; }
.les-mute-btn:hover { background: rgba(255,255,255,0.20); }

/* ---------- SECTIONS ---------- */
.les-section { padding: 90px 0; }
.les-section-center { text-align:center; margin-bottom: 46px; }
.les-eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; margin-bottom:14px; background: var(--les-rainbow); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.les-eyebrow::before { content:''; width:24px; height:3px; background: var(--les-rainbow); border-radius:2px; }
.les-eyebrow-center { justify-content:center; }
.les-section-title { font-family: var(--les-font-heading); font-size: 38px; font-weight:700; letter-spacing:-0.025em; color: var(--les-navy-900); margin-bottom: 14px; line-height: 1.12; }
.les-section-desc { font-size: 16px; color: var(--les-text-muted); max-width: 640px; line-height: 1.6; margin: 0 0 40px; }
.les-section-desc-center { margin: 0 auto 40px; }
.les-section-header-flex { display:flex; justify-content:space-between; align-items:end; gap:40px; margin-bottom:44px; flex-wrap:wrap; }
.les-section-header-flex .les-section-desc { margin-bottom: 0; }
.les-link-rainbow { font-weight:700; font-size:14px; text-decoration:none; background: var(--les-rainbow); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* ---------- PRODUCT GRID ---------- */
.les-products-section { background: white; }
.les-product-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.les-product-card { background:white; border:1px solid var(--les-border); border-radius:18px; overflow:hidden; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); text-decoration:none; color: inherit; display:block; position:relative; }
.les-product-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: var(--les-rainbow); opacity:0; transition: opacity 0.3s; z-index:3; }
.les-product-card:hover::before { opacity:1; }
.les-product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(15,47,110,0.18); }
.les-product-card-img { height: 210px; background-size:cover; background-position:center; position:relative; }
.les-product-card-img::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(8,21,41,0.75)); }
.les-product-card-img-placeholder { background: linear-gradient(135deg, var(--les-navy-900), var(--les-blue-600)); }
.les-product-tag { position:absolute; top:14px; left:14px; background: rgba(255,255,255,0.96); color: var(--les-navy-900); padding:5px 12px; border-radius:100px; font-size:11px; font-weight:700; letter-spacing:0.02em; z-index:2; }
.les-product-card-body { padding:24px; }
.les-product-card h3 { font-size:19px; color: var(--les-navy-900); margin-bottom:8px; font-weight:700; letter-spacing:-0.015em; }
.les-product-card p { font-size:13.5px; color: var(--les-text-muted); line-height:1.55; margin: 0 0 16px; }
.les-arrow { display:inline-flex; align-items:center; gap:6px; font-size:13px; font-weight:700; transition: gap 0.25s; background: var(--les-rainbow); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.les-product-card:hover .les-arrow { gap: 12px; }

/* ---------- WHY LES ---------- */
.les-why-section { background: linear-gradient(180deg, var(--les-bg) 0%, white 100%); }
.les-why-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.les-why-card { background:white; border:1px solid var(--les-border); border-radius:16px; padding:28px; transition: all 0.3s; position:relative; overflow:hidden; }
.les-why-card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background: var(--les-rainbow); opacity:0; transition: opacity 0.3s; }
.les-why-card:hover { transform: translateY(-4px); box-shadow: var(--les-shadow-lg); border-color: transparent; }
.les-why-card:hover::before { opacity:1; }
.les-why-icon { width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; color:white; margin-bottom:18px; }
.les-why-icon svg { width:24px; height:24px; }
.les-why-card-1 .les-why-icon { background: linear-gradient(135deg, #FF3B30, #FF9500); }
.les-why-card-2 .les-why-icon { background: linear-gradient(135deg, #FF9500, #FFCC00); }
.les-why-card-3 .les-why-icon { background: linear-gradient(135deg, #FFCC00, #34C759); }
.les-why-card-4 .les-why-icon { background: linear-gradient(135deg, #34C759, #00D4FF); }
.les-why-card-5 .les-why-icon { background: linear-gradient(135deg, #00D4FF, #0A84FF); }
.les-why-card-6 .les-why-icon { background: linear-gradient(135deg, #0A84FF, #AF52DE); }
.les-why-card h4 { font-size:17px; color: var(--les-navy-900); margin-bottom:8px; font-weight:700; }
.les-why-card p { font-size:13.5px; color: var(--les-text-muted); line-height:1.55; }

/* ---------- PIXEL SECTION ---------- */
.les-pixel-section { background: var(--les-navy-950); color: white; position:relative; overflow:hidden; }
.les-pixel-section::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: var(--les-rainbow); }
.les-pixel-section::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 15% 30%, rgba(10,132,255,0.18), transparent 45%), radial-gradient(circle at 85% 70%, rgba(175,82,222,0.15), transparent 45%); pointer-events:none; }
.les-pixel-section .les-section-title { color:white; }
.les-pixel-section .les-section-desc { color: rgba(255,255,255,0.65); }
.les-pixel-section .les-container { position:relative; z-index:1; }
.les-pixel-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom: 32px; background: rgba(255,255,255,0.04); padding:8px; border-radius:16px; border:1px solid rgba(255,255,255,0.08); }
.les-pixel-tab { padding: 10px 18px; border-radius:10px; font-size:13px; font-weight:700; background: transparent; color: rgba(255,255,255,0.7); border:none; cursor:pointer; transition: all 0.25s; }
.les-pixel-tab:hover { color: white; background: rgba(255,255,255,0.06); }
.les-pixel-tab.is-active { color: white; background: var(--les-rainbow); box-shadow: 0 6px 18px rgba(175,82,222,0.35); }
.les-pixel-grid { display:grid; grid-template-columns: 1.4fr 1fr; gap:24px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.10); border-radius:22px; padding: 34px; backdrop-filter: blur(10px); }
.les-pixel-info h3 { font-family: var(--les-font-heading); font-size:32px; color:white; margin-bottom:8px; letter-spacing:-0.025em; font-weight:700; }
.les-pixel-badge { display:inline-flex; align-items:center; gap:6px; padding:5px 14px; border-radius:100px; font-size:12px; font-weight:700; margin-bottom:20px; background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12); color:white; }
.les-pixel-badge::before { content:''; width:6px; height:6px; border-radius:50%; background: var(--les-rainbow); }
.les-pixel-desc { color: rgba(255,255,255,0.72); font-size:14.5px; margin: 0 0 22px; line-height:1.6; }
.les-pixel-specs { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.les-pixel-spec { background: rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.08); border-radius:12px; padding:16px; }
.les-pixel-spec-label { font-size:11px; color: rgba(255,255,255,0.55); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:5px; font-weight:600; }
.les-pixel-spec-value { font-size:16px; color:white; font-weight:700; letter-spacing:-0.01em; }
.les-pixel-usage { margin-top:20px; padding-top:20px; border-top:1px solid rgba(255,255,255,0.08); font-size:14px; color: rgba(255,255,255,0.75); line-height:1.65; }
.les-pixel-usage strong { color: white; }
.les-pixel-visual { background:#000; border-radius:16px; border:1px solid rgba(255,255,255,0.10); aspect-ratio:1; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.les-pixel-visual canvas { width:100%; height:100%; }
.les-pixel-cta { margin-top:24px; padding: 22px; background: rgba(255,255,255,0.03); border-radius:16px; border:1px solid rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; position:relative; overflow:hidden; }
.les-pixel-cta::before { content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background: var(--les-rainbow); }
.les-pixel-cta p { font-size:14.5px; color: rgba(255,255,255,0.9); flex:1; padding-left:12px; margin:0; }

/* ---------- SHOWROOM ---------- */
.les-showroom-section { background: white; }
.les-showroom-flex { display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:center; }
.les-showroom-visual { aspect-ratio: 9/16; max-height: 620px; border-radius: 22px; overflow:hidden; background: linear-gradient(135deg, var(--les-navy-900), var(--les-navy-800)); position:relative; box-shadow: var(--les-shadow-lg); justify-self:center; width: 100%; max-width: 380px; }
.les-showroom-visual::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: var(--les-rainbow); z-index:3; }
.les-showroom-visual video, .les-showroom-visual img { width:100%; height:100%; object-fit:cover; }
.les-showroom-badge { position:absolute; top:16px; left:16px; background: rgba(0,0,0,0.65); backdrop-filter: blur(10px); color:white; padding:8px 14px; border-radius:100px; font-size:12px; font-weight:700; display:flex; align-items:center; gap:6px; z-index:4; border:1px solid rgba(255,255,255,0.15); }
.les-showroom-content .les-section-title { color: var(--les-navy-900); }
.les-showroom-features { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin: 24px 0 28px; }
.les-sr-feature { display:flex; align-items:center; gap:10px; font-size:14px; color: var(--les-text); font-weight:500; }
.les-sr-feature-icon { width:30px; height:30px; border-radius:8px; color:white; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.les-showroom-features .les-sr-feature:nth-child(1) .les-sr-feature-icon { background: linear-gradient(135deg, #FF3B30, #FF9500); }
.les-showroom-features .les-sr-feature:nth-child(2) .les-sr-feature-icon { background: linear-gradient(135deg, #FFCC00, #34C759); }
.les-showroom-features .les-sr-feature:nth-child(3) .les-sr-feature-icon { background: linear-gradient(135deg, #00D4FF, #0A84FF); }
.les-showroom-features .les-sr-feature:nth-child(4) .les-sr-feature-icon { background: linear-gradient(135deg, #0A84FF, #AF52DE); }

/* ---------- SOLUTIONS ---------- */
.les-solutions-section { background: var(--les-bg); }
.les-solutions-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:16px; }
.les-solution-card { background:white; border-radius:16px; padding:24px; border: 1px solid var(--les-border); transition: all 0.3s; }
.les-solution-card:hover { transform: translateY(-4px); box-shadow: var(--les-shadow-md); border-color: transparent; }
.les-solution-icon { font-size: 32px; margin-bottom:14px; display:inline-block; }
.les-solution-card h4 { font-size: 15px; color: var(--les-navy-900); margin-bottom:6px; font-weight:700; }
.les-solution-card p { font-size: 13px; color: var(--les-text-muted); line-height:1.5; margin:0; }

/* ---------- PROCESS ---------- */
.les-process-section { background: linear-gradient(180deg, var(--les-bg), white); }
.les-process-timeline { display:grid; grid-template-columns: repeat(4, 1fr); gap:16px; position:relative; }
.les-process-timeline::before { content:''; position:absolute; top:24px; left:5%; right:5%; height:3px; background: var(--les-rainbow); z-index:0; opacity:0.4; border-radius:3px; }
.les-process-step { background:white; border-radius:16px; padding:22px; border:1px solid var(--les-border); position:relative; z-index:1; transition: transform 0.25s, box-shadow 0.25s; }
.les-process-step:hover { transform: translateY(-4px); box-shadow: var(--les-shadow-md); }
.les-step-num { width:48px; height:48px; color:white; border-radius:14px; font-weight:800; font-size:19px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; box-shadow: 0 8px 18px rgba(0,0,0,0.15); }
.les-process-step-1 .les-step-num { background: linear-gradient(135deg, #FF3B30, #FF9500); }
.les-process-step-2 .les-step-num { background: linear-gradient(135deg, #FF9500, #FFCC00); }
.les-process-step-3 .les-step-num { background: linear-gradient(135deg, #FFCC00, #34C759); }
.les-process-step-4 .les-step-num { background: linear-gradient(135deg, #34C759, #00D4FF); }
.les-process-step-5 .les-step-num { background: linear-gradient(135deg, #00D4FF, #0A84FF); }
.les-process-step-6 .les-step-num { background: linear-gradient(135deg, #0A84FF, #AF52DE); }
.les-process-step-7 .les-step-num { background: linear-gradient(135deg, #AF52DE, #FF3B30); }
.les-process-step-8 .les-step-num { background: linear-gradient(135deg, #FF3B30, #FFCC00); }
.les-process-step h4 { font-size:15.5px; color: var(--les-navy-900); margin-bottom:6px; font-weight:700; }
.les-process-step p { font-size:12.5px; color: var(--les-text-muted); line-height:1.5; margin:0; }

/* ---------- CALCULATOR ---------- */
.les-calc-section { background: white; }
.les-calc-box { background: linear-gradient(135deg, var(--les-navy-900), var(--les-navy-800)); border-radius: 22px; padding: 34px; color: white; position:relative; overflow:hidden; }
.les-calc-box::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: var(--les-rainbow); }
.les-calc-inputs { display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.les-calc-inputs label { display:flex; flex-direction:column; gap:6px; font-size:12px; color: rgba(255,255,255,0.75); font-weight:600; text-transform:uppercase; letter-spacing:0.08em; }
.les-calc-inputs input, .les-calc-inputs select { padding: 12px 14px; border-radius:10px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color:white; font-size:16px; font-family: inherit; }
.les-calc-inputs input:focus, .les-calc-inputs select:focus { outline: none; border-color: #22D3EE; background: rgba(255,255,255,0.10); }
.les-calc-results { display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
.les-calc-result { background: rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08); border-radius:12px; padding:18px; text-align:center; }
.les-calc-result span { display:block; font-size:11px; text-transform:uppercase; letter-spacing:0.08em; color: rgba(255,255,255,0.6); font-weight:600; margin-bottom:6px; }
.les-calc-result strong { font-size:20px; font-family: var(--les-font-heading); font-weight:700; letter-spacing:-0.02em; background: var(--les-rainbow); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.les-calc-note { font-size:12px; color: rgba(255,255,255,0.55); text-align:center; margin-bottom: 20px; font-style: italic; }

/* ---------- BLOG ---------- */
.les-blog-section { background: white; }
.les-blog-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:22px; }
.les-blog-card { background:white; border:1px solid var(--les-border); border-radius:16px; overflow:hidden; text-decoration:none; color:inherit; transition: all 0.3s; display:block; }
.les-blog-card:hover { transform: translateY(-4px); box-shadow: var(--les-shadow-md); }
.les-blog-card-img { height: 180px; background-size:cover; background-position:center; }
.les-blog-card-img-placeholder { background: linear-gradient(135deg, var(--les-blue-600), var(--les-r-purple)); }
.les-blog-card-body { padding: 20px; }
.les-blog-meta { font-size:11.5px; color: var(--les-text-muted); margin-bottom:8px; text-transform:uppercase; letter-spacing:0.06em; }
.les-blog-card h3 { font-size:17px; color: var(--les-navy-900); margin-bottom:8px; font-weight:700; line-height:1.35; }
.les-blog-card p { font-size:13.5px; color: var(--les-text-muted); line-height:1.55; margin: 0 0 12px; }

/* ---------- FAQ ---------- */
.les-faq-section { background: var(--les-bg); }
.les-faq-container { max-width: 800px; }
.les-faq-list { display:flex; flex-direction:column; gap:12px; }
.les-faq-item { background: white; border: 1px solid var(--les-border); border-radius:14px; overflow:hidden; transition: box-shadow 0.25s; }
.les-faq-item[open] { box-shadow: var(--les-shadow-md); border-color: transparent; }
.les-faq-item summary { padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 15.5px; color: var(--les-navy-900); display:flex; justify-content:space-between; align-items:center; gap:12px; list-style: none; }
.les-faq-item summary::-webkit-details-marker { display: none; }
.les-faq-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--les-rainbow); color: white; display:flex; align-items:center; justify-content:center; font-weight: 700; font-size: 18px; transition: transform 0.25s; flex-shrink: 0; }
.les-faq-item[open] .les-faq-icon { transform: rotate(45deg); }
.les-faq-answer { padding: 0 22px 22px; font-size: 14.5px; color: var(--les-text-muted); line-height: 1.65; }

/* ---------- FINAL CTA ---------- */
.les-final-cta { background: var(--les-navy-950); color: white; padding: 90px 24px; position:relative; overflow:hidden; text-align:center; }
.les-final-cta::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: var(--les-rainbow); }
.les-final-cta::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 20% 30%, rgba(255,59,48,0.15), transparent 40%), radial-gradient(circle at 50% 100%, rgba(52,199,89,0.12), transparent 40%), radial-gradient(circle at 80% 30%, rgba(175,82,222,0.18), transparent 40%); }
.les-final-cta-inner { position:relative; z-index:2; max-width:780px; margin:0 auto; }
.les-final-cta h2 { font-family: var(--les-font-heading); font-size:42px; margin-bottom:16px; letter-spacing:-0.025em; line-height:1.12; font-weight:800; }
.les-final-cta p { font-size:17px; color: rgba(255,255,255,0.80); margin-bottom:32px; line-height:1.55; }
.les-final-cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.les-final-cta-phone { display:block; margin-top:24px; font-family: var(--les-font-heading); font-size:26px; font-weight:800; color:white; text-decoration:none; letter-spacing:-0.025em; }
.les-final-cta-phone:hover { background: var(--les-rainbow); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* ---------- FOOTER ---------- */
.les-footer { background: var(--les-navy-950); color: rgba(255,255,255,0.75); padding: 60px 24px 24px; position:relative; }
.les-footer::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: var(--les-rainbow); }
.les-footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.les-footer h5 { color:white; font-size:14px; font-weight:700; margin-bottom:18px; }
.les-footer-brand-text { font-size:13px; line-height:1.65; color: rgba(255,255,255,0.6); margin: 14px 0 22px; }
.les-footer-brand-text strong { color: white; }
.les-footer-list, .les-footer-legal { list-style:none; padding:0; margin:0; }
.les-footer-list li, .les-footer-legal li { margin-bottom:9px; }
.les-footer a { color: rgba(255,255,255,0.65); text-decoration:none; font-size:13px; transition: color 0.2s; }
.les-footer a:hover { color: white; }
.les-footer-contact-item { display:flex; align-items:flex-start; gap:10px; font-size:13px; margin-bottom:12px; color: rgba(255,255,255,0.80); line-height:1.55; }
.les-footer-contact-item svg { flex-shrink:0; margin-top:3px; }
.les-footer-contact-item:nth-child(1) svg { color: #FF3B30; }
.les-footer-contact-item:nth-child(2) svg { color: #FF9500; }
.les-footer-contact-item:nth-child(3) svg { color: #34C759; }
.les-footer-contact-item:nth-child(4) svg { color: #00D4FF; }
.les-footer-bottom { padding-top:24px; border-top:1px solid rgba(255,255,255,0.08); display:flex; justify-content:space-between; align-items:center; font-size:12px; color: rgba(255,255,255,0.5); flex-wrap:wrap; gap:10px; }
.les-footer-legal-inline { display:flex; gap:16px; }
.les-social { display:flex; gap:10px; margin-top:12px; }
.les-social-btn { width:36px; height:36px; border-radius:10px; background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.10); display:flex; align-items:center; justify-content:center; color: rgba(255,255,255,0.75); transition: all 0.25s; position:relative; overflow:hidden; }
.les-social-btn::before { content:''; position:absolute; inset:0; background: var(--les-rainbow); opacity:0; transition: opacity 0.25s; }
.les-social-btn:hover::before { opacity:1; }
.les-social-btn:hover { color: white; border-color: transparent; }
.les-social-btn svg { position:relative; z-index:1; }

/* ---------- FLOATING BUTTONS ---------- */
.les-floating-buttons { position:fixed; bottom:24px; right:24px; z-index:200; display:flex; flex-direction:column; gap:10px; }
.les-float-btn { width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; box-shadow: 0 12px 28px rgba(0,0,0,0.22); transition: transform 0.25s; text-decoration:none; border:none; cursor:pointer; }
.les-float-btn:hover { transform: scale(1.10) rotate(-5deg); }
.les-float-wa { background: #25D366; }
.les-float-phone { background: var(--les-navy-900); position:relative; overflow:hidden; }
.les-float-phone::before { content:''; position:absolute; inset:0; background: var(--les-rainbow); opacity:0.85; }
.les-float-phone svg { position:relative; z-index:1; }

/* ---------- FORMS ---------- */
.les-form { background: white; border-radius: 20px; padding: 32px; box-shadow: var(--les-shadow-md); border: 1px solid var(--les-border); }
.les-form-row { display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-bottom: 14px; }
.les-form-full { grid-column: 1 / -1; }
.les-form label { display:flex; flex-direction:column; gap:6px; font-size:13px; font-weight:600; color: var(--les-navy-900); }
.les-form input, .les-form select, .les-form textarea { padding: 12px 14px; border-radius:10px; border:1px solid var(--les-border); background: white; font-size:14.5px; font-family: inherit; transition: border-color 0.2s; }
.les-form input:focus, .les-form select:focus, .les-form textarea:focus { outline: none; border-color: var(--les-blue-500); box-shadow: 0 0 0 3px rgba(37,99,235,0.10); }
.les-form textarea { resize: vertical; min-height: 100px; }
.les-form-checkbox { display:flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--les-text-muted); line-height: 1.5; margin: 8px 0 16px; font-weight: normal; }
.les-form-checkbox input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.les-form-honeypot { position: absolute; left: -9999px; }
.les-form-submit { width: 100%; padding: 15px; font-size: 15px; }
.les-form-msg { padding: 14px 18px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; font-weight: 500; }
.les-form-msg-success { background: rgba(52,199,89,0.10); color: #0F6B2A; border: 1px solid rgba(52,199,89,0.30); }
.les-form-msg-error { background: rgba(255,59,48,0.10); color: #A02523; border: 1px solid rgba(255,59,48,0.30); }

/* ---------- PAGE HEADERS ---------- */
.les-page-header { background: linear-gradient(135deg, var(--les-navy-900), var(--les-navy-800)); color: white; padding: 60px 24px; position:relative; overflow:hidden; }
.les-page-header::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: var(--les-rainbow); }
.les-page-header h1 { font-size: 44px; font-weight:800; letter-spacing:-0.03em; margin-bottom: 8px; }
.les-page-header p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 640px; }
.les-breadcrumbs { font-size:12.5px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.les-breadcrumbs a { color: rgba(255,255,255,0.6); text-decoration: none; }
.les-breadcrumbs a:hover { color: white; }

/* ---------- POST / PAGE CONTENT ---------- */
.les-single { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.les-single h1, .les-single h2, .les-single h3 { color: var(--les-navy-900); margin-top: 32px; margin-bottom: 14px; }
.les-single h1 { font-size: 38px; }
.les-single h2 { font-size: 28px; }
.les-single h3 { font-size: 22px; }
.les-single p { font-size: 16px; line-height: 1.75; color: var(--les-text); margin-bottom: 16px; }
.les-single img { border-radius: 12px; margin: 20px 0; }

/* ---------- SINGLE PRODUCT ---------- */
.les-product-single .les-product-hero { display:grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 24px; align-items: center; max-width: 1200px; margin: 0 auto; }
.les-product-hero-img { border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--les-navy-900), var(--les-blue-600)); }
.les-product-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.les-product-features { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 10px; }
.les-product-features li { display:flex; justify-content:space-between; padding: 12px 16px; background: var(--les-bg); border-radius: 10px; }
.les-product-features .lbl { color: var(--les-text-muted); font-weight: 500; }
.les-product-features .val { color: var(--les-navy-900); font-weight: 700; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .les-product-grid, .les-why-grid, .les-blog-grid { grid-template-columns: 1fr 1fr; }
  .les-solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .les-hero h1 { font-size: 48px; }
}
@media (max-width: 768px) {
  .les-nav-menu { display: none; }
  .les-nav-menu.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 20px; border-bottom: 1px solid var(--les-border); }
  .les-nav-menu.is-open .les-menu-list { flex-direction: column; gap: 12px; }
  .les-mobile-toggle { display: flex; }
  .les-cta-btn { padding: 8px 14px; font-size: 13px; }
  .les-hero { min-height: 620px; }
  .les-hero-content { padding: 70px 20px 90px; }
  .les-hero h1 { font-size: 36px; }
  .les-hero-sub { font-size: 16px; }
  .les-section { padding: 60px 0; }
  .les-section-title { font-size: 28px; }
  .les-final-cta h2 { font-size: 28px; }
  .les-pixel-grid, .les-showroom-flex { grid-template-columns: 1fr; }
  .les-process-timeline { grid-template-columns: 1fr 1fr; }
  .les-process-timeline::before { display: none; }
  .les-footer-grid { grid-template-columns: 1fr 1fr; }
  .les-form-row { grid-template-columns: 1fr; }
  .les-calc-inputs, .les-calc-results { grid-template-columns: 1fr 1fr; }
  .les-topbar-item { display: none; }
  .les-topbar-item:first-child { display: inline-flex; }
  .les-product-single .les-product-hero { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .les-product-grid, .les-why-grid, .les-blog-grid, .les-footer-grid, .les-solutions-grid { grid-template-columns: 1fr; }
  .les-hero h1 { font-size: 30px; }
  .les-showroom-features { grid-template-columns: 1fr; }
  .les-calc-inputs, .les-calc-results { grid-template-columns: 1fr; }
  .les-floating-buttons { bottom: 16px; right: 16px; }
  .les-float-btn { width: 52px; height: 52px; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .les-hero-video-bg { display: none; }
  .les-hero { background: linear-gradient(135deg, var(--les-navy-950), var(--les-navy-800)); }
}
