/* ============================================
   GLARON — Premium LED Lighting
   Theme: Purple & Amber (logo-inspired)
   ============================================ */

:root {
  /* Brand — from logo */
  --purple-deep: #2D1B4E;
  --purple-mid: #5B3D99;
  --purple-light: #7C5CBF;
  --purple-soft: #9B7DD4;
  --amber: #C9A227;
  --amber-light: #E8B84C;
  --gold: #D4A853;
  /* Neutrals */
  --black: #0D0A12;
  --charcoal: #1A1625;
  --gray-dark: #2C2638;
  --gray-mid: #6B6378;
  --gray-light: #B5AEC4;
  --off-white: #F5F3F8;
  --white: #FFFFFF;
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Spacing & motion */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

ul {
  list-style: none;
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  min-height: 54px;
   position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.header.is-scrolled {
  background: rgba(13, 10, 18, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
  max-width: 200px;
  min-width: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  max-width: 42px;
  max-height: 42px;
  flex-shrink: 0;
  display: block;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-img {
  display: block;
  width: 100px !important;
  height: auto !important;
  max-width: 100px !important;
  max-height: max-content !important;
  object-fit: contain;
}

/* Header logo: 100px */
.header .logo-icon,
.header .logo-img {
  width: 100px !important;
  height: auto !important;
  min-width: 100px;
  min-height: min-content;
  max-width: 100px !important;
  max-height: 100px !important;
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  opacity: 0.85;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-shrink: 0;
  margin-left: auto;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.9);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--amber-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out);
}

@media (max-width: 1024px) {
  .logo-name {
    font-size: 1.1rem;
  }
  .nav-list {
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .product-card{
    cursor: unset !important;
  }
  .header{
    min-height: 56px;
    max-height: 56px;
    height: 56px;
  }
  .header-inner {
    min-height: 56px;
    max-height: 56px;
    height: 56px;
  }
  .logo {
    max-width: 160px;
  }
  /* .logo-icon,
  .logo-img {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    min-width: 36px;
    min-height: 36px;
  } */
  .header .logo-icon,
  .header .logo-img {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    min-width: 80px;
    min-height: 80px;
  }
  .logo-name {
    font-size: 1rem;
  }
  .logo-tagline {
    font-size: 0.55rem;
  }
  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    padding: var(--space-2xl) var(--space-lg);
    gap: var(--space-md);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }
  .nav.is-open .nav-list {
    transform: translateX(0);
  }
  .nav-toggle {
    display: flex;
    z-index: 101;
  }
  .nav.is-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.is-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--charcoal) 50%, var(--black) 100%);
  background-size: cover;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-bg-img.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45, 27, 78, 0.4) 0%, rgba(13, 10, 18, 0.7) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45, 27, 78, 0.4) 0%, rgba(13, 10, 18, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
}

.hero-title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) forwards;
}

.hero-title-line:nth-child(1) {
  animation-delay: 0.35s;
}

.hero-title-line:nth-child(2) {
  animation-delay: 0.5s;
  color: var(--amber-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  opacity: 0.6;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.2s var(--ease-out);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  color: var(--black);
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--gold) 100%);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: var(--amber-light);
  color: var(--amber-light);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.75rem;
  margin-top: var(--space-sm);
}

/* ============================================
   CATEGORY STRIP
   ============================================ */
.category-strip {
  background: var(--off-white);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.category-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.category-tab {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  transition: color 0.25s var(--ease-out);
}

.category-tab:hover,
.category-tab.is-active {
  color: var(--purple-mid);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: var(--space-xl) var(--space-md);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stat-item {
  padding: var(--space-sm) 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1.1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: inherit;
  color: var(--amber-light);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: var(--space-xs);
}

@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

/* ============================================
   LIGHT BY SPACE (Shop by room)
   ============================================ */
.by-space {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.space-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: var(--space-lg);
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  text-align: center;
  transition: background 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.space-card:hover {
  background: linear-gradient(145deg, var(--purple-deep) 0%, var(--charcoal) 100%);
  color: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(45, 27, 78, 0.2);
  border-color: transparent;
}

.space-card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}

.space-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.space-card-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.space-card:hover .space-card-cta {
  color: var(--amber-light);
}

@media (max-width: 900px) {
  .space-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .space-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CULTURE QUOTE
   ============================================ */
.culture-quote {
  padding: var(--space-xl) var(--space-md);
  background: var(--off-white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.culture-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gray-dark);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   WHY US / CRAFTMANSHIP
   ============================================ */
.why-us {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.why-card {
  padding: var(--space-lg);
  text-align: center;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.why-card:hover {
  box-shadow: 0 16px 40px rgba(45, 27, 78, 0.1);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--purple-mid);
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.why-desc {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--space-2xl) 0;
  background: var(--off-white);
}

.testimonials-slider {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  width: 300%;
  transition: transform 0.5s var(--ease-out);
}

.testimonial-card {
  flex: 0 0 33.333%;
  width: 33.333%;
  padding: var(--space-xl) var(--space-md);
  margin: 0;
  text-align: center;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--gray-mid);
  font-style: normal;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.testimonials-dot.is-active {
  background: var(--purple-mid);
  transform: scale(1.2);
}

/* ============================================
   FOR PROFESSIONALS
   ============================================ */
.for-pros {
  position: relative;
  padding: var(--space-2xl) var(--space-md);
  color: var(--white);
  text-align: center;
}

.for-pros-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
}

.for-pros-inner {
  position: relative;
  z-index: 2;
}

.for-pros-content {
  max-width: 640px;
  margin: 0 auto;
}

.for-pros .section-label {
  color: var(--amber-light);
}

.for-pros-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.for-pros-desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

.for-pros .btn-primary:hover {
  color: var(--black);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-mid) 100%);
  color: var(--white);
}

.newsletter-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--white);
}

.newsletter-desc {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  flex: 1;
  min-width: 260px;
  max-width: 420px;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--amber-light);
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    max-width: 100%;
  }
}

/* ============================================
   FOOTER EXPANDED
   ============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-md) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .logo {
  margin-bottom: var(--space-sm);
}

.footer-brand .logo-name {
  color: var(--white);
}

.footer-brand .logo-tagline {
  color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.8;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.25s var(--ease-out);
}

.footer-col a:hover {
  color: var(--amber-light);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: var(--space-xs);
}

.footer-contact a {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md) var(--space-md);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand .logo {
    justify-content: center;
  }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
}

.section-intro {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  margin-top: var(--space-sm);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  align-items: stretch;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(45, 27, 78, 0.08);
  border-color: rgba(123, 92, 191, 0.2);
  transform: translateY(-4px);
}

.service-card-featured {
  background: linear-gradient(145deg, var(--purple-deep) 0%, var(--charcoal) 100%);
  color: var(--white);
  border-color: transparent;
}

.service-card-featured .service-title,
.service-card-featured .service-subtitle,
.service-card-featured .service-desc {
  color: inherit;
}

.service-card-featured .service-subtitle {
  opacity: 0.85;
}

.service-card-featured .service-desc {
  opacity: 0.9;
}

.service-card-featured .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.service-card-featured .btn-outline:hover {
  border-color: var(--amber-light);
  color: var(--amber-light);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-md);
  color: var(--purple-mid);
}

.service-card-featured .service-icon {
  color: var(--amber-light);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
  color: var(--charcoal);
}

.service-subtitle {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: var(--space-sm);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

/* ============================================
   SMART LIGHTING
   ============================================ */
.smart-lighting {
  position: relative;
  padding: var(--space-xl) 0;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(232, 184, 76, 0.18) 0%, rgba(232, 184, 76, 0) 55%),
              radial-gradient(1000px 520px at 85% 20%, rgba(124, 92, 191, 0.22) 0%, rgba(124, 92, 191, 0) 60%),
              linear-gradient(180deg, var(--off-white) 0%, #ffffff 70%);
  overflow: hidden;
}

.smart-lighting-header {
  text-align: left;
}

.smart-lighting-intro {
  max-width: 820px;
}

.smart-lighting-grid {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: stretch;
}

.smart-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(45, 27, 78, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.smart-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(45, 27, 78, 0.14);
  border-color: rgba(124, 92, 191, 0.22);
}

.smart-card-featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-deep) 0%, var(--charcoal) 100%);
  border-color: transparent;
  box-shadow: 0 26px 70px rgba(45, 27, 78, 0.28);
}

.smart-card-top {
  margin-bottom: var(--space-md);
}

.smart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: var(--space-sm);
}

.smart-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
}

.smart-desc {
  font-size: 0.95rem;
  opacity: 0.82;
}

.smart-card:not(.smart-card-featured) .smart-desc {
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.smart-points {
  margin-top: auto;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.smart-points li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.72);
}

.smart-card-featured .smart-points li {
  color: rgba(255, 255, 255, 0.85);
}

.smart-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--amber-light);
  box-shadow: 0 0 0 4px rgba(232, 184, 76, 0.18);
}

.smart-steps {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: 16px;
  background: rgba(13, 10, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.smart-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.smart-step-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(232, 184, 76, 0.16);
  border: 1px solid rgba(232, 184, 76, 0.28);
  color: var(--amber-light);
}

.smart-step-text {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .smart-lighting-grid {
    grid-template-columns: 1fr;
  }
  .smart-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================
   ROPE LIGHT
   ============================================ */
.rope-light {
  /* padding: var(--space-2xl) 0; */
  background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
}

.rope-light-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-2xl);
  align-items: center;
}

.rope-light-header {
  text-align: left;
}

.rope-light-intro {
  max-width: 720px;
}

.rope-light-pills {
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rope-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.72);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 22px rgba(45, 27, 78, 0.06);
}

.rope-light-actions {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.rope-light-showcase {
  position: relative;
}

.rope-light-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(45, 27, 78, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.06);
  object-fit: cover;
}

.rope-light-panel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  padding: var(--space-xl);
  background: linear-gradient(145deg, var(--purple-deep) 0%, var(--charcoal) 100%);
  box-shadow: 0 30px 80px rgba(45, 27, 78, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 340px;
}

.rope-light-glow {
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(420px 240px at 25% 35%, rgba(232, 184, 76, 0.55) 0%, rgba(232, 184, 76, 0) 62%),
    radial-gradient(520px 280px at 70% 55%, rgba(124, 92, 191, 0.55) 0%, rgba(124, 92, 191, 0) 60%),
    conic-gradient(from 210deg at 50% 50%, rgba(255,255,255,0.16), rgba(255,255,255,0));
  filter: blur(2px);
  opacity: 0.9;
}

.rope-light-specs {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin-top: 140px;
}

.rope-spec {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.rope-spec-k {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.rope-spec-v {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

.rope-light-uses {
  margin-top: var(--space-md);
  display: grid;
  gap: 10px;
}

.rope-use {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(45, 27, 78, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.rope-use-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber-light);
  box-shadow: 0 0 0 6px rgba(232, 184, 76, 0.16);
}

.rope-use-text {
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.72);
}

@media (max-width: 1024px) {
  .rope-light-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .rope-light-panel {
    min-height: 300px;
  }
  .rope-light-specs {
    margin-top: 120px;
  }
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  padding: var(--space-2xl) 0;
  background: var(--off-white);
}

.products-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--purple-deep);
  color: var(--white);
  border-color: var(--purple-deep);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-card .product-image {
  flex: 0 0 auto;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(45, 27, 78, 0.12);
}

.product-card.hidden {
  display: none;
}

.product-image {
  aspect-ratio: 1;
  width: 100%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-sm);
  mix-blend-mode: multiply;
}

.product-placeholder {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--space-md);
  color: var(--charcoal);
}

.product-card {
  cursor: pointer;
}

/* ============================================
   PRODUCT DIALOG
   ============================================ */
.product-dialog {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
}

.product-dialog.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px))
    max(16px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
}

.product-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 10, 0.7);
  backdrop-filter: blur(3px);
}

.product-dialog-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 860px);
  margin: 0;
  max-height: min(90vh, calc(100vh - 32px));
  max-height: min(90dvh, calc(100dvh - 32px));
  border-radius: 18px;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
}

.product-dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--charcoal);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.product-dialog-close:hover {
  background: rgba(0, 0, 0, 0.14);
}

.product-dialog-media {
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.product-dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-md);
}

.product-dialog-content {
  padding: clamp(18px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-dialog-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 2px;
}

.product-dialog-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  line-height: 1.2;
  color: var(--charcoal);
}

.product-dialog-text {
  color: var(--gray-dark);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
  .product-dialog-panel {
    grid-template-columns: 1fr;
    width: min(94vw, 520px);
  }
  .product-dialog-media {
    min-height: 220px;
  }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    order: -1;
  }
}

.about-visual {
  position: relative;
  min-height: 380px;
}

.about-image {
  position: absolute;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--gray-dark) 0%, var(--charcoal) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image-photo {
  background-color: var(--gray-dark);
}

.about-image-1 {
  width: 55%;
  height: 65%;
  top: 0;
  left: 0;
  z-index: 2;
}

.about-image-2 {
  width: 60%;
  height: 55%;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.about-watermark {
  position: absolute;
  bottom: 10%;
  left: 5%;
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.about-content .section-label {
  margin-bottom: var(--space-xs);
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.about-text {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

/* ============================================
   PROJECTS
   ============================================ */
.projects {
  padding: var(--space-2xl) 0;
  background: var(--charcoal);
  color: var(--white);
}

.projects .section-label {
  color: var(--gray-light);
}

.projects .section-title {
  color: var(--white);
}

.projects-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.projects-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.projects-track {
  display: flex;
  width: 300%;
  transition: transform 0.6s var(--ease-out);
}

.project-slide {
  flex: 0 0 33.333%;
  width: 33.333%;
  position: relative;
  aspect-ratio: 21/9;
  min-height: 280px;
}

.project-image {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  background-size: cover;
  background-position: center;
}

.project-image-1 { background-color: #1e3a2f; }
.project-image-2 { background-color: #2d2d2d; }
.project-image-3 { background-color: #1a2533; }

.project-caption {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
  z-index: 5;
}

.slider-btn:hover {
  background: var(--amber);
  color: var(--black);
}

.slider-prev {
  left: var(--space-md);
}

.slider-next {
  right: var(--space-md);
}

/* ============================================
   CONTACT CTA
   ============================================ */
.contact-cta {
  position: relative;
  padding: var(--space-2xl) var(--space-md);
  color: var(--white);
}

.contact-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--purple-deep) 0%, var(--black) 100%);
}

.contact-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.contact-cta .logo {
  justify-content: flex-start;
  margin-bottom: var(--space-sm);
}

.contact-cta .logo-name {
  color: var(--white);
}

.contact-cta .logo-tagline {
  color: rgba(255, 255, 255, 0.8);
}

.contact-cta-tagline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  opacity: 0.95;
}

.contact-cta-main {
  max-width: 540px;
}

.contact-cta-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: var(--space-xs);
}

.contact-cta-subtext {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 480px;
}

.contact-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  min-width: 240px;
}

.contact-cta-phone {
  margin-bottom: var(--space-sm);
}

.contact-cta-phone p {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: var(--space-xs);
}

.contact-cta-phone a {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--amber-light);
  margin-bottom: 4px;
}

.contact-cta-phone a:hover {
  color: var(--gold);
}

.contact-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.contact-cta-web a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.contact-cta-web a:hover {
  color: var(--amber-light);
}

@media (max-width: 768px) {
  .contact-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }
  .contact-cta-main {
    max-width: 100%;
  }
  .contact-cta-subtext {
    max-width: 100%;
  }
  .contact-cta-actions {
    width: 100%;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-lg) var(--space-md);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer-nav {
  display: flex;
  gap: var(--space-lg);
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}

.footer-nav a:hover {
  color: var(--amber-light);
}

.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   MESSAGE WIDGET (WhatsApp)
   ============================================ */
.message-widget {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 90;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.message-widget:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.message-widget-whatsapp {
  background: #25d366;
  color: #fff;
}

.message-widget-whatsapp:hover {
  background: #20bd5a;
}

.message-widget-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* ============================================
   UTILITY: Logo light (on dark)
   ============================================ */
.logo-light .logo-name {
  color: var(--white);
}

.logo-light .logo-tagline {
  color: rgba(255, 255, 255, 0.8);
}
