/* ===================== VARIABLES ===================== */
:root {
  --primary: #FF6B35;
  --primary-light: #FF8F5E;
  --primary-dark: #E55A25;
  --secondary: #F7C948;
  --secondary-light: #FFDF7E;
  --accent: #4ECDC4;
  --accent-light: #7EDDD6;
  --purple: #7C5CFC;
  --pink: #EC4899;
  --red: #FF6B6B;
  --green: #10B981;
  --blue: #3B82F6;

  --text: #1a1a2e;
  --text-light: #4a4a6a;
  --text-muted: #8888a8;
  --bg: #FFFBF5;
  --bg-card: #ffffff;
  --bg-dark: #1a1a2e;
  --bg-section: #FFF5ED;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  --shadow-color: 0 4px 24px rgba(255,107,53,0.15);

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 251, 245, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  z-index: 1001;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

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

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

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

.nav-cta-demo {
  padding: 10px 20px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-cta-demo:hover {
  background: rgba(255,107,53,0.08);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 10px 24px;
  background: var(--primary);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-color);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

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

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

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-links a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

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

.mobile-cta {
  padding: 14px 40px;
  background: var(--primary) !important;
  color: white !important;
  border-radius: 100px;
  font-size: 1.1rem !important;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 60px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-section) 100%);
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -50px;
  left: -100px;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.title-line {
  display: block;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border: 2px solid #e8e8ee;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Phone mockup */
.hero-phone {
  flex: 0 0 auto;
  position: relative;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: var(--bg-dark);
  border-radius: 40px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.2),
    inset 0 0 0 2px rgba(255,255,255,0.1);
}

.phone-frame-small {
  width: 240px;
  height: 500px;
  border-radius: 34px;
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: var(--bg-dark);
  border-radius: 0 0 20px 20px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-header-mock {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 40px 16px 16px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-title-mock {
  font-weight: 800;
  font-size: 1.1rem;
}

.app-club-mock {
  font-size: 0.75rem;
  opacity: 0.85;
}

.app-nav-mock {
  display: flex;
  background: #f8f8fa;
  padding: 8px;
  gap: 4px;
}

.app-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  border-radius: 10px;
  font-size: 0.6rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.app-nav-item.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.app-content-mock {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.app-event {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f8fa;
  border-radius: 12px;
  transition: var(--transition);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
  padding: 6px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
}

.event-day {
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.event-month {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-info strong {
  font-size: 0.75rem;
  font-weight: 700;
}

.event-info span {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.event-badge {
  font-size: 0.6rem;
  padding: 4px 8px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
  border-radius: 100px;
  font-weight: 600;
  white-space: nowrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Confetti */
.confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  opacity: 0.6;
  animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(calc(100vh + 100px)) rotate(720deg);
    opacity: 0;
  }
}

/* ===================== SECTION STYLES ===================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 107, 53, 0.08);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===================== PROBLEM ===================== */
.problem {
  padding: 120px 0;
  background: white;
}

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

.problem-card {
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid #f0f0f5;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.problem-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.problem-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.problem-solution {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.problem-solution.animated {
  opacity: 1;
  transform: translateY(0);
}

.solution-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.solution-arrow {
  animation: bounce-down 1.5s infinite;
  color: var(--primary);
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===================== FEATURES ===================== */
.features {
  padding: 120px 0;
  background: var(--bg-section);
}

.features-showcase {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.features-phone-wrapper {
  flex: 0 0 auto;
  position: sticky;
  top: 120px;
}

.features-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.feature-item:hover,
.feature-item.active {
  background: white;
  border-color: rgba(255, 107, 53, 0.15);
  box-shadow: var(--shadow);
}

.feature-item.active {
  border-color: var(--primary);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

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

/* Feature screen content */
.feature-screen {
  display: flex;
  flex-direction: column;
  background: white;
}

/* ===================== VOOR WIE ===================== */
.voor-wie {
  padding: 120px 0;
  background: white;
}

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

.audience-card {
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 2px solid #f0f0f5;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-30px);
}

.audience-card[data-animate="fade-up"] {
  transform: translateY(30px);
}

.audience-card[data-animate="slide-right"] {
  transform: translateX(30px);
}

.audience-card.animated {
  opacity: 1;
  transform: translate(0);
}

.audience-card.primary {
  background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(247,201,72,0.05));
  border-color: rgba(255,107,53,0.2);
}

.audience-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg);
}

.audience-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary);
  color: white;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.audience-badge.coming-soon {
  background: var(--text-muted);
}

.audience-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
}

.audience-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.audience-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audience-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.audience-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ===================== HOE WERKT HET ===================== */
.hoe-werkt-het {
  padding: 120px 0;
  background: var(--bg-section);
}

.steps-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.step.animated {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.step-visual {
  flex-shrink: 0;
  opacity: 0.15;
}

.step-connector {
  width: 3px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  margin: 0 auto;
  border-radius: 3px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 120px 0;
  background: white;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 340px;
  max-width: 340px;
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid #f0f0f5;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 0.9rem;
}

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

/* ===================== PRICING ===================== */
.pricing {
  padding: 120px 0;
  background: var(--bg-section);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px;
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid #f0f0f5;
  transition: var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-color);
}

.pricing-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  background: var(--primary);
  color: white;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.pricing-features li svg {
  flex-shrink: 0;
}

/* ===================== DOWNLOAD CTA ===================== */
.download-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--bg-dark), #2d2d4e);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.95);
}

.cta-content.animated {
  opacity: 1;
  transform: scale(1);
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

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

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: white;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
}

.store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.store-button small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.store-button strong {
  display: block;
  font-size: 1rem;
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 60px 0 32px;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
}

.footer-brand .logo-text {
  color: white;
}

.footer-links h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  opacity: 0.6;
  transition: var(--transition);
}

.footer-social a:hover {
  opacity: 1;
  color: var(--primary);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }

  .features-showcase {
    flex-direction: column;
    align-items: center;
  }

  .features-phone-wrapper {
    position: relative;
    top: 0;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 24px 80px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .phone-frame {
    width: 240px;
    height: 500px;
    border-radius: 34px;
  }

  .phone-screen {
    border-radius: 26px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .step-visual {
    display: none;
  }

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

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

  .section-header {
    margin-bottom: 40px;
  }

  .problem, .features, .voor-wie, .hoe-werkt-het, .testimonials, .pricing, .download-cta {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
  }

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

  .store-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ===================== ANIMATIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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