/* Floral Profit — Landingspagina styles */

:root {
  --fp-accent: #00985A;
  --fp-accent-soft: #D6F7E9;
  --fp-bg: #ffffff;
  --fp-bg-2: #F4F6F8;
  --fp-bg-warm: #FBFAF7;
  --fp-ink: #14181C;
  --fp-ink-2: #2C3640;
  --fp-muted: #637381;
  --fp-line: #E5E8EC;
  --fp-line-2: #D7DCE2;
  --fp-radius: 14px;
  --fp-radius-lg: 22px;
  --fp-shadow-sm: 0 1px 2px rgba(20, 24, 28, 0.04), 0 2px 8px rgba(20, 24, 28, 0.04);
  --fp-shadow-md: 0 4px 16px rgba(20, 24, 28, 0.06), 0 12px 32px rgba(20, 24, 28, 0.06);
  --fp-shadow-lg: 0 24px 64px rgba(20, 24, 28, 0.12);
  --fp-font: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --fp-font-serif: "Noto Serif", "Times New Roman", serif;
  --fp-content: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--fp-bg);
  color: var(--fp-ink);
  font-family: var(--fp-font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ─── Layout ────────────────────────────────────────────────────────────── */
.fp-root { overflow: hidden; }

.fp-section {
  max-width: var(--fp-content);
  margin: 0 auto;
  padding: 120px 32px;
}

.fp-section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.fp-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fp-accent);
  margin-bottom: 16px;
}
.fp-eyebrow-dark { color: var(--fp-muted); }

/* ─── Typography ────────────────────────────────────────────────────────── */
.fp-h1 {
  font-size: clamp(40px, 5.8vw, 78px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--fp-ink);
  text-wrap: balance;
}

.fp-h1-final {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  color: #fff;
  text-wrap: balance;
}

.fp-h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--fp-ink);
  text-wrap: balance;
}

.fp-h2-serif {
  font-family: var(--fp-font-serif);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--fp-ink);
  font-style: italic;
}

.fp-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fp-ink-2);
  max-width: 560px;
  margin: 0 0 32px;
}

.fp-lede-sm {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fp-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ─── Nav ────────────────────────────────────────────────────────────────── */
.fp-nav {
  max-width: var(--fp-content);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.fp-logo img { display: block; }

.fp-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.fp-nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--fp-ink-2);
  transition: color .15s ease;
}
.fp-nav-links a:hover { color: var(--fp-accent); }

.fp-nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.fp-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--fp-ink-2);
}
.fp-link:hover { color: var(--fp-accent); }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.fp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.fp-btn-lg { padding: 16px 28px; font-size: 16px; }

.fp-btn-primary {
  background: var(--fp-accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 22px rgba(0, 152, 90, 0.28);
}
.fp-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 12px 28px rgba(0, 152, 90, 0.34); }

.fp-btn-ghost {
  background: transparent;
  color: var(--fp-ink);
  border-color: var(--fp-line-2);
}
.fp-btn-ghost:hover { border-color: var(--fp-ink); }

.fp-btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}
.fp-btn-ghost-light:hover { background: rgba(255,255,255,0.18); }

.fp-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--fp-accent);
  color: #fff;
  font-size: 9px;
  padding-left: 1px;
}
.fp-btn-ghost .fp-play { background: var(--fp-accent); color: #fff; }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.fp-hero {
  max-width: var(--fp-content);
  margin: 0 auto;
  padding: 40px 32px 100px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.fp-hero-left { min-width: 0; }

.fp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.fp-cta-row-center { justify-content: center; }

.fp-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: var(--fp-muted);
  font-weight: 600;
}
.fp-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fp-bullets li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fp-accent);
  flex-shrink: 0;
}

.fp-hero-right {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 480px;
}

.fp-hero-photo {
  position: absolute;
  inset: 0;
  border-radius: var(--fp-radius-lg);
  overflow: hidden;
  background: var(--fp-accent-soft);
  box-shadow: var(--fp-shadow-md);
}
.fp-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fp-phone-float {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 220px;
  z-index: 2;
  transform: rotate(4deg);
  filter: drop-shadow(0 24px 40px rgba(20, 24, 28, 0.2));
}
.fp-phone-frame {
  background: #0d1117;
  padding: 8px 8px 12px;
  border-radius: 34px;
  border: 2px solid #1c2128;
  overflow: hidden;
}
.fp-phone-frame img {
  border-radius: 26px;
  width: 100%;
  display: block;
}

.fp-hero-chip {
  position: absolute;
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--fp-shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
  border: 1px solid var(--fp-line);
}
.fp-hero-chip-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fp-muted);
}
.fp-hero-chip-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--fp-ink);
  letter-spacing: -0.01em;
}
.fp-hero-chip-1 {
  top: 24px;
  left: -28px;
  transform: rotate(-3deg);
}
.fp-hero-chip-1 .fp-hero-chip-value { color: var(--fp-accent); }
.fp-hero-chip-2 {
  bottom: 60px;
  left: -40px;
  transform: rotate(2deg);
}

/* ─── Problem ───────────────────────────────────────────────────────────── */
.fp-problem {
  background: var(--fp-bg-warm);
  max-width: none;
  padding-left: 0; padding-right: 0;
  border-top: 1px solid var(--fp-line);
  border-bottom: 1px solid var(--fp-line);
}
.fp-problem-grid {
  max-width: var(--fp-content);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fp-problem-photo {
  border-radius: var(--fp-radius-lg);
  overflow: hidden;
  box-shadow: var(--fp-shadow-md);
  aspect-ratio: 4 / 3;
  background: #ccc;
}
.fp-problem-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.fp-problem-text p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fp-ink-2);
  margin: 0 0 20px;
  max-width: 480px;
}
.fp-problem-kicker {
  font-weight: 700;
  color: var(--fp-ink) !important;
  font-size: 21px !important;
  border-left: 3px solid var(--fp-accent);
  padding-left: 20px;
  margin-top: 28px !important;
}

/* ─── How it works ──────────────────────────────────────────────────────── */
.fp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fp-step {
  background: #fff;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius);
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
}
.fp-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.fp-step-n {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--fp-accent);
}
.fp-step-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fp-muted);
  background: var(--fp-bg-2);
  padding: 4px 10px;
  border-radius: 999px;
}
.fp-step-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.fp-step-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fp-muted);
  margin: 0;
}

.fp-step-media {
  margin: 28px -32px -32px;
  background: var(--fp-bg-2);
  aspect-ratio: 9 / 19;
}
.fp-step-media-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ─── App Showcase ──────────────────────────────────────────────────────── */
.fp-showcase {
  text-align: center;
}
.fp-showcase-head {
  max-width: 720px;
  margin: 0 auto 56px;
}

.fp-browser {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--fp-line);
  box-shadow: var(--fp-shadow-lg);
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto;
}
.fp-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--fp-bg-2);
  border-bottom: 1px solid var(--fp-line);
}
.fp-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.fp-dot-r { background: #FF5F57; }
.fp-dot-y { background: #FEBC2E; }
.fp-dot-g { background: #28C840; }
.fp-browser-url {
  margin-left: 14px;
  font-size: 13px;
  color: var(--fp-muted);
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--fp-line);
  font-family: ui-monospace, "SF Mono", monospace;
}
.fp-browser img {
  width: 100%;
  display: block;
}

/* ─── After ─────────────────────────────────────────────────────────────── */
.fp-after {
  background: var(--fp-accent-soft);
  max-width: none;
  padding-left: 0; padding-right: 0;
}
.fp-after-grid {
  max-width: var(--fp-content);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fp-after-text p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fp-ink-2);
  margin: 0 0 20px;
  max-width: 480px;
}
.fp-after-text .fp-btn { margin-top: 16px; }

.fp-after-photo {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-after-photo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(20, 24, 28, 0.15));
}

/* ─── Feature grid ──────────────────────────────────────────────────────── */
.fp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 36px;
}
.fp-feature { padding: 0; }
.fp-feature-mark {
  width: 32px;
  height: 4px;
  background: var(--fp-accent);
  border-radius: 2px;
  margin-bottom: 18px;
}
.fp-feature-title {
  font-size: 21px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.fp-feature-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fp-muted);
  margin: 0;
}

/* ─── Pricing ───────────────────────────────────────────────────────────── */
/* .fp-pricing {} */
.fp-price-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
  padding: 44px 48px;
  box-shadow: var(--fp-shadow-md);
}
.fp-price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--fp-line);
  flex-wrap: wrap;
}
.fp-price-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fp-accent);
  margin-bottom: 4px;
}
.fp-price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--fp-ink);
}
.fp-price-currency { font-size: 28px; font-weight: 700; }
.fp-price-num { font-size: 64px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.fp-price-per { font-size: 18px; color: var(--fp-muted); margin-left: 6px; }
.fp-price-note { font-size: 14px; color: var(--fp-muted); margin-top: 8px; }

.fp-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.fp-price-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  color: var(--fp-ink-2);
}
.fp-price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--fp-accent-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%2300985A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8l3.5 3.5L13 5'/></svg>") center / 12px no-repeat;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
/* .fp-faq {} */
.fp-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--fp-line);
}
.fp-faq-item { border-bottom: 1px solid var(--fp-line); }
.fp-faq-q {
  width: 100%;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  color: var(--fp-ink);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.005em;
}
.fp-faq-plus {
  font-size: 28px;
  font-weight: 400;
  color: var(--fp-accent);
  line-height: 1;
}
.fp-faq-a {
  font-size: 16px;
  color: var(--fp-muted);
  padding-bottom: 24px;
  line-height: 1.6;
  max-width: 700px;
  white-space: pre-wrap;
}

/* ─── Final CTA ─────────────────────────────────────────────────────────── */
.fp-final {
  background: var(--fp-ink);
  color: #fff;
  max-width: none;
  padding-left: 0; padding-right: 0;
  position: relative;
  overflow: hidden;
}
.fp-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 152, 90, 0.25) 0, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0, 152, 90, 0.15) 0, transparent 50%);
  pointer-events: none;
}
.fp-final-inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.fp-final-note {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.fp-footer {
  max-width: var(--fp-content);
  margin: 0 auto;
  padding: 80px 32px 40px;
  color: var(--fp-muted);
  font-size: 14px;
}
.fp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--fp-line);
}
.fp-footer-tag {
  margin-top: 16px;
  line-height: 1.55;
}
.fp-footer-h {
  font-size: 13px;
  font-weight: 800;
  color: var(--fp-ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.fp-footer-grid div a, .fp-footer-grid div span {
  display: block;
  margin-bottom: 10px;
  color: var(--fp-muted);
}
.fp-footer-grid div a:hover { color: var(--fp-accent); }
.fp-footer-bot {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.fp-footer-legal a:hover { color: var(--fp-accent); }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .fp-section { padding: 80px 24px; }
  .fp-hero {
    grid-template-columns: 1fr;
    padding: 24px 24px 80px;
    gap: 56px;
  }
  .fp-hero-right { min-height: 380px; }
  .fp-hero-chip-1 { left: 8px; top: 8px; }
  .fp-hero-chip-2 { left: 8px; bottom: 8px; }
  .fp-phone-float { width: 160px; right: 8px; bottom: -8px; }
  .fp-nav-links { display: none; }
  .fp-problem-grid, .fp-after-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  .fp-steps, .fp-feature-grid { grid-template-columns: 1fr; }
  .fp-price-list { grid-template-columns: 1fr; }
  .fp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fp-price-card { padding: 28px 24px; }
  .fp-price-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .fp-footer-grid { grid-template-columns: 1fr; }
  .fp-footer-bot { flex-direction: column; gap: 8px; }
  .fp-cta-row { flex-direction: column; align-items: stretch; }
  .fp-btn { justify-content: center; }
}

/* ─── Use cases ────────────────────────────────────────────────────────────── */
.fp-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fp-case {
  background: #fff;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fp-case:hover {
  transform: translateY(-2px);
  box-shadow: var(--fp-shadow-md);
}
.fp-case-quote-mark {
  font-family: var(--fp-font-serif);
  font-size: 72px;
  line-height: 0.6;
  color: var(--fp-accent);
  height: 28px;
  font-weight: 700;
}
.fp-case-quote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fp-ink-2);
  margin: 0;
  flex: 1;
}
.fp-case-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--fp-line);
}
.fp-case-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--fp-accent-soft);
  color: var(--fp-accent);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fp-case-name { font-weight: 700; color: var(--fp-ink); font-size: 15px; }
.fp-case-meta { font-size: 13px; color: var(--fp-muted); margin-top: 2px; }
.fp-case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fp-accent);
}
.fp-case-link:hover .fp-arrow { transform: translateX(3px); }
.fp-arrow { transition: transform .15s ease; display: inline-block; }
.fp-play-sm { width: 18px; height: 18px; font-size: 7px; }

/* ─── Calculator ───────────────────────────────────────────────────────────── */
.fp-calc { background: var(--fp-bg-warm); max-width: none; padding-left: 0; padding-right: 0; border-top: 1px solid var(--fp-line); border-bottom: 1px solid var(--fp-line); }
.fp-calc .fp-section-head {
  max-width: var(--fp-content);
  margin-left: auto; margin-right: auto;
  padding: 0 32px;
  margin-bottom: 56px;
}
.fp-calc-grid {
  max-width: var(--fp-content);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.fp-calc-inputs {
  background: #fff;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fp-calc-field { display: flex; flex-direction: column; gap: 8px; }
.fp-calc-field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fp-muted);
}
.fp-calc-label-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fp-calc-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--fp-line-2);
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.fp-calc-input-wrap:focus-within {
  border-color: var(--fp-accent);
  box-shadow: 0 0 0 4px var(--fp-accent-soft);
}
.fp-calc-input-wrap input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 20px;
  font-weight: 700;
  padding: 14px 12px;
  width: 100%;
  outline: none;
  color: var(--fp-ink);
}
.fp-calc-prefix, .fp-calc-suffix {
  padding: 0 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--fp-muted);
}
.fp-calc-prefix { border-right: 1px solid var(--fp-line); }
.fp-calc-suffix { border-left: 1px solid var(--fp-line); }
.fp-calc-toggle {
  display: inline-flex;
  background: var(--fp-bg-2);
  border-radius: 999px;
  padding: 3px;
}
.fp-calc-toggle button {
  border: 0; background: transparent;
  font: inherit; font-size: 12px; font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--fp-muted);
  cursor: pointer;
}
.fp-calc-toggle button.is-active {
  background: #fff;
  color: var(--fp-ink);
  box-shadow: var(--fp-shadow-sm);
}
.fp-calc-helper {
  font-size: 13px;
  color: var(--fp-muted);
}
.fp-calc-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fp-calc-plan {
  border: 1.5px solid var(--fp-line-2);
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: border-color .15s ease, background .15s ease;
}
.fp-calc-plan:hover { border-color: var(--fp-ink-2); }
.fp-calc-plan.is-active {
  border-color: var(--fp-accent);
  background: var(--fp-accent-soft);
}
.fp-calc-plan-price { font-size: 20px; font-weight: 800; color: var(--fp-ink); }
.fp-calc-plan-meta { font-size: 12px; color: var(--fp-muted); margin-top: 2px; line-height: 1.4; }
.fp-calc-scenarios {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.fp-calc-scen input { font-size: 18px; }

.fp-calc-output {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fp-calc-card {
  background: #fff;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6px 24px;
  align-items: baseline;
}
.fp-calc-card-head {
  grid-column: 1 / -1;
  font-size: 15px;
  color: var(--fp-muted);
  margin-bottom: 4px;
}
.fp-calc-card-head strong { color: var(--fp-ink); font-weight: 800; }
.fp-calc-card-big {
  font-size: 30px;
  font-weight: 900;
  color: var(--fp-accent);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.fp-calc-card-big span {
  font-size: 14px;
  font-weight: 600;
  color: var(--fp-muted);
  letter-spacing: 0;
}
.fp-calc-card-sub {
  font-size: 14px;
  color: var(--fp-muted);
  font-weight: 600;
}
.fp-calc-card-roi {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--fp-ink-2);
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px dashed var(--fp-line);
}
.fp-calc-card-roi strong { color: var(--fp-accent); font-weight: 800; font-size: 16px; }
.fp-calc-foot {
  font-size: 13px;
  color: var(--fp-muted);
  text-align: center;
  padding: 4px 0;
}
.fp-calc-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.fp-calc-cta-note {
  margin-top: 4px;
  color: var(--fp-muted);
}

/* Single big output card for calculator */
.fp-calc-output-single {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fp-calc-card-lg {
  background: #fff;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fp-calc-card-lg .fp-calc-card-head {
  font-size: 15px;
  color: var(--fp-muted);
  margin-bottom: 8px;
}
.fp-calc-card-lg .fp-calc-card-head strong {
  color: var(--fp-ink);
  font-weight: 800;
}
.fp-calc-card-lg .fp-calc-card-big {
  font-size: 52px;
  font-weight: 900;
  color: var(--fp-accent);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-top: 2px;
}
.fp-calc-card-lg .fp-calc-card-big span {
  font-size: 18px;
  font-weight: 600;
  color: var(--fp-muted);
  letter-spacing: 0;
}
.fp-calc-card-lg .fp-calc-card-sub {
  font-size: 17px;
  color: var(--fp-ink-2);
  font-weight: 600;
}
.fp-calc-divider {
  height: 1px;
  background: var(--fp-line);
  margin: 22px 0 18px;
}
.fp-calc-card-invest {
  font-size: 14px;
  color: var(--fp-muted);
  margin-bottom: 12px;
}
.fp-calc-card-roi-lg {
  font-size: 22px;
  font-weight: 700;
  color: var(--fp-ink-2);
}
.fp-calc-card-roi-lg strong {
  color: var(--fp-accent);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.01em;
}

/* Slider */
.fp-calc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.fp-calc-slider {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 999px;
  background: var(--fp-line);
  outline: none;
}
.fp-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--fp-accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 152, 90, 0.35);
  cursor: pointer;
}
.fp-calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--fp-accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 152, 90, 0.35);
  cursor: pointer;
}
.fp-calc-slider-val {
  min-width: 60px;
  text-align: right;
  font-size: 18px;
  font-weight: 800;
  color: var(--fp-ink);
  font-variant-numeric: tabular-nums;
}
.fp-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.fp-plan {
  background: #fff;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.fp-plan-feat {
  border: 2px solid var(--fp-accent);
  background: linear-gradient(180deg, var(--fp-accent-soft) 0%, #fff 40%);
  box-shadow: var(--fp-shadow-md);
}
.fp-plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--fp-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
}
.fp-plan-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fp-accent);
}
.fp-plan-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--fp-ink);
}
.fp-plan-amount .fp-price-num { font-size: 56px; line-height: 1; font-weight: 900; letter-spacing: -0.03em; }
.fp-plan-meta {
  font-size: 14px;
  color: var(--fp-muted);
  margin-bottom: 8px;
}
.fp-plan .fp-btn { align-self: flex-start; }
.fp-plans-foot {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--fp-muted);
}

/* ─── VBW ──────────────────────────────────────────────────────────────────── */
.fp-vbw { padding-top: 40px; padding-bottom: 40px; }
.fp-vbw-card {
  background: #fff;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.fp-vbw-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--fp-accent-soft) 0%, transparent 55%);
  pointer-events: none;
}
.fp-vbw-mark {
  position: relative;
  text-align: center;
  padding: 28px 12px;
  border: 2px solid var(--fp-accent);
  border-radius: var(--fp-radius);
  background: #fff;
}
.fp-vbw-logo {
  font-family: var(--fp-font-serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--fp-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.fp-vbw-logo-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fp-muted);
  margin-top: 8px;
}
.fp-vbw-text { position: relative; }
.fp-vbw-text p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fp-ink-2);
  margin: 0 0 24px;
  max-width: 560px;
}

/* ─── Suppliers ────────────────────────────────────────────────────────────── */
.fp-suppliers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.fp-supplier {
  background: #fff;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius);
  padding: 24px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--fp-muted);
  letter-spacing: -0.005em;
  transition: color .15s ease, border-color .15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 120px;
}
.fp-supplier-logo {
  height: 112px;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.fp-supplier:hover {
  color: var(--fp-accent);
  border-color: var(--fp-line-2);
}

@media (max-width: 960px) {
  .fp-cases-grid { grid-template-columns: 1fr; }
  .fp-calc-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 24px; }
  .fp-calc-inputs { padding: 24px; }
  .fp-plans { grid-template-columns: 1fr; }
  .fp-vbw-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
  .fp-vbw-mark { max-width: 220px; margin: 0 auto; }
  .fp-suppliers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .fp-suppliers-grid { grid-template-columns: 1fr; }
  .fp-calc-plans { grid-template-columns: 1fr; }
  .fp-calc-scenarios { grid-template-columns: 1fr; }
}

/* ============================================================
   Zo werkt het — interactieve stepper
   Plak dit onderaan css/styles.css. Gebruikt je bestaande
   --fp-* variabelen. De oude .fp-step* / .fp-step-media*
   regels mogen weg als je StepMedia niet meer gebruikt.
   ============================================================ */

.hw {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

/* Left: steps list */
.hw-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hw-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 20px 20px 20px 0;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  border-radius: 12px;
  width: 100%;
  font-family: inherit;
  transition: background .25s ease;
}
.hw-step:hover { background: rgba(20,24,28,0.02); }
.hw-step .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--fp-muted);
  background: #fff;
  border: 1.5px solid var(--fp-line);
  transition: all .3s ease;
  flex-shrink: 0;
}
.hw-step .txt { padding-top: 2px; display: flex; flex-direction: column; min-width: 0; }
.hw-step .t {
  display: block;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--fp-ink-2);
  transition: color .25s ease;
  margin: 0;
}
.hw-step .b {
  display: block;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fp-muted);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease, margin .4s ease;
}
/* Active step */
.hw-step.active .num {
  background: var(--fp-accent);
  border-color: var(--fp-accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,152,90,0.28);
}
.hw-step.active .t { color: var(--fp-ink); }
.hw-step.active .b {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}
/* completed */
.hw-step.done .num {
  background: var(--fp-accent-soft);
  border-color: var(--fp-accent-soft);
  color: var(--fp-accent);
}

/* progress connector */
.hw-step::before {
  content: "";
  position: absolute;
  left: 21.5px;
  top: 64px;
  bottom: -4px;
  width: 2px;
  background: var(--fp-line);
}
.hw-step:last-child::before { display: none; }
.hw-step .fill {
  position: absolute;
  left: 21.5px;
  top: 64px;
  width: 2px;
  height: 0;
  background: var(--fp-accent);
  transition: height .1s linear;
  z-index: 1;
}

/* Right: screen viewport */
.hw-view {
  position: sticky;
  top: 40px;
}
.hw-window {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--fp-line);
  box-shadow: var(--fp-shadow-lg);
  overflow: hidden;
}
.hw-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid var(--fp-line);
  background: #fff;
}
.hw-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #E5E8EC; }
.hw-bar .url {
  margin-left: 14px;
  font-size: 12px;
  color: var(--fp-muted);
  font-weight: 600;
}
.hw-stage {
  position: relative;
  aspect-ratio: 1461 / 814;
  overflow: hidden;
  background: #fff;
}
.hw-pan {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  transition: left .7s cubic-bezier(.65,0,.35,1), top .7s cubic-bezier(.65,0,.35,1), width .7s cubic-bezier(.65,0,.35,1), height .7s cubic-bezier(.65,0,.35,1);
  will-change: left, top, width, height;
}
.hw-pan img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top left;
}
.hw-ring {
  position: absolute;
  border: 2.5px solid var(--fp-accent);
  border-radius: 10px;
  box-shadow: 0 0 0 9999px rgba(20,24,28,0.10), 0 8px 24px rgba(0,152,90,0.25);
  transition: all .7s cubic-bezier(.65,0,.35,1), opacity .4s ease;
  z-index: 2;
  pointer-events: none;
}
.hw-ring.hidden { opacity: 0; }

/* result image (step 5) */
.hw-result {
  position: absolute;
  inset: 0;
  background: var(--fp-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
  z-index: 3;
}
.hw-result.show { opacity: 1; }
.hw-result img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 50px -16px rgba(20,24,28,.4);
}

/* caption pill on stage */
.hw-cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--fp-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(20,24,28,.25);
  transition: opacity .3s ease;
}
.hw-cap .d { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
.hw-stage.s5on .hw-cap { opacity: 0; }

/* ─── Stage as query container so scene scales with width ─── */
.hw-stage { container-type: size; }

/* ─── STEP 5 SCENE ─────────────────────────────────────────── */
#scene5 {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  overflow: hidden;
}
#scene5.active { opacity: 1; }

@keyframes s5FadeIn { to { opacity: 1; } }
@keyframes s5FadeOut { to { opacity: 0; } }

/* ---------- APP BEAT ---------- */
.s5-app {
  position: absolute; inset: 0;
  padding: 4cqw 4.5cqw;
  background: #fff;
  display: flex; flex-direction: column; gap: 1.4cqh;
}
#scene5.run .s5-app { animation: s5AppOut .55s ease 3.7s forwards; }
@keyframes s5AppOut { to { opacity: 0; transform: translateX(-5%); filter: blur(2px); } }

.s5-selbar {
  display: flex; align-items: center; justify-content: space-between;
  background: #D6F7E9; border-radius: 1.1cqw;
  padding: 1.5cqw 2cqw; position: relative; flex-shrink: 0;
}
.s5-selbar .lbl { color: #00985A; font-weight: 800; font-size: 1.85cqw; }
.s5-selbar .icons { display: flex; gap: 1.8cqw; align-items: center; color: #00985A; }
.s5-selbar .icons svg { width: 2.5cqw; height: 2.5cqw; display: block; }
.s5-tooltip {
  position: absolute; top: -2.9cqw; right: 1.4cqw;
  background: #14181C; color: #fff; font-size: 1.25cqw; font-weight: 700;
  padding: .55cqw 1.1cqw; border-radius: .7cqw; white-space: nowrap; opacity: 0;
}
#scene5.run .s5-tooltip { animation: s5FadeIn .25s ease .55s forwards, s5FadeOut .2s ease 1.25s forwards; }

.s5-rows { display: flex; flex-direction: column; }
.s5-row {
  display: grid;
  grid-template-columns: 2.4cqw 1.7fr .55fr .85fr .5fr;
  gap: 1.6cqw; align-items: center;
  padding: 1.15cqw .4cqw; border-bottom: 1px solid #E5E8EC;
  font-size: 1.4cqw; color: #2C3640;
}
.s5-row .chk {
  width: 2.4cqw; height: 2.4cqw; border-radius: .55cqw;
  background: #00985A; display: flex; align-items: center; justify-content: center;
}
.s5-row .chk svg { width: 1.5cqw; height: 1.5cqw; color: #fff; }
.s5-row .nm { font-weight: 600; color: #14181C; }
.s5-row .mut { color: #637381; }

/* dim + modal */
.s5-dim { position: absolute; inset: 0; background: rgba(20,24,28,.32); opacity: 0; }
#scene5.run .s5-dim { animation: s5FadeIn .3s ease 1.2s forwards, s5FadeOut .35s ease 3.25s forwards; }

.s5-modal {
  position: absolute; top: 50%; left: 50%;
  width: 44cqw;
  transform: translate(-50%, -46%) scale(.95);
  background: #fff; border-radius: 1.4cqw;
  box-shadow: 0 2cqw 6cqw rgba(20,24,28,.28);
  padding: 2.8cqw 2.8cqw 2.4cqw; opacity: 0; z-index: 12;
}
#scene5.run .s5-modal {
  animation: s5ModalIn .42s cubic-bezier(.2,.8,.3,1) 1.25s forwards,
             s5ModalOut .4s ease 3.2s forwards;
}
@keyframes s5ModalIn { to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@keyframes s5ModalOut { to { opacity: 0; transform: translate(-50%, -53%) scale(.98); } }
.s5-modal .mt { font-size: 2.1cqw; font-weight: 800; color: #14181C; margin-bottom: 1.8cqw; }
.s5-modal .flbl { font-size: 1.2cqw; font-weight: 700; color: #637381; margin-bottom: .6cqw; }
.s5-field {
  border: 1.5px solid #00985A; border-radius: .9cqw;
  padding: 1cqw 1.1cqw; display: flex; align-items: center; gap: .8cqw; margin-bottom: 1.6cqw;
}
.s5-chip {
  background: #D6F7E9; color: #00985A; font-weight: 700; font-size: 1.3cqw;
  padding: .5cqw 1cqw; border-radius: 999px; display: flex; align-items: center; gap: .6cqw;
}
.s5-chip .x { width: 1.4cqw; height: 1.4cqw; border-radius: 50%; background: #00985A; color: #fff; display:flex; align-items:center; justify-content:center; font-size: 1cqw; }
.s5-field .ph { color: #97A2AD; font-size: 1.3cqw; }
.s5-modal .chkrow { display: flex; align-items: center; gap: .9cqw; font-size: 1.25cqw; color: #2C3640; margin-bottom: 2.2cqw; }
.s5-modal .chkbox { width: 1.6cqw; height: 1.6cqw; border: 1.5px solid #C2CAD2; border-radius: .4cqw; }
.s5-modal .btns { display: flex; justify-content: flex-end; gap: 1.1cqw; }
.s5-btn { font-size: 1.4cqw; font-weight: 700; padding: 1cqw 1.6cqw; border-radius: .8cqw; display: flex; align-items: center; gap: .7cqw; }
.s5-btn.ghost { color: #2C3640; background: #fff; border: 1px solid #E5E8EC; }
.s5-btn.dark { color: #fff; background: #14181C; }
.s5-btn.dark svg { width: 1.5cqw; height: 1.5cqw; }

/* cursor + click ripples + plane */
.s5-cursor { position: absolute; left: 55%; top: 64%; z-index: 25; width: 3cqw; height: 3cqw; filter: drop-shadow(0 1px 2px rgba(0,0,0,.3)); }
.s5-cursor svg { width: 100%; height: 100%; display: block; }
#scene5.run .s5-cursor { animation: s5Cursor 3.5s cubic-bezier(.5,0,.2,1) forwards; }
@keyframes s5Cursor {
  0%   { left: 55%; top: 66%; }
  16%  { left: 89.5%; top: 13.5%; }
  26%  { left: 89.5%; top: 13.5%; }
  46%  { left: 60.5%; top: 60%; }
  62%  { left: 60.5%; top: 60%; }
  100% { left: 60.5%; top: 60%; opacity: 0; }
}
.s5-ripple { position: absolute; z-index: 24; width: 4cqw; height: 4cqw; margin: -2cqw 0 0 -2cqw; border-radius: 50%; background: rgba(0,152,90,.35); opacity: 0; transform: scale(.2); }
.s5-ripple.r1 { left: 89.5%; top: 13.5%; }
.s5-ripple.r2 { left: 60.5%; top: 60%; }
#scene5.run .s5-ripple.r1 { animation: s5Rip .5s ease 1.05s; }
#scene5.run .s5-ripple.r2 { animation: s5Rip .5s ease 3.0s; }
@keyframes s5Rip { 0% { opacity: .7; transform: scale(.2); } 100% { opacity: 0; transform: scale(1.3); } }

.s5-plane { position: absolute; left: 58%; top: 56%; z-index: 22; color: #00985A; opacity: 0; }
.s5-plane svg { width: 4cqw; height: 4cqw; display: block; }
#scene5.run .s5-plane { animation: s5Plane 1s cubic-bezier(.5,0,.4,1) 3.05s forwards; }
@keyframes s5Plane {
  0%   { opacity: 0; transform: translate(0,0) scale(.5) rotate(-8deg); }
  18%  { opacity: 1; transform: translate(2cqw,-1cqw) scale(1) rotate(-4deg); }
  100% { opacity: 0; transform: translate(46cqw,-26cqw) scale(1.1) rotate(12deg); }
}

/* ---------- MAIL BEAT (shop computer) ---------- */
.s5-mail { position: absolute; inset: 0; background: #EAEDF1; opacity: 0; transform: translateX(7%); }
#scene5.run .s5-mail { animation: s5MailIn .6s cubic-bezier(.2,.8,.3,1) 3.95s forwards; }
@keyframes s5MailIn { to { opacity: 1; transform: translateX(0); } }

.s5-mailwin {
  position: absolute; inset: 3.5cqw 4cqw;
  background: #fff; border-radius: 1.2cqw; overflow: hidden;
  box-shadow: 0 2cqw 5cqw rgba(20,24,28,.18);
  display: grid; grid-template-columns: 33% 1fr;
}
.s5-list { border-right: 1px solid #E5E8EC; display: flex; flex-direction: column; }
.s5-list .lh { padding: 1.6cqw 1.8cqw; font-weight: 800; font-size: 1.7cqw; color: #14181C; border-bottom: 1px solid #E5E8EC; }
.s5-mailrow { padding: 1.4cqw 1.8cqw; border-bottom: 1px solid #EEF1F4; display: flex; flex-direction: column; gap: .4cqw; }
.s5-mailrow .top { display: flex; align-items: center; gap: .7cqw; }
.s5-mailrow .dot { width: 1cqw; height: 1cqw; border-radius: 50%; background: transparent; }
.s5-mailrow .snd { font-weight: 700; font-size: 1.35cqw; color: #2C3640; }
.s5-mailrow .tm { margin-left: auto; font-size: 1.1cqw; color: #97A2AD; }
.s5-mailrow .sub { font-size: 1.25cqw; color: #637381; display: flex; align-items: center; gap: .5cqw; }
.s5-mailrow .sub svg { width: 1.3cqw; height: 1.3cqw; }
.s5-mailrow.new { background: #fff; }
#scene5.run .s5-mailrow.new { animation: s5NewRow .6s ease 4.7s forwards; }
@keyframes s5NewRow { 0% { background: #fff; } 30% { background: #D6F7E9; } 100% { background: #EAF7F1; } }
#scene5.run .s5-mailrow.new .dot { animation: s5FadeIn .01s ease 4.7s forwards; background: #00985A; opacity: 0; }
#scene5.run .s5-mailrow.new .snd { color: #14181C; }

.s5-read { padding: 2.4cqw 2.6cqw; padding-top: 5.5cqw; display: flex; flex-direction: column; gap: 1.3cqw; opacity: 0; }
#scene5.run .s5-read { animation: s5FadeIn .45s ease 5.0s forwards; }
.s5-read .rsub { font-size: 2cqw; font-weight: 800; color: #14181C; }
.s5-read .rmeta { font-size: 1.25cqw; color: #637381; }
.s5-read .rbody { font-size: 1.4cqw; color: #2C3640; line-height: 1.5; max-width: 42cqw; }
.s5-attach {
  margin-top: .6cqw; width: 26cqw;
  border: 1px solid #E5E8EC; border-radius: 1cqw; padding: 1.2cqw;
  display: flex; align-items: center; gap: 1.2cqw; background: #FBFAF7;
  opacity: 0; transform: translateY(1.5cqw) scale(.96);
}
#scene5.run .s5-attach { animation: s5Attach .5s cubic-bezier(.2,.8,.3,1) 5.5s forwards; }
@keyframes s5Attach { to { opacity: 1; transform: translateY(0) scale(1); } }
.s5-pdf {
  width: 7cqw; height: 9cqw; background: #fff; border: 1px solid #E5E8EC; border-radius: .5cqw;
  padding: .8cqw; flex-shrink: 0; overflow: hidden;
}
.s5-pdf .pt { font-size: 1.05cqw; font-weight: 800; color: #14181C; margin-bottom: .5cqw; }
.s5-pdf .pl { height: .42cqw; background: #E5E8EC; border-radius: 999px; margin-bottom: .42cqw; }
.s5-pdf .pl.s { width: 60%; }
.s5-attach .ameta .an { font-size: 1.35cqw; font-weight: 700; color: #14181C; }
.s5-attach .ameta .as { font-size: 1.15cqw; color: #637381; margin-top: .3cqw; }

/* toast + pling */
.s5-toast {
  position: absolute; top: 3.4cqw; right: 4cqw; z-index: 30;
  background: #fff; border-radius: 1cqw; box-shadow: 0 1.2cqw 3cqw rgba(20,24,28,.2);
  padding: 1.1cqw 1.4cqw; display: flex; align-items: center; gap: 1cqw;
  opacity: 0; transform: translateX(125%);
}
#scene5.run .s5-toast { animation: s5Toast .5s cubic-bezier(.2,.8,.3,1) 4.45s forwards, s5ToastOut .5s ease 7.8s forwards; }
@keyframes s5Toast { to { opacity: 1; transform: translateX(0); } }
@keyframes s5ToastOut { to { opacity: 0; transform: translateX(125%); } }
.s5-toast .badge { width: 3.4cqw; height: 3.4cqw; border-radius: .8cqw; background: #00985A; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.s5-toast .badge svg { width: 2cqw; height: 2cqw; color: #fff; }
.s5-toast .tt { font-size: 1.45cqw; font-weight: 800; color: #14181C; }
.s5-toast .ts { font-size: 1.2cqw; color: #637381; margin-top: .2cqw; }
.s5-pling { position: absolute; top: 2.8cqw; right: 4.7cqw; z-index: 31; width: 5cqw; height: 5cqw; opacity: 0; }
.s5-pling svg { width: 100%; height: 100%; color: #FFC53D; }
#scene5.run .s5-pling { animation: s5Pling .7s ease 4.65s forwards; }
@keyframes s5Pling { 0% { opacity: 0; transform: scale(.3) rotate(-10deg); } 40% { opacity: 1; transform: scale(1.1) rotate(6deg); } 100% { opacity: 0; transform: scale(1.3) rotate(12deg); } }

/* play/pause control */
.hw-ctrl {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-left: 2px;
}
.hw-play {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--fp-line);
  background: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--fp-ink);
  transition: all .2s ease;
}
.hw-play:hover { border-color: var(--fp-accent); color: var(--fp-accent); }
.hw-ctrl .label { font-size: 13px; color: var(--fp-muted); font-weight: 600; }

@media (max-width: 900px) {
  .hw { grid-template-columns: 1fr; gap: 32px; }
  .hw-view { position: static; }
}
