/* =====================================================
   VIDOGA DOGULO — MAIN STYLESHEET
   Dark Vibrant Design System
   ===================================================== */


:root {
  --bg-deep: #0a0f0d;
  --bg-surface: #0f1a14;
  --bg-card: #131f18;
  --bg-card-hover: #192a1f;
  --accent-green: #39ff8f;
  --accent-teal: #00e5c8;
  --accent-lime: #b8ff4f;
  --accent-green-dim: rgba(57,255,143,0.15);
  --text-primary: #e8f5ee;
  --text-secondary: #8aab96;
  --text-muted: #4d6b58;
  --glow-green: 0 0 20px rgba(57,255,143,0.35), 0 0 40px rgba(57,255,143,0.15);
  --glow-teal: 0 0 20px rgba(0,229,200,0.35), 0 0 40px rgba(0,229,200,0.15);
  --glow-lime: 0 0 20px rgba(184,255,79,0.35), 0 0 40px rgba(184,255,79,0.15);
  --border-subtle: rgba(57,255,143,0.12);
  --border-medium: rgba(57,255,143,0.25);
  --shadow-card: 0 4px 6px rgba(0,0,0,0.3), 0 10px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(57,255,143,0.06);
  --shadow-card-hover: 0 8px 20px rgba(0,0,0,0.4), 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(57,255,143,0.1);
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 1rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-green); text-decoration: none; transition: color 0.3s, opacity 0.3s; }
a:hover { opacity: 0.8; }

/* =====================================================
   CANVAS (Page Wrapper)
   ===================================================== */
.canvas {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =====================================================
   NAVIGATION (Drawer Nav)
   ===================================================== */
nav.drawer-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
nav.drawer-nav.scrolled {
  background: rgba(10,15,13,0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border-subtle);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo img { height: 36px; width: 36px; }
.nav-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-green);
  letter-spacing: -0.02em;
}
.hamburger {
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color 0.3s, box-shadow 0.3s;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger:hover {
  border-color: var(--accent-green);
  box-shadow: var(--glow-green);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   DRAWER (Mobile Menu Curtain)
   ===================================================== */
.drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  height: 100vh;
  background: linear-gradient(160deg, #0a1a10 0%, #061209 100%);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid var(--accent-green);
}
.drawer.open {
  transform: translateY(0);
}
.drawer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 2rem;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.drawer-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  transition: color 0.3s, background 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(-20px);
  text-align: center;
  width: 100%;
}
.drawer.open .drawer-link {
  opacity: 1;
  transform: translateY(0);
}
.drawer.open .drawer-link:nth-child(1) { transition-delay: 0.1s; }
.drawer.open .drawer-link:nth-child(2) { transition-delay: 0.15s; }
.drawer.open .drawer-link:nth-child(3) { transition-delay: 0.2s; }
.drawer.open .drawer-link:nth-child(4) { transition-delay: 0.25s; }
.drawer.open .drawer-link:nth-child(5) { transition-delay: 0.3s; }
.drawer-link:hover {
  color: var(--accent-green);
  background: rgba(57,255,143,0.08);
  transform: scale(1.02);
}
.drawer-close {
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  padding: 0.75rem 2rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.drawer-close:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  box-shadow: var(--glow-green);
}

/* =====================================================
   STAGE (Hero Section)
   ===================================================== */
@keyframes stageEntrance {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.stage {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.stage-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(57,255,143,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(0,229,200,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}
.stage-content {
  position: relative;
  z-index: 1;
  animation: stageEntrance 0.8s ease forwards;
}
.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(57,255,143,0.1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--accent-green);
  font-weight: 500;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(57,255,143,0.1);
}
.stage-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.stage-heading-accent {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stage-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.stage-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.stage-visual {
  position: relative;
  z-index: 1;
  animation: stageEntrance 0.8s 0.2s ease both;
}
.stage-visual-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse, rgba(57,255,143,0.12) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}
.stage-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px var(--border-subtle),
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(57,255,143,0.1);
  animation: float 6s ease-in-out infinite;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
  color: #0a1a10;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
  text-decoration: none;
  min-height: 44px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-green);
  filter: brightness(1.1);
  opacity: 1;
  color: #0a1a10;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  min-height: 44px;
}
.btn-ghost:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  box-shadow: 0 0 20px rgba(57,255,143,0.15);
  transform: translateY(-2px);
  opacity: 1;
}
.btn-full { width: 100%; justify-content: center; }

/* =====================================================
   LABELS & TAGS
   ===================================================== */
.label-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-teal);
  background: rgba(0,229,200,0.08);
  border: 1px solid rgba(0,229,200,0.2);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
}

/* =====================================================
   SECTION HEADINGS
   ===================================================== */
.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-header-spaced {
  margin-top: 5rem;
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =====================================================
   SHELF (Content Sections)
   ===================================================== */
.shelf {
  padding: var(--space-xl) 0;
  position: relative;
}
.shelf-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.shelf-inner-narrow {
  max-width: 860px;
}


.shelf-intro {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 100%);
}
.spotlight-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.spotlight-text .label-tag { margin-bottom: 1rem; }
.spotlight-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.spotlight-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.spotlight-visual { position: relative; }
.spotlight-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/3;
}
.spotlight-badge {
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--accent-green);
  box-shadow: var(--glow-green);
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */
.shelf-process {
  background: var(--bg-surface);
}
.process-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
}
.process-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-green);
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, border-color 0.3s;
  position: relative;
  z-index: 1;
}
.process-step:hover .process-icon {
  box-shadow: var(--glow-green);
  border-color: var(--accent-green);
}
.process-body {
  padding-bottom: 2.5rem;
}
.process-body h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.process-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.process-connector {
  position: absolute;
  left: 29px;
  top: 60px;
  width: 2px;
  height: calc(100% - 10px);
  background: linear-gradient(to bottom, var(--border-medium), transparent);
}


.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -8px;
  left: -8px;
  width: 22px;
  height: 22px;
  background: var(--accent-green);
  color: #0a1a10;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  line-height: 1;
  text-align: center;
  padding-top: 1px;
}

/* =====================================================
   SPOTLIGHT CTA
   ===================================================== */
.spotlight-cta {
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.spotlight-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.spotlight-cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(57,255,143,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
.spotlight-cta-glow-alt {
  background: radial-gradient(circle, rgba(0,229,200,0.12) 0%, transparent 70%);
}
.cta-icon {
  font-size: 2.5rem;
  color: var(--accent-green);
  margin-bottom: 1.25rem;
  display: block;
  filter: drop-shadow(0 0 12px rgba(57,255,143,0.5));
}
.spotlight-cta-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.spotlight-cta-inner p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.spotlight-cta-alt .spotlight-cta-inner {
  border-color: rgba(0,229,200,0.25);
}

/* =====================================================
   GALLERY (Cards Grid)
   ===================================================== */
.shelf-gallery { background: var(--bg-deep); }
.gallery { display: grid; gap: 1.5rem; }
.gallery-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-2 { grid-template-columns: 1fr 1fr; gap: 2rem; }
.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: var(--shadow-card);
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-medium);
}
.gallery-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-card-img img {
  transform: scale(1.05);
}
.gallery-card-body {
  padding: 1.25rem;
}
.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-lime);
  background: rgba(184,255,79,0.08);
  border: 1px solid rgba(184,255,79,0.2);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.6rem;
}
.gallery-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.gallery-card-body p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* =====================================================
   COMPARE SECTION
   ===================================================== */
.shelf-compare {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}
.compare-col {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.compare-col-b {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-card), 0 0 30px rgba(57,255,143,0.08);
}
.compare-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}
.compare-head i {
  font-size: 1.2rem;
  color: var(--text-muted);
}
.compare-col-b .compare-head i { color: var(--accent-green); }
.compare-head h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}
.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.compare-list li i {
  color: var(--text-muted);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.7rem;
}
.compare-col-b .compare-list li i { color: var(--accent-green); }
.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
}
.compare-vs {
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =====================================================
   CONTAINERS SECTION
   ===================================================== */
.shelf-containers { background: var(--bg-surface); }
.container-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.container-feature:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-card-hover);
}
.container-feature img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.container-feature-text {
  padding: 1.75rem;
}
.container-feature-text h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.container-feature-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* =====================================================
   TIPS SECTION
   ===================================================== */
.shelf-tips { background: var(--bg-deep); }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.tip-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  box-shadow: var(--shadow-card);
}
.tip-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.tip-icon {
  width: 48px;
  height: 48px;
  background: rgba(57,255,143,0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
  transition: box-shadow 0.3s;
}
.tip-card:hover .tip-icon {
  box-shadow: 0 0 15px rgba(57,255,143,0.25);
}
.tip-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.tip-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.65;
}
.tips-link {
  text-align: center;
  margin-top: 1rem;
}

/* =====================================================
   PAGE HERO (Inner Pages)
   ===================================================== */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 100%);
}
.page-hero-compact {
  min-height: 35vh;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  animation: stageEntrance 0.7s ease forwards;
}
.page-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.page-hero-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
}

/* =====================================================
   STORY PAGE
   ===================================================== */
.shelf-story { background: var(--bg-surface); flex: 1; }
.story-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: start;
}
.story-block-reverse {
  direction: rtl;
}
.story-block-reverse > * { direction: ltr; }
.story-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--border-medium);
  line-height: 1;
  padding-top: 0.25rem;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.story-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.story-content p {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.75;
}
.story-img-full {
  margin: 2rem 0 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.story-img-full img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}
.story-values {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-card);
}
.story-values h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.value-item i {
  font-size: 1.5rem;
  color: var(--accent-teal);
  margin-bottom: 0.75rem;
  display: block;
}
.value-item h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
.value-item p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}
.story-cta {
  background: linear-gradient(135deg, rgba(57,255,143,0.06) 0%, rgba(0,229,200,0.06) 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.story-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.story-cta p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.story-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   DELIVERY PAGE
   ===================================================== */
.shelf-delivery { background: var(--bg-surface); flex: 1; }
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.delivery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: var(--shadow-card);
}
.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-medium);
}
.delivery-card-highlight {
  border-color: var(--border-medium);
  background: linear-gradient(135deg, rgba(57,255,143,0.04) 0%, var(--bg-card) 100%);
}
.delivery-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(57,255,143,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-green);
  margin-bottom: 1.25rem;
}
.delivery-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.delivery-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.delivery-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent-lime);
  background: rgba(184,255,79,0.08);
  border: 1px solid rgba(184,255,79,0.2);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.6rem;
}
.delivery-after {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-card);
}
.delivery-after-icon {
  font-size: 2.5rem;
  color: var(--accent-green);
  text-align: center;
  padding-top: 0.25rem;
}
.delivery-after-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.delivery-after-text p {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--border-medium); }
.faq-q {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.faq-q i { color: var(--accent-teal); flex-shrink: 0; margin-top: 2px; }
.faq-a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.65;
  padding-left: 1.5rem;
}

/* =====================================================
   INTERIOR TIPS PAGE
   ===================================================== */
.shelf-tips-page { background: var(--bg-surface); flex: 1; }
.tips-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.tips-feature-reverse {
  direction: rtl;
}
.tips-feature-reverse > * { direction: ltr; }
.tips-feature-text .label-tag { margin-bottom: 0.75rem; }
.tips-feature-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.tips-feature-text p {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.75;
}
.tips-feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.tips-feature-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s;
}
.tips-feature-img:hover img { transform: scale(1.03); }


.light-compass {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.compass-dir {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.compass-dir span {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-green);
}
.compass-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 80px;
  line-height: 1.3;
}
.compass-n { top: 0; left: 50%; transform: translateX(-50%); }
.compass-s { bottom: 0; left: 50%; transform: translateX(-50%); }
.compass-e { right: 0; top: 50%; transform: translateY(-50%); }
.compass-w { left: 0; top: 50%; transform: translateY(-50%); }
.compass-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #0a1a10;
  box-shadow: var(--glow-green);
}


.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  box-shadow: var(--shadow-card);
}
.room-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.room-icon {
  font-size: 1.5rem;
  color: var(--accent-teal);
  margin-bottom: 0.75rem;
}
.room-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.room-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.room-plants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.room-plants span {
  font-size: 0.7rem;
  color: var(--accent-lime);
  background: rgba(184,255,79,0.08);
  border: 1px solid rgba(184,255,79,0.2);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.5rem;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.shelf-contact { background: var(--bg-surface); flex: 1; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.contact-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(57,255,143,0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  flex-shrink: 0;
}
.contact-info-item h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
}
.contact-info-item p, .contact-info-item a {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info-item a:hover { color: var(--accent-green); opacity: 1; }


.inquiry-timeline {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.inquiry-timeline h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.inquiry-steps {
  display: flex;
  flex-direction: column;
}
.inquiry-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  align-items: flex-start;
}
.inquiry-step-dot {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}
.inquiry-dot-done {
  background: rgba(57,255,143,0.15);
  border-color: var(--accent-green);
  color: var(--accent-green);
}
.inquiry-dot-active {
  background: rgba(0,229,200,0.15);
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  box-shadow: 0 0 12px rgba(0,229,200,0.2);
}
.inquiry-dot-upcoming {
  background: var(--bg-surface);
  border-color: var(--text-muted);
  color: var(--text-muted);
}
.inquiry-step-body {
  padding-bottom: 1.25rem;
}
.inquiry-step-body h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.inquiry-step-body p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.inquiry-connector {
  width: 2px;
  height: 20px;
  background: var(--border-subtle);
  margin-left: 17px;
  margin-bottom: 0;
}


.contact-form-wrap h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  min-height: 44px;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(57,255,143,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: unset;
  accent-color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-checkbox a {
  color: var(--accent-green);
  text-decoration: underline;
}


.contact-map { margin-bottom: 4rem; }
.contact-map h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

/* =====================================================
   THANKS PAGE
   ===================================================== */
.thanks-stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 4rem;
}
.thanks-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.thanks-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: stageEntrance 0.7s ease forwards;
}
.thanks-icon {
  font-size: 3rem;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(57,255,143,0.5));
}
.thanks-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}
.thanks-header p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.journey-timeline {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  animation: stageEntrance 0.7s 0.2s ease both;
}
.journey-timeline h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}
.journey-steps { display: flex; flex-direction: column; }
.journey-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.25rem;
  align-items: flex-start;
}
.journey-dot {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}
.journey-done .journey-dot {
  background: rgba(57,255,143,0.15);
  border-color: var(--accent-green);
  color: var(--accent-green);
}
.journey-dot-active {
  background: rgba(57,255,143,0.2) !important;
  border-color: var(--accent-green) !important;
  color: var(--accent-green) !important;
  box-shadow: var(--glow-green);
}
.journey-dot-upcoming {
  background: var(--bg-surface);
  border-color: var(--text-muted);
  color: var(--text-muted);
}
.journey-body { padding-bottom: 0.5rem; }
.journey-body h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.journey-body p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.55;
}
.journey-line {
  width: 2px;
  height: 28px;
  background: var(--border-medium);
  margin-left: 25px;
}
.journey-line-upcoming {
  background: var(--border-subtle);
}
.journey-upcoming .journey-body h3 { color: var(--text-muted); }

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.shelf-legal { background: var(--bg-surface); flex: 1; padding-bottom: 5rem; }
.legal-intro {
  background: rgba(57,255,143,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.legal-definition-box {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-card);
}
.legal-definition-box-alt {
  border-color: rgba(0,229,200,0.25);
}
.legal-definition-box h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.legal-definition-box dl { display: flex; flex-direction: column; gap: 0.75rem; }
.legal-definition-box dt {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.legal-definition-box dd {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  border-left: 2px solid var(--border-subtle);
  line-height: 1.55;
}
.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.legal-section p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.legal-section a {
  color: var(--accent-green);
  text-decoration: underline;
}
.legal-term {
  color: var(--accent-teal);
  font-weight: 600;
}


.terms-toc {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.terms-toc h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.toc-list li { counter-increment: none; }
.toc-list a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.toc-list a:hover { color: var(--accent-green); }


.cookie-tech-intro {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.cookie-tech-icon {
  font-size: 2.5rem;
  color: var(--accent-lime);
  text-align: center;
}
.cookie-tech-intro h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.cookie-tech-intro p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.cookie-category {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.cookie-cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.cookie-cat-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}
.cookie-cat-essential {
  background: rgba(57,255,143,0.15);
  color: var(--accent-green);
  border: 1px solid rgba(57,255,143,0.3);
}
.cookie-cat-analytics {
  background: rgba(0,229,200,0.15);
  color: var(--accent-teal);
  border: 1px solid rgba(0,229,200,0.3);
}
.cookie-cat-marketing {
  background: rgba(184,255,79,0.12);
  color: var(--accent-lime);
  border: 1px solid rgba(184,255,79,0.25);
}
.cookie-cat-header h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}
.cookie-required {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: auto;
}
.cookie-optional {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: auto;
}
.cookie-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: var(--radius-sm);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.cookie-table th {
  background: var(--bg-surface);
  color: var(--text-secondary);
  padding: 0.6rem 0.75rem;
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid var(--border-subtle);
}
.cookie-table td {
  padding: 0.6rem 0.75rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(57,255,143,0.05);
}
.cookie-table code {
  background: var(--bg-surface);
  border-radius: var(--radius-xs);
  padding: 0.1rem 0.4rem;
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--accent-lime);
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}
.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-nav ul,
.footer-legal ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a,
.footer-legal a {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--accent-green);
  opacity: 1;
}
.footer-contact li {
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact i { color: var(--accent-green); font-size: 0.8rem; }
.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--accent-green); opacity: 1; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =====================================================
   COOKIE CONSENT — FLOATING PILL
   ===================================================== */
.stage-curtain {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  max-width: calc(100vw - 2rem);
}
.cookie-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(19,31,24,0.95);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(57,255,143,0.1);
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-pill p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.cookie-pill-actions {
  display: flex;
  gap: 0.5rem;
}
.cookie-btn-accept {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
  color: #0a1a10;
  border: none;
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 34px;
}
.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-green);
}
.cookie-btn-customize {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  min-height: 34px;
}
.cookie-btn-customize:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}


.cookie-modal {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 420px;
  max-width: calc(100vw - 2rem);
  background: rgba(19,31,24,0.97);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(57,255,143,0.1);
  animation: stageEntrance 0.3s ease;
}
.cookie-modal.visible { display: block; }
.cookie-modal h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.cookie-modal p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.cookie-category-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.cookie-category-toggle:last-of-type { border-bottom: none; }
.cookie-cat-label {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}
.cookie-cat-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.toggle-switch input { display: none; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--text-muted);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: var(--radius-full);
  transition: transform 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--accent-green); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.cookie-modal-actions button {
  flex: 1;
  padding: 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 38px;
}
.cookie-save-btn {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
  color: #0a1a10;
  border: none;
}
.cookie-save-btn:hover { filter: brightness(1.1); }
.cookie-reject-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}
.cookie-reject-btn:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */
@media (max-width: 1024px) {
  .stage {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 3rem;
    gap: 2rem;
    text-align: center;
  }
  .stage-actions { justify-content: center; }
  .stage-subtext { margin-left: auto; margin-right: auto; }
  .stage-visual { max-width: 500px; margin: 0 auto; }
  .gallery-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .delivery-grid { grid-template-columns: 1fr; }
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .compare-divider { padding: 0; }
  .compare-vs { margin: 0 auto; }
  .tips-feature { grid-template-columns: 1fr; gap: 2rem; }
  .tips-feature-reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .spotlight-intro { grid-template-columns: 1fr; gap: 2rem; }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  nav.drawer-nav { padding: 1rem 1.25rem; }
  .stage { padding: 6rem 1.25rem 2.5rem; }
  .shelf { padding: 3rem 0; }
  .shelf-inner { padding: 0 1.25rem; }
  .gallery-4 { grid-template-columns: 1fr; }
  .gallery-2 { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .spotlight-cta-inner { padding: 2rem 1.5rem; }
  .story-block { grid-template-columns: 1fr; gap: 0.75rem; }
  .story-number { font-size: 2.5rem; }
  .story-block-reverse { direction: ltr; }
  .delivery-after { grid-template-columns: 1fr; gap: 1rem; }
  .delivery-after-icon { text-align: left; }
  .contact-layout { gap: 2.5rem; }
  .page-hero { padding: 6rem 1.25rem 2.5rem; }
  .cookie-pill {
    flex-direction: column;
    border-radius: var(--radius-lg);
    white-space: normal;
    text-align: center;
  }
  .cookie-pill-actions { justify-content: center; }
  .light-compass { max-width: 260px; }
  .process-step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .process-icon { width: 50px; height: 50px; font-size: 1.1rem; }
  .compare-grid { grid-template-columns: 1fr; }
  .section-header { padding: 0 0.5rem; }
}

@media (max-width: 400px) {
  .stage-heading { font-size: 2rem; }
  .btn-primary, .btn-ghost { font-size: 0.875rem; padding: 0.75rem 1.25rem; }
  .stage-actions { flex-direction: column; align-items: center; }
}