/* ============================================================
   VR op Locatie - Partnership Landing Page Template
   Huisstijl: vroplocatie.nl
   Version: 1.0
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --purple: #432581;
  --purple-light: #5a3a9e;
  --purple-dark: #1e0042;
  --pink: #DF4584;
  --orange: #FF8156;
  --green: #65bd7d;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f9f9fb;
  --light-grey: #f2f3f5;
  --mid-grey: #9ca3af;
  --dark-grey: #434549;
  --charcoal: #212326;
  --black: #141617;

  /* Gradients */
  --gradient-cta: linear-gradient(135deg, #DF4584, #FF8156);
  --gradient-cta-hover: linear-gradient(135deg, #FF8156, #DF4584);
  --gradient-hero: linear-gradient(160deg, #1e0042 0%, #432581 50%, #1e0042 100%);
  --gradient-dark: linear-gradient(180deg, #141617 0%, #1e0042 100%);
  --gradient-purple-fade: linear-gradient(180deg, #432581 0%, #1e0042 100%);

  /* Typography */
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1400px;
  --container-narrow: 900px;
  --container-padding: clamp(1.25rem, 4vw, 2rem);

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow-pink: 0 4px 30px rgba(223, 69, 132, 0.3);
  --shadow-glow-purple: 0 4px 30px rgba(67, 37, 129, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.72;
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--pink);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
  margin-bottom: 1rem;
}

.text-gradient {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-purple { color: var(--purple); }
.text-pink { color: var(--pink); }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-muted { color: var(--mid-grey); }

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

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--dark {
  background: var(--gradient-dark);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--purple {
  background: var(--gradient-purple-fade);
  color: var(--white);
}

.section--purple h2,
.section--purple h3,
.section--purple h4 {
  color: var(--white);
}

.section--light {
  background-color: var(--off-white);
}

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

/* ---------- Grid System ---------- */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

@media (max-width: 640px) {
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }
}

/* ---------- Sticky Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(20, 22, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-logo img {
  height: 40px;
  width: auto;
}

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

.header-logo span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--white);
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

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

.header-cta {
  display: inline-flex;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

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

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

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

@media (max-width: 800px) {
  .mobile-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--purple-dark);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition-smooth);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

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

  .header-nav a {
    font-size: 1.15rem;
    color: var(--white);
  }

  .header-cta {
    width: 100%;
  }

  .header-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

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

.btn--primary:hover {
  background: var(--gradient-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 35px rgba(223, 69, 132, 0.45);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn--outline-purple {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn--outline-purple:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--purple-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 0, 66, 0.92) 0%,
    rgba(67, 37, 129, 0.75) 40%,
    rgba(30, 0, 66, 0.85) 100%
  );
  z-index: 1;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 8s ease-in-out infinite;
}

@keyframes particle-float {
  0%, 100% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) scale(1);
  }
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 8rem 0 5rem;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero__badge span {
  color: var(--orange);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat {
  text-align: left;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

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

@media (max-width: 800px) {
  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero__content {
    padding: 7rem 0 3rem;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero__stat {
    min-width: 120px;
  }
}

/* ---------- Section Headers ---------- */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section-label--pink { color: var(--pink); }
.section-label--purple { color: var(--purple); }
.section-label--orange { color: var(--orange); }
.section-label--white { color: rgba(255, 255, 255, 0.7); }

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  border-radius: 2px;
}

.section-label--pink::before { background: var(--pink); }
.section-label--purple::before { background: var(--purple); }
.section-label--orange::before { background: var(--orange); }
.section-label--white::before { background: rgba(255, 255, 255, 0.5); }

.section-header p {
  font-size: 1.15rem;
  color: var(--dark-grey);
  max-width: 650px;
  margin-top: 1rem;
}

.section--dark .section-header p,
.section--purple .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

/* Feature Card */
.card--feature {
  border: 1px solid var(--light-grey);
  text-align: left;
}

.card--feature .card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(67, 37, 129, 0.08), rgba(223, 69, 132, 0.08));
}

.card--feature h4 {
  margin-bottom: 0.5rem;
}

.card--feature p {
  color: var(--dark-grey);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Dark Feature Card */
.card--dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.card--dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}

.card--dark h4 { color: var(--white); }
.card--dark p { color: rgba(255, 255, 255, 0.65); }

.card--dark .card__icon {
  background: linear-gradient(135deg, rgba(223, 69, 132, 0.15), rgba(255, 129, 86, 0.15));
}

/* Experience Card */
.card--experience {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--light-grey);
}

.card--experience .card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card--experience .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.card--experience:hover .card__image img {
  transform: scale(1.05);
}

.card--experience .card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 0, 66, 0.6), transparent 60%);
}

.card--experience .card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background: var(--gradient-cta);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
}

.card--experience .card__body {
  padding: 1.5rem 2rem 2rem;
}

.card--experience h4 {
  margin-bottom: 0.5rem;
}

.card--experience p {
  font-size: 0.95rem;
  color: var(--dark-grey);
}

.card--experience .card__meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-grey);
  font-size: 0.85rem;
  color: var(--mid-grey);
}

.card--experience .card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Pricing Card */
.card--pricing {
  border: 1px solid var(--light-grey);
  text-align: center;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
}

.card--pricing.featured {
  border-color: var(--pink);
  box-shadow: var(--shadow-glow-pink);
  position: relative;
}

.card--pricing.featured::before {
  content: 'Populairst';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.25rem;
  background: var(--gradient-cta);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  white-space: nowrap;
}

.card--pricing .card__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.card--pricing .card__price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2.75rem;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.card--pricing .card__price-sub {
  font-size: 0.9rem;
  color: var(--mid-grey);
  margin-bottom: 1.75rem;
}

.card--pricing .card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card--pricing .card__features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--dark-grey);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.card--pricing .card__features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(101, 189, 125, 0.15), rgba(101, 189, 125, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='rgba(101,189,125,0.15)'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%2365bd7d' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

.card--pricing .btn {
  width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.4;
  padding: 0.85rem 1rem;
}

/* ---------- Partners / Logo Row ---------- */
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.partners-row img {
  height: 36px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition-base);
}

.partners-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.section--dark .partners-row img {
  filter: grayscale(100%) brightness(2);
  opacity: 0.4;
}

.section--dark .partners-row img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--light-grey);
  position: relative;
}

.testimonial__quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-grey);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial__quote::before {
  content: '\201C';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--pink);
  opacity: 0.3;
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
}

.testimonial__role {
  font-size: 0.85rem;
  color: var(--mid-grey);
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--light-grey);
}

.section--dark .faq-item {
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--black);
  transition: color var(--transition-fast);
}

.section--dark .faq-question {
  color: var(--white);
}

.faq-question:hover {
  color: var(--purple);
}

.section--dark .faq-question:hover {
  color: var(--pink);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.section--dark .faq-icon {
  background: rgba(255, 255, 255, 0.08);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  background: var(--gradient-cta);
}

.faq-item.active .faq-icon svg {
  transform: rotate(45deg);
  stroke: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--dark-grey);
  line-height: 1.75;
}

.section--dark .faq-answer p {
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Contact / Form ---------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(67, 37, 129, 0.1);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--mid-grey);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--gradient-cta);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  color: var(--purple);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  padding: 4rem 0 0;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--purple);
  color: var(--white);
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

/* ---------- Scroll Reveal Animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

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

[data-reveal="left"].revealed {
  transform: translateX(0);
}

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

[data-reveal="right"].revealed {
  transform: translateX(0);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal="scale"].revealed {
  transform: scale(1);
}

/* Stagger children */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal-stagger].revealed > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 100ms; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 200ms; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 300ms; }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: 400ms; }
[data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: 500ms; }

/* ---------- Number Counter Animation ---------- */
.counter {
  display: inline-block;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
