/* 
   Lustrumapps Style Sheet
   Premium design system: Light blue & white theme
   Professional typography, subtle shadows, and clean components
*/

/* --- Google Fonts (Loaded via HTML link preconnect tags for maximum performance) --- */

/* --- Design Variables --- */
:root {
  /* Colors */
  --primary: #53b3e3;           /* Brand Sky Blue (from Lustrumapps logo) */
  --primary-hover: #3ca4d8;     /* Deeper Brand Blue */
  --primary-light: #f0f8fc;     /* Soft brand ice-blue background */
  --primary-glow: rgba(83, 179, 227, 0.15);
  
  --secondary: #7dcbf0;         /* Secondary light blue accent */
  --accent: #1b88be;            /* Deeper blue for strong contrast */
  
  --bg-primary: #ffffff;        /* Pure white */
  --bg-secondary: #f8fafc;      /* Crisp off-white */
  --bg-tertiary: #f1f5f9;       /* Slate light grey */
  --bg-ice: #f2f7fc;            /* Soft brand ice-blue background */
  --bg-ice-deep: #daf0fb;       /* Soft deeper brand ice-blue */
  
  --text-main: #0f172a;         /* Slate 900 (High contrast readability) */
  --text-muted: #334155;        /* Slate 700 (Body copy) */
  --text-light: #64748b;        /* Slate 500 (Sub-text / captions) */
  --text-white: #ffffff;
  
  --border-color: #e2e8f0;      /* Slate 200 */
  --border-focus: #bce1f4;      /* Brand blue focus border */
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.02);
  --shadow-xl: 0 24px 48px -8px rgba(15, 23, 42, 0.06), 0 8px 16px -4px rgba(15, 23, 42, 0.03);
  --shadow-premium: 0 20px 40px -15px rgba(83, 179, 227, 0.12), 0 15px 25px -10px rgba(0, 0, 0, 0.02);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  /* Max width */
  --max-width: 1200px;
}

/* --- Base resets & Global styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-muted);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Custom */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
  border: 2px solid var(--bg-secondary);
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition-smooth);
  padding-top: env(safe-area-inset-top, 0px); /* Compatibility with iOS safe area notches in standalone PWA mode */
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--primary);
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: var(--transition-bounce), height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-img {
  transform: scale(1.06);
}

.site-header.scrolled .logo-img {
  height: 44px;
}

.hero-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: var(--transition-bounce);
}

.hero-logo-img:hover {
  transform: scale(1.06);
}


.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2);
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--text-white);
  stroke-width: 2.5;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

/* Navigation Button */
.nav-btn {
  background-color: var(--primary);
  color: var(--text-white);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
  transition: var(--transition-smooth);
}

.nav-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.25);
}

/* Burger Menu Mobile */
.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.burger-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  margin: 5px 0;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

/* --- Layout Sections --- */
main {
  margin-top: calc(80px + env(safe-area-inset-top, 0px)); /* Pushes content down when safe area inset is active on notch devices */
}

.section {
  padding: 100px 24px;
  position: relative;
  display: none;
  opacity: 0;
  transform: translateY(15px) scale(0.985);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section.active {
  display: block;
}

.section.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section.fade-out {
  opacity: 0;
  transform: translateY(-10px) scale(0.985);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 1, 1), 
              transform 0.2s cubic-bezier(0.4, 0, 1, 1);
}

#home.section {
  padding: 0;
}

/* --- Glowing Page Load Bar Transition --- */
.page-load-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  z-index: 10000;
  opacity: 0;
  transition: width 0.4s cubic-bezier(0.1, 0.8, 0.3, 1), opacity 0.3s ease;
  box-shadow: 0 0 10px var(--primary), 0 0 5px var(--accent);
  pointer-events: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid var(--border-focus);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.75px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Button UI Components */
.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.3);
}

.btn-secondary {
  background-color: var(--bg-primary);
  color: var(--text-main);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

/* --- SECTION: HOME (Hero) --- */
.hero-section {
  padding: 80px 24px 120px 24px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-cta {
  justify-content: flex-start;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 800;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Hero Mockup Design (Elegant, not AI-ish) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-wrapper {
  position: relative;
  width: 290px;
  height: 580px;
  background-color: #000000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 30px 60px rgba(15, 23, 42, 0.15);
  border: 4px solid #18181b;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.device-screen {
  width: 100%;
  height: 100%;
  background-color: var(--bg-secondary);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.device-notch {
  width: 120px;
  height: 22px;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

/* Mockup inner UI */
.mock-app-header {
  padding: 32px 16px 12px 16px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-app-logo {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.mock-app-burger {
  width: 14px;
  height: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mock-app-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 1px;
}

.mock-app-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.mock-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.mock-chart-placeholder {
  height: 90px;
  background: linear-gradient(180deg, var(--primary-light), rgba(255,255,255,0));
  border-radius: var(--radius-sm);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 8px;
}

.mock-chart-bar {
  flex: 1;
  background-color: var(--primary);
  margin: 0 3px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  opacity: 0.8;
  animation: growBar 2s ease-in-out infinite alternate;
}

@keyframes growBar {
  from { height: 10%; }
  to { height: 75%; }
}

.mock-avatar-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.mock-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: 2px solid var(--bg-primary);
}

.mock-title {
  width: 50%;
  height: 10px;
  background-color: var(--text-main);
  border-radius: 5px;
  margin-bottom: 6px;
}

.mock-subtitle {
  width: 80%;
  height: 8px;
  background-color: var(--text-light);
  border-radius: 4px;
}

.mock-nav {
  height: 48px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 12px;
}

.mock-nav-item {
  width: 24px;
  height: 24px;
  color: var(--text-light);
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  cursor: pointer;
}

.mock-nav-item.active {
  color: var(--primary);
  opacity: 1;
}

.mock-nav-item:hover {
  opacity: 1;
  color: var(--primary);
}

/* Secondary device behind (Tablet representation) */
.tablet-wrapper {
  position: absolute;
  width: 320px;
  height: 240px;
  background-color: #1e293b;
  border-radius: 20px;
  top: 160px;
  left: -80px;
  z-index: -1;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  border: 3px solid #475569;
  opacity: 0.95;
}

.tablet-screen {
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  border-radius: 12px;
  overflow: hidden;
  padding: 16px;
}

/* --- SECTION: INFO (Informatie) --- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.info-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-content .feature-list {
  margin-top: auto;
}

.info-content h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.info-text-block {
  margin-bottom: 28px;
}

.info-text-block p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 12px;
}

/* Waarom Lustrumapps specific card stylings */
.why-lustrum-card {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-primary), var(--primary-light));
  border: 1px solid var(--border-focus);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-premium);
  margin-top: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.why-intro-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
  color: var(--text-main);
  letter-spacing: -0.75px;
}

.why-intro-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.highlight-box {
  background-color: rgba(2, 132, 199, 0.06);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 20px;
}

.why-comparison {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.comparison-title {
  font-size: 1.25rem;
  margin-bottom: 24px;
  text-align: center;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.comparison-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-icon.red {
  background-color: #fef2f2;
  color: #ef4444;
}

.comparison-icon.green {
  background-color: #f0fdf4;
  color: #22c55e;
}

.comparison-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.comparison-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.comparison-text p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Feature grid items on top of info page */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  background-color: var(--bg-primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.feature-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* --- SECTION: DEMOS --- */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.demo-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.demo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-premium);
  border-color: var(--border-focus);
}

.demo-preview-container {
  height: 240px;
  background-color: var(--bg-ice);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 16px;
}

/* Device mockup placeholder inside card */
.demo-card-device {
  width: 140px;
  height: 220px;
  background-color: #000000;
  border-radius: 18px 18px 0 0;
  border: 3px solid #18181b;
  border-bottom: none;
  padding: 6px 6px 0 6px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.demo-card:hover .demo-card-device {
  transform: translateY(-4px);
}

.demo-card-screen {
  width: 100%;
  height: 100%;
  background-color: var(--bg-secondary);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.demo-screen-top {
  height: 24px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.demo-screen-dot {
  width: 16px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 3px;
}

.demo-screen-content {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-placeholder-line {
  height: 6px;
  background-color: var(--border-color);
  border-radius: 3px;
  width: 100%;
}

.demo-placeholder-image {
  height: 60px;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.demo-placeholder-image svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.demo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(4px);
}

.demo-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.demo-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.demo-description {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.demo-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.demo-feature-tag {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.demo-action {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--border-focus);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.demo-action:hover {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.demo-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* --- SECTION: REVIEWS --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-focus);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #eab308; /* Amber yellow stars */
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--border-focus);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* --- SECTION: PRIJSLIJST (Pricing) --- */
.price-container {
  max-width: 1000px;
  margin: 0 auto;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.price-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.price-card.popular {
  border: 2px solid var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-premium);
}

.price-card:hover:not(.popular) {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: -32px;
  background-color: var(--primary);
  color: var(--text-white);
  padding: 4px 32px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.price-card-header {
  margin-bottom: 28px;
}

.price-name {
  font-size: 1.25rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  display: flex;
  align-items: baseline;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  align-self: flex-start;
  margin-top: 4px;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-left: 4px;
}

.price-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.price-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.price-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.price-feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.price-feature-item.muted {
  color: var(--text-light);
  text-decoration: line-through;
  opacity: 0.6;
}

.price-feature-item.muted svg {
  color: var(--text-light);
}

.price-cta {
  width: 100%;
}

/* Pricing Note Footer */
.price-footer-note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.price-footer-note a {
  color: var(--primary);
  font-weight: 600;
}

/* --- SECTION: CONTACT & FAQ --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-card {
  display: flex;
  gap: 20px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--radius-md);
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-details p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-details a {
  color: var(--primary);
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Contact Form UI */
.contact-form-panel {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  background-color: var(--bg-primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

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

.form-btn {
  width: 100%;
}

.form-success-message {
  display: none;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.form-success-message svg {
  width: 48px;
  height: 48px;
  color: #22c55e;
  margin: 0 auto 16px auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.form-success-message h4 {
  color: #166534;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* FAQ Accordion */
.faq-section {
  margin-top: 80px;
  border-top: 1px solid var(--border-color);
  padding-top: 80px;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
  letter-spacing: -0.75px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.faq-question-btn:hover {
  color: var(--primary);
  background-color: var(--primary-light);
}

.faq-question-btn svg {
  width: 18px;
  height: 18px;
  color: var(--text-light);
  transition: var(--transition-smooth);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.faq-item.active .faq-question-btn svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background-color: var(--bg-primary);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
  border-top: 1px solid var(--border-color);
}

.faq-answer-inner {
  padding: 20px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 24px calc(30px + env(safe-area-inset-bottom, 0px)) 24px; /* Compatibility with bottom home indicator on iOS/Android PWA standalone mode */
  margin-top: 100px;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-nav-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.footer-legal-links a:hover {
  color: var(--primary);
}

/* --- RESPONSIVENESS (Media Queries) --- */

/* Tablet and iPad */
@media (max-width: 1024px) {
  .site-header {
    padding: 8px 0;
  }
  
  .nav-container {
    padding: 10px 24px;
  }
  
  .logo-img {
    height: 44px;
  }
  
  .logo {
    font-size: 1.2rem;
    gap: 8px;
  }
  
  .burger-menu {
    display: block;
    margin-right: -8px; /* Offset the 8px padding of button so the spans align perfectly to the right */
  }
  
  nav {
    display: contents; /* Ignore nav wrapper to align burger menu to the right of logo */
  }
  
  .nav-menu {
    position: fixed;
    top: 80px; /* Offset based on header height: site-header 8px*2 + nav-container 10px*2 + logo-img 44px = 80px */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    align-items: flex-start;
  }
  
  .nav-menu.open {
    transform: translateX(0);
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.15rem;
    display: block;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    margin-top: 16px;
  }
  
  /* Burger Animation */
  .burger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .burger-menu.open span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-stats {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .info-content .feature-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .why-lustrum-card {
    grid-column: span 2;
    padding: 24px;
  }
  
  .why-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
  }
  
  .why-comparison {
    padding: 20px;
  }
  
  .demo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #galleryGrid {
    grid-template-columns: repeat(2, 1fr) !important; /* 2-column layout for tablets to prevent squishing */
    gap: 32px !important;
  }
  
  .price-card.popular {
    transform: translateY(0);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Mobile Devices (iOS & Android) */
@media (max-width: 768px) {
  .nav-container {
    padding: 10px 12px;
  }
  
  .logo-img {
    height: 42px; /* Scale down logo on mobile */
  }
  
  .logo {
    font-size: 1.15rem; /* Scale down brand text on mobile */
  }
  
  .nav-menu {
    top: 78px; /* Adjusted offset for mobile height: site-header 8px*2 + nav-container 10px*2 + logo-img 42px = 78px */
    height: calc(100vh - 78px);
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .hero-section {
    padding: 30px 20px 70px 20px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.25;
    letter-spacing: -1px;
  }
  
  .hero-desc {
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .device-wrapper {
    width: 240px;
    height: 480px;
    padding: 10px;
    border-radius: 32px;
    border-width: 3px;
  }

  .device-notch {
    width: 90px;
    height: 18px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  
  /* Mockup UI responsive scale-down to prevent content overflow on iPhone */
  .mock-app-header {
    padding: 24px 12px 8px 12px !important;
  }
  
  .mock-app-body {
    padding: 12px !important;
    gap: 10px !important;
  }
  
  .mock-card {
    padding: 10px !important;
  }
  
  .mock-nav {
    height: 42px !important;
  }

  .floating-heart {
    font-size: 1.2rem !important;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
    padding-top: 24px;
    text-align: center;
  }

  .stat-item {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .tablet-wrapper {
    display: none; /* Hide backing mockup elements on small screens for clarity */
  }
  
  .feature-list {
    grid-template-columns: 1fr;
  }
  
  .demo-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .price-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form-panel {
    padding: 24px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  #galleryGrid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* --- PREMIUM INTERACTIVE MOCKUP STYLES --- */
.mock-tab-view {
  display: none;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  animation: slideUpView 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mock-tab-view.active {
  display: flex !important;
}

@keyframes slideUpView {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Scrollbar for Phone Album Feed */
#mock-album-feed::-webkit-scrollbar {
  width: 4px;
}
#mock-album-feed::-webkit-scrollbar-track {
  background: transparent;
}
#mock-album-feed::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}

/* Double-click Heart Burst Animation */
.floating-heart {
  position: absolute;
  color: #f43f5e;
  pointer-events: none;
  z-index: 100;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
  animation: heartBurst 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes heartBurst {
  0% { transform: scale(0) rotate(-15deg); opacity: 0; }
  35% { transform: scale(1.4) rotate(10deg); opacity: 1; }
  65% { transform: scale(1) rotate(-5deg); opacity: 1; }
  100% { transform: scale(0.7) translateY(-40px); opacity: 0; }
}

/* Confetti particles inside phone */
.mock-confetti {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  z-index: 100;
  pointer-events: none;
  animation: confettiFall 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes confettiFall {
  0% { transform: translateY(-10px) translateX(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(340px) translateX(var(--drift, 20px)) rotate(720deg); opacity: 0; }
}

/* Shake Animation for Wrong Answer */
.shake {
  animation: shakeBtn 0.4s ease-in-out;
}

@keyframes shakeBtn {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* Pulse Scale Animation */
.pulse-scale {
  animation: pulseScale 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes pulseScale {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Quiz Option States */
.mock-quiz-opt.correct {
  background-color: #d1fae5 !important;
  border-color: #10b981 !important;
  color: #065f46 !important;
}

.mock-quiz-opt.incorrect {
  background-color: #fee2e2 !important;
  border-color: #ef4444 !important;
  color: #991b1b !important;
}

/* Spin center adjustment */
#mock-spin-btn {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

#mock-spin-btn:hover {
  transform: translate(-50%, -50%) scale(1.08) !important;
  background: linear-gradient(135deg, #ffffff, #f1f5f9) !important;
}

#mock-spin-btn:active {
  transform: translate(-50%, -50%) scale(0.92) !important;
}

.mock-vote-btn:hover {
  transform: scale(1.18);
  background-color: var(--primary) !important;
  color: white !important;
}

#mock-upload-btn:hover {
  transform: scale(1.05);
}

.mock-album-card {
  transition: transform 0.25s ease;
}

.mock-album-card:hover {
  transform: translateY(-2px);
}

/* --- Download App Card Section --- */
.download-app-card {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-primary), var(--primary-light));
  border: 1px solid var(--border-focus);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-premium);
  margin-top: 60px;
}

.download-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.download-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.download-device {
  width: 260px;
  height: 520px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.download-device *,
.download-step * {
  cursor: pointer;
}

.download-device:hover {
  transform: translateY(-8px) scale(1.02);
}

.download-device:active {
  transform: translateY(-4px) scale(0.98);
}

#downloadPhoneImg {
  transition: opacity 0.2s ease-in-out;
}

.step-indicators {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.step-dot {
  width: 8px;
  height: 8px;
  background-color: var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.step-dot:hover {
  background-color: var(--text-light);
}

.step-dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 6px rgba(2, 132, 199, 0.4);
}

.download-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.download-title {
  font-size: 2rem;
  letter-spacing: -0.75px;
  margin-bottom: 8px;
}

.download-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.download-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 16px 0;
}

.download-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-step:hover {
  background-color: rgba(2, 132, 199, 0.04);
  border-color: var(--border-color);
}

.download-step.active {
  background-color: var(--bg-primary);
  border-color: var(--border-focus);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 28px;
  height: 28px;
  background-color: var(--bg-secondary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.download-step:hover .step-num {
  background-color: var(--primary-light);
  color: var(--primary);
}

.download-step.active .step-num {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.3);
}

.step-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.download-step.active .step-text h4 {
  color: var(--primary);
}

.step-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Responsive styles for download section */
@media (max-width: 1024px) {
  .download-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
  }
  .download-app-card {
    grid-column: span 2;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .download-title {
    font-size: 1.6rem;
  }
  .download-step {
    padding: 10px 12px;
    gap: 12px;
  }
  .download-device {
    width: 240px;
    height: 480px;
  }
}

/* Mobile stacking overrides for info section (under 680px) */
@media (max-width: 680px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-lustrum-card {
    grid-column: span 1;
    padding: 24px 16px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .download-app-card {
    grid-column: span 1;
    padding: 24px 16px;
  }
  
  .download-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================
   LEGAL PAGES (Privacy & Terms)
   ========================================== */
.legal-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 850px;
  margin: 0 auto;
}

.legal-card h3 {
  font-size: 1.35rem;
  color: var(--text-main);
  margin-top: 36px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  letter-spacing: -0.3px;
}

.legal-card h3:first-of-type {
  margin-top: 0;
}

.legal-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.975rem;
}

.legal-card ul, .legal-card ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-card li {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
  font-size: 0.975rem;
}

.legal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 30px;
  transition: var(--transition-smooth);
}

.legal-back-btn:hover {
  color: var(--primary-hover);
  transform: translateX(-4px);
}

.legal-back-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 24px;
    border-radius: var(--radius-md);
  }
  .legal-card h3 {
    font-size: 1.2rem;
    margin-top: 28px;
  }
}

