/* =========================================================
   01. RESET
========================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================================
   02. ROOT VARIABLES
========================================================= */
:root {
  --_colors---black: #242424;
  --_colors---black-shade: #313131;
  --_colors---white: #ffffff;
  --_colors---white-shade: #b4b4b4;
  --_colors---green: #d1e09e;
  --_colors---light-green: #f7ffdb;
  --_colors---dark-green: #567000;
  --_colors---dark-grey: #4d4d4d;
  --_colors---grey: #989898;
  --_fonts---inter: Inter, sans-serif;

  --body: 0.875rem;
  --body-large: 1rem;
  --body-small: 0.75rem;
  --body-extra-large: 2.25rem;
  --h1: 4.5rem;
  --h2: 3rem;
  --h3: 1.5rem;
  --h4: 1.25rem;
  --h5: 1rem;
  --h6: 1rem;

  --_spacing---section-padding-top: 4.5rem;
  --_spacing---section-padding-left-and-right: 3.75rem;
}

/* =========================================================
   03. BASE / GLOBAL
========================================================= */
body {
  font-family: var(--_fonts---inter);
  background-color: var(--_colors---black);
  color: var(--_colors---white);
  font-size: var(--body);
  line-height: 140%;
  min-height: 100vh;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
  border: 0;
}

a {
  color: var(--_colors---white-shade);
  text-decoration: underline;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--_colors---white);
}

p {
  color: var(--_colors---white-shade);
  margin-bottom: 0;
}

h1 {
  font-size: var(--h1);
  letter-spacing: -4px;
  margin: 0;
  font-weight: 400;
  line-height: 120%;
}

h2 {
  font-size: var(--h2);
  letter-spacing: -1.7px;
  margin: 0;
  font-weight: 400;
  line-height: 120%;
}

h3 {
  font-size: var(--h3);
  margin: 0;
  font-weight: 400;
  line-height: 120%;
}

h4 {
  font-size: var(--h4);
  margin: 0;
  font-weight: 400;
  line-height: 120%;
}

h5 {
  font-size: var(--h5);
  margin: 0;
  font-weight: 600;
  line-height: 120%;
}

h6 {
  font-size: var(--h6);
  margin: 0;
  font-weight: 400;
  line-height: 130%;
}

/* =========================================================
   04. UTILITY
========================================================= */
.page-content-wrapper {
  position: relative;
  min-height: 100vh;
}

.small-text {
  font-size: var(--body-small);
}

.large-text {
  font-size: var(--body-large);
  line-height: 130%;
}

.grey-text {
  color: var(--_colors---grey);
}

/* =========================================================
   05. SHARED BUTTON TEXT ANIMATION
========================================================= */
.button-text-wrapper {
  overflow: hidden;
  position: relative;
  max-height: 1.25rem;
}

.button-text {
  display: block;
  transition: transform 0.3s ease;
  line-height: 1.25rem;
}

.nav-button:hover .button-text,
.primary-button:hover .button-text {
  transform: translateY(-100%);
}

.secondary-cta {
  color: var(--_colors---white-shade);
  text-decoration: none;
  font-size: var(--body);
  font-weight: 500;
  transition: color 0.2s;
  display: inline-block;
}

.secondary-cta:hover {
  color: var(--_colors---white);
}

/* =========================================================
   06. NAVBAR - DESKTOP
========================================================= */
.navbar {
  background-color: transparent;
  width: 100%;
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container {
  background-color: var(--_colors---black-shade);
  outline: 4px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  max-width: 874px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  margin-right: auto;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: auto;
  height: 40px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-right: auto;
}

.nav-link {
  color: var(--_colors---white-shade);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.w--current {
  color: var(--_colors---white);
}

.nav-button {
  background-color: var(--_colors---white);
  color: var(--_colors---black);
  border-radius: 100px;
  padding: 0.75rem 1.125rem;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
}

.nav-button:hover {
  box-shadow: 0 0 8px 0 var(--_colors---green);
  color: var(--_colors---black);
}

/* =========================================================
   07. MOBILE MENU BUTTON
========================================================= */
.menu-button {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
}

.menu-icon {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.menu-line {
  width: 100%;
  height: 2px;
  background-color: var(--_colors---white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-button.active .menu-line-1 {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.active .menu-line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.menu-button.active .menu-line-3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   08. MOBILE OVERLAY
========================================================= */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* Hide desktop dashboard button on mobile */
@media (max-width: 767px) {
  .nav-button {
    display: none;
  }
}

/* Show mobile-only links only in mobile menu */
.mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .mobile-only {
    display: block;
  }
}

/* =========================================================
   09. HERO SECTION
========================================================= */
.page-hero-section {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10vw 3.75rem 3.75rem;
  position: relative;
  overflow: visible;
}

/* =========================================================
   10. SHARED SECTION / DASHED LINES / DIVIDERS
========================================================= */
.section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: var(--_spacing---section-padding-top) var(--_spacing---section-padding-left-and-right);
}

.content-container,
.small-testimonial-wrapper,
.stats-grid,
.home-hero-content-container {
  position: relative;
  z-index: 2;
}

/* Vertical dashed lines */
.section-dashed-lines-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-dashed-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.16) 0 8px,
    transparent 8px 16px
  );
  background-repeat: repeat-y;
  background-size: 1px 16px;
}

.section-dashed-line:first-child {
  left: 25%;
  transform: translateX(-1px);
}

.section-dashed-line:last-child {
  right: 25%;
  transform: translateX(1px);
}

@media screen and (min-width: 1280px) {
  .section-dashed-line:first-child {
    left: 16.666%;
  }

  .section-dashed-line:last-child {
    right: 16.666%;
  }
}

@media screen and (max-width: 767px) {
  .section-dashed-line:first-child {
    left: 18%;
  }

  .section-dashed-line:last-child {
    right: 18%;
  }
}

@media screen and (max-width: 479px) {
  .section-dashed-line:first-child {
    left: 25px;
  }

  .section-dashed-line:last-child {
    right: 25px;
  }
}

/* Horizontal divider */
.section-divider-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  display: grid;
  grid-template-columns: 0.25fr minmax(0, 3.5fr) 0.25fr;
  z-index: 1;
  pointer-events: none;
}

.section-divider-wrapper.top {
  top: 0;
}

.section-divider-wrapper.bottom {
  top: auto;
  bottom: 0;
}

.section-divider {
  grid-column: 2;
  width: calc(100% - 2px);
  margin-left: 1px;
  margin-right: 1px;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.16) 0 8px,
    transparent 8px 16px
  );
}

@media screen and (min-width: 1280px) {
  .page-hero-section {
    padding-top: 10.5vw;
  }

  .section-dashed-lines-wrapper,
  .section-divider-wrapper {
    grid-template-columns: 0.25fr minmax(0, 1fr) 0.25fr;
  }
}

@media screen and (max-width: 767px) {
  .section-dashed-lines-wrapper,
  .section-divider-wrapper {
    grid-template-columns: 0.22fr minmax(0, 1fr) 0.22fr;
  }
}

@media screen and (max-width: 479px) {
  .section-dashed-lines-wrapper,
  .section-divider-wrapper {
    grid-template-columns: 25px minmax(0, 1fr) 25px;
  }
}

/* =========================================================
   11. HERO CONTENT
========================================================= */
.home-hero-content-container {
  max-width: 874px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.hero-paragraph {
  max-width: 584px;
  margin-bottom: 2rem;
}

.loved-by-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* =========================================================
   12. HERO TAG / BADGE
========================================================= */
.section-tag-wrapper {
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.section-tag-background {
  z-index: 0;
  background-color: var(--_colors---green);
  filter: blur(15px);
  border-radius: 50px;
  width: 0;
  height: 12px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20%;
  padding-right: 20%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
}

.section-tag-rectangle {
  z-index: 2;
  background-color: var(--_colors---green);
  border-radius: 50px;
  width: 0;
  height: 4px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20%;
  padding-right: 20%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-2px);
}

.section-tag-content {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.25rem 0.75rem 0.25rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
}

.section-tag-highlighted {
  border: 1px solid var(--_colors---grey);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
}

.section-tag-content.no-highlight {
  padding: 0.25rem 0.75rem;
}

/* =========================================================
   13. HERO BUTTON
========================================================= */
.primary-button {
  background-color: var(--_colors---white);
  color: var(--_colors---black);
  border-radius: 100px;
  padding: 0.75rem 1.125rem;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--body);
  font-weight: 500;
  cursor: pointer;
}

.primary-button:hover {
  box-shadow: 0 0 8px 0 var(--_colors---green);
  color: var(--_colors---black);
}

/* =========================================================
   14. HERO BACKGROUND
========================================================= */
.hero-background-wrapper {
  z-index: -1;
  filter: blur(90px);
  pointer-events: none;
  perspective-origin: 0%;
  transform-origin: 0%;
  background-image: url("../images/.hero-background-wrapper");
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  inset: 35% 0% -30%;
}

/* =========================================================
   15. HERO FLOATING GRAPHICS
========================================================= */
.home-hero-graphics-wrapper {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.home-hero-graphic {
  position: absolute;
  z-index: 2;
}

.home-hero-graphic.top-left {
  top: 9%;
  left: 3%;
}

.home-hero-graphic.top-right {
  top: 10%;
  right: 1%;
}

.home-hero-graphic.bottom-left {
  bottom: 0%;
  left: 2%;
}

.home-hero-graphic.bottom-right {
  bottom: 15%;
  right: 5%;
}

/* =========================================================
   16. CONTENT CONTAINER
========================================================= */
.content-container {
  gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 914px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

/* =========================================================
   17. SECTION HEADING
========================================================= */
.section-heading {
  text-align: center;
  max-width: 750px;
}

.section-heading.left-aligned {
  text-align: left;
  max-width: none;
}

.section-heading-left-aligned {
  gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

/* =========================================================
   18. BENEFITS GRID (Why Zoflo)
========================================================= */
.benefits-grid {
  gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 4rem;
  display: grid;
}

/* =========================================================
   19. GREY CARD WRAPPER
========================================================= */
.grey-card-wrapper {
  background-color: rgba(55, 55, 55, 0.25);
  background-image: linear-gradient(143deg, var(--_colors---dark-grey) 65%, var(--_colors---green));
  border-radius: 18px;
  padding: 4px;
  position: relative;
  overflow: hidden;
}

.grey-card-wrapper.glow-bottom-left {
  background-image: linear-gradient(232deg, var(--_colors---dark-grey) 65%, var(--_colors---green));
}

.grey-card-wrapper.glow-top {
  background-image: linear-gradient(4deg, var(--_colors---dark-grey) 65%, var(--_colors---green));
}

.grey-card-content {
  z-index: 1;
  gap: 1.5rem;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: rgba(36, 36, 36, 0.75);
  border-radius: 14px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 1.875rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grey-card-text-wrapper {
  gap: 0.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.grey-card-text-wrapper p {
  color: var(--_colors---white-shade);
  line-height: 1.5;
}

/* =========================================================
   20. STATS SECTION (Trust Bar)
========================================================= */
.stats-grid {
  grid-column-gap: 0px;
  /* grid-row-gap: 6rem; */
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.stats-numbers-grid {
  grid-column-gap: 1.25rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  display: grid;
}

.stats-numbers-wrapper {
  gap: 0.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  display: flex;
}

.stats-counter-wrapper {
  gap: 0;
  justify-content: center;
  align-items: baseline;
  display: flex;
  overflow: hidden;
}

.extra-large-text {
  font-size: var(--body-extra-large);
  letter-spacing: -1px;
  line-height: 130%;
  font-weight: 400;
  color: var(--_colors---white);
}

/* =========================================================
   21. HOW IT WORKS (Stepper)
========================================================= */
.how-it-works-stepper {
  width: 100%;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  background: rgba(55, 55, 55, 0.15);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(4px);
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--_colors---green);
  opacity: 0.8;
  line-height: 1;
}

.step-content {
  flex: 1;
}

.step-title {
  font-weight: 600;
  color: var(--_colors---white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--_colors---white-shade);
  line-height: 1.4;
}

.flow-note {
  margin-top: 2rem;
  text-align: center;
  background: var(--_colors---black-shade);
  padding: 1rem 1.5rem;
  border-radius: 60px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.flow-note p {
  color: var(--_colors---white-shade);
  font-size: 0.9rem;
}

/* =========================================================
   22. COMPARISON SECTION (Updated)
========================================================= */
.zoflo-comparison-section .content-container {
  gap: 1rem;
}

.comparison-table-wrapper {
  width: 100%;
  margin-top: 4rem;
  padding: 4px;
  border-radius: 18px;
  overflow-x: auto;
  background-color: rgba(55, 55, 55, 0.25);
  background-image: linear-gradient(38deg, var(--_colors---dark-grey) 82%, var(--_colors---green));
}

.comparison-table {
  min-width: 780px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(60px, auto);
  column-gap: 0;
  row-gap: 0;
  border-radius: 14px;
  overflow: hidden;
  background-color: rgba(36, 36, 36, 0.75);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
}

.table-entry {
  min-height: 60px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.table-entry.table-head {
  background-color: rgba(255, 255, 255, 0.02);
  font-weight: 600;
  color: white;
}

.table-entry.aligned-middle {
  justify-content: center;
  text-align: center;
}

.table-entry img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .comparison-table {
    min-width: 720px;
  }
  .table-entry {
    font-size: 0.75rem;
    padding: 0.7rem;
  }
}

/* =========================================================
   23. BUILT FOR SECTION
========================================================= */
.builtfor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  width: 100%;
}

.builtfor-card {
  background: var(--_colors---black-shade);
  border-radius: 20px;
  padding: 1.5rem;
  transition: transform 0.2s;
}

.builtfor-card:hover {
  transform: translateY(-4px);
  background: #3a3a3a;
}

.builtfor-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.builtfor-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--_colors---white);
}

.builtfor-card p {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* =========================================================
   24. TESTIMONIAL SECTION
========================================================= */
.small-testimonial-wrapper {
  gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 626px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.small-testimonials-text {
  font-size: var(--h3);
  letter-spacing: -0.5px;
  line-height: 130%;
  color: var(--_colors---white);
}

.small-testimonial-wrapper img {
  width: 28px;
  height: auto;
  opacity: 0.6;
}

.small-testimonial-wrapper p {
  color: var(--_colors---grey);
  font-size: var(--body);
}

/* =========================================================
   25. FAQ SECTION
========================================================= */
.faq-grid {
  width: 100%;
  max-width: 650px;
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.25rem;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-wrapper {
  background-color: var(--_colors---black-shade);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.faq-wrapper:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--_colors---white);
  cursor: pointer;
  padding: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font: inherit;
}

.faq-question-text {
  color: var(--_colors---white);
  font-size: 1rem;
  line-height: 140%;
}

.plus-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.plus-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background-color: var(--_colors---white);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.plus-vertical {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-paragraph {
  padding: 0 1.125rem 1.125rem;
  color: var(--_colors---white-shade);
  font-size: 0.95rem;
  line-height: 150%;
}

.faq-wrapper.active .faq-answer {
  max-height: 160px;
}

.faq-wrapper.active .plus-vertical {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.small-cta-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 5rem;
  text-align: center;
}

/* =========================================================
   26. CTA + FOOTER WRAPPER
========================================================= */
.cta-and-footer-wrapper {
  position: relative;
  overflow: hidden;
}

/* CTA glow background */
.hero-background-wrapper.cta {
  inset: 15% 0% -20%;
}

/* =========================================================
   27. CTA SECTION
========================================================= */
.zoflo-cta-section {
  position: relative;
  overflow: hidden;
}

.section-heading-paragraph {
  max-width: 540px;
  text-align: center;
  color: var(--_colors---white-shade);
}

.cta-button-wrapper {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  text-align: center;
}

/* CTA floating graphics */
.zoflo-cta-section .home-hero-graphics-wrapper {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.zoflo-cta-section .home-hero-graphic.cta {
  top: 16%;
  left: 6%;
  width: 150px;
}

.zoflo-cta-section .home-hero-graphic.bottom-right {
  right: 5%;
  bottom: 10%;
  width: 150px;
}

/* =========================================================
   28. FOOTER
========================================================= */
.footer {
  position: relative;
  padding: var(--_spacing---section-padding-top) var(--_spacing---section-padding-left-and-right);
}

.footer-wrapper {
  max-width: 914px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem;
  border-radius: 18px;
  background-color: var(--_colors---black-shade);
  outline: 4px solid rgba(255, 255, 255, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 0.5fr 0.5fr;
  gap: 1rem;
}

.footer-grid-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo {
  width: auto;
  height: 35px;
}

.footer-large-text {
  color: var(--_colors---white);
  font-size: 1.5rem;
  line-height: 130%;
  letter-spacing: -0.5px;
  max-width: 260px;
}

.footer-button-wrapper {
  margin-top: 0.5rem;
}

.footer-heading {
  color: var(--_colors---white);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--_colors---white-shade);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--_colors---white);
}

.footer-flex {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-flex-credits {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-flex-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* =========================================================
   29. RESPONSIVE
========================================================= */
@media screen and (max-width: 991px) {
  :root {
    --_spacing---section-padding-top: 3rem;
    --_spacing---section-padding-left-and-right: 2rem;
  }

  .page-hero-section {
    padding-top: 20vw;
  }

  .nav-menu {
    gap: 1.25rem;
  }

  .nav-container {
    max-width: 100%;
  }

  .hero-background-wrapper {
    top: 45%;
  }

  .home-hero-graphic {
    width: 17%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .stats-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works-stepper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .builtfor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
  }

  .zoflo-cta-section .home-hero-graphic.cta {
    top: 15%;
    left: 4%;
    width: 74px;
  }

  .zoflo-cta-section .home-hero-graphic.bottom-right {
    right: 4%;
    bottom: 10%;
    width: 90px;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --h1: 4rem;
    --h2: 2.75rem;
    --h3: 1.25rem;
    --h4: 1.15rem;
    --body-extra-large: 1.5rem;
    --_spacing---section-padding-top: 3rem;
    --_spacing---section-padding-left-and-right: 2rem;
  }

  .navbar {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 0.5rem;
  }

  .nav-container {
    max-width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 1rem;
    border-radius: 100px;
  }

  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    flex-shrink: 0;
  }

  .nav-button {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: var(--_colors---black-shade);
    border-radius: 18px;
    outline: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    padding: 0.75rem 1.25rem;
    margin-right: 0;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .page-hero-section {
    min-height: 100svh;
    padding-top: 9.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
  }

  .home-hero-content-container h1 {
    max-width: 320px;
    font-size: 4rem;
    line-height: 1.05;
    letter-spacing: -2.5px;
  }

  .hero-paragraph {
    max-width: 320px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-background-wrapper {
    filter: blur(70px);
    inset: 38% 0% -20%;
    opacity: 0.95;
  }

  .home-hero-graphic.top-left {
    width: 78px;
    top: 10%;
    left: 4%;
  }

  .home-hero-graphic.top-right {
    width: 88px;
    top: 11%;
    right: 4%;
  }

  .home-hero-graphic.bottom-left {
    width: 72px;
    left: 6%;
    bottom: 0.5%;
  }

  .home-hero-graphic.bottom-right {
    width: 86px;
    right: 5%;
    bottom: 14%;
  }

  .stats-numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .builtfor-grid {
    grid-template-columns: 1fr;
  }

  .small-testimonials-text {
    font-size: 1.25rem;
  }

  .faq-grid {
    margin-top: 2rem;
  }

  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-wrapper {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-large-text {
    font-size: 1.25rem;
    max-width: none;
  }

  .footer-flex {
    margin-top: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 479px) {
  :root {
    --body: 0.75rem;
    --h1: 3rem;
    --h2: 2.25rem;
    --h3: 1.25rem;
    --body-large: 0.875rem;
    --body-small: 0.6rem;
    --body-extra-large: 1.125rem;
    --_spacing---section-padding-top: 2rem;
    --_spacing---section-padding-left-and-right: 1.25rem;
  }

  h1 {
    letter-spacing: -2px;
  }

  h2 {
    letter-spacing: -1px;
  }

  .navbar {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-top: 0.25rem;
  }

  .nav-container {
    padding: 0.5rem 0.625rem 0.5rem 0.75rem;
  }

  .brand-logo {
    height: 40px;
  }

  .page-hero-section {
    padding-top: 0.5rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    padding-bottom: 1.5rem;
  }

  .home-hero-content-container h1 {
    max-width: 300px;
    font-size: 3.35rem;
    line-height: 1.05;
    letter-spacing: -2px;
  }

  .hero-paragraph {
    max-width: 290px;
    margin-bottom: 1.8rem;
    font-size: 0.92rem;
  }

  .hero-background-wrapper {
    filter: blur(60px);
    inset: 42% 0% -15%;
  }

  .home-hero-graphic.top-left {
    width: 66px;
    top: 11%;
    left: 3%;
  }

  .home-hero-graphic.top-right {
    width: 74px;
    top: 12%;
    right: 3%;
  }

  .home-hero-graphic.bottom-left {
    width: 64px;
    left: 3%;
    bottom: 0.2%;
  }

  .home-hero-graphic.bottom-right {
    width: 74px;
    right: 3%;
    bottom: 16%;
  }

  .stats-numbers-grid {
    grid-template-columns: 1fr;
  }

  .extra-large-text {
    font-size: 1.125rem;
  }

  .small-testimonials-text {
    font-size: 1.125rem;
  }

  .faq-question {
    padding: 0.95rem;
  }

  .faq-question-text {
    font-size: 0.875rem;
  }

  .footer {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    padding-bottom: 3rem;
  }

  .footer-wrapper {
    padding: 1.25rem;
    border-radius: 14px;
  }
}

/* =========================================================
   30. SCROLL / LOAD ANIMATIONS
========================================================= */
.reveal-up,
.pop-in {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.reveal-up {
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.pop-in {
  transform: translateY(10px) scale(0.94);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.is-visible,
.pop-in.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .pop-in,
  .button-text {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.grey-card-wrapper,
.comparison-table-wrapper,
.builtfor-card,
.faq-wrapper,
.footer-wrapper {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.grey-card-wrapper:hover,
.builtfor-card:hover,
.faq-wrapper:hover {
  transform: translateY(-2px);
}

/* Stats bounce animation */
.stats-bounce-item {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  will-change: transform, opacity;
}

.stats-bounce-item.is-visible {
  animation: stats-bounce-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.stats-bounce-item:nth-child(1).is-visible { animation-delay: 0.10s; }
.stats-bounce-item:nth-child(2).is-visible { animation-delay: 0.40s; }
.stats-bounce-item:nth-child(3).is-visible { animation-delay: 0.70s; }
.stats-bounce-item:nth-child(4).is-visible { animation-delay: 1.00s; }

@keyframes stats-bounce-in {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateY(-8px) scale(1.04);
  }
  75% {
    transform: translateY(3px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* ---- BENEFIT CARDS ---- */
.benefits-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.benefit-card {
  background-color: var(--_colors---black-shade);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
  min-height: 280px;
}

.benefit-card:hover {
  border-color: rgba(209, 224, 158, 0.14);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.benefit-card__top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.benefit-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(209, 224, 158, 0.07);
  border-radius: 10px;
  color: var(--_colors---green);
}

.benefit-card__icon svg {
  width: 20px;
  height: 20px;
}

.benefit-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--_colors---white);
  line-height: 1.35;
}

.benefit-card__text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--_colors---white-shade);
}

.benefit-card__bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Chips */
.benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.benefit-chip {
  display: inline-block;
  padding: 0.18rem 0.6rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--_colors---white-shade);
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease;
}

.benefit-chip:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.benefit-chip--green {
  color: var(--_colors---green);
  background-color: rgba(209, 224, 158, 0.07);
  border-color: rgba(209, 224, 158, 0.12);
}

.benefit-chip--count {
  color: var(--_colors---grey);
  font-style: italic;
}

/* Mini stat */
.benefit-card__stat {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.benefit-card__stat-num {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--_colors---green);
  letter-spacing: -0.5px;
  line-height: 1;
}

.benefit-card__stat-label {
  font-size: 0.72rem;
  color: var(--_colors---grey);
}

/* List items */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-list__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--_colors---white-shade);
  line-height: 1.4;
}

.benefit-list__dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background-color: var(--_colors---green);
  border-radius: 50%;
}

/* ---- BENEFITS RESPONSIVE ---- */
@media screen and (max-width: 991px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-card:last-child {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 767px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .benefit-card:last-child {
    grid-column: auto;
  }

  .benefit-card {
    padding: 1.4rem;
    min-height: auto;
  }

  .benefit-card__title {
    font-size: 1.05rem;
  }

  .benefit-card__text {
    font-size: 0.82rem;
  }

  .benefit-chip {
    font-size: 0.62rem;
    padding: 0.15rem 0.5rem;
  }

  .benefit-card__stat-num {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 479px) {
  .benefit-card {
    padding: 1.2rem;
    border-radius: 14px;
  }

  .benefit-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .benefit-card__icon svg {
    width: 17px;
    height: 17px;
  }

  .benefit-card__title {
    font-size: 1rem;
  }

  .benefit-card__text {
    font-size: 0.78rem;
  }

  .benefit-card__stat-num {
    font-size: 1.1rem;
  }

  .benefit-chip {
    font-size: 0.58rem;
  }
}


/* ---- BUILT FOR SECTION ---- */
.builtfor-section {
  width: 100%;
}

.builtfor-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.builtfor-label {
  display: inline-block;
  width: fit-content;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--_colors---green);
  background-color: rgba(209, 224, 158, 0.08);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

.builtfor-heading {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--_colors---white);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.builtfor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* ---- BUILT FOR CARD ---- */
.builtfor-card {
  background-color: var(--_colors---black-shade);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.builtfor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--_colors---green), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.builtfor-card:hover {
  border-color: rgba(209, 224, 158, 0.14);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.builtfor-card:hover::before {
  opacity: 1;
}

.builtfor-card__number {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(209, 224, 158, 0.3);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.builtfor-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(209, 224, 158, 0.07);
  border-radius: 10px;
  color: var(--_colors---green);
  flex-shrink: 0;
}

.builtfor-card__icon svg {
  width: 20px;
  height: 20px;
}

.builtfor-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.builtfor-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--_colors---white);
  line-height: 1.35;
}

.builtfor-card__text {
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--_colors---white-shade);
}

.builtfor-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.builtfor-tag {
  display: inline-block;
  padding: 0.18rem 0.6rem;
  border-radius: 100px;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--_colors---white-shade);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease;
}

.builtfor-tag:hover {
  border-color: rgba(209, 224, 158, 0.15);
  color: var(--_colors---green);
}

/* ---- BUILT FOR RESPONSIVE ---- */
@media screen and (max-width: 991px) {
  .builtfor-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .builtfor-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .builtfor-card {
    padding: 1.4rem;
    gap: 0.85rem;
  }

  .builtfor-heading {
    font-size: 1.5rem;
  }

  .builtfor-card__title {
    font-size: 1rem;
  }

  .builtfor-card__text {
    font-size: 0.8rem;
  }

  .builtfor-tag {
    font-size: 0.6rem;
  }
}

@media screen and (max-width: 479px) {
  .builtfor-card {
    padding: 1.2rem;
    border-radius: 14px;
  }

  .builtfor-card__number {
    font-size: 0.6rem;
  }

  .builtfor-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .builtfor-card__icon svg {
    width: 17px;
    height: 17px;
  }

  .builtfor-card__title {
    font-size: 0.95rem;
  }

  .builtfor-card__text {
    font-size: 0.76rem;
  }

  .builtfor-heading {
    font-size: 1.3rem;
  }
}


/* ---- FLOW PIPELINE ---- */
.flow-pipeline {
  width: 100%;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* ---- FLOW STEP ---- */
.flow-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

/* ---- MARKER (dot + connecting line) ---- */
.flow-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}

.flow-step__dot {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(209, 224, 158, 0.08);
  border: 1.5px solid rgba(209, 224, 158, 0.2);
  border-radius: 12px;
  color: var(--_colors---green);
  position: relative;
  z-index: 2;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.flow-step__dot svg {
  width: 18px;
  height: 18px;
}

.flow-step:hover .flow-step__dot {
  background-color: rgba(209, 224, 158, 0.14);
  border-color: rgba(209, 224, 158, 0.35);
  box-shadow: 0 0 16px rgba(209, 224, 158, 0.12);
}

.flow-step__dot--final {
  background-color: rgba(209, 224, 158, 0.12);
  border-color: rgba(209, 224, 158, 0.3);
}

.flow-step__dot--final svg {
  stroke-width: 2;
}

.flow-step__line {
  width: 1.5px;
  flex: 1;
  min-height: 16px;
  background: linear-gradient(
    to bottom,
    rgba(209, 224, 158, 0.3),
    rgba(209, 224, 158, 0.08)
  );
}

/* ---- STEP CARD ---- */
.flow-step__card {
  background-color: var(--_colors---black-shade);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.85rem;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.flow-step__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--_colors---green),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.flow-step:hover .flow-step__card {
  border-color: rgba(209, 224, 158, 0.14);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateX(4px);
}

.flow-step:hover .flow-step__card::before {
  opacity: 1;
}

.flow-step__number {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(209, 224, 158, 0.4);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

.flow-step__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--_colors---white);
  line-height: 1.35;
}

.flow-step__text {
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--_colors---white-shade);
}

.flow-step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.flow-step__tag {
  display: inline-block;
  padding: 0.16rem 0.55rem;
  border-radius: 100px;
  font-size: 0.64rem;
  font-weight: 500;
  color: var(--_colors---white-shade);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.flow-step__tag--green {
  color: var(--_colors---green);
  background-color: rgba(209, 224, 158, 0.07);
  border-color: rgba(209, 224, 158, 0.12);
}

/* ---- FLOW NOTE (bottom CTA-style) ---- */
.flow-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  background-color: rgba(209, 224, 158, 0.04);
  border: 1px solid rgba(209, 224, 158, 0.1);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}

.flow-note__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--_colors---green);
  margin-top: 0.1rem;
}

.flow-note__icon svg {
  width: 20px;
  height: 20px;
}

.flow-note__content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.flow-note__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--_colors---green);
}

.flow-note__text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--_colors---white-shade);
}

.flow-note__text strong {
  color: var(--_colors---white);
}

/* ---- FLOW RESPONSIVE ---- */
@media screen and (max-width: 991px) {
  .flow-step__card {
    padding: 1.25rem 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .flow-pipeline {
    margin-top: 2rem;
  }

  .flow-step {
    gap: 1rem;
  }

  .flow-step__marker {
    width: 32px;
  }

  .flow-step__dot {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .flow-step__dot svg {
    width: 15px;
    height: 15px;
  }

  .flow-step__card {
    padding: 1.15rem 1.2rem;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
    border-radius: 14px;
  }

  .flow-step__title {
    font-size: 1rem;
  }

  .flow-step__text {
    font-size: 0.8rem;
  }

  .flow-step__tag {
    font-size: 0.58rem;
  }

  .flow-note {
    padding: 1rem 1.15rem;
    border-radius: 12px;
  }

  .flow-note__text {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 479px) {
  .flow-step {
    gap: 0.75rem;
  }

  .flow-step__marker {
    width: 26px;
  }

  .flow-step__dot {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }

  .flow-step__dot svg {
    width: 13px;
    height: 13px;
  }

  .flow-step__line {
    min-height: 10px;
  }

  .flow-step__card {
    padding: 1rem;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
    border-radius: 12px;
  }

  .flow-step__number {
    font-size: 0.56rem;
  }

  .flow-step__title {
    font-size: 0.92rem;
  }

  .flow-step__text {
    font-size: 0.75rem;
    line-height: 1.55;
  }

  .flow-step__tag {
    font-size: 0.54rem;
    padding: 0.12rem 0.45rem;
  }

  .flow-note {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .flow-note__icon {
    width: 26px;
    height: 26px;
  }

  .flow-note__icon svg {
    width: 17px;
    height: 17px;
  }

  .flow-note__label {
    font-size: 0.62rem;
  }

  .flow-note__text {
    font-size: 0.75rem;
  }
}