/* ============================================
   Custom Properties
   ============================================ */
:root {
  --bg-primary: #000000;
  --bg-secondary: #000000;
  --bg-card: #111111;
  --bg-card-hover: #222222;
  --gold: #c9a84c;
  --gold-light: #e0c068;
  --gold-dark: #a8872e;
  --red: #b91c1c;
  --red-hover: #dc2626;
  --white: #ffffff;
  --gray-100: rgba(255, 255, 255, 0.9);
  --gray-200: rgba(255, 255, 255, 0.7);
  --gray-300: rgba(255, 255, 255, 0.5);
  --gray-400: rgba(255, 255, 255, 0.3);
  --gray-500: rgba(255, 255, 255, 0.15);
  --gray-600: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(201, 168, 76, 0.4);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}

html.nav-open {
  overflow: hidden;
}

html.nav-open body {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}

/* ============================================
   Placeholder Image Utility
   ============================================ */
.placeholder-img {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.placeholder-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201, 168, 76, 0.05) 100%);
  pointer-events: none;
}

.placeholder-img span {
  position: relative;
  z-index: 1;
  opacity: 0.5;
  font-size: 0.75rem;
}

/* ============================================
   Real Image Utility (object-fit covers)
   ============================================ */
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.occasions-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

img.occasion-card-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

img.process-step-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

img.difference-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

img.difference-img.tall {
  height: 100%;
  min-height: 200px;
}

img.illuminate-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
}


.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.led-module-strip {
  max-width: 600px;
  width: 100%;
  border-radius: var(--radius-md);
}

.app-phones-img {
  max-width: 480px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* ============================================
   Container
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Section Spacing
   ============================================ */
.section {
  padding: 100px 0;
  scroll-margin-top: 80px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-200);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

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

.btn-red:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(185, 28, 28, 0.3);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.3);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(90deg, #ffffff, #c9a84c, #e84393, #00b4d8, #06d6a0, #c9a84c, #ffffff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ledColorCycle 6s ease-in-out infinite;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #0a0a0a;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-200);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-bg .placeholder-img {
  width: 100%;
  height: 100%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.05rem;
  color: #ffffff;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Occasions Section
   ============================================ */
.occasions {
  position: relative;
  padding: 100px 0;
}

.occasions-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 550px;
}

.occasions-bg {
  position: absolute;
  inset: 0;
}

.occasions-bg .placeholder-img {
  width: 100%;
  height: 100%;
}

.occasions-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.5) 100%
  );
}

.occasions-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
}

.occasions-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 40px;
  max-width: 380px;
}

.occasions-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
}

.occasion-card {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
}

.occasion-card:hover {
  background: rgba(30, 30, 30, 0.9);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.occasion-card-img {
  width: 100%;
  height: 80px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.occasion-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.occasion-card p {
  font-size: 0.8rem;
  color: var(--gray-300);
  line-height: 1.5;
}

/* ============================================
   Made With / App Section
   ============================================ */
.made-with {
  padding: 80px 0;
  text-align: center;
}

.made-with h3 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 32px;
}

.app-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
}

.app-phone {
  width: 260px;
  height: 460px;
  border-radius: 32px;
  border: 2px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
}

.app-phone .placeholder-img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  width: 100px;
  height: 50px;
  border-radius: var(--radius-sm);
}

/* ============================================
   Why Choose Section
   ============================================ */
.why-choose {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.why-choose .section-title {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 60px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

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

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* ============================================
   Process Section
   ============================================ */
.process {
  padding: 100px 0;
}

.process .section-title {
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.process-step:nth-child(even) {
  direction: rtl;
}

.process-step:nth-child(even) > * {
  direction: ltr;
}

.process-step-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process-step-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0a0a0a;
}

.process-step-text h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step-text p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
}

.process-step-img {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* ============================================
   Difference Section
   ============================================ */
.difference {
  padding: 80px 0;
}

.difference-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.difference-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 32px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.difference-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
}

.difference-img.tall {
  grid-row: span 2;
  height: 100%;
}

/* ============================================
   Illuminate Section
   ============================================ */
.illuminate {
  padding: 80px 0;
}

.illuminate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.illuminate h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.illuminate p {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.7;
}

.illuminate-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.illuminate-img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  padding: 100px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 24px;
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.google-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.85rem;
  color: var(--gray-300);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  padding: 60px 0;
}

.cta-banner-inner {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
}

/* ============================================
   How It Works (Video) Section
   ============================================ */
.how-works {
  padding: 100px 0;
  text-align: center;
}

.how-works .section-title {
  margin-bottom: 48px;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-container .placeholder-img {
  width: 100%;
  height: 100%;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold);
}

.play-button::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #0a0a0a;
  margin-left: 4px;
}

/* ============================================
   Features Section
   ============================================ */
.features {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.features .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.feature-item {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.feature-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.3;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ============================================
   Get a Quote Section
   ============================================ */
.quote-section {
  padding: 100px 0;
  scroll-margin-top: 80px;
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px;
}

.quote-text .section-title {
  margin-bottom: 16px;
}

.quote-text p {
  color: var(--gray-200);
  font-size: 1rem;
  line-height: 1.7;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-100);
}

.quote-field input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.quote-field input::placeholder {
  color: var(--gray-400);
}

.quote-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

@media (max-width: 768px) {
  .quote-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

  .quote-text {
    text-align: center;
  }
}

/* ============================================
   LED Infinite Section
   ============================================ */
.led-infinite {
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.led-glow-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.led-word {
  display: inline-block;
  animation: ledColorCycle 6s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.8s);
  background: linear-gradient(90deg, #ffffff, #c9a84c, #e84393, #00b4d8, #06d6a0, #c9a84c, #ffffff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.15));
  transition: filter 0.3s ease;
  margin: 0 0.15em;
}

.led-word:hover {
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.5));
}

@keyframes ledColorCycle {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.15));
  }
  25% {
    background-position: 50% 50%;
    filter: drop-shadow(0 0 30px rgba(232, 67, 147, 0.3));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 30px rgba(0, 180, 216, 0.3));
  }
  75% {
    background-position: 50% 50%;
    filter: drop-shadow(0 0 30px rgba(6, 214, 160, 0.3));
  }
  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.15));
  }
}

/* ============================================
   Financing Section
   ============================================ */
.financing {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.financing-header {
  text-align: center;
  margin-bottom: 60px;
}

.financing-header .section-subtitle {
  margin: 0 auto;
}

/* Logo Carousel */
.financing-logos {
  position: relative;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 50px;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  overflow: hidden;
}

.carousel-item {
  flex-shrink: 0;
  width: 160px;
  height: 70px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-200);
  letter-spacing: 0.03em;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}

.carousel-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--gray-300);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* Financing Calculator */
.calculator {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.calc-intro h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.calc-intro p {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-bottom: 24px;
}

.calc-brand {
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 24px;
}

.calc-brand strong {
  font-size: 1rem;
  color: var(--gray-200);
  display: block;
  margin-top: 4px;
  letter-spacing: 0.15em;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.calc-field .sublabel {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
}

.calc-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.calc-input-row input[type="text"] {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  width: 100%;
  max-width: 140px;
}

.calc-input-row .edit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gray-300);
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.calc-input-row .edit-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Range slider styling */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-primary);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.15s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 6px;
}

.calc-result {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  color: #0a0a0a;
}

.calc-result .result-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}

.calc-result .result-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 24px;
}

.calc-result-details {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.calc-result-detail {
  text-align: center;
}

.calc-result-detail .detail-label {
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.calc-result-detail .detail-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0a0a;
}

.calc-result-detail .vs-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  margin: 16px auto 0;
}

.calc-result .btn-red {
  width: 100%;
  font-size: 0.85rem;
  padding: 14px 20px;
}

/* ============================================
   Footer CTA Cards
   ============================================ */
.footer-ctas {
  padding: 60px 0;
}

.footer-ctas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.footer-cta-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.footer-cta-card p {
  font-size: 0.88rem;
  color: var(--gray-300);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gray-100);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-300);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 24px;
}

.social-link {
  color: var(--gray-200);
  transition: color var(--transition);
}

.social-link svg {
  width: 22px;
  height: 22px;
  display: block;
}

.social-link:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--gray-400);
}

.footer-bottom a {
  color: var(--gray-400);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .occasions-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .why-choose-grid .why-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-step:nth-child(even) {
    direction: ltr;
  }

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

  .calculator {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

  .calc-result {
    max-width: 400px;
    margin: 0 auto;
  }

  .illuminate-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* ============================================
   Responsive — Mobile
   ============================================ */
/* ============================================
   Nav Action Buttons (right side of nav)
   ============================================ */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .btn {
  padding: 10px 22px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.btn-dark {
  background: #1a1a1a;
  color: var(--white);
  border: 1px solid #333;
}

.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.nav-actions .btn-outline {
  gap: 6px;
}

.nav-actions .btn-outline .pin-icon {
  font-size: 0.9rem;
}

.mobile-cta-buttons {
  display: none;
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: right var(--transition);
    border-left: 1px solid var(--border);
    z-index: 1001;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-actions {
    display: none;
  }

  .nav-links .mobile-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    width: 100%;
    padding: 0 32px;
  }

  .nav-links .mobile-cta-buttons .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .hero {
    min-height: 90vh;
    min-height: 90dvh;
    padding: 100px 20px 60px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .occasions-content {
    padding: 32px 20px;
  }

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

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid .why-card:last-child {
    max-width: none;
  }

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

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

  .footer-ctas-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-card {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .difference-card {
    padding: 28px 20px;
  }

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

  .difference-img.tall {
    grid-row: span 1;
    height: 200px;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }

  .app-showcase {
    flex-direction: column;
    gap: 32px;
  }

  .carousel-track {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-item {
    width: calc(50% - 8px);
    height: 55px;
    font-size: 0.85rem;
  }

  .financing-logos {
    padding: 0;
  }

  .illuminate-imgs {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .illuminate-img {
    height: 140px;
  }

  .led-infinite-img {
    height: 250px;
  }

  img.process-step-img {
    height: auto;
    object-fit: contain;
  }

  .occasion-card p {
    font-size: 0.85rem;
  }

  .calc-result-detail .detail-label {
    font-size: 0.75rem;
  }

  .calc-field .sublabel {
    font-size: 0.8rem;
  }

  .range-labels {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .calculator {
    padding: 24px 16px;
  }

  .calc-result .result-amount {
    font-size: 2rem;
  }

  .carousel-item {
    width: calc(50% - 6px);
    height: 50px;
    font-size: 0.8rem;
  }

  img.led-infinite-img {
    height: 200px;
  }

  .footer {
    padding: 40px 0 20px;
  }
}

/* ============================================
   LIGHT PAGE THEME
   ============================================ */
.page-light {
  background-color: #ffffff;
  color: #1a1a1a;
}

/* Light page nav */
.page-light .navbar {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 14px 0;
}

.page-light .navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
}

.page-light .nav-logo-icon {
  background: #1a1a1a;
  color: #ffffff;
  width: 52px;
  height: 52px;
  font-size: 0.7rem;
  border: 2px solid #333;
}

.page-light .nav-logo {
  background: linear-gradient(90deg, #1a1a1a, #c9a84c, #e84393, #00b4d8, #06d6a0, #c9a84c, #1a1a1a);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ledColorCycle 6s ease-in-out infinite;
}

.page-light .nav-links a {
  color: #555;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}

.page-light .nav-links a:hover {
  color: #1a1a1a;
}

.page-light .nav-links a.active {
  color: #1a1a1a;
  font-weight: 600;
}

.page-light .nav-links a::after {
  background: #1a1a1a;
}

.page-light .nav-toggle span {
  background: #1a1a1a;
}

.page-light .nav-actions .btn-outline {
  color: #1a1a1a;
  border-color: #ccc;
}

.page-light .nav-actions .btn-outline:hover {
  border-color: #1a1a1a;
  background: rgba(0, 0, 0, 0.03);
}

.page-light .nav-actions .btn-dark {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.page-light .nav-actions .btn-dark:hover {
  background: #333;
}

/* Light page mobile nav */
@media (max-width: 768px) {
  .page-light .nav-links {
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid #e0e0e0;
  }

  .page-light .nav-links a {
    color: #333;
    font-size: 1.1rem;
  }

  .page-light .nav-links .mobile-cta-buttons .btn-outline {
    color: #1a1a1a;
    border-color: #ccc;
  }

  .page-light .nav-links .mobile-cta-buttons .btn-dark {
    background: #1a1a1a;
    color: #fff;
  }

  .page-light .nav-overlay {
    background: rgba(0, 0, 0, 0.3);
  }
}

/* ============================================
   Page Header (inner pages)
   ============================================ */
.page-header {
  padding: 140px 0 48px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-header p strong {
  color: #1a1a1a;
}

/* ============================================
   Info Cards (Contact, Dealer, Locations)
   ============================================ */
.page-content {
  padding: 0 0 80px;
}

.page-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  border: 1.5px solid #c8cad8;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  background: #fff;
  transition: all var(--transition);
}

.info-card:hover {
  border-color: #a0a4b8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.info-card a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.info-card a:hover {
  color: #555;
}

.info-card .hours-line {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 4px;
}

.info-card .hours-line strong {
  color: #1a1a1a;
}

/* ============================================
   Form Card
   ============================================ */
.form-card {
  border: 1.5px solid #c8cad8;
  border-radius: 20px;
  padding: 36px 32px;
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #c8cad8;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #1a1a1a;
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
  margin-top: 4px;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #1a1a1a;
  flex-shrink: 0;
}

.form-consent label {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

.btn-submit {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-submit:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Map Section (Locations page)
   ============================================ */
.locations-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 40px;
}

.locations-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.locations-sidebar .info-card {
  padding: 20px 18px;
}

.locations-sidebar .info-card h3 {
  font-size: 0.92rem;
}

.locations-sidebar .info-card p,
.locations-sidebar .info-card a {
  font-size: 0.85rem;
}

.locations-sidebar .info-card .hours-line {
  font-size: 0.82rem;
}

.map-container {
  width: 100%;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #f0f0f0;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

/* Bottom info card row (locations page) */
.locations-bottom-card {
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   Light Page Footer Section
   (footer-ctas and footer stay dark on all pages)
   ============================================ */
.page-light .footer-wrap {
  background: var(--bg-primary);
  color: var(--white);
}

/* ============================================
   Inner Page Responsive — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .locations-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .map-container {
    height: 450px;
  }

  .locations-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ============================================
   Inner Page Responsive — Mobile
   ============================================ */
@media (max-width: 768px) {
  .page-header {
    padding: 110px 0 32px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row .form-group {
    margin-bottom: 20px;
  }

  .form-card {
    padding: 24px 20px;
  }

  .info-cards {
    gap: 12px;
  }

  .locations-sidebar {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 350px;
  }
}

/* Legal Pages */
.legal-content {
  padding: 0 0 80px;
}

.legal-content .container {
  max-width: 800px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 40px 0 16px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-content a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: #666;
}

.legal-content .effective-date {
  font-size: 0.88rem;
  color: #888;
  font-style: italic;
  margin-bottom: 32px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.6;
}

.cookie-banner a {
  color: #c9a84c;
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 10px 24px;
  background: #c9a84c;
  color: #0a0a0a;
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s ease;
}

.cookie-accept:hover {
  background: #e0c068;
}

.cookie-decline {
  padding: 10px 24px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cookie-decline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner p {
    font-size: 0.82rem;
  }
}
