*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal-dark: #1B7B9C;
  --teal: #2CBFA8;
  --sky: #85C5D8;
  --yellow: #F5C84A;
  --coral: #F06B5C;
  --text-dark: #19303d;
  --text-mid: #4a6472;
  --bg-light: #f2f8fb;
  --border: #ddeaef;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

/* ─── COLOR STRIP ─────────────────────────────────────── */
.color-strip {
  height: 5px;
  background: linear-gradient(to right,
      var(--teal-dark) 0% 20%,
      var(--teal) 20% 40%,
      var(--sky) 40% 60%,
      var(--yellow) 60% 80%,
      var(--coral) 80% 100%);
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 34px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: color .2s;
}

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

.nav-links .nav-cta {
  background: var(--teal-dark);
  color: #fff;
  padding: .5rem 1.3rem;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(27, 123, 156, .25);
  transition: background .2s, transform .15s;
}

.nav-links .nav-cta:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}

/* ─── LANGUAGE SWITCH ─────────────────────────────────── */
.lang-switch {
  position: relative;
  flex: none;
  margin-left: 1.5rem;
}

.lang-switch summary {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .4rem .6rem .4rem .7rem;
  border-radius: 50px;
  background: var(--bg-light);
  font-size: .75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--teal-dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.lang-switch summary::-webkit-details-marker {
  display: none;
}

.lang-switch summary svg {
  transition: transform .2s;
}

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

.lang-switch summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.lang-switch ul {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 200;
  min-width: 8.5rem;
  margin: 0;
  padding: 4px;
  list-style: none;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(25, 48, 61, .16);
}

.lang-switch li a,
.lang-switch li span {
  display: flex;
  gap: .5rem;
  padding: .5rem .65rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-mid);
  text-decoration: none;
  white-space: nowrap;
}

.lang-switch li b {
  min-width: 1.5rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.lang-switch li a:hover,
.lang-switch li a:focus-visible {
  background: var(--bg-light);
  color: var(--teal-dark);
}

.lang-switch [aria-current] {
  background: var(--bg-light);
}

/* ─── SHARED LAYOUT ───────────────────────────────────── */
section {
  padding: 5.5rem 2rem;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
}

/* ─── HERO ────────────────────────────────────────────── */
#hero {
  background: linear-gradient(140deg, #eef7fb 0%, #e6f5f2 45%, #fdf7ec 100%);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Wider than the other sections, so the product screenshot gets more room */
#hero .container {
  max-width: 1240px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--teal);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  color: var(--teal-dark);
}

.hero-bullets {
  list-style: none;
  margin-bottom: 2.25rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-mid);
  padding: .3rem 0;
}

.hero-bullets .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 2.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.65;
  color: var(--text-mid);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hero-demo-link {
  padding-left: .4rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-demo-link:hover {
  color: var(--teal);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--teal-dark);
  color: #fff;
  padding: .95rem 2.1rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 5px 18px rgba(27, 123, 156, .3);
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 191, 168, .35);
}

/* App screenshot mockup */
.app-mockup {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(25, 48, 61, .18);
}

.mockup-bar {
  background: #243544;
  padding: .35rem .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.mockup-bar .dots {
  display: flex;
  gap: .25rem;
}

.mockup-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mockup-bar .dot-r {
  background: var(--coral);
}

.mockup-bar .dot-y {
  background: var(--yellow);
}

.mockup-bar .dot-g {
  background: var(--teal);
}

.mockup-url {
  flex: 1;
  background: #1a2b38;
  border-radius: 4px;
  height: 16px;
  display: flex;
  align-items: center;
  padding: 0 .4rem;
  gap: .3rem;
}

.mockup-url-lock {
  width: 8px;
  height: 10px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 2px;
  position: relative;
}

.mockup-url-lock::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 5px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-bottom: none;
  border-radius: 3px 3px 0 0;
}

.mockup-url-text {
  font-size: .6rem;
  color: rgba(255, 255, 255, .4);
  font-family: monospace;
}

.mockup-body {
  display: flex;
  background: #f4f8fa;
  overflow: hidden;
}

.mockup-body img {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-sidebar {
  width: 44px;
  background: #e6eff4;
  border-right: 1px solid #d4e4ec;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .6rem 0;
  gap: .45rem;
}

.tool-icon {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: var(--teal-dark);
}

.tool-icon.active {
  opacity: 1;
}

.tool-icon:not(.active) {
  opacity: .2;
}

.tool-icon:nth-child(2) {
  background: var(--teal);
}

.tool-icon:nth-child(3) {
  background: var(--sky);
}

.tool-icon:nth-child(4) {
  background: var(--yellow);
}

.mockup-canvas {
  flex: 1;
  padding: .75rem;
}

/* ─── FEATURES ────────────────────────────────────────── */
#features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.video-card {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #127060 100%);
  border-radius: 18px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 18px 52px rgba(27, 123, 156, .28);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-card:hover .video-card-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(255, 255, 255, .08) 0%, transparent 60%);
}

.video-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 24px 64px rgba(27, 123, 156, .36);
}

.play-ring {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--teal);
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform .2s ease, background .2s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.video-card:hover .play-ring {
  transform: scale(1.1);
  background: var(--teal-dark);
}

.play-ring svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.video-label {
  color: rgba(255, 255, 255, .9);
  font-weight: 800;
  font-size: .95rem;
}

.features-content .section-title {
  margin-bottom: 2rem;
}

.feat-group {
  margin-bottom: 2rem;
}

.feat-group-title {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .95rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: .8rem;
}

.feat-group-bar {
  width: 4px;
  height: 18px;
  border-radius: 2px;
  flex-shrink: 0;
}

.feat-list {
  list-style: none;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: .3rem 0;
}

.feat-list li::before {
  content: '✓';
  font-weight: 900;
  font-size: .8rem;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: .15rem;
}

/* Keep the CRM contact link visually part of its explanatory sentence. */
#beschikbaar .feat-list a {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#beschikbaar .feat-list a:hover {
  color: inherit;
}

/* ─── WERKWIJZE ───────────────────────────────────────── */
#werkwijze {
  background: var(--white);
}

.werkwijze-header {
  text-align: center;
  margin-bottom: 3rem;
}

.werkwijze-sub {
  margin-top: .75rem;
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 600;
}

.werkwijze-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}

/* Starters page: two-column card grid, collapses to one column on mobile */
.werkwijze-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 820px;
}

.werkwijze-card {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: 22px;
  padding: 2.25rem 2rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.werkwijze-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(25, 48, 61, .1);
  border-color: var(--sky);
}

.werkwijze-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.werkwijze-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: .75rem;
  line-height: 1.3;
}

.werkwijze-desc {
  font-size: .9rem;
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.65;
}

.werkwijze-of {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── HOW YOU PAY ─────────────────────────────────────── */
/* Quiet supporting row under the hero: light and small, so the headline and the CTA stay dominant */
.pay-steps-section {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Auto columns shrink and wrap their own text, so the triangles always sit between steps */
.pay-steps {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  align-items: center;
  column-gap: 2.75rem;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--text-mid);
}

.pay-step {
  position: relative;
}

/* CSS triangle centred in the gap to the next step (a ▶ glyph renders as an emoji on iOS) */
.pay-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.635rem;
  border-top: .38rem solid transparent;
  border-bottom: .38rem solid transparent;
  border-left: .52rem solid var(--sky);
  transform: translateY(-50%);
}

.pay-steps-note {
  margin-top: .3rem;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
}

.pay-steps-note a {
  color: var(--teal-dark);
  text-underline-offset: 3px;
}

.pay-steps-note a:hover {
  color: var(--teal);
}

@media (max-width: 720px) {
  .pay-steps {
    grid-template-columns: 1fr;
    row-gap: 1.1rem;
    font-size: .95rem;
  }

  /* Stacked steps: the triangle points down */
  .pay-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -.81rem;
    left: 50%;
    border-top: .52rem solid var(--sky);
    border-right: .38rem solid transparent;
    border-bottom: 0;
    border-left: .38rem solid transparent;
    transform: translateX(-50%);
  }

  .pay-steps-note {
    margin-top: .8rem;
  }
}

/* ─── PRICING ─────────────────────────────────────────── */
#pricing {
  background: var(--bg-light);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header .section-title {
  margin-top: .4rem;
}

.ab-test-note {
  margin-top: .75rem;
  color: var(--teal-dark);
  font-size: .95rem;
  font-weight: 800;
}

[data-ab-test-variant][hidden] {
  display: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: end;
}

/* Two pricing cards instead of three */
.pricing-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
}

/* Homepage: wide enough for the credit pack lines to fit on one line */
.pricing-grid-wide {
  max-width: 880px;
}

.pricing-card {
  background: var(--white);
  border-radius: 22px;
  padding: 2rem 1.75rem;
  border: 2px solid var(--border);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(25, 48, 61, .1);
}

.pricing-card.featured {
  border-color: var(--teal-dark);
  box-shadow: 0 10px 36px rgba(27, 123, 156, .2);
  transform: translateY(-10px);
}

.pricing-card.featured:hover {
  transform: translateY(-14px);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-dark);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .3rem 1.1rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* Homepage: education accounts as a note below the two paid options */
.pricing-edu {
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
  max-width: 880px;
  margin: 2.5rem auto 0;
  padding: 1.1rem 1.4rem;
  border: 1px dashed #c5dbe4;
  border-radius: 16px;
}

.pricing-edu-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  color: var(--teal-dark);
}

.pricing-edu p {
  flex: 1;
  color: var(--text-mid);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.55;
}

.pricing-edu strong {
  color: var(--text-dark);
  font-weight: 800;
}

.pricing-edu a {
  flex-shrink: 0;
  color: var(--teal-dark);
  font-size: .88rem;
  font-weight: 800;
  text-underline-offset: 3px;
}

.pricing-edu a:hover {
  color: var(--teal);
}

@media (max-width: 640px) {
  .pricing-edu {
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 400px;
  }

  .pricing-edu p {
    flex-basis: calc(100% - 44px - 1.25rem);
  }

  .pricing-edu a {
    margin-left: calc(44px + 1.25rem);
  }
}

.card-tier {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: .6rem;
}

.card-price-main {
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-dark);
}

/* Word-based price line ("2 free projects") instead of an amount */
.card-price-text {
  font-size: 2.1rem;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.card-price-unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-mid);
}

.card-price-alt {
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-top: .25rem;
  min-height: 1.2em;
}

.card-price-detail {
  margin-top: .55rem;
  color: var(--text-mid);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.5;
}

.card-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.card-feats {
  list-style: none;
  margin-bottom: 1.75rem;
}

.card-feats li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: .28rem 0;
}

.pill {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 900;
  margin-top: .1rem;
}

.pill-ok {
  background: var(--teal);
  color: #fff;
}

.pill-warn {
  background: var(--yellow);
  color: var(--text-dark);
}

.pill-no {
  background: #f0e8e8;
  color: #b05050;
}

.feat-banner {
  background: #d4f2eb;
  border-radius: 8px;
  padding: .45rem .6rem;
  margin: 0 -.5rem .4rem;
  font-weight: 900;
  color: var(--text-dark) !important;
  font-size: 1rem;
  justify-content: center;
}


.btn-card {
  display: block;
  text-align: center;
  padding: .88rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: .92rem;
  text-decoration: none;
  transition: all .2s;
}

.btn-filled {
  background: var(--teal-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(27, 123, 156, .3);
}

.btn-filled:hover {
  background: var(--teal);
}

.btn-outline {
  border: 2px solid var(--border);
  color: var(--teal-dark);
}

.btn-outline:hover {
  border-color: var(--teal-dark);
  background: var(--bg-light);
}

/* ─── FAQ ─────────────────────────────────────────────── */
#faq {
  background: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: var(--sky);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
}

.faq-btn:hover {
  background: var(--bg-light);
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--teal-dark);
  transition: transform .25s, background .2s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal-dark);
  color: #fff;
  border-color: var(--teal-dark);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.faq-item.open .faq-body {
  max-height: 500px;
}

.faq-body-inner {
  padding: 1.25rem 1.5rem 1.25rem 1.5rem;
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* Closing invitation */
.closing-cta {
  background: var(--bg-light);
  text-align: center;
}

.closing-cta .hero-lead {
  margin: 1rem auto 1.75rem;
}

.closing-cta .btn-primary {
  justify-content: center;
  max-width: 100%;
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--text-dark);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 30px;
}

footer p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
}

footer p+p {
  margin-top: .35rem;
}

footer strong {
  color: rgba(255, 255, 255, .75);
}

footer a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
}

footer a:hover {
  color: rgba(255, 255, 255, .8);
}

/* ─── DEVICE ICONS ───────────────────────────────────── */
.beschikbaar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.map-device-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf5f9 0%, #e4f4f1 100%);
  border: 2px solid var(--border);
  height: 380px;
  box-shadow: 0 4px 24px rgba(25, 48, 61, .08);
}

.map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-pin-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 4px 8px rgba(27, 123, 156, .35));
}

.map-device-card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  border: 2px solid var(--border);
  padding: 1.1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  box-shadow: 0 8px 28px rgba(25, 48, 61, .14);
  font-size: .9rem;
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
  min-width: 120px;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 860px) {

  .hero-grid,
  .features-grid,
  .beschikbaar-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .werkwijze-of {
    margin: 0 auto;
  }

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

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 1100px) {
  .nav-links .nav-secondary {
    display: none;
  }
}

@media (max-width: 860px) {
  nav {
    padding: 0 1.25rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .lang-switch {
    margin-left: 1rem;
  }
}

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

@media (max-width: 600px) {
  section {
    padding: 4rem 1.25rem;
  }
}

/* Starters page is a QR-code landing page: keep the CTA reachable on phones */
@media (max-width: 720px) {
  .starters-page .nav-links {
    display: flex;
    gap: .75rem;
  }

  .starters-page .nav-links li:not(.nav-mobile) {
    display: none;
  }

  .starters-page .nav-links a {
    font-size: .82rem;
  }

  .starters-page .nav-links .nav-cta {
    padding: .45rem 1rem;
    white-space: nowrap;
  }

  .starters-page .lang-switch {
    margin-left: .75rem;
  }
}

/* Phones: the CTA and the language switch, so they never collide with the logo */
@media (max-width: 450px) {
  .starters-page .nav-links .nav-mobile-wide {
    display: none;
  }
}

/* Narrowest phones: the CTA alone */
@media (max-width: 359px) {
  .starters-page .lang-switch {
    display: none;
  }
}

/* ─── STICKY CTA (starters landing page, phones only) ──── */
.sticky-cta {
  display: none;
}

@media (max-width: 600px) {
  .starters-page .sticky-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding: .7rem 1rem;
    padding-bottom: max(.7rem, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(25, 48, 61, .12);
    transform: translateY(115%);
    transition: transform .25s ease;
  }

  .starters-page .sticky-cta.is-visible {
    transform: translateY(0);
  }

  .sticky-cta-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
  }

  .sticky-cta-text strong {
    font-size: .95rem;
    font-weight: 800;
    color: var(--text-dark);
  }

  .sticky-cta-text span {
    font-size: .72rem;
    font-weight: 700;
    color: var(--text-mid);
  }

  .sticky-cta-btn {
    flex: none;
    background: var(--teal-dark);
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 800;
    padding: .7rem 1.25rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(27, 123, 156, .25);
  }

  /* room so the bar never covers the last footer line */
  .starters-page footer {
    padding-bottom: 5.5rem;
  }
}

/* Narrowest phones: the button alone */
@media (max-width: 340px) {
  .starters-page .sticky-cta-text {
    display: none;
  }

  .starters-page .sticky-cta-btn {
    flex: 1;
    text-align: center;
  }
}

/* ─── VIDEO MODAL ─────────────────────────────────────── */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.show {
  display: flex;
  opacity: 1;
}

.video-modal-wrapper {
  position: relative;
  width: 90%;
  max-width: 1600px;
  margin: auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.video-modal-close:hover {
  color: var(--teal);
}

/* ─── COMPARISON PAGES ────────────────────────────────── */
.comparison-page {
  background: var(--white);
}

.comparison-page nav {
  position: relative;
}

.comparison-page .nav-links {
  gap: 1.35rem;
}

.comparison-page .nav-links a[aria-current="page"] {
  color: var(--teal-dark);
}

.comparison-hero {
  padding: 5.5rem 2rem 4.5rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(133, 197, 216, .3), transparent 25%),
    radial-gradient(circle at 88% 80%, rgba(245, 200, 74, .2), transparent 27%),
    linear-gradient(140deg, #eef7fb 0%, #e6f5f2 48%, #fdf7ec 100%);
  text-align: center;
}

.comparison-hero-inner {
  max-width: 920px;
}

.comparison-title {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: .4rem 0 1.25rem;
}

.comparison-lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 600;
}

.comparison-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, .75);
  border: 2px solid rgba(27, 123, 156, .2);
  border-radius: 50px;
  padding: .82rem 1.8rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
}

.btn-secondary:hover {
  background: var(--white);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}

.comparison-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.comparison-highlights-four {
  grid-template-columns: repeat(4, 1fr);
}

.comparison-highlights-heading {
  margin-top: 3.5rem;
  text-align: center;
}

.comparison-highlights-heading span {
  color: var(--teal-dark);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.comparison-highlights-heading p {
  margin-top: .2rem;
  color: var(--text-mid);
  font-size: .88rem;
  font-weight: 700;
}

.comparison-highlight {
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(27, 123, 156, .14);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(25, 48, 61, .06);
}

.comparison-highlight strong,
.comparison-highlight span {
  display: block;
}

.comparison-highlight strong {
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.comparison-highlight span {
  margin-top: .18rem;
  color: var(--text-mid);
  font-size: .84rem;
  font-weight: 700;
}

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

.comparison-explainer {
  max-width: 960px;
  margin: 0 auto 5rem;
  padding: 2.5rem 2.75rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 22px;
}

.comparison-explainer h2,
.comparison-scenarios h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.25;
}

.comparison-explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.comparison-explainer-grid p {
  color: var(--text-mid);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.72;
}

.comparison-heading {
  max-width: 700px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.comparison-heading p {
  margin-top: .75rem;
  color: var(--text-mid);
  font-weight: 600;
}

.comparison-table-wrap {
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(25, 48, 61, .09);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.35rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
  font-size: .92rem;
  line-height: 1.45;
}

.comparison-table thead th {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #f7fafc;
  color: var(--text-mid);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  width: 40%;
}

.comparison-table thead th:not(:first-child),
.comparison-table td {
  width: 30%;
}

.comparison-table tbody th {
  color: var(--text-dark);
  font-weight: 800;
}

.comparison-table tbody td {
  color: var(--text-mid);
  font-weight: 700;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table .comparison-brand-column {
  background: rgba(44, 191, 168, .055);
  border-left: 1px solid rgba(44, 191, 168, .18);
  border-right: 1px solid rgba(44, 191, 168, .18);
}

.comparison-brand-name {
  display: block;
  color: var(--text-dark);
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.comparison-recommended {
  display: inline-block;
  margin-bottom: .4rem;
  padding: .2rem .55rem;
  border-radius: 50px;
  background: var(--teal);
  color: var(--white);
  font-size: .62rem;
  line-height: 1.2;
}

.comparison-category th {
  width: 100% !important;
  padding: .72rem 1.35rem;
  background: var(--teal-dark);
  color: var(--white) !important;
  border-bottom-color: var(--teal-dark);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.comparison-price {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.comparison-yes,
.comparison-no,
.comparison-neutral {
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  padding: .27rem .65rem;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}

.comparison-yes {
  color: #167a67;
  background: #dff5ef;
}

.comparison-no {
  color: #95605b;
  background: #f6ecea;
}

.comparison-neutral {
  color: #705f22;
  background: #fbf2d5;
}

.comparison-detail {
  display: block;
  margin-top: .4rem;
}

.comparison-tax-note {
  max-width: 960px;
  margin: .75rem auto 0;
  color: var(--text-mid);
  font-size: .78rem;
  text-align: right;
}

.comparison-scenarios {
  max-width: 960px;
  margin: 5rem auto 0;
}

.comparison-scenarios-heading {
  margin-bottom: 1.75rem;
  text-align: center;
}

.comparison-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.comparison-scenario {
  padding: 1.65rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
}

.comparison-scenario h3 {
  margin-bottom: .65rem;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.35;
}

.comparison-scenario p {
  color: var(--text-mid);
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.7;
}

.comparison-choice-section {
  background: var(--bg-light);
}

.comparison-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.choice-card {
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 22px;
}

.choice-card-featured {
  border-color: var(--teal);
  box-shadow: 0 14px 42px rgba(44, 191, 168, .13);
}

.choice-card-label {
  margin-bottom: .65rem;
  color: var(--teal-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.choice-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

.choice-list {
  flex: 1;
  margin: 1.25rem 0 1.75rem;
  list-style: none;
}

.choice-list li {
  position: relative;
  padding: .35rem 0 .35rem 1.35rem;
  color: var(--text-mid);
  font-size: .92rem;
  font-weight: 600;
}

.choice-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.comparison-cta-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.comparison-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 3rem 3.25rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 200, 74, .22), transparent 34%),
    linear-gradient(135deg, #e4f4f1, #eaf5f9);
  border: 2px solid var(--border);
  border-radius: 24px;
}

.comparison-cta-card h2 {
  max-width: 620px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.22;
}

.comparison-cta-card p {
  margin-top: .65rem;
  color: var(--text-mid);
  font-weight: 600;
}

.comparison-cta-button {
  flex-shrink: 0;
  justify-content: center;
  white-space: nowrap;
}

.comparison-sources-section {
  padding-top: 0;
  padding-bottom: 4rem;
}

.comparison-faq-section {
  padding-top: 0;
  background: var(--white);
}

.comparison-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.comparison-faq-list details {
  margin-bottom: .75rem;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
}

.comparison-faq-list summary {
  position: relative;
  padding: 1.15rem 3.5rem 1.15rem 1.35rem;
  color: var(--text-dark);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.comparison-faq-list summary::-webkit-details-marker {
  display: none;
}

.comparison-faq-list summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 26px;
  height: 26px;
  color: var(--teal-dark);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 23px;
  text-align: center;
  transform: translateY(-50%);
}

.comparison-faq-list details[open] summary::after {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-50%) rotate(45deg);
}

.comparison-faq-list details p {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-mid);
  font-size: .92rem;
  line-height: 1.7;
}

.comparison-sources {
  max-width: 900px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.comparison-sources h2 {
  margin-bottom: .35rem;
  font-size: .9rem;
}

.comparison-sources p {
  color: var(--text-mid);
  font-size: .78rem;
  line-height: 1.7;
}

.comparison-sources a {
  color: var(--teal-dark);
  font-weight: 800;
}

@media (max-width: 980px) {
  .comparison-page .nav-links {
    gap: .9rem;
  }

  .comparison-page .nav-links a {
    font-size: .8rem;
  }
}

@media (max-width: 760px) {
  .comparison-hero {
    padding: 4rem 1.25rem 3.5rem;
  }

  .comparison-highlights,
  .comparison-choice-grid,
  .comparison-explainer-grid,
  .comparison-scenarios-grid {
    grid-template-columns: 1fr;
  }

  .comparison-explainer {
    margin-bottom: 4rem;
    padding: 1.75rem 1.35rem;
  }

  .comparison-highlights {
    gap: .65rem;
    margin-top: .85rem;
  }

  .comparison-highlights-heading {
    margin-top: 2.5rem;
  }

  .comparison-highlight {
    padding: .9rem 1rem;
  }

  .comparison-table-wrap {
    overflow: hidden;
    border-radius: 16px;
  }

  .comparison-table {
    table-layout: auto;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody,
  .comparison-table .comparison-category,
  .comparison-table .comparison-category th {
    display: block;
  }

  .comparison-table tr:not(.comparison-category) {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .comparison-table tr:not(.comparison-category)>th {
    grid-column: 1 / -1;
    width: auto;
    padding: .8rem 1rem .45rem;
    background: #f7fafc;
    border-bottom: 0;
    font-size: .85rem;
  }

  .comparison-table tr:not(.comparison-category)>td {
    width: auto;
    min-width: 0;
    padding: .55rem 1rem 1rem;
    font-size: .84rem;
  }

  .comparison-table .comparison-yes,
  .comparison-table .comparison-no,
  .comparison-table .comparison-neutral {
    white-space: normal;
  }

  .comparison-table tr:not(.comparison-category)>td::before {
    display: block;
    margin-bottom: .35rem;
    color: var(--teal-dark);
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .comparison-table tr:not(.comparison-category)>td:first-of-type::before {
    content: '1draad';
  }

  .comparison-table tr:not(.comparison-category)>td:last-of-type::before {
    content: 'Trikker';
  }

  .comparison-goethals-jacobs .comparison-table tr:not(.comparison-category)>td:last-of-type::before {
    content: 'Goethals-Jacobs';
  }

  .comparison-table .comparison-brand-column {
    border-left: 0;
  }

  .comparison-category th {
    width: auto !important;
    padding: .72rem 1rem;
  }

  .comparison-cta-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 2.25rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .comparison-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .comparison-actions .btn-primary,
  .comparison-actions .btn-secondary,
  .comparison-cta-button {
    width: 100%;
    justify-content: center;
  }

  .choice-card {
    padding: 1.65rem 1.35rem;
  }
}

/* Homepage: existing drawings, shown as editable results */
.home-import {
  background: var(--bg-light);
  scroll-margin-top: 4rem;
}

.home-import-header .accent {
  color: var(--teal-dark);
  white-space: nowrap;
}

.home-import-header p {
  max-width: 44rem;
  margin-top: .9rem;
  color: var(--text-mid);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
}

/* Two columns with the arrow between; captions share a second row so both images stay aligned */
.home-import-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem 2rem;
  align-items: center;
  margin-top: 3.25rem;
}

.home-import-stage figure {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  row-gap: 1.5rem;
}

.home-import-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(25, 48, 61, .18);
  transform: rotate(-1.5deg);
}

.home-import-stage .app-mockup {
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(25, 48, 61, .18);
}

.home-import-stage figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-size: .95rem;
  font-weight: 700;
}

.home-import-tag {
  padding: .15rem .65rem;
  border: 1px solid var(--teal-dark);
  border-radius: 50px;
  background: var(--teal-dark);
  color: var(--white);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-import-arrow {
  grid-row: 1;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 6px 18px rgba(27, 123, 156, .2);
}

.home-import-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-top: 3.5rem;
}

.home-import-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  text-align: center;
}

.home-import-actions p {
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 600;
  text-wrap: balance;
}

.home-import-extra {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.home-import-extra-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #f0d98a;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdf7ec 0%, #faefd4 100%);
}

.home-import-extra h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .2rem;
}

.home-import-extra p {
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.55;
}

.home-import-extra a {
  color: var(--teal-dark);
  font-weight: 800;
  white-space: nowrap;
}

.home-import-extra a:hover {
  color: var(--teal);
}

@media (max-width: 680px) {
  .home-import-stage {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    gap: 1.25rem;
    margin-top: 2.25rem;
  }

  .home-import-stage figure {
    grid-row: auto;
    grid-template-rows: none;
    row-gap: 1.1rem;
  }

  .home-import-arrow {
    grid-row: auto;
    grid-column: auto;
    justify-self: center;
    width: 44px;
    height: 44px;
  }

  .home-import-arrow svg {
    transform: rotate(90deg);
  }

  .home-import-footer {
    gap: 2.25rem;
    margin-top: 2.5rem;
  }

  .home-import-actions {
    align-self: stretch;
  }

  .home-import-extra {
    align-items: flex-start;
  }

  .home-import-actions .btn-primary {
    justify-content: center;
  }
}
