/*
 * Chatyoursite.nl — Premium Stylesheet
 * Clean white/blue design with elegant animations
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
  /* Colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  
  --green-500: #22c55e;
  --green-100: #dcfce7;
  
  --red-500: #ef4444;
  --red-100: #fee2e2;
  
  --yellow-400: #fbbf24;
  
  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--gray-50);
  --text: var(--gray-800);
  --text-light: var(--gray-500);
  --text-lighter: var(--gray-400);
  --border: var(--gray-200);
  --primary: var(--blue-500);
  --primary-dark: var(--blue-700);
  
  /* Typography */
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 80px;
  --container: 1200px;
  
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.15);
  --shadow-blue: 0 10px 40px -10px rgba(59,130,246,0.4);
  
  /* Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

p { color: var(--text-light); }

strong { color: var(--text); font-weight: 600; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.btn svg { flex-shrink: 0; transition: transform 0.2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  box-shadow: var(--shadow), var(--shadow-blue);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 15px 50px -10px rgba(59,130,246,0.5);
}

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

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--blue-50);
}

.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn--full { width: 100%; }

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(255,255,255,0.98);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
}

.nav__logo em {
  font-style: normal;
  color: var(--primary);
}

.nav__menu {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav__menu a {
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}

.nav__menu a:hover {
  color: var(--text);
  background: var(--gray-50);
}

.nav__cta { display: none; }

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  z-index: 1002;
  position: relative;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

/* Hamburger to X animation */
.nav__toggle.active span {
  background: var(--white);
}

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

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile Menu Overlay */
.nav__menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s var(--ease);
  z-index: 1001;
}

.nav__menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(29, 78, 216, 0.06) 100%);
  pointer-events: none;
}

.nav__menu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  pointer-events: none;
}

.nav__menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__menu > a {
  position: relative;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  transform: translateY(20px);
  opacity: 0;
  z-index: 1;
  letter-spacing: -0.01em;
}

.nav__menu > a:hover {
  color: var(--primary);
  background: var(--blue-50);
}

.nav__menu.active > a {
  transform: translateY(0);
  opacity: 1;
}

.nav__menu.active > a:nth-child(1) { transition-delay: 0.1s; }
.nav__menu.active > a:nth-child(2) { transition-delay: 0.15s; }
.nav__menu.active > a:nth-child(3) { transition-delay: 0.2s; }
.nav__menu.active > a:nth-child(4) { transition-delay: 0.25s; }
.nav__menu.active > a:nth-child(5) { transition-delay: 0.3s; }
.nav__menu.active > a:nth-child(6) { transition-delay: 0.35s; }
.nav__menu.active > a:nth-child(7) { transition-delay: 0.4s; }
.nav__menu.active > a:nth-child(8) { transition-delay: 0.45s; }

.nav__menu > a:hover,
.nav__menu > a:active {
  background: var(--blue-50);
  color: var(--primary);
}

.nav__menu-cta {
  margin-top: 20px;
  z-index: 1;
}

.nav__menu-cta.btn {
  font-size: 16px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.nav__menu-cta.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-dark);
}

@media (min-width: 768px) {
  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    flex-direction: row;
    background: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    gap: 8px;
  }
  
  .nav__menu::before {
    display: none;
  }
  
  .nav__menu > a {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    transform: none;
    opacity: 1;
  }
  
  .nav__menu > a:hover {
    color: var(--text);
    background: var(--gray-50);
    transform: none;
  }
  
  .nav__menu-cta { display: none; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* ============================================
   Hero - Premium Full Layout
   ============================================ */
.hero {
  position: relative;
  padding: 100px 20px 40px;
  min-height: auto;
  overflow: hidden;
}

/* Background Effects */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #EFF6FF 0%, #F8FAFC 100%);
}

.hero__grid {
  display: none;
}

.hero__glow {
  display: none;
}

.hero__glow--1 {
  top: 10%;
  right: 20%;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.2);
  animation: glowPulse 8s ease-in-out infinite;
}

.hero__glow--2 {
  bottom: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.15);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.3; }
}

/* Container */
.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}

.hero__row {
  display: grid;
  gap: 32px;
  align-items: center;
}

/* Left Column */
.hero__left {
  max-width: 580px;
}

.hero__badge {
  display: none;
}

.hero__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.hero__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 20px;
}

.hero__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 24px;
}

.hero__actions .btn {
  padding: 10px 16px;
  font-size: 14px;
}

.hero__actions .btn--lg {
  padding: 10px 16px;
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.hero__feature svg {
  color: #22C55E;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Mobile Visual - exact desktop visual scaled for mobile */
.hero__mobile-visual {
  display: block;
  margin: 20px 0;
  height: 280px;
}

.hero__mobile-visual .hero__dashboard {
  width: 700px;
  margin-left: -340px;
  left: 50%;
  position: relative;
  transform: scale(0.52);
  transform-origin: top center;
}

@media (min-width: 768px) {
  .hero__mobile-visual {
    display: none;
  }
}

/* Right Column - Dashboard (hidden on mobile) */
.hero__right {
  display: none;
}

.hero__dashboard {
  position: relative;
  padding: 20px;
}

/* Floating Badges */
.hero__float {
  position: absolute;
  z-index: 20;
}

.hero__float--1 {
  top: 0;
  right: 40px;
  animation: floatY 4s ease-in-out infinite;
}

.hero__float--2 {
  top: 35%;
  left: 20px;
  animation: floatY 5s ease-in-out infinite 1s;
}

.hero__float--3 {
  bottom: 25%;
  right: -10px;
  animation: floatY 4.5s ease-in-out infinite 0.5s;
}

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

.float-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.02);
  white-space: nowrap;
}

.float-badge--green svg { color: #22C55E; }
.float-badge--blue svg { color: #3B82F6; }
.float-badge--purple svg { color: #8B5CF6; }

/* Browser Window */
.dashboard__browser {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 
    0 25px 50px -12px rgba(0,0,0,0.15),
    0 0 0 1px rgba(0,0,0,0.05);
  overflow: hidden;
}

.browser__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border);
}

.browser__dots {
  display: flex;
  gap: 6px;
}

.browser__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser__dots span:nth-child(1) { background: #FF5F57; }
.browser__dots span:nth-child(2) { background: #FFBD2E; }
.browser__dots span:nth-child(3) { background: #28C840; }

.browser__url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-light);
}

.browser__content {
  padding: 16px;
  background: #F1F5F9;
  min-height: 240px;
}

/* Mini Site Preview */
.mini-site {
  background: var(--white);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.mini-site__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.mini-site__logo {
  width: 60px;
  height: 16px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-500));
  border-radius: 4px;
  animation: shimmer 2s ease-in-out infinite;
}

.mini-site__menu {
  display: flex;
  gap: 10px;
}

.mini-site__menu span {
  width: 36px;
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
}

.mini-site__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.mini-site__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mini-site__h1 {
  height: 14px;
  width: 90%;
  background: linear-gradient(90deg, var(--gray-300), var(--gray-400));
  border-radius: 4px;
}

.mini-site__p {
  height: 8px;
  width: 100%;
  background: var(--gray-200);
  border-radius: 4px;
}

.mini-site__p--short { width: 60%; }

.mini-site__cta {
  width: 70px;
  height: 22px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: 6px;
  animation: pulse 2s ease-in-out infinite;
}

.mini-site__img {
  height: 80px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  border-radius: 8px;
  animation: shimmer 2.5s ease-in-out infinite;
}

.mini-site__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-site__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 6px;
  background: var(--gray-50);
  border-radius: 6px;
}

.mini-site__icon {
  width: 24px;
  height: 24px;
  background: var(--blue-100);
  border-radius: 6px;
}

.mini-site__lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.mini-site__lines span {
  height: 5px;
  background: var(--gray-200);
  border-radius: 3px;
}

.mini-site__lines span:first-child { width: 80%; }
.mini-site__lines span:last-child { width: 50%; }

/* ========================================
   PROFESSIONAL REALTOR WEBSITE PREVIEW
   High-end real estate website with real photos
   ======================================== */

.realtor-site {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  font-family: 'Outfit', -apple-system, sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Top Bar */
.realtor-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 8px;
  background: #1a365d;
  color: #fff;
}

.realtor-topbar__contact {
  display: flex;
  gap: 8px;
}

.realtor-topbar__contact span {
  font-size: 4px;
  opacity: 0.9;
}

.realtor-topbar__social {
  display: flex;
  gap: 4px;
}

.realtor-topbar__social span {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4px;
  font-weight: 600;
}

/* Main Navigation */
.realtor-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.realtor-nav__logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.realtor-nav__logo-icon {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.realtor-nav__logo-icon span {
  color: #fff;
  font-size: 8px;
  font-weight: 700;
}

.realtor-nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.realtor-nav__brand {
  font-size: 6px;
  font-weight: 700;
  color: #1a365d;
}

.realtor-nav__tagline {
  font-size: 3.5px;
  color: #718096;
}

.realtor-nav__menu {
  display: flex;
  gap: 6px;
}

.realtor-nav__item {
  font-size: 4.5px;
  color: #4a5568;
  cursor: pointer;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.realtor-nav__item--active {
  color: #1a365d;
  font-weight: 600;
  border-bottom-color: #ed8936;
}

.realtor-nav__cta {
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
  color: #fff;
  font-size: 4px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(237, 137, 54, 0.3);
}

/* Hero Section */
.realtor-hero {
  position: relative;
  height: 85px;
  overflow: hidden;
}

.realtor-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.realtor-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(26, 54, 93, 0.4) 100%);
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.realtor-hero__content {
  max-width: 65%;
}

.realtor-hero__subtitle {
  display: inline-block;
  font-size: 3.5px;
  color: #ed8936;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 3px;
}

.realtor-hero__title {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 4px 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.realtor-hero__text {
  font-size: 4.5px;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* Search Box */
.realtor-search {
  background: #fff;
  border-radius: 4px;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.realtor-search__tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.realtor-search__tab {
  font-size: 4px;
  padding: 2px 6px;
  border-radius: 2px;
  color: #718096;
  cursor: pointer;
}

.realtor-search__tab--active {
  background: #1a365d;
  color: #fff;
  font-weight: 600;
}

.realtor-search__fields {
  display: flex;
  gap: 3px;
  align-items: center;
}

.realtor-search__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px 5px;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
}

.realtor-search__icon {
  font-size: 5px;
}

.realtor-search__placeholder {
  font-size: 4px;
  color: #a0aec0;
}

.realtor-search__btn {
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
  color: #fff;
  font-size: 4px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 3px;
  cursor: pointer;
}

/* Stats Bar */
.realtor-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f7fafc;
  border-bottom: 1px solid #e2e8f0;
}

.realtor-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 4px;
  border-right: 1px solid #e2e8f0;
}

.realtor-stat:last-child {
  border-right: none;
}

.realtor-stat__number {
  font-size: 8px;
  font-weight: 700;
  color: #1a365d;
  line-height: 1;
}

.realtor-stat__label {
  font-size: 3.5px;
  color: #718096;
  text-align: center;
  margin-top: 1px;
}

/* Properties Section */
.realtor-properties {
  padding: 8px;
  background: #fff;
}

.realtor-properties__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.realtor-properties__title {
  font-size: 6px;
  font-weight: 700;
  color: #1a365d;
  margin: 0;
}

.realtor-properties__link {
  font-size: 4px;
  color: #ed8936;
  font-weight: 600;
  cursor: pointer;
}

.realtor-properties__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

/* Property Card */
.realtor-property {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.realtor-property:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: #cbd5e0;
}

.realtor-property__img {
  position: relative;
  height: 40px;
  overflow: hidden;
}

.realtor-property__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.realtor-property:hover .realtor-property__img img {
  transform: scale(1.05);
}

.realtor-property__status {
  position: absolute;
  top: 3px;
  left: 3px;
  background: #48bb78;
  color: #fff;
  font-size: 3.5px;
  font-weight: 600;
  padding: 1.5px 4px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.realtor-property__status--reserved {
  background: #ed8936;
}

.realtor-property__status--sold {
  background: #e53e3e;
}

.realtor-property__fav {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6px;
  color: #cbd5e0;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.realtor-property__fav--active {
  color: #e53e3e;
}

.realtor-property__info {
  padding: 5px;
}

.realtor-property__price {
  display: block;
  font-size: 6px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 2px;
}

.realtor-property__price small {
  font-size: 4px;
  font-weight: 400;
  color: #718096;
}

.realtor-property__address {
  display: block;
  font-size: 4.5px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1px;
}

.realtor-property__city {
  display: block;
  font-size: 3.5px;
  color: #718096;
  margin-bottom: 3px;
}

.realtor-property__specs {
  display: flex;
  gap: 4px;
  padding-top: 3px;
  border-top: 1px solid #f0f0f0;
}

.realtor-property__specs span {
  font-size: 3.5px;
  color: #718096;
  display: flex;
  align-items: center;
  gap: 1px;
}

/* Mobile responsiveness for realtor site */
@media (max-width: 768px) {
  .realtor-nav__menu {
    display: none;
  }
  
  .realtor-hero {
    height: 75px;
  }
  
  .realtor-hero__title {
    font-size: 8px;
  }
  
  .realtor-search__fields {
    flex-wrap: wrap;
  }
  
  .realtor-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .realtor-stat:nth-child(2) {
    border-right: none;
  }
  
  .realtor-properties__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .realtor-property:last-child {
    display: none;
  }
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Stats Row */
.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.stat-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s var(--ease);
}

.stat-mini:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-mini__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.stat-mini__icon--yellow { background: #FEF3C7; color: #F59E0B; }
.stat-mini__icon--green { background: #DCFCE7; color: #22C55E; }
.stat-mini__icon--blue { background: #DBEAFE; color: #3B82F6; }

.stat-mini__content {
  display: flex;
  flex-direction: column;
}

.stat-mini__value {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
}

.stat-mini__label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* WhatsApp Preview */
.dashboard__whatsapp {
  position: absolute;
  bottom: 10px;
  left: -30px;
  z-index: 10;
  animation: floatY 6s ease-in-out infinite 2s;
}

.whatsapp-preview {
  width: 260px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
}

.whatsapp-preview__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #075E54;
  color: var(--white);
}

.whatsapp-preview__avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.whatsapp-preview__info {
  display: flex;
  flex-direction: column;
}

.whatsapp-preview__name {
  font-size: 14px;
  font-weight: 600;
}

.whatsapp-preview__status {
  font-size: 11px;
  opacity: 0.8;
}

.whatsapp-preview__messages {
  padding: 12px;
  background: #ECE5DD;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wa-msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  position: relative;
}

.wa-msg p { margin: 0 0 2px; color: var(--gray-800); }
.wa-msg span { font-size: 10px; color: var(--text-lighter); float: right; margin-left: 8px; }

.wa-msg--in {
  align-self: flex-start;
  background: var(--white);
  border-bottom-left-radius: 2px;
}

.wa-msg--out {
  align-self: flex-end;
  background: #DCF8C6;
  border-bottom-right-radius: 2px;
}

/* Bottom Section */
.hero__bottom {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Social Proof */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof__avatars {
  display: flex;
}

.proof__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--white);
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.proof__avatar:first-child { margin-left: 0; }

.proof__avatar--more {
  background: var(--gray-100);
  color: var(--text);
  font-size: 9px;
}

.proof__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.proof__stars {
  color: #FBBF24;
  font-size: 12px;
  letter-spacing: 1px;
}

.proof__text span {
  font-size: 12px;
  color: var(--text-light);
}

/* Trust Badges - hidden on mobile */
.hero__badges {
  display: none;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text);
  transition: all 0.2s var(--ease);
}

.trust-badge:hover {
  border-color: var(--primary);
  background: var(--blue-50);
}

.trust-badge svg { color: var(--primary); }

/* Desktop Responsive */
@media (min-width: 768px) {
  .hero {
    padding: 120px 24px 60px;
  }
  
  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  
  .hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
  }
  
  @keyframes dotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  }
  
  .hero__title {
    font-size: 2.5rem;
    margin-bottom: 24px;
  }
  
  .hero__subtitle {
    font-size: 18px;
    margin-bottom: 32px;
  }
  
  .hero__actions {
    flex-direction: row;
    gap: 14px;
    margin-bottom: 36px;
  }
  
  .hero__actions .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .hero__actions .btn--lg {
    padding: 14px 28px;
  }
  
  .hero__features {
    gap: 12px;
    margin-bottom: 0;
  }
  
  .hero__feature {
    font-size: 15px;
    gap: 12px;
  }
  
  .hero__feature svg {
    width: 20px;
    height: 20px;
  }
  
  .hero__bottom {
    gap: 24px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }
  
  .hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .proof__avatar {
    width: 40px;
    height: 40px;
    border: 3px solid var(--white);
    font-size: 12px;
    margin-left: -12px;
  }
  
  .proof__stars { font-size: 14px; }
  .proof__text span { font-size: 14px; }
}

@media (min-width: 1024px) {
  .hero {
    padding: 140px 24px 80px;
    min-height: 100vh;
  }
  
  .hero__gradient {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #F8FAFC 100%);
  }
  
  .hero__grid {
    display: block;
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  
  .hero__glow {
    display: block;
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
  }
  
  .hero__glow--1 {
    top: 10%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.2);
    animation: glowPulse 8s ease-in-out infinite;
  }
  
  .hero__glow--2 {
    bottom: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.15);
    animation: glowPulse 10s ease-in-out infinite reverse;
  }
  
  @keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.3; }
  }
  
  .hero__title {
    font-size: 3.5rem;
  }
  
  .hero__row {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
  }
  
  .hero__right {
    display: block;
  }
  
  .hero__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .hero__row {
    gap: 80px;
  }
  
  .hero__dashboard {
    padding: 30px;
  }
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: var(--section-padding) 24px;
}

.section--alt {
  background: var(--bg-alt);
}

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

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section__label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--blue-100);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section__title { margin-bottom: 16px; }
.section__subtitle { font-size: 18px; }

/* ============================================
   Steps - With Number Rotation Animation
   ============================================ */
.steps {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.step {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}

.step:hover {
  border-color: var(--blue-300);
}

.step:active,
.step.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--blue-100);
}

.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius);
  color: var(--primary);
  margin-bottom: 16px;
  transition: all 0.3s var(--ease);
}

.step:active .step__icon,
.step.active .step__icon {
  background: var(--primary);
  color: var(--white);
}

.step__number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: rotate(-180deg) scale(0.5);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step.step--animated .step__number {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Staggered animation delays for step numbers */
.step[data-step="1"] .step__number { transition-delay: 0s; }
.step[data-step="2"] .step__number { transition-delay: 0.15s; }
.step[data-step="3"] .step__number { transition-delay: 0.3s; }
.step[data-step="4"] .step__number { transition-delay: 0.45s; }

/* Rest of step content also animates in */
.step__title,
.step__desc,
.step__icon {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s var(--ease-out);
}

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

.step.step--animated .step__desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.step.step--animated .step__icon {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

/* Add additional delay per step for content */
.step[data-step="1"].step--animated .step__icon { transition-delay: 0.1s; }
.step[data-step="1"].step--animated .step__title { transition-delay: 0.15s; }
.step[data-step="1"].step--animated .step__desc { transition-delay: 0.2s; }

.step[data-step="2"].step--animated .step__icon { transition-delay: 0.25s; }
.step[data-step="2"].step--animated .step__title { transition-delay: 0.3s; }
.step[data-step="2"].step--animated .step__desc { transition-delay: 0.35s; }

.step[data-step="3"].step--animated .step__icon { transition-delay: 0.4s; }
.step[data-step="3"].step--animated .step__title { transition-delay: 0.45s; }
.step[data-step="3"].step--animated .step__desc { transition-delay: 0.5s; }

.step[data-step="4"].step--animated .step__icon { transition-delay: 0.55s; }
.step[data-step="4"].step--animated .step__title { transition-delay: 0.6s; }
.step[data-step="4"].step--animated .step__desc { transition-delay: 0.65s; }

.step__title { margin-bottom: 6px; font-size: 1.1rem; }
.step__desc { font-size: 14px; max-width: 280px; line-height: 1.5; }

@media (min-width: 768px) {
  .steps { 
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .step {
    padding: 32px;
  }
  
  .step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  
  .step__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }
  
  .step__number {
    font-size: 48px;
    top: 24px;
    right: 24px;
  }
  
  .step__title { font-size: 1.25rem; }
  .step__desc { font-size: 15px; }
}

@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

/* CTA Banner */
.cta-banner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: var(--radius-xl);
  color: var(--white);
}

.cta-banner h3 { color: var(--white); font-size: 1.5rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin: 0; }

.cta-banner .btn--primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.cta-banner .btn--primary:hover {
  background: var(--gray-50);
}

@media (min-width: 768px) {
  .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ============================================
   Pricing
   ============================================ */
.pricing {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 32px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
}

.price-card__features {
  list-style: none;
  margin-bottom: 16px;
  flex-grow: 1;
}

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

.price-card:active,
.price-card.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--blue-100), var(--shadow-md);
}

.price-card--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow), var(--shadow-blue);
}

.price-card--featured:hover {
  box-shadow: var(--shadow-lg), 0 20px 60px -15px rgba(59,130,246,0.4);
}

.price-card--featured:active,
.price-card--featured.active {
  box-shadow: 0 0 0 4px var(--blue-100), var(--shadow-lg), 0 20px 60px -15px rgba(59,130,246,0.4);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
}

.price-card__header { margin-bottom: 24px; }
.price-card__name { margin-bottom: 4px; }
.price-card__tagline { font-size: 14px; }

.price-card__price {
  margin-bottom: 8px;
}

.price-card__amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
}

.price-card__amount small {
  font-size: 24px;
}

.price-card__period {
  font-size: 16px;
  color: var(--text-light);
}

.price-card__vat {
  display: inline-block;
  font-size: 12px;
  color: var(--text-lighter);
  font-weight: 400;
  margin-left: 2px;
}

.price-card__promo {
  display: inline-block;
  padding: 6px 12px;
  background: var(--green-100);
  color: var(--green-500);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
}

.price-card__features li:last-child { border: none; }
.price-card__features svg { flex-shrink: 0; margin-top: 2px; }

.price-card__meta {
  font-size: 13px;
  color: var(--text-lighter);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .pricing { grid-template-columns: repeat(3, 1fr); }
  
  .price-card--featured { transform: scale(1.02); }
  .price-card--featured:hover { transform: scale(1.04); }
}

/* Included Banner */
.included-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

.included-banner__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius);
  color: var(--primary);
}

.included-banner__content {
  flex: 1;
}

.included-banner h4 { margin-bottom: 4px; }
.included-banner p { font-size: 14px; margin: 0; }

/* Compare Section */
.compare-section { margin-top: 60px; }
.compare-section__title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.5rem;
}

.compare-grid {
  display: grid;
  gap: 24px;
}

.compare-card {
  position: relative;
  padding: 28px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.6s var(--ease);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.compare-card.animate-in-view {
  opacity: 1;
  transform: translateY(0);
}

.compare-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.compare-card.animate-in-view::before {
  transform: scaleX(1);
  transition-delay: 0.3s;
}

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

.compare-card--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
}

.compare-card--featured::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--blue-500), var(--blue-700));
}

.compare-card--featured:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 20px 60px -15px rgba(59,130,246,0.3);
}

.compare-card__header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.compare-card__header h4 { margin-bottom: 4px; }
.compare-card__header span { font-size: 14px; color: var(--text-light); }

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

.compare-card__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s var(--ease);
}

.compare-card.animate-in-view .compare-card__list li {
  opacity: 1;
  transform: translateX(0);
}

.compare-card.animate-in-view .compare-card__list li:nth-child(1) { transition-delay: 0.4s; }
.compare-card.animate-in-view .compare-card__list li:nth-child(2) { transition-delay: 0.5s; }
.compare-card.animate-in-view .compare-card__list li:nth-child(3) { transition-delay: 0.6s; }
.compare-card.animate-in-view .compare-card__list li:nth-child(4) { transition-delay: 0.7s; }

.compare-card__list svg { flex-shrink: 0; }

@media (min-width: 768px) {
  .compare-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   Reviews
   ============================================ */
.reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.reviews-rating__stars {
  display: flex;
  gap: 4px;
  color: var(--yellow-400);
}

.reviews-rating__text {
  font-size: 15px;
  color: var(--text-light);
}

.reviews-slider {
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}

.reviews-slider__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 0;
}

.reviews-slider__track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 320px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
  transition: all 0.3s var(--ease);
}

.review-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.review-card__name { font-weight: 600; color: var(--gray-900); font-size: 15px; }
.review-card__company { font-size: 13px; color: var(--text-light); }

.review-card__stars {
  display: flex;
  gap: 2px;
  color: var(--yellow-400);
  font-size: 14px;
  margin-bottom: 12px;
}

.review-card__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.review-card__date {
  font-size: 13px;
  color: var(--text-lighter);
}

/* Reviews Controls */
.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.reviews-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-light);
  transition: all 0.2s var(--ease);
}

.reviews-control:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--blue-50);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text);
}

.trust-badge svg { color: var(--primary); }

/* Trust Badges Premium Compact Version */
.trust-badges--compact {
  gap: 20px;
  margin-top: 40px;
}

.trust-badge--premium {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}

.trust-badge--premium:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trust-badge__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%);
  border-radius: var(--radius);
  color: var(--primary);
  flex-shrink: 0;
}

.trust-badge--premium:hover .trust-badge__icon-wrap {
  background: var(--primary);
  color: var(--white);
}

.trust-badge__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-badge__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
}

.trust-badge__sub {
  font-size: 12px;
  color: var(--text-light);
}

/* Mobile only 2 badges centered */
@media (max-width: 767px) {
  .trust-badges--compact {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
  
  .trust-badge--premium {
    flex: 1;
    max-width: 180px;
    padding: 14px 16px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .trust-badge__icon-wrap {
    margin: 0 auto;
  }
  
  .trust-badge__content {
    align-items: center;
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 60px;
}

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

.faq-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.faq-item:hover { border-color: var(--blue-300); }
.faq-item[open] { 
  border-color: var(--primary); 
  box-shadow: 0 0 0 4px var(--blue-100);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 500;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.2s var(--ease);
}

.faq-item[open] summary svg { transform: rotate(180deg); }

.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Final CTA */
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 32px;
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-xl);
  text-align: center;
}

.final-cta h3 { margin-bottom: 8px; }
.final-cta p { margin: 0; }

@media (min-width: 768px) {
  .final-cta {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================
   Footer - Premium Design
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--gray-900) 0%, #0a0f1a 100%);
  color: var(--gray-400);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
  opacity: 0.3;
}

.footer__top {
  padding: 60px 24px 48px;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  transition: transform 0.3s var(--ease);
}

.footer__logo:hover {
  transform: translateX(4px);
}

.footer__logo em { 
  font-style: normal; 
  background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__tagline {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 28px;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--gray-400);
  transition: all 0.3s var(--ease);
}

.footer__social-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--blue-500);
  color: var(--blue-400);
  transform: translateY(-3px);
}

.footer__social-btn--whatsapp:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: var(--green-500);
  color: var(--green-500);
}

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

.footer__col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  border-radius: 2px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 8px 0;
  transition: all 0.2s var(--ease);
  position: relative;
}

.footer__col a:hover { 
  color: var(--white);
  transform: translateX(4px);
}

.footer__cta {
  display: none;
}

.footer__cta-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.footer__cta-card h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer__cta-card p {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

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

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.footer__bottom {
  padding: 24px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer__copyright,
.footer__legal-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  flex-wrap: wrap;
  justify-content: center;
}

.footer__divider {
  opacity: 0.3;
}

/* Footer Mobile */
@media (max-width: 767px) {
  .footer__top {
    padding: 48px 24px 40px;
  }
  
  .footer__brand {
    text-align: center;
  }
  
  .footer__logo {
    justify-content: center;
  }
  
  .footer__tagline {
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer__social {
    justify-content: center;
    margin-bottom: 32px;
  }
  
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer__col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer__col a:hover {
    transform: translateX(0);
  }
}

/* Footer Tablet */
@media (min-width: 768px) {
  .footer__top {
    padding: 72px 24px 56px;
  }
  
  .footer__inner {
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
  }
  
  .footer__nav {
    gap: 32px;
  }
  
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Footer Desktop */
@media (min-width: 1024px) {
  .footer__top {
    padding: 80px 24px 64px;
  }
  
  .footer__inner {
    grid-template-columns: 1.3fr 2fr 1fr;
    gap: 48px;
  }
  
  .footer__cta {
    display: block;
  }
  
  .footer__nav {
    gap: 40px;
  }
}

/* ============================================
   WhatsApp Wijzigingen Section
   ============================================ */
.whatsapp-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.whatsapp-section__content {
  max-width: 540px;
  text-align: center;
}

.whatsapp-section__content .section__label {
  margin-bottom: 16px;
}

.whatsapp-section__content .section__title {
  margin-bottom: 16px;
  text-align: center;
}

.whatsapp-section__intro {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Video comes after intro on mobile */
.whatsapp-section__video {
  position: relative;
  display: flex;
  justify-content: center;
  order: 2;
}

.whatsapp-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
  order: 3;
}

.whatsapp-step {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.whatsapp-step:hover {
  border-color: var(--blue-300);
}

.whatsapp-step:active,
.whatsapp-step.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--blue-100);
}

.whatsapp-step:active .whatsapp-step__icon,
.whatsapp-step.active .whatsapp-step__icon {
  transform: scale(1.1);
}

.whatsapp-step__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: var(--radius);
  color: var(--white);
  transition: transform 0.3s var(--ease);
}

.whatsapp-step__content h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.whatsapp-step__content p {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.whatsapp-section__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  order: 4;
}

.whatsapp-section__cta .btn {
  width: 100%;
}

/* Phone Mockup - Smaller on mobile */
.phone-mockup {
  position: relative;
  width: 220px;
  height: 460px;
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  border-radius: 36px;
  padding: 10px;
  box-shadow: 
    0 30px 60px -20px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.phone-mockup__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

.phone-mockup__notch::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #2d2d2d;
  border-radius: 50%;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  background: var(--gray-900);
  border-radius: 26px;
  overflow: hidden;
}

.phone-mockup__screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup__indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

.video-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.video-badge svg {
  color: var(--primary);
  width: 14px;
  height: 14px;
}

@media (min-width: 768px) {
  .whatsapp-section {
    gap: 40px;
  }
  
  .whatsapp-section__intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
  }
  
  .whatsapp-steps {
    gap: 24px;
    margin-bottom: 40px;
  }
  
  .whatsapp-step {
    gap: 20px;
    padding: 24px;
  }
  
  .whatsapp-step:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
  }
  
  .whatsapp-step__icon {
    width: 48px;
    height: 48px;
  }
  
  .whatsapp-step__content h3 {
    font-size: 17px;
    margin-bottom: 6px;
  }
  
  .whatsapp-step__content p {
    font-size: 15px;
  }
  
  .whatsapp-section__cta .btn {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .whatsapp-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  
  .whatsapp-section__content {
    text-align: left;
  }
  
  .whatsapp-section__content .section__title {
    text-align: left;
  }
  
  .whatsapp-section__video {
    order: 2;
    grid-row: 1 / 4;
    grid-column: 2;
    align-self: center;
  }
  
  .whatsapp-steps {
    order: 0;
  }
  
  .whatsapp-section__cta {
    order: 0;
    justify-content: flex-start;
  }
  
  .phone-mockup {
    width: 280px;
    height: 580px;
    border-radius: 42px;
    padding: 11px;
  }
  
  .phone-mockup__notch {
    width: 95px;
    height: 26px;
    top: 11px;
  }
  
  .phone-mockup__screen {
    border-radius: 31px;
  }
  
  .video-badge {
    padding: 11px 18px;
    font-size: 13px;
    bottom: -18px;
  }
}

/* ============================================
   Animations - Enhanced
   ============================================ */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered animations */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }

/* Card hover animations */
.step,
.price-card,
.review-card,
.compare-card,
.faq-item {
  transition: all 0.4s var(--ease);
}

.step:hover {
  transform: translateY(-8px);
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

/* Button pulse animation */
.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn--primary:hover::after {
  transform: translateX(100%);
}

/* Float animation for visual elements */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__visual {
  animation: float 6s ease-in-out infinite;
}

.whatsapp-section__video .phone-mockup {
  animation: float 5s ease-in-out infinite;
}

/* Pulse animation for badges */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(59, 130, 246, 0); }
}

.hero__badge svg circle:first-child {
  animation: pulse 2s ease-in-out infinite;
}

/* Trust items stagger */
.hero__trust .trust-item {
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease-out) forwards;
}

.hero__trust .trust-item:nth-child(1) { animation-delay: 0.5s; }
.hero__trust .trust-item:nth-child(2) { animation-delay: 0.6s; }
.hero__trust .trust-item:nth-child(3) { animation-delay: 0.7s; }

/* Steps stagger animation */
.step {
  opacity: 0;
  transform: translateY(30px);
}

.step.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.step:nth-child(1) { transition-delay: 0s; }
.step:nth-child(2) { transition-delay: 0.1s; }
.step:nth-child(3) { transition-delay: 0.2s; }
.step:nth-child(4) { transition-delay: 0.3s; }

/* Price cards stagger */
.price-card {
  opacity: 0;
  transform: translateY(30px);
}

.price-card.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.pricing .price-card:nth-child(1) { transition-delay: 0s; }
.pricing .price-card:nth-child(2) { transition-delay: 0.1s; }
.pricing .price-card:nth-child(3) { transition-delay: 0.2s; }

/* Smooth icon transitions */
.step__icon svg,
.whatsapp-step__icon svg {
  transition: transform 0.3s var(--ease);
}

.step:hover .step__icon svg,
.whatsapp-step:hover .whatsapp-step__icon svg {
  transform: scale(1.1);
}

/* Review card slide */
.review-card {
  transition: all 0.4s var(--ease);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* FAQ smooth open */
.faq-item[open] {
  background: var(--blue-50);
}

.faq-item p {
  animation: fadeInUp 0.3s var(--ease-out);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html { scroll-behavior: auto; }
  
  .hero__visual,
  .whatsapp-section__video .phone-mockup {
    animation: none;
  }
}

/* ============================================
   Price Card Meer Info Toggle (Premium Style)
   ============================================ */
.price-card__details {
  margin-top: 8px;
  margin-bottom: 12px;
  text-align: center;
}

.price-card__meer-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  list-style: none;
  padding: 6px 0;
}

.price-card__meer-info::-webkit-details-marker {
  display: none;
}

.price-card__meer-info:hover {
  color: var(--primary-dark);
}

.price-card__meer-info svg {
  transition: transform 0.4s var(--ease);
  opacity: 0.8;
}

.price-card__meer-info:hover svg {
  opacity: 1;
}

.price-card__details[open] .price-card__meer-info svg {
  transform: rotate(180deg);
}

.price-card__details-content {
  padding: 14px 0 6px;
  text-align: left;
  animation: fadeInContent 0.4s var(--ease);
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-card__details-content p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}

.price-card__details-content strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   About Page Styles
   ============================================ */
.about-hero {
  padding: 120px 24px 60px;
  background: var(--bg);
}

.about-hero__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 40px;
  align-items: center;
}

.about-hero__content {
  max-width: 600px;
}

.about-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
}

.about-hero__image {
  position: relative;
}

.about-hero__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-hero__image-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.about-hero__image-badge svg {
  color: var(--primary);
}

@media (min-width: 1024px) {
  .about-hero__container {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
  }
  
  .about-hero__image img {
    height: 420px;
  }
}

/* Story Section */
.about-story {
  display: grid;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.about-story__block h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.about-story__block p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-story__block p:last-child {
  margin-bottom: 0;
}

/* Team Section */
.about-team {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.about-team__card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}

.about-team__card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.about-team__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--blue-50);
  border-radius: var(--radius);
  color: var(--primary);
  margin-bottom: 16px;
}

.about-team__card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.about-team__card p {
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .about-team {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-team {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Values Section */
.about-values {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.about-values__item {
  display: flex;
  gap: 16px;
}

.about-values__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green-100);
  border-radius: 50%;
  color: var(--green-500);
}

.about-values__content h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.about-values__content p {
  font-size: 14px;
  line-height: 1.6;
}

/* About CTA */
.about-cta {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-cta__text {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 20px;
}

/* ============================================
   Diensten Preview Section (Landing Page)
   ============================================ */
.diensten-preview-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .diensten-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .diensten-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dienst-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s var(--ease);
}

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

.dienst-preview-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-50) 0%, rgba(59, 130, 246, 0.15) 100%);
  border-radius: var(--radius);
  color: var(--primary);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.dienst-preview-card:hover .dienst-preview-card__icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.dienst-preview-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.dienst-preview-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   Mobile Animations - Extra Diensten (Homepage)
   ============================================ */
@media (max-width: 639px) {
  .dienst-preview-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--ease-out);
  }
  
  .dienst-preview-card.animate-in-view {
    opacity: 1;
    transform: translateY(0);
  }
  
  .dienst-preview-card__icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }
  
  .dienst-preview-card h3 {
    text-align: center;
    width: 100%;
  }
  
  .dienst-preview-card p {
    text-align: center;
    width: 100%;
  }
  
  /* Staggered animation delays */
  .dienst-preview-card:nth-child(1) { transition-delay: 0s; }
  .dienst-preview-card:nth-child(2) { transition-delay: 0.1s; }
  .dienst-preview-card:nth-child(3) { transition-delay: 0.2s; }
  .dienst-preview-card:nth-child(4) { transition-delay: 0.3s; }
  .dienst-preview-card:nth-child(5) { transition-delay: 0.4s; }
  .dienst-preview-card:nth-child(6) { transition-delay: 0.5s; }
  
  /* Icon entrance animation */
  .dienst-preview-card.animate-in-view .dienst-preview-card__icon {
    animation: iconPulse 0.6s var(--ease-out) forwards;
    animation-delay: inherit;
  }
}

@keyframes iconPulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.diensten-preview-cta {
  text-align: center;
}

/* Final CTA Buttons */
.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   Mobile Animations - Diensten Page (diensten.html)
   ============================================ */
@media (max-width: 767px) {
  .dienst-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--ease-out);
  }
  
  .dienst-card.animate-in-view {
    opacity: 1;
    transform: translateY(0);
  }
  
  .dienst-card__icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  
  .dienst-card__title {
    text-align: center;
    width: 100%;
  }
  
  .dienst-card__description {
    text-align: center;
    width: 100%;
  }
  
  .dienst-card__features {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .dienst-card__features li {
    justify-content: center;
    text-align: center;
  }
  
  .dienst-card__details {
    width: 100%;
  }
  
  /* Staggered animation delays */
  .dienst-grid .dienst-card:nth-child(1) { transition-delay: 0s; }
  .dienst-grid .dienst-card:nth-child(2) { transition-delay: 0.1s; }
  .dienst-grid .dienst-card:nth-child(3) { transition-delay: 0.2s; }
  .dienst-grid .dienst-card:nth-child(4) { transition-delay: 0.3s; }
  .dienst-grid .dienst-card:nth-child(5) { transition-delay: 0.4s; }
  .dienst-grid .dienst-card:nth-child(6) { transition-delay: 0.5s; }
  
  /* Icon entrance animation */
  .dienst-card.animate-in-view .dienst-card__icon {
    animation: dienstIconPulse 0.6s var(--ease-out) forwards;
  }
  
  /* Category header animation */
  .dienst-category__header {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s var(--ease-out);
  }
  
  .dienst-category__header.animate-in-view {
    opacity: 1;
    transform: translateX(0);
  }
  
  .dienst-category__header.animate-in-view .dienst-category__icon {
    animation: dienstIconPulse 0.6s var(--ease-out) 0.2s forwards;
  }
}

@keyframes dienstIconPulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ============================================
   Mobile Animations - Contact Page (contact.html)
   ============================================ */
@media (max-width: 767px) {
  /* Contact Hero Animation */
  .contact-hero__title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.6s var(--ease-out) forwards;
    animation-delay: 0.1s;
  }
  
  .contact-hero__subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.6s var(--ease-out) forwards;
    animation-delay: 0.2s;
  }
  
  /* Contact Cards Animation */
  .contact-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s var(--ease-out);
  }
  
  .contact-card.animate-in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  .contact-options__grid .contact-card:nth-child(1) { transition-delay: 0s; }
  .contact-options__grid .contact-card:nth-child(2) { transition-delay: 0.15s; }
  .contact-options__grid .contact-card:nth-child(3) { transition-delay: 0.3s; }
  
  .contact-card.animate-in-view .contact-card__icon {
    animation: contactIconBounce 0.6s var(--ease-out) 0.3s forwards;
  }
  
  /* WhatsApp Section Animation */
  .whatsapp-section__content {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s var(--ease-out);
  }
  
  .whatsapp-section__content.animate-in-view {
    opacity: 1;
    transform: translateX(0);
  }
  
  .whatsapp-section__visual {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-out) 0.2s;
  }
  
  .whatsapp-section__visual.animate-in-view {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* WhatsApp Benefits Animation */
  .whatsapp-benefit {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s var(--ease-out);
  }
  
  .whatsapp-benefits.animate-in-view .whatsapp-benefit:nth-child(1) { 
    opacity: 1; 
    transform: translateX(0); 
    transition-delay: 0.1s; 
  }
  .whatsapp-benefits.animate-in-view .whatsapp-benefit:nth-child(2) { 
    opacity: 1; 
    transform: translateX(0); 
    transition-delay: 0.2s; 
  }
  .whatsapp-benefits.animate-in-view .whatsapp-benefit:nth-child(3) { 
    opacity: 1; 
    transform: translateX(0); 
    transition-delay: 0.3s; 
  }
  
  /* Business Section Animation */
  .business-info {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out);
  }
  
  .business-info.animate-in-view {
    opacity: 1;
    transform: translateY(0);
  }
  
  .business-map {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: all 0.5s var(--ease-out) 0.15s;
  }
  
  .business-map.animate-in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  /* Contact FAQ Animation */
  .contact-faq__item {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s var(--ease-out);
  }
  
  .contact-faq__item.animate-in-view {
    opacity: 1;
    transform: translateY(0);
  }
  
  .contact-faq__list .contact-faq__item:nth-child(1) { transition-delay: 0s; }
  .contact-faq__list .contact-faq__item:nth-child(2) { transition-delay: 0.1s; }
  .contact-faq__list .contact-faq__item:nth-child(3) { transition-delay: 0.2s; }
  
  /* Contact CTA Animation */
  .contact-cta__title {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeSlideUp 0.5s var(--ease-out) forwards;
  }
  
  .contact-cta__text {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeSlideUp 0.5s var(--ease-out) 0.1s forwards;
  }
  
  .contact-cta__buttons {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeSlideUp 0.5s var(--ease-out) 0.2s forwards;
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactIconBounce {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* ========================================
   REALTOR PREMIUM NL - Luxury Professional
   High-end real estate website design
   ======================================== */

.realtor-premium-nl {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  font-family: 'Outfit', -apple-system, sans-serif;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

/* Navigation Menu - Luxe style */
.realtor-premium-nl__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.realtor-premium-nl__nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  opacity: 0.3;
}

.realtor-premium-nl__nav-item {
  font-size: 4.5px;
  color: #64748b;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.realtor-premium-nl__nav-item:hover {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
}

.realtor-premium-nl__nav-item--active {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Hero - Luxe presentation */
.realtor-premium-nl__hero {
  height: 90px;
  overflow: hidden;
  position: relative;
}

.realtor-premium-nl__hero--large {
  height: 120px;
}

.realtor-premium-nl__hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(255,255,255,0.9) 0%, transparent 100%);
  pointer-events: none;
}

.realtor-premium-nl__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* Content - Premium spacing */
.realtor-premium-nl__content {
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

/* Header - Elegant */
.realtor-premium-nl__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}

.realtor-premium-nl__header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 2px;
}

.realtor-premium-nl__title {
  font-size: 9px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.4px;
}

.realtor-premium-nl__link {
  font-size: 4.5px;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px 8px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 4px;
  transition: all 0.2s;
}

.realtor-premium-nl__link:hover {
  background: rgba(59, 130, 246, 0.15);
}

/* Grid - Premium layout */
.realtor-premium-nl__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Card - Luxury style */
.realtor-premium-nl__card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 
    0 1px 3px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.03),
    0 0 0 1px rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.realtor-premium-nl__card:hover {
  box-shadow: 
    0 4px 12px rgba(59, 130, 246, 0.1),
    0 12px 32px rgba(59, 130, 246, 0.12),
    0 0 0 1px rgba(59, 130, 246, 0.1);
  transform: translateY(-3px);
}

/* Card Image - Premium */
.realtor-premium-nl__img {
  position: relative;
  height: 55px;
  overflow: hidden;
}

.realtor-premium-nl__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
  pointer-events: none;
}

.realtor-premium-nl__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.realtor-premium-nl__card:hover .realtor-premium-nl__img img {
  transform: scale(1.08);
}

.realtor-premium-nl__badge {
  position: absolute;
  top: 5px;
  left: 5px;
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  color: #fff;
  font-size: 3.5px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.4);
  z-index: 2;
}

.realtor-premium-nl__badge--accent {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

.realtor-premium-nl__fav {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 2;
  transition: all 0.2s;
}

.realtor-premium-nl__fav:hover {
  transform: scale(1.1);
  color: #f87171;
}

.realtor-premium-nl__fav--active {
  color: #ef4444;
  background: #fef2f2;
}

/* Card Details - Premium */
.realtor-premium-nl__details {
  padding: 10px;
}

.realtor-premium-nl__price {
  display: block;
  font-size: 9px;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 4px;
  letter-spacing: -0.4px;
}

.realtor-premium-nl__address {
  display: block;
  font-size: 5.5px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
}

.realtor-premium-nl__city {
  display: block;
  font-size: 4.5px;
  color: #64748b;
  margin-bottom: 8px;
}

.realtor-premium-nl__specs {
  display: flex;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
}

.realtor-premium-nl__specs span {
  font-size: 4px;
  color: #64748b;
  font-weight: 500;
  padding: 2px 6px;
  background: #f8fafc;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

/* Mobile */
@media (max-width: 768px) {
  .realtor-premium-nl__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .realtor-premium-nl__card:last-child {
    display: none;
  }
}

/* =====================================================
   AANPASSINGEN
   ===================================================== */

/* 1. WhatsApp Steps Animaties - ALLEEN OP MOBIEL */
@media (max-width: 767px) {
  .whatsapp-step {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .whatsapp-step.animate-in-view {
    opacity: 1;
    transform: translateX(0);
  }
  
  .whatsapp-step:nth-child(1) { transition-delay: 0s; }
  .whatsapp-step:nth-child(2) { transition-delay: 0.15s; }
  .whatsapp-step:nth-child(3) { transition-delay: 0.3s; }
}

/* 2. Reviews - Desktop: exact 3 zichtbaar, Mobiel: exact 1 zichtbaar */
/* Behoud de slider functionaliteit, pas alleen de kaartbreedte aan */

/* Desktop: 3 kaarten passen exact */
@media (min-width: 1024px) {
  .reviews-slider {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    overflow: hidden;
  }
  
  .reviews-slider__track {
    gap: 24px;
  }
  
  .review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
  }
}

/* Tablet: 2 kaarten */
@media (min-width: 768px) and (max-width: 1023px) {
  .reviews-slider {
    padding: 0 24px;
    margin: 0;
  }
  
  .reviews-slider__track {
    gap: 20px;
  }
  
  .review-card {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
  }
}

/* Mobiel: exact 1 kaart zichtbaar */
@media (max-width: 767px) {
  .reviews-slider {
    overflow: hidden;
    margin: 0 -16px;
    padding: 0;
    width: calc(100% + 32px);
  }
  
  .reviews-slider__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 8px 16px;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 16px;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    scrollbar-width: none;
  }
  
  .reviews-slider__track::-webkit-scrollbar {
    display: none;
  }
  
  .review-card {
    flex: 0 0 calc(100vw - 32px);
    min-width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}
