/* ============================================================================
   FFENL HOMEPAGE  —  home.css
   Puur PHP-template, geen Elementor.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   GEDEELDE HULPKLASSEN
   ---------------------------------------------------------------------------- */

/* Eyebrow labels */
.hp-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.hp-eyebrow--sage        { color: #d4e2c0; }
.hp-eyebrow--mahogany    { color: var(--clr-mahogany); }
.hp-eyebrow--cream-faint { color: rgba(242, 228, 207, 0.55); }

/* Knoppen */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color var(--transition-base),
              color            var(--transition-base),
              border-color     var(--transition-base),
              transform        var(--transition-spring),
              box-shadow       var(--transition-base);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.hp-btn:hover { transform: translateY(-2px); }

.hp-btn--cream {
  background: var(--clr-cream-400);
  color: var(--clr-forest-800);
  border-color: var(--clr-cream-400);
}
.hp-btn--cream:hover {
  background: var(--brand-sage);
  border-color: var(--brand-sage);
  color: var(--clr-forest-800);
}

.hp-btn--ghost-light {
  background: transparent;
  color: var(--clr-cream-400);
  border-color: rgba(242, 228, 207, 0.45);
}
.hp-btn--ghost-light:hover {
  background: rgba(242, 228, 207, 0.1);
  border-color: var(--clr-cream-400);
}

.hp-btn--outline-mhg {
  background: transparent;
  color: var(--clr-mahogany);
  border-color: var(--clr-mahogany);
}
.hp-btn--outline-mhg:hover {
  background: var(--clr-mahogany);
  color: var(--clr-cream-400);
}

/* Sectie-headers */
.hp-section-hdr {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.hp-section-hdr .hp-eyebrow { margin-bottom: 1rem; }
.hp-section-hdr__title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.875rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-forest-800);
}
.hp-section-hdr--light .hp-section-hdr__title { color: var(--clr-cream-400); }

/* Scroll-animatie helper */
.anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------------------
   1. HERO
   ---------------------------------------------------------------------------- */

.hp-hero {
  position: relative;
  min-height: 100dvh;
  background-color: var(--clr-forest-800);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Stippelpatroon */
.hp-hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(184, 200, 160, 0.22) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

/* Zachte gloed rechtsboven */
.hp-hero__glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 70%;
  height: 100%;
  background: radial-gradient(
    ellipse at 70% 40%,
    rgba(63, 112, 82, 0.40) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Binnenste layout */
.hp-hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2.5rem, 4vw, 5rem);
  max-width: var(--container-2xl);
  margin-inline: auto;
  width: 100%;
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 6vw, 5rem);
}

/* Linker kolom – content */
.hp-hero__content {
  flex: 0 0 auto;
  width: min(52%, 640px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}

.hp-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4.5vw + 0.5rem, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--clr-cream-400);
}
.hp-hero__title em {
  font-style: italic;
  color: var(--clr-sage);
}

.hp-hero__sub {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.1875rem);
  line-height: 1.75;
  color: rgba(184, 200, 160, 0.85);
  max-width: 48ch;
}

.hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Rechter kolom – illustratie */
.hp-hero__visual {
  flex: 0 0 auto;
  width: min(46%, 580px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-hero__svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 72px rgba(8, 22, 15, 0.6));
  animation: heroFloat 6s ease-in-out infinite;
}

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

/* Scroll-indicator */
.hp-hero__scroll {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-bottom: 2.5rem;
}
.hp-hero__scroll-line {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(
    to bottom,
    rgba(184, 200, 160, 0.6),
    rgba(184, 200, 160, 0)
  );
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* Scheve onderkant hero → intro */
.hp-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--clr-bg-alt);           /* crème van intro */
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  pointer-events: none;
}

/* ----------------------------------------------------------------------------
   2. INTRO
   ---------------------------------------------------------------------------- */

.hp-intro {
  position: relative;
  background-color: var(--clr-bg-alt);
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
}

/* Decoratief aanhalingsteken */
.hp-intro__deco {
  position: absolute;
  top: -0.1em;
  left: clamp(0.5rem, 4vw, 3rem);
  font-family: var(--ff-display);
  font-size: clamp(12rem, 22vw, 22rem);
  font-weight: 700;
  line-height: 1;
  color: var(--clr-mahogany);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.hp-intro__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-lg);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.hp-intro__body {
  text-align: center;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hp-intro__title {
  font-family: var(--ff-display);
  font-size: clamp(1.875rem, 3vw + 0.5rem, 2.875rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-forest-800);
}

.hp-intro__text {
  font-size: clamp(1rem, 1vw + 0.25rem, 1.125rem);
  line-height: 1.85;
  color: #4a5e55;
  max-width: 58ch;
}

/* Stats */
.hp-intro__stats {
  width: 100%;
  max-width: 780px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(92, 58, 46, 0.18);
}

.hp-stat {
  padding: clamp(1.75rem, 3vw, 2.5rem) 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  border-right: 1px solid rgba(92, 58, 46, 0.18);
  text-align: center;
}
.hp-stat:last-child { border-right: none; }

.hp-stat__number {
  display: flex;
  align-items: flex-start;
  gap: 0.1em;
  line-height: 1;
}

.hp-stat__count {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--clr-mahogany);
  line-height: 1;
}

.hp-stat__plus {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--clr-mahogany);
  margin-top: 0.25em;
}

.hp-stat__label {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6b7e73;
  text-transform: uppercase;
}

/* Scheve onderkant intro → diensten */
.hp-intro::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 52px;
  background: var(--clr-bg);               /* licht van diensten */
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
  pointer-events: none;
}

/* ----------------------------------------------------------------------------
   3. DIENSTEN
   ---------------------------------------------------------------------------- */

.hp-services {
  background: var(--clr-bg);
  padding: clamp(4.5rem, 7vw, 6.5rem) clamp(1.5rem, 6vw, 5rem)
           clamp(5rem, 8vw, 7rem);
}

.hp-services__inner {
  max-width: var(--container-xl);
  margin-inline: auto;
}

/* Cards grid */
.hp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hp-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e5dece;
  border-top-width: 3px;
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 24px -4px rgba(31, 56, 48, 0.08);
  transition: transform 340ms cubic-bezier(0.34, 1.2, 0.64, 1),
              box-shadow 340ms ease;
  text-decoration: none;
  color: inherit;
}

.hp-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 60px -8px rgba(31, 56, 48, 0.16);
}

.hp-card--forest   { border-top-color: var(--clr-forest-800); }
.hp-card--mahogany { border-top-color: var(--clr-mahogany); }
.hp-card--sage     { border-top-color: #3f7052; }

/* Icon cirkel */
.hp-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  color: var(--clr-forest-800);
  flex-shrink: 0;
  transition: background-color var(--transition-base), color var(--transition-base);
}
.hp-card--mahogany .hp-card__icon-wrap {
  background: rgba(92, 58, 46, 0.1);
  color: var(--clr-mahogany);
}
.hp-card--sage .hp-card__icon-wrap {
  background: rgba(63, 112, 82, 0.1);
  color: #3f7052;
}

.hp-card:hover .hp-card__icon-wrap {
  background: var(--clr-forest-800);
  color: var(--clr-cream-400);
}
.hp-card--mahogany:hover .hp-card__icon-wrap {
  background: var(--clr-mahogany);
  color: var(--clr-cream-400);
}
.hp-card--sage:hover .hp-card__icon-wrap {
  background: #3f7052;
  color: var(--clr-cream-400);
}

.hp-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 1.5vw, 1.4375rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-forest-800);
}

.hp-card__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #4a5e55;
  flex: 1;
}

.hp-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--clr-forest-800);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.hp-card--mahogany .hp-card__link { color: var(--clr-mahogany); }
.hp-card--sage     .hp-card__link { color: #3f7052; }
.hp-card__link:hover { gap: 0.75em; }

/* ----------------------------------------------------------------------------
   4. WERKWIJZE  —  grafisch herontwerp
   ---------------------------------------------------------------------------- */

.hp-process {
  position: relative;
  background-color: var(--clr-forest-900, #1e342f);
  padding: clamp(6rem, 10vw, 9rem) clamp(1.5rem, 6vw, 5rem)
           clamp(6rem, 10vw, 9rem);
  overflow: hidden;
}

/* Stippenraster als achtergrondtextuur */
.hp-process__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(184, 200, 160, 0.10) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}

/* Radiale gloed centraal */
.hp-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 55%,
    rgba(63, 112, 82, 0.22) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hp-process__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-xl);
  margin-inline: auto;
}

/* ── Stappenrij ─────────────────────────────────────────────────────────── */

.hp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* Gestippelde verbindingslijn langs de icoon-centra */
.hp-steps::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 84px;                 /* = padding-top 1.75rem (28px) + halve icon-box (56px) */
  left: calc(12.5% + 40px); /* voorbij eerste icoon-center */
  right: calc(12.5% + 40px);
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(184, 200, 160, 0.35) 0px,
    rgba(184, 200, 160, 0.35) 8px,
    transparent 8px,
    transparent 18px
  );
  pointer-events: none;
}

/* ── Stap-kaart ─────────────────────────────────────────────────────────── */

.hp-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.5rem 2.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 200, 160, 0.10);
  border-radius: 20px;
  overflow: hidden;
  transition:
    background-color 300ms ease,
    border-color     300ms ease,
    transform        400ms cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow       300ms ease;
}

/* Visuele offset: even stappen zakken iets */
.hp-step:nth-child(even) { margin-top: 40px; }

.hp-step:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(184, 200, 160, 0.22);
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(10, 22, 15, 0.35);
}

/* Accent-kleur bovenrand per stap */
.hp-step--forest   { border-top: 2px solid rgba(90,  154, 116, 0.65); }
.hp-step--mahogany { border-top: 2px solid rgba(122,  78,  64, 0.70); }
.hp-step--sage     { border-top: 2px solid rgba(184, 200, 160, 0.60); }
.hp-step--cream    { border-top: 2px solid rgba(242, 228, 207, 0.55); }

/* Groot vervaagd achtergrond-getal */
.hp-step__bg-num {
  position: absolute;
  right: -0.1em;
  bottom: -0.25em;
  font-family: var(--ff-display);
  font-size: clamp(6rem, 9vw, 9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}

/* ── Icoon-box ──────────────────────────────────────────────────────────── */

.hp-step__icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  transition: transform 400ms cubic-bezier(0.34, 1.3, 0.64, 1);
}

/* Achtergrond per accentkleur */
.hp-step--forest   .hp-step__icon-box {
  background: rgba(63,  112,  82, 0.30);
  color: #b8c8a0;
  box-shadow: 0 0 0 1px rgba(63, 112, 82, 0.25) inset;
}
.hp-step--mahogany .hp-step__icon-box {
  background: rgba(92,   58,  46, 0.38);
  color: #e0c4b4;
  box-shadow: 0 0 0 1px rgba(92, 58, 46, 0.30) inset;
}
.hp-step--sage     .hp-step__icon-box {
  background: rgba(184, 200, 160, 0.15);
  color: #d4e2c0;
  box-shadow: 0 0 0 1px rgba(184, 200, 160, 0.20) inset;
}
.hp-step--cream    .hp-step__icon-box {
  background: rgba(242, 228, 207, 0.12);
  color: #f2e4cf;
  box-shadow: 0 0 0 1px rgba(242, 228, 207, 0.18) inset;
}

.hp-step:hover .hp-step__icon-box {
  transform: scale(1.10) rotate(-3deg);
}

/* SVG icoon */
.hp-step__icon-box svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

/* Stap-nummerbadge (kleine cirkel rechtsbovenop) */
.hp-step__badge {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  border: 2px solid var(--clr-forest-900, #1e342f);
}

.hp-step--forest   .hp-step__badge { background: #3f7052; color: #eaf2e0; }
.hp-step--mahogany .hp-step__badge { background: #7a4e40; color: #f7eede; }
.hp-step--sage     .hp-step__badge { background: #b8c8a0; color: #1e342f; }
.hp-step--cream    .hp-step__badge { background: #f2e4cf; color: #2f5048; }

/* ── Tekst ──────────────────────────────────────────────────────────────── */

.hp-step__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.hp-step__title {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: var(--clr-cream-400);
  line-height: 1.2;
}

.hp-step__text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(184, 200, 160, 0.78);
  max-width: 22ch;
  margin-inline: auto;
}

/* ── Overgang: diensten → werkwijze ─────────────────────────────────────── */
.hp-process::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--clr-bg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

/* ----------------------------------------------------------------------------
   5. CTA
   ---------------------------------------------------------------------------- */

.hp-cta {
  position: relative;
  background-color: var(--clr-mahogany);
  padding: clamp(5.5rem, 9vw, 8rem) clamp(1.5rem, 6vw, 5rem);
  overflow: hidden;
  text-align: center;
}

/* Decoratieve ring cirkels */
.hp-cta__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 228, 207, 0.12);
  pointer-events: none;
}
.hp-cta__ring--1 {
  width: 600px; height: 600px;
  bottom: -300px; right: -200px;
}
.hp-cta__ring--2 {
  width: 380px; height: 380px;
  bottom: -190px; right: -90px;
  border-color: rgba(242, 228, 207, 0.08);
}
.hp-cta__ring--3 {
  width: 220px; height: 220px;
  top: -100px; left: -60px;
  border-color: rgba(242, 228, 207, 0.1);
}

.hp-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.hp-cta__title {
  font-family: var(--ff-display);
  font-size: clamp(1.875rem, 3.5vw + 0.5rem, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-cream-400);
}

.hp-cta__sub {
  font-size: clamp(1rem, 1vw + 0.25rem, 1.125rem);
  line-height: 1.75;
  color: rgba(242, 228, 207, 0.72);
  max-width: 50ch;
}

.hp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Scheve bovenkant: process (donker) → CTA (mahonie) */
.hp-cta::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--clr-forest-800);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  pointer-events: none;
}

/* ----------------------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------------------- */

@media (max-width: 1024px) {

  .hp-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }

  .hp-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  /* Verberg verbindingslijn op 2-kolom layout */
  .hp-steps::before { display: none; }
  /* Reset stagger op 2 kolommen */
  .hp-step:nth-child(even) { margin-top: 0; }
}

@media (max-width: 768px) {

  /* Hero: stapelen */
  .hp-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hp-hero__content,
  .hp-hero__visual {
    width: 100%;
  }

  .hp-hero__visual {
    max-width: 460px;
  }

  .hp-hero__svg {
    animation: none;       /* minder afleiding op mobiel */
  }

  .hp-hero::after { display: none; }  /* scherpe overgang is voldoende */

  /* Stats: 1 kolom */
  .hp-intro__stats {
    grid-template-columns: 1fr;
    border-top: none;
  }
  .hp-stat {
    border-top: 1px solid rgba(92, 58, 46, 0.18);
    border-right: none !important;
  }
}

@media (max-width: 640px) {

  .hp-cards {
    grid-template-columns: 1fr;
  }
  .hp-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  /* Werkwijze: 1 kolom op smal scherm */
  .hp-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hp-step { text-align: left; align-items: flex-start; }
  .hp-step__icon-box { width: 64px; height: 64px; border-radius: 14px; }
  .hp-step__icon-box svg { width: 28px; height: 28px; }
  .hp-step__text { margin-inline: 0; max-width: none; }
  .hp-step__bg-num { font-size: 5rem; }

  .hp-cta__ring--1,
  .hp-cta__ring--2 { display: none; }

  .hp-hero__actions { flex-direction: column; align-items: flex-start; }
  .hp-cta__actions  { flex-direction: column; align-items: center;     }
}
