/* ============================================================
   VINTRIX — ai-impactsessie.css
   Stijlen voor de AI Impactsessie landingspagina
   ============================================================ */

/* ---- Hero ---- */
.ais-hero {
  position: relative;
  background:
    radial-gradient(circle at 20% 10%, rgba(104, 5, 242, 0.55) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(68, 225, 242, 0.18) 0%, transparent 55%),
    linear-gradient(145deg, var(--color-indigo) 0%, #1A0460 55%, #2A0580 100%);
  color: var(--color-white);
  padding-block: clamp(4.5rem, 11vw, 8rem);
  overflow: hidden;
}

.ais-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ais-hero-content .hero-heading {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
}

/* Floaters */
.ais-hero-wizzard {
  top: 14%;
  right: 6%;
  width: 72px;
  opacity: 0.7;
}

.ais-hero-sparkle {
  top: 8%;
  right: 28%;
  width: 32px;
  opacity: 0.85;
}

.ais-hero-alien {
  bottom: 10%;
  left: 5%;
  width: 52px;
  opacity: 0.5;
}

/* ---- Prijskaart in hero ---- */
.ais-price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  animation: aisFloatIn 0.8s ease both;
}

.ais-price-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(140deg, rgba(68, 225, 242, 0.35), transparent 35%, rgba(229, 245, 12, 0.25));
  border-radius: var(--radius-lg);
  z-index: -1;
  filter: blur(16px);
  opacity: 0.6;
}

.ais-price-stamp {
  position: absolute;
  top: -14px;
  right: -8px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-lime);
  color: var(--color-indigo);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  border-radius: 50%;
  transform: rotate(12deg);
  box-shadow: 0 4px 16px rgba(229, 245, 12, 0.35);
}

.ais-price-amount {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.ais-price-unit {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ais-price-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.ais-price-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0 0 1.5rem;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

.ais-price-list li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.45;
}

.ais-price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 12px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Crect x='0' y='4' width='2' height='2' fill='%2344E1F2'/%3E%3Crect x='2' y='6' width='2' height='2' fill='%2344E1F2'/%3E%3Crect x='4' y='8' width='2' height='2' fill='%2344E1F2'/%3E%3Crect x='6' y='6' width='2' height='2' fill='%2344E1F2'/%3E%3Crect x='8' y='4' width='2' height='2' fill='%2344E1F2'/%3E%3Crect x='10' y='2' width='2' height='2' fill='%2344E1F2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.ais-price-cta {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

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

/* ---- Value props strip ---- */
.ais-valueprops {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding-block: clamp(2rem, 4vw, 3rem);
}

.ais-vp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ais-vp {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ais-vp-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(104, 5, 242, 0.08);
  color: var(--color-purple);
  border-radius: var(--radius-md);
}

.ais-vp-icon svg {
  width: 22px;
  height: 22px;
}

.ais-vp strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-indigo);
  margin-bottom: 0.25rem;
}

.ais-vp span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ---- Wat krijg je ---- */
.ais-section-receive {
  background: var(--color-bg);
}

.ais-receive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ais-receive-card {
  position: relative;
  background: linear-gradient(165deg, rgba(68, 225, 242, 0.08) 0%, rgba(104, 5, 242, 0.04) 100%), var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem 1.75rem;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.ais-receive-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--grad-bar);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.ais-receive-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-purple);
}

.ais-receive-card:hover::before {
  transform: scaleY(1);
}

.ais-receive-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(104, 5, 242, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ais-receive-card h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.ais-receive-card p {
  font-size: 0.93rem;
  margin: 0;
}

.ais-receive-note {
  text-align: center;
  margin: 0 auto;
  max-width: 58ch;
  font-style: italic;
  color: var(--color-indigo);
  font-weight: 500;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--color-border);
}

/* ---- Waarom betaald ---- */
.ais-section-why {
  background: var(--color-white);
  position: relative;
}

.ais-why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.ais-why-grid p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.ais-why-note {
  background: linear-gradient(155deg, rgba(104, 5, 242, 0.06) 0%, rgba(68, 225, 242, 0.09) 100%);
  border: 1px solid rgba(104, 5, 242, 0.12);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.ais-why-note::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-purple) 0,
    var(--color-purple) 6px,
    transparent 6px,
    transparent 10px
  );
}

.ais-why-note h3 {
  font-size: 1.05rem;
  color: var(--color-purple);
  margin-bottom: 0.75rem;
}

.ais-why-note p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.ais-why-note .ais-why-tiny {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ---- Hoe werkt het (timeline) ---- */
.ais-section-how {
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.ais-timeline {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
}

.ais-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: repeating-linear-gradient(
    180deg,
    var(--color-purple) 0,
    var(--color-purple) 6px,
    transparent 6px,
    transparent 10px
  );
  opacity: 0.35;
}

.ais-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.ais-timeline-item:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-purple);
}

.ais-timeline-marker {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-purple) 0%, #4B00C8 100%);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(104, 5, 242, 0.25);
}

.ais-timeline-body h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.ais-timeline-body p {
  font-size: 0.93rem;
  margin: 0;
}

/* ---- Voor wie ---- */
.ais-section-fit {
  background: var(--color-white);
}

.ais-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ais-fit-card {
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.ais-fit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.ais-fit-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.ais-fit-card li {
  font-size: 0.95rem;
  padding-left: 1.75rem;
  position: relative;
  color: var(--color-text);
  line-height: 1.5;
}

.ais-fit-card--yes {
  background: linear-gradient(165deg, rgba(68, 225, 242, 0.08) 0%, rgba(104, 5, 242, 0.04) 100%);
  border-color: rgba(68, 225, 242, 0.3);
}

.ais-fit-card--yes h3 {
  color: var(--color-indigo);
}

.ais-fit-card--yes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Crect x='0' y='6' width='2' height='2' fill='%236805F2'/%3E%3Crect x='2' y='8' width='2' height='2' fill='%236805F2'/%3E%3Crect x='4' y='10' width='2' height='2' fill='%236805F2'/%3E%3Crect x='6' y='8' width='2' height='2' fill='%236805F2'/%3E%3Crect x='8' y='6' width='2' height='2' fill='%236805F2'/%3E%3Crect x='10' y='4' width='2' height='2' fill='%236805F2'/%3E%3Crect x='12' y='2' width='2' height='2' fill='%236805F2'/%3E%3Crect x='14' y='0' width='2' height='2' fill='%236805F2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.ais-fit-card--no {
  background: var(--color-bg);
}

.ais-fit-card--no h3 {
  color: var(--color-text-muted);
}

.ais-fit-card--no li {
  color: var(--color-text-muted);
}

.ais-fit-card--no li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.35em;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Crect x='0' y='0' width='2' height='2' fill='%235A5A7A'/%3E%3Crect x='2' y='2' width='2' height='2' fill='%235A5A7A'/%3E%3Crect x='4' y='4' width='2' height='2' fill='%235A5A7A'/%3E%3Crect x='6' y='6' width='2' height='2' fill='%235A5A7A'/%3E%3Crect x='8' y='8' width='2' height='2' fill='%235A5A7A'/%3E%3Crect x='10' y='10' width='2' height='2' fill='%235A5A7A'/%3E%3Crect x='10' y='0' width='2' height='2' fill='%235A5A7A'/%3E%3Crect x='8' y='2' width='2' height='2' fill='%235A5A7A'/%3E%3Crect x='4' y='6' width='2' height='2' fill='%235A5A7A'/%3E%3Crect x='2' y='8' width='2' height='2' fill='%235A5A7A'/%3E%3Crect x='0' y='10' width='2' height='2' fill='%235A5A7A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.ais-fit-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--color-text-muted);
}

/* ---- Final CTA ---- */
.ais-section-cta {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(68, 225, 242, 0.18) 0%, transparent 55%),
    linear-gradient(145deg, var(--color-indigo) 0%, #2A0580 100%);
  color: var(--color-white);
  overflow: hidden;
}

.ais-cta-block {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.ais-cta-block .section-label {
  color: var(--color-cyan);
}

.ais-cta-block .section-heading {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.ais-cta-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 2rem;
  max-width: none;
}

.ais-cta-lead strong {
  color: var(--color-lime);
  font-weight: 700;
}

.ais-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.ais-cta-tiny {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 60ch;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .ais-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ais-hero-wizzard,
  .ais-hero-sparkle {
    display: none;
  }

  .ais-why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ais-vp-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ais-fit-grid {
    grid-template-columns: 1fr;
  }

  .ais-receive-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ais-price-card {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .ais-timeline::before {
    left: 22px;
  }

  .ais-timeline-item {
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    padding: 1.25rem 1.25rem;
  }

  .ais-timeline-marker {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .ais-fit-card {
    padding: 1.5rem;
  }
}
