/* ============================================
   FORTVEST LANDING PAGE
   Colors: #F23813 (red), #000 (black)
   Font: Poppins
   ============================================ */

html {
  scroll-behavior: smooth;
}

/* ─── Shared Button ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, #F23813 0%, #d93010 100%);
  color: #fff;
  border-radius: 100px;
}

.btn--ghost {
  background: transparent;
  color: #111;
  border-radius: 100px;
  border: 1.5px solid #ddd;
  box-shadow: none;
}

.btn--ghost:hover {
  background: #f5f5f5;
  border-color: #bbb;
  transform: none;
  box-shadow: none;
}

.btn--outline {
  background: transparent;
  color: #222;
  border-radius: 100px;
  border: 1.5px solid #ddd;
  box-shadow: none;
}

.btn--outline:hover {
  background: #f5f5f5;
  border-color: #bbb;
  transform: none;
  box-shadow: none;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #d93010 0%, #c02a0e 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(242, 56, 19, 0.45);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--sm {
  padding: 10px 28px;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(242, 56, 19, 0.3);
}

.btn--lg {
  padding: 16px 44px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 28px rgba(242, 56, 19, 0.35);
}

.btn__arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(5px);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

@media (min-width: 1024px) {
  .navbar__inner {
    padding: 0 40px;
  }
}

.navbar__logo {
  flex-shrink: 0;
}

.navbar__logo img {
  height: 28px;
  width: auto;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 36px;
}

@media (min-width: 768px) {
  .navbar__links {
    display: flex;
  }
}

.navbar__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.navbar__link:hover {
  color: #F23813;
}

.navbar__link--active {
  color: #F23813;
}

/* ─── Dropdown (Product) ─── */
.navbar__dropdown {
  position: relative;
}

.navbar__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  padding: 0;
}

.navbar__dropdown-icon {
  transition: transform 0.25s ease;
}

.navbar__dropdown-icon--open {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.25s ease;
  z-index: 200;
}

.navbar__dropdown-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
}

.navbar__dropdown-item:hover {
  background: #FFF0ED;
  color: #F23813;
}

/* ─── Mobile Dropdown ─── */
.navbar__mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.navbar__mobile-link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

.navbar__mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding-left: 16px;
}

.navbar__mobile-submenu--open {
  max-height: 200px;
  padding-top: 12px;
}

.navbar__mobile-sublink {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.navbar__mobile-sublink:hover {
  color: #F23813;
}

.navbar__cta {
  display: none;
  align-items: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .navbar__cta {
    display: flex;
  }
}

.navbar__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #000;
  padding: 4px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .navbar__hamburger {
    display: none;
  }
}

/* Mobile Menu — slide-in drawer */
.navbar__mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.navbar__mobile-backdrop--open {
  opacity: 1;
}

.navbar__mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .navbar__mobile,
  .navbar__mobile-backdrop {
    display: none !important;
  }
}

.navbar__mobile--open {
  transform: translateX(0);
}

/* Drawer header */
.navbar__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.navbar__mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  color: #111;
  transition: background 0.2s ease;
}

.navbar__mobile-close:hover {
  background: #ebebeb;
}

/* Drawer nav links */
.navbar__mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  gap: 4px;
  flex: 1;
}

.navbar__mobile-link {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
}

.navbar__mobile-link:last-of-type {
  border-bottom: none;
}

/* Drawer CTA area */
.navbar__mobile-cta {
  padding: 20px 24px 32px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.navbar__mobile-cta .btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  font-size: 14px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 140px 24px 80px;
  background-color: #FAFAF9;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(242, 56, 19, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(242, 56, 19, 0.03) 0%, transparent 40%);
  overflow: visible;
}

@media (min-width: 1024px) {
  .hero {
    padding: 160px 40px 100px;
  }
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 1024px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
}

.hero__content {
  flex: 1;
}

/* Hero kicker label */
.hero__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F23813;
  background: rgba(242, 56, 19, 0.07);
  border: 1px solid rgba(242, 56, 19, 0.15);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

/* Heading with controlled line breaks */
.hero__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #0a0a0a;
  margin-bottom: 28px;
}

.hero__line {
  display: block;
}

.hero__line--accent {
  color: #F23813;
}

.hero__heading-accent {
  color: #F23813;
}

.hero__subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 17px;
  }
}

.hero__cta {
  margin-bottom: 36px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ebebeb;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: #2a2a2a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  letter-spacing: 0.01em;
}

.hero__tag-dot {
  width: 6px;
  height: 6px;
  background: #F23813;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Dashboard Image with Floating Elements ─── */
.hero__image-wrapper {
  flex: 1;
  width: 100%;
  position: relative;
  padding: 20px 0;
  overflow: visible;
}

/* Soft dreamy gradient glow behind the dashboard */
.hero__glow {
  position: absolute;
  inset: -60px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.hero__glow-blob {
  position: absolute;
  border-radius: 50%;
}

/* Soft peach/salmon — top-left */
.hero__glow-blob--red {
  width: 380px;
  height: 380px;
  top: -40px;
  left: -30px;
  background: #ffb4a2;
  opacity: 0.55;
  filter: blur(80px);
  animation: glow-drift 8s ease-in-out infinite;
}

/* Soft warm peach — right side */
.hero__glow-blob--orange {
  width: 340px;
  height: 340px;
  top: 5%;
  right: -20px;
  background: #ffc8a2;
  opacity: 0.5;
  filter: blur(80px);
  animation: glow-drift 8s ease-in-out 2s infinite;
}

/* Soft pink — bottom area */
.hero__glow-blob--pink {
  width: 360px;
  height: 360px;
  bottom: -30px;
  left: 20%;
  background: #fdb8c8;
  opacity: 0.5;
  filter: blur(80px);
  animation: glow-drift 8s ease-in-out 4s infinite;
}

@keyframes glow-drift {
  0%, 100% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.05) translate(6px, -4px);
  }
}

.hero__image {
  position: relative;
  width: 100%;
  border-radius: 16px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 2;
}

/* Mobile mockup overlay */
.hero__mobile-mockup {
  position: absolute;
  bottom: -10px;
  right: -30px;
  width: 140px;
  z-index: 3;
  animation: float 5s ease-in-out infinite;
  background: #f8fafc;
  padding: 6px 3px;
  border-radius: 28px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .hero__mobile-mockup {
    width: 170px;
    bottom: -20px;
    right: -40px;
    padding: 8px 4px;
    border-radius: 30px;
  }
}

@media (min-width: 1024px) {
  .hero__mobile-mockup {
    width: 180px;
    bottom: -20px;
    right: -20px;
    padding: 10px 5px;
    border-radius: 32px;
  }
}

.hero__mobile-image {
  width: 100%;
  border-radius: 22px;
  display: block;
}

/* ─── Floating Notification Bubbles — Glassmorphism ─── */
.hero__float {
  position: absolute;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 3;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}

.hero__float strong {
  font-weight: 700;
  color: #000;
}

.hero__float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__float-dot--green {
  background: #22c55e;
}

.hero__float-dot--blue {
  background: #3b82f6;
}

.hero__float-dot--orange {
  background: #F23813;
}

/* Positioning */
.hero__float--top {
  top: -8px;
  right: 10%;
  animation-delay: 0s;
}

.hero__float--bottom-left {
  bottom: 8%;
  left: -5%;
  animation-delay: 1s;
}

.hero__float--bottom-right {
  bottom: -4px;
  right: 5%;
  animation-delay: 2s;
}

/* Hide floats on very small screens */
@media (max-width: 639px) {
  .hero__float {
    display: none;
  }
}

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

/* ─── STEPS SECTION ─── */
.steps {
  padding: 0 24px 80px;
  background-color: #FAF8F6;
}

@media (min-width: 1024px) {
  .steps {
    padding: 0 40px 100px;
  }
}

.steps__card {
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(160deg, #0d0d0d 0%, #111 40%, #0a0a0a 100%);
  border-radius: 32px;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.steps__card::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(242, 56, 19, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .steps__card {
    padding: 72px 48px;
    border-radius: 40px;
  }
}

@media (min-width: 1024px) {
  .steps__card {
    padding: 80px 64px;
  }
}

/* Header */
.steps__header {
  text-align: center;
  margin-bottom: 56px;
}

.steps__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.steps__subtitle {
  font-size: 15px;
  color: #888;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Steps Grid */
.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
}

/* Step Item */
.steps__item {
  padding: 28px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  border: 1px solid transparent;
}

.steps__item:hover {
  background: #F23813;
  border-color: rgba(255, 255, 255, 0.1);
}

.steps__item:hover .steps__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.steps__item:hover .steps__label {
  color: rgba(255, 255, 255, 0.7);
}

.steps__item:hover .steps__item-title {
  color: #fff;
}

.steps__item:hover .steps__item-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* Icon */
.steps__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #888;
  transition: all 0.3s ease;
}

/* Step Label */
.steps__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* Step Title */
.steps__item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

/* Step Description */
.steps__item-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #666;
  font-weight: 400;
  transition: color 0.3s ease;
}

/* ─── WHY FORTVEST SECTION ─── */
.why {
  padding: 80px 24px;
  background-color: #fff;
  position: relative;
}

.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #FAFAF9 0%, #fff 8%, #fff 92%, #FAFAF9 100%);
  pointer-events: none;
  z-index: 0;
}

.why__inner {
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .why {
    padding: 100px 40px;
  }
}

.why__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.why__header {
  text-align: center;
  margin-bottom: 56px;
}

.why__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.why__subtitle {
  font-size: 15px;
  color: #888;
  font-weight: 400;
}

/* Cards Row */
.why__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: center;
}

@media (min-width: 640px) {
  .why__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why__cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
  }
}

/* Individual Card */
.why__card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 24px;
  width: 100%;
  max-width: 280px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #eeeeee;
  transform: rotate(var(--rotate, 0deg));
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.why__card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 20px 48px rgba(0, 0, 0, 0.1);
}

/* Card Tag */
.why__card-tag {
  display: inline-block;
  background: #F23813;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

/* Card Bank Text */
.why__card-bank {
  font-size: 14px;
  line-height: 1.65;
  color: #777;
  font-weight: 400;
  margin-bottom: 20px;
}

/* Card Fortvest Text */
.why__card-fortvest {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #0a0a0a;
  font-weight: 700;
}

/* ============================================
   APP STORE SECTION
   ============================================ */
.appstore {
  background: #000;
  padding: 80px 24px;
  overflow: hidden;
  position: relative;
}

/* Red ambient glow */
.appstore::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(242, 56, 19, 0.12) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

.appstore::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(242, 56, 19, 0.08) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .appstore {
    padding: 120px 40px;
  }
}

.appstore__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 48px;
}

@media (min-width: 768px) {
  .appstore__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}

/* ─── Content — Left ─── */
.appstore__content {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .appstore__content {
    text-align: left;
  }
}

.appstore__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.appstore__title-accent {
  color: #F23813;
}

.appstore__subtitle {
  font-size: 15px;
  line-height: 1.75;
  color: #666;
  font-weight: 400;
  max-width: 400px;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .appstore__subtitle {
    margin-left: 0;
  }
}

@media (min-width: 1024px) {
  .appstore__subtitle {
    font-size: 16px;
  }
}

/* ─── Waitlist Form ─── */
.appstore__waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
}

@media (min-width: 640px) {
  .appstore__waitlist-form {
    flex-direction: row;
    align-items: stretch;
  }
}

.appstore__waitlist-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  min-width: 0;
}

.appstore__waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.appstore__waitlist-input:focus {
  border-color: #F23813;
  background: rgba(255, 255, 255, 0.1);
}

.appstore__waitlist-success {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.appstore__waitlist-error {
  font-size: 13px;
  color: #ef4444;
  margin-top: 8px;
  font-weight: 400;
}

/* ─── Phone Mockup — Right ─── */
.appstore__phone-wrapper {
  position: relative;
  flex-shrink: 0;
}

.appstore__phone-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(242, 56, 19, 0.2) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}

.appstore__phone {
  position: relative;
  width: 240px;
  height: 490px;
  background: #111;
  border-radius: 40px;
  border: 3px solid #222;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.appstore__phone-notch {
  width: 80px;
  height: 26px;
  background: #000;
  border-radius: 0 0 18px 18px;
  flex-shrink: 0;
  z-index: 2;
}

.appstore__phone-screen {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 28px;
  background: linear-gradient(180deg, #0d0d0d 0%, #151515 100%);
}

/* ─── Real App UI inside phone ─── */
.appstore__app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
  padding-top: 8px;
}

.appstore__app-logo {
  height: 22px;
  width: auto;
}

.appstore__app-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F23813;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Portfolio balance */
.appstore__app-balance {
  width: 100%;
  background: linear-gradient(135deg, #F23813 0%, #b82a0e 100%);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 10px;
}

.appstore__app-balance-label {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.appstore__app-balance-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.appstore__app-balance-growth {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.appstore__app-growth-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
}

/* Account tiles */
.appstore__app-accounts {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-bottom: 14px;
}

.appstore__app-account {
  flex: 1;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.appstore__app-account--flex {
  background: rgba(242, 56, 19, 0.1);
  border: 1px solid rgba(242, 56, 19, 0.15);
}

.appstore__app-account--bank {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}

.appstore__app-account-name {
  font-size: 8px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.appstore__app-account-val {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

/* Activity section */
.appstore__app-section-label {
  width: 100%;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.appstore__app-txns {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.appstore__app-txn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.appstore__app-txn-dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}

.appstore__app-txn-dot--in {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.2);
}

.appstore__app-txn-dot--interest {
  background: rgba(242, 56, 19, 0.12);
  border: 1px solid rgba(242, 56, 19, 0.18);
}

.appstore__app-txn-dot--out {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}

.appstore__app-txn-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.appstore__app-txn-info span:first-child {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.appstore__app-txn-info span:last-child {
  font-size: 8px;
  color: rgba(255,255,255,0.3);
}

.appstore__app-txn-amt {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}

.appstore__app-txn-amt--in {
  color: #4ade80;
}

/* ============================================
   INVESTMENT CALCULATOR SECTION
   ============================================ */
.invest {
  background: #FAFAF9;
  padding: 60px 24px 100px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .invest {
    padding: 80px 40px 120px;
  }
}

.invest__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 1024px) {
  .invest__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}

/* ─── Copy ─── */
.invest__content {
  flex: 1;
}

.invest__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.invest__title-accent {
  color: #F23813;
  position: relative;
  display: inline-block;
}

.invest__title-accent::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #F23813;
  border-radius: 2px;
}

/* ─── Calculator Card ─── */
.invest__card-wrapper {
  flex-shrink: 0;
  width: 420px;
  max-width: 100%;
}

.invest__card {
  position: relative;
  background: linear-gradient(150deg, #F23813 0%, #d93010 55%, #b82a0e 100%);
  border-radius: 28px;
  padding: 36px 30px;
  box-shadow:
    0 32px 80px rgba(242, 56, 19, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* Glass texture */
.invest__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%);
  border-radius: 28px;
  pointer-events: none;
}

.invest__card-section {
  margin-bottom: 24px;
}

.invest__card-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

/* Selector pills row */
.invest__selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.invest__pill {
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.invest__pill:hover {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.invest__pill--active {
  background: #fff;
  color: #F23813;
  border-color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.invest__pill--active:hover {
  background: #fff;
  color: #F23813;
}

/* Custom input row */
.invest__custom-row {
  margin-top: 10px;
}

.invest__custom-input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  outline: none;
  transition: all 0.25s ease;
}

.invest__custom-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.invest__custom-input:focus,
.invest__custom-input--active {
  border-color: #F23813;
  background: rgba(242, 56, 19, 0.08);
}

/* Hide number input spin buttons */
.invest__custom-input::-webkit-outer-spin-button,
.invest__custom-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.invest__custom-input[type=number] {
  -moz-appearance: textfield;
}

/* Result area */
.invest__result {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.invest__result-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.invest__result-total {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.invest__result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.invest__result-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.invest__result-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.invest__result-dot--principal {
  background: rgba(255, 255, 255, 0.4);
}

.invest__result-dot--returns {
  background: #fff;
}

.invest__result-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
}

.invest__result-text--bold {
  font-weight: 700;
  color: #fff;
}

.invest__result-text--green {
  color: #22c55e;
}

.invest__result-rate {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   TWO ACCOUNTS SECTION
   ============================================ */
.accounts {
  background: #fff;
  padding: 80px 24px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  .accounts {
    padding: 120px 40px;
  }
}

.accounts__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

@media (min-width: 1024px) {
  .accounts__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}

/* ─── Content ─── */
.accounts__content {
  flex: 1;
}

.accounts__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.accounts__title-accent {
  color: #F23813;
}

.accounts__subtitle {
  font-size: 15px;
  line-height: 1.75;
  color: #666;
  font-weight: 400;
  max-width: 460px;
  margin-bottom: 32px;
}

.accounts__subtitle strong {
  color: #000;
  font-weight: 600;
}

/* Account Mini Cards */
.accounts__cards {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.accounts__card {
  flex: 1;
  min-width: 200px;
  padding: 24px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accounts__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.accounts__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(242, 56, 19, 0.08);
  color: #F23813;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.accounts__card-icon--bank {
  background: rgba(0, 0, 0, 0.06);
  color: #000;
}

.accounts__card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.accounts__card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #888;
  font-weight: 400;
}

/* ─── Two Account Card Mockups ─── */
.accounts__visual {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FortFlex card */
.accounts__mock-card {
  border-radius: 24px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.accounts__mock-card--flex {
  background: linear-gradient(135deg, #F23813 0%, #d93010 55%, #b82a0e 100%);
  box-shadow: 0 20px 56px rgba(242, 56, 19, 0.3);
}

.accounts__mock-card--bank {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 56px rgba(0,0,0,0.25);
}

.accounts__mock-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.accounts__mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.accounts__mock-name {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.accounts__mock-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.accounts__mock-balance-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.accounts__mock-balance {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.accounts__mock-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accounts__mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

.accounts__mock-pill--green {
  background: rgba(34,197,94,0.2);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
}

.accounts__mock-pill--orange {
  background: rgba(242, 56, 19, 0.2);
  border: 1px solid rgba(242, 56, 19, 0.3);
  color: #ff6b47;
}

.accounts__mock-rate {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}

/* FortBank bar chart mini */
.accounts__mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 36px;
}

.accounts__mock-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(255,255,255,0.12);
}

.accounts__mock-bar--active {
  background: #F23813;
}

/* ============================================
   HOW YOUR MONEY FLOWS SECTION
   ============================================ */
.flow {
  background: linear-gradient(180deg, #fff 0%, #FAFAF9 100%);
  padding: 80px 24px 100px;
  position: relative;
}

@media (min-width: 1024px) {
  .flow {
    padding: 100px 40px 120px;
  }
}

.flow__inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.flow__header {
  text-align: center;
  margin-bottom: 64px;
}

.flow__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.flow__title-accent {
  color: #F23813;
}

.flow__subtitle {
  font-size: 15px;
  color: #888;
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Flow Diagram ─── */
.flow__diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

@media (min-width: 768px) {
  .flow__diagram {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}

/* Flow Node */
.flow__node {
  background: #fff;
  border-radius: 28px;
  padding: 32px 24px;
  flex: 1;
  min-width: 0;
  text-align: center;
  position: relative;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.03);
  border: 1.5px solid #eeeeee;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.flow__node:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.08);
}

/* Animated glow ring on each node */
.flow__node::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  border: 2px solid rgba(0,0,0,0.06);
  animation: node-pulse-neutral 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes node-pulse-neutral {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.008); }
}

.flow__node--fortflex {
  background: #F23813;
  border-color: transparent;
  z-index: 1;
}

.flow__node--fortflex::before {
  border-color: rgba(242, 56, 19, 0.4);
  animation: node-pulse-red 3s ease-in-out infinite;
}

@keyframes node-pulse-red {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.01); }
}

.flow__node--fortflex .flow__node-title,
.flow__node--fortflex .flow__node-desc {
  color: #fff;
}

.flow__node--fortflex .flow__node-desc {
  color: rgba(255, 255, 255, 0.8);
}

.flow__node--fortflex:hover {
  box-shadow: 0 20px 56px rgba(242, 56, 19, 0.3);
}

.flow__node--fortbank {
  background: #111;
  border-color: transparent;
}

.flow__node--fortbank::before {
  border-color: rgba(255,255,255,0.08);
  animation: node-pulse-neutral 4s ease-in-out infinite 1.5s;
}

.flow__node--fortbank .flow__node-title,
.flow__node--fortbank .flow__node-desc {
  color: #fff;
}

.flow__node--fortbank .flow__node-desc {
  color: rgba(255, 255, 255, 0.6);
}

.flow__node--fortbank:hover {
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.3);
}

/* Node Icon */
.flow__node-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.flow__node-icon--red {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.flow__node-icon--dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

/* Node Text */
.flow__node-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 8px;
}

.flow__node-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 14px;
}

.flow__node-badge--dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.flow__node-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #777;
  font-weight: 400;
}

/* ─── Animated Connector Arrows ─── */
.flow__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
  flex-shrink: 0;
  position: relative;
}

@media (min-width: 768px) {
  .flow__arrow {
    flex-direction: column;
    padding: 0 0 0 0;
    min-width: 72px;
    align-self: center;
  }
}

/* Label above the track */
.flow__arrow-label {
  font-size: 10px;
  font-weight: 700;
  color: #F23813;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  order: -1;
}

/* The track (background rail) */
.flow__track {
  position: relative;
  border-radius: 100px;
  overflow: visible;
  background: #eee;
}

/* Vertical on mobile */
.flow__track {
  width: 3px;
  height: 44px;
}

/* Horizontal on desktop */
@media (min-width: 768px) {
  .flow__track {
    width: 52px;
    height: 3px;
  }
}

/* Glowing animated dot */
.flow__dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F23813;
  box-shadow: 0 0 10px rgba(242, 56, 19, 0.7), 0 0 20px rgba(242, 56, 19, 0.3);
  animation: dot-v 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.flow__dot--delayed {
  animation-delay: 1s;
}

@keyframes dot-v {
  0% { top: -5px; left: 50%; transform: translateX(-50%); opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: calc(100% - 5px); left: 50%; transform: translateX(-50%); opacity: 0; }
}

@media (min-width: 768px) {
  .flow__dot {
    animation: dot-h 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .flow__dot--delayed {
    animation: dot-h 2s cubic-bezier(0.4, 0, 0.6, 1) 1s infinite;
  }
}

@keyframes dot-h {
  0% { left: -5px; top: 50%; transform: translateY(-50%); opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: calc(100% - 5px); top: 50%; transform: translateY(-50%); opacity: 0; }
}

/* Arrowhead */
.flow__arrow-head {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid #F23813;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .flow__arrow-head {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #F23813;
    border-right: none;
    align-self: center;
  }
}

/* Return flow annotation */
.flow__return {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.flow__return-line {
  display: none;
}

.flow__return-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #F23813;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 56, 19, 0.07);
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(242, 56, 19, 0.15);
  white-space: nowrap;
}

.flow__return-label::before {
  content: none;
}

/* ============================================
   FORTFLEX — LIQUIDITY WALLET SECTION
   ============================================ */

/* ─── Layout split ─── */
.fortflex__layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .fortflex__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
}

.fortflex__content-col {
  flex: 1;
}

.fortflex__header {
  margin-bottom: 36px;
}

/* Left-align header in split layout */
.fortflex__header {
  text-align: left;
}

.fortflex__illustration {
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .fortflex__illustration {
    width: 360px;
  }
}

/* ─── Wallet mockup ─── */
.fortflex__wallet {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fortflex__wallet-card {
  background: linear-gradient(135deg, #F23813 0%, #d93010 55%, #b82a0e 100%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(242, 56, 19, 0.3);
}

.fortflex__wallet-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.fortflex__wallet-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.fortflex__wallet-chip {
  display: block;
  width: 32px;
  height: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.2) 100%);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.3);
}

.fortflex__wallet-bal-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.fortflex__wallet-balance {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.fortflex__wallet-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.fortflex__wallet-acct-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fortflex__wallet-acct-num {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
}

.fortflex__wallet-interest-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34,197,94,0.2);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ─── Transaction list ─── */
.fortflex__wallet-txns {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.fortflex__wallet-txns-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fortflex__wallet-txns-see {
  color: #F23813;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  font-size: 12px;
}

.fortflex__wallet-txn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.fortflex__wallet-txn:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fortflex__wallet-txn-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.fortflex__wallet-txn-icon--in {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,0.15);
}

.fortflex__wallet-txn-icon--out {
  background: #f5f5f5;
  color: #999;
  border: 1px solid #eee;
}

.fortflex__wallet-txn-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fortflex__wallet-txn-label {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fortflex__wallet-txn-time {
  font-size: 11px;
  color: #bbb;
  font-weight: 400;
}

.fortflex__wallet-txn-amt {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.fortflex__wallet-txn-amt--in {
  color: #16a34a;
}

.fortflex__wallet-txn-amt--out {
  color: #999;
}

.fortflex {
  background: #FFF8F5;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

/* Warm ambient glow */
.fortflex::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(242, 56, 19, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.fortflex::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(242, 56, 19, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .fortflex {
    padding: 120px 40px;
  }
}

.fortflex__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── Header ─── */
.fortflex__header {
  text-align: center;
  margin-bottom: 56px;
}

.fortflex__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 56, 19, 0.1);
  color: #F23813;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(242, 56, 19, 0.2);
  letter-spacing: 0.04em;
}

.fortflex__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.fortflex__title-accent {
  color: #F23813;
  position: relative;
  display: inline-block;
}

.fortflex__title-accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #F23813;
  border-radius: 2px;
  opacity: 0.5;
}

.fortflex__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Feature Grid ─── */
.fortflex__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .fortflex__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ─── Feature Card ─── */
.fortflex__card {
  position: relative;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 24px;
  padding: 32px 28px;
  transition: all 0.35s ease;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.fortflex__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(242, 56, 19, 0.15);
}

/* Shine effect on card */
.fortflex__card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242, 56, 19, 0.03), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.fortflex__card:hover .fortflex__card-shine {
  left: 150%;
}

.fortflex__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(242, 56, 19, 0.07);
  color: #F23813;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(242, 56, 19, 0.1);
}

.fortflex__card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.fortflex__card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #777;
  font-weight: 400;
}

/* ============================================
   FORTBANK — HIGH-YIELD SAVINGS SECTION
   ============================================ */
.fortbank {
  background: #000;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

/* Subtle ambient glows */
.fortbank::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(242, 56, 19, 0.08) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .fortbank {
    padding: 120px 40px;
  }
}

.fortbank__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── Header ─── */
.fortbank__header {
  text-align: center;
  margin-bottom: 64px;
}

.fortbank__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.04em;
}

.fortbank__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.fortbank__title-accent {
  color: #F23813;
}

.fortbank__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Split layout ─── */
.fortbank__split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 56px;
}

@media (min-width: 1024px) {
  .fortbank__split {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }
}

/* ─── Savings visual (left) ─── */
.fortbank__savings-visual {
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .fortbank__savings-visual {
    width: 360px;
  }
}

.fortbank__savings-card {
  background: linear-gradient(160deg, #131313 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.fortbank__savings-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(242,56,19,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.fortbank__savings-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.fortbank__savings-card-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.fortbank__savings-card-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.fortbank__savings-rate-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(242,56,19,0.15);
  border: 1px solid rgba(242,56,19,0.25);
  color: #ff6b47;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.fortbank__savings-breakdown {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
}

.fortbank__savings-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}

.fortbank__savings-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.fortbank__savings-dot--principal {
  background: rgba(255,255,255,0.3);
}

.fortbank__savings-dot--interest {
  background: #4ade80;
}

.fortbank__savings-item-label {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.fortbank__savings-item-val {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.fortbank__savings-item-val--green {
  color: #4ade80;
}

/* Progress bar */
.fortbank__savings-progress-wrap {
  margin-bottom: 20px;
}

.fortbank__savings-progress-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  font-weight: 500;
}

.fortbank__savings-progress-track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.fortbank__savings-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #F23813 0%, #ff6b47 100%);
  border-radius: 100px;
  transition: width 1s ease;
}

/* Bar chart */
.fortbank__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-bottom: 16px;
  padding: 0 4px;
}

.fortbank__chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}

.fortbank__chart-bar {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border-radius: 4px 4px 0 0;
  min-height: 4px;
  transition: background 0.3s ease;
}

.fortbank__chart-bar--active {
  background: linear-gradient(180deg, #F23813 0%, #d93010 100%);
}

.fortbank__chart-label {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.fortbank__savings-maturity {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.fortbank__savings-maturity strong {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

.fortbank__savings-maturity svg {
  color: #F23813;
  flex-shrink: 0;
}

/* ─── Features column (right) ─── */
.fortbank__features-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

/* ─── Feature Card ─── */
.fortbank__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 28px 24px;
  text-align: left;
  transition: all 0.35s ease;
  position: relative;
}

.fortbank__card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(242, 56, 19, 0.2);
}

.fortbank__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(242, 56, 19, 0.15) 0%, rgba(242, 56, 19, 0.05) 100%);
  color: #F23813;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(242, 56, 19, 0.1);
  flex-shrink: 0;
}

.fortbank__card-highlight {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F23813;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(242, 56, 19, 0.08);
  border: 1px solid rgba(242, 56, 19, 0.1);
}

.fortbank__card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.fortbank__card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #777;
  font-weight: 400;
}

/* ─── CTA ─── */
.fortbank__cta-row {
  text-align: center;
}

/* ============================================
   ECOSYSTEM BENTO SECTION
   ============================================ */
.ecosystem {
  background: #FAF8F6;
  padding: 80px 24px;
  position: relative;
}

@media (min-width: 1024px) {
  .ecosystem {
    padding: 120px 40px;
  }
}

.ecosystem__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── Header ─── */
.ecosystem__header {
  text-align: center;
  margin-bottom: 56px;
}

.ecosystem__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.ecosystem__title-accent {
  color: #F23813;
}

.ecosystem__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #888;
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── Bento Grid ─── */
.ecosystem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .ecosystem__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .ecosystem__card--large:nth-child(1) {
    grid-column: 1 / 3;
  }

  .ecosystem__card--small:nth-child(2) {
    grid-column: 3 / 4;
  }

  .ecosystem__card--small:nth-child(3) {
    grid-column: 1 / 2;
  }

  .ecosystem__card--large:nth-child(4) {
    grid-column: 2 / 4;
  }
}

/* ─── Bento Card ─── */
.ecosystem__card {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ecosystem__card:hover {
  transform: translateY(-4px);
}

/* Large card — horizontal layout: text left, image right */
.ecosystem__card--large {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 300px;
}

/* Small card — vertical layout: text top, image bottom */
.ecosystem__card--small {
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

/* Red variant */
.ecosystem__card--red {
  background: linear-gradient(145deg, #F23813 0%, #d93010 100%);
  color: #fff;
}

.ecosystem__card--red:hover {
  box-shadow: 0 20px 60px rgba(242, 56, 19, 0.2);
}

.ecosystem__card--red .ecosystem__card-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.ecosystem__card--red .ecosystem__card-name {
  color: #fff;
}

.ecosystem__card--red .ecosystem__card-title {
  color: rgba(255, 255, 255, 0.8);
}

.ecosystem__card--red .ecosystem__card-stat {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Dark variant */
.ecosystem__card--dark {
  background: #111;
  color: #fff;
}

.ecosystem__card--dark:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.ecosystem__card--dark .ecosystem__card-tag {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
}

.ecosystem__card--dark .ecosystem__card-name {
  color: #fff;
}

.ecosystem__card--dark .ecosystem__card-title {
  color: rgba(255, 255, 255, 0.6);
}

.ecosystem__card--dark .ecosystem__card-stat {
  background: rgba(242, 56, 19, 0.1);
  color: #F23813;
  border-color: rgba(242, 56, 19, 0.15);
}

/* Card inner elements */
.ecosystem__card-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.ecosystem__card--large .ecosystem__card-content {
  flex: 1;
  min-width: 0;
}

.ecosystem__card--small .ecosystem__card-content {
  flex: 1;
}

.ecosystem__card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid;
  margin-bottom: 16px;
  width: fit-content;
}

.ecosystem__card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.ecosystem__card-title {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 16px;
}

.ecosystem__card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ecosystem__card-stat {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid;
  letter-spacing: 0.02em;
}

/* ─── Card image ─── */

/* Large cards — image on the right side */
.ecosystem__card--large .ecosystem__card-image {
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
}

/* Small cards — image at bottom */
.ecosystem__card--small .ecosystem__card-image {
  height: 160px;
  overflow: hidden;
}

.ecosystem__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.ecosystem__card:hover .ecosystem__card-image img {
  transform: scale(1.05);
}

/* On mobile, all cards go vertical */
@media (max-width: 767px) {
  .ecosystem__card--large {
    flex-direction: column;
    min-height: auto;
  }

  .ecosystem__card--large .ecosystem__card-image {
    width: 100%;
    height: 180px;
  }

  .ecosystem__card--small .ecosystem__card-image {
    height: 140px;
  }
}

/* ============================================
   BECOME A LANDLORD / FARMER SECTION
   ============================================ */
.farm {
  background: #000;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.farm::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(242, 56, 19, 0.08) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .farm {
    padding: 120px 40px;
  }
}

.farm__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 768px) {
  .farm__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}

/* ─── Content Left ─── */
.farm__content {
  flex: 1;
}

.farm__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 56, 19, 0.1);
  color: #F23813;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(242, 56, 19, 0.15);
  letter-spacing: 0.04em;
}

.farm__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.farm__title-accent {
  color: #F23813;
}

.farm__subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: #777;
  font-weight: 400;
  max-width: 440px;
  margin-bottom: 28px;
}

/* Highlight pills */
.farm__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.farm__highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.farm__highlight:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.farm__highlight svg {
  color: #F23813;
}

/* ─── Image Right ─── */
.farm__image-wrapper {
  flex: 1;
  position: relative;
  max-width: 500px;
  width: 100%;
}

.farm__image-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(242, 56, 19, 0.12) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}

.farm__image {
  position: relative;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* Floating stat card */
.farm__float {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.farm__float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(242, 56, 19, 0.1);
  color: #F23813;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.farm__float-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.03em;
}

.farm__float-value {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #F23813;
}

.farm__float-value--green {
  color: #22c55e;
}

@media (max-width: 639px) {
  .farm__float {
    left: 10px;
    bottom: 10px;
  }
}

/* ============================================
   WE INVEST IN THINGS SECTION
   ============================================ */
.weinvest {
  background: #fff;
  padding: 80px 24px;
  position: relative;
}

@media (min-width: 1024px) {
  .weinvest {
    padding: 120px 40px;
  }
}

.weinvest__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.weinvest__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 56px;
}

.weinvest__title-accent {
  color: #F23813;
  position: relative;
  display: inline-block;
}

.weinvest__title-accent::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #F23813;
  border-radius: 2px;
}

/* ─── 3 Category Cards ─── */
.weinvest__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .weinvest__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.weinvest__card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weinvest__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.weinvest__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(242, 56, 19, 0.06);
  color: #F23813;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(242, 56, 19, 0.08);
}

.weinvest__card-label {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.weinvest__card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F23813;
  background: rgba(242, 56, 19, 0.06);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.weinvest__card-reason {
  font-size: 15px;
  color: #888;
  font-weight: 400;
  line-height: 1.5;
}

/* ─── Notice Bar ─── */
.weinvest__notice {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F23813;
  color: #fff;
  border-radius: 16px;
  padding: 20px 28px;
}

.weinvest__notice svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.weinvest__notice p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.weinvest__notice strong {
  font-weight: 700;
  color: #fff;
}

/* ============================================
   INVESTMENT CYCLE SECTION
   ============================================ */
.cycle {
  background: #000;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.cycle::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(242, 56, 19, 0.06) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .cycle {
    padding: 120px 40px;
  }
}

.cycle__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── Header ─── */
.cycle__header {
  text-align: center;
  margin-bottom: 64px;
}

.cycle__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 56, 19, 0.1);
  color: #F23813;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(242, 56, 19, 0.15);
  letter-spacing: 0.04em;
}

.cycle__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cycle__title-accent {
  color: #F23813;
}

.cycle__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Cycle Layout ─── */
.cycle__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 768px) {
  .cycle__layout {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}

/* Steps column */
.cycle__steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cycle__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 22px 24px;
  transition: all 0.3s ease;
}

.cycle__step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(242, 56, 19, 0.15);
  transform: translateX(4px);
}

.cycle__step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #F23813;
  background: rgba(242, 56, 19, 0.1);
  border: 1px solid rgba(242, 56, 19, 0.15);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.cycle__step-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cycle__step-content {
  flex: 1;
  min-width: 0;
}

.cycle__step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cycle__step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #777;
  font-weight: 400;
}

/* ─── Central Illustration ─── */
.cycle__visual {
  flex: 1;
  max-width: 420px;
  width: 100%;
  position: relative;
}

.cycle__visual-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(242, 56, 19, 0.1) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.cycle__visual-img {
  position: relative;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 767px) {
  .cycle__visual {
    max-width: 300px;
    order: -1;
  }
}

/* ============================================
   FORTADVANCE SECTION
   ============================================ */

/* Part 1 — Hero Banner */
.advance__hero {
  background: linear-gradient(135deg, #F23813 0%, #d93010 50%, #b82a0e 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.advance__hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.advance__hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .advance__hero {
    padding: 120px 40px;
  }
}

.advance__hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.advance__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
}

.advance__hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.advance__hero-accent {
  position: relative;
  display: inline;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 2px 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.advance__hero-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  max-width: 540px;
  margin: 0 auto 36px;
}

/* Part 2 — Borrowing Wisely */
.advance__compare {
  background: #000;
  padding: 80px 24px;
  position: relative;
}

@media (min-width: 1024px) {
  .advance__compare {
    padding: 120px 40px;
  }
}

.advance__compare-inner {
  max-width: 900px;
  margin: 0 auto;
}

.advance__compare-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 56px;
}

.advance__compare-accent {
  color: #F23813;
}

.advance__compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .advance__compare-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* Compare Cards */
.advance__compare-card {
  border-radius: 24px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.advance__compare-card--bad {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.advance__compare-card--bad:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.advance__compare-card--good {
  background: linear-gradient(145deg, rgba(242, 56, 19, 0.08) 0%, rgba(242, 56, 19, 0.02) 100%);
  border: 1px solid rgba(242, 56, 19, 0.15);
}

.advance__compare-card--good:hover {
  box-shadow: 0 20px 60px rgba(242, 56, 19, 0.1);
}

.advance__compare-emoji {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.advance__compare-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.advance__compare-tag {
  color: #F23813;
  font-size: 16px;
  font-weight: 600;
}

.advance__compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.advance__compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.advance__compare-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.advance__compare-item--bad {
  color: rgba(255, 255, 255, 0.55);
}

.advance__compare-item--bad svg {
  color: #ef4444;
}

.advance__compare-item--good {
  color: rgba(255, 255, 255, 0.8);
}

.advance__compare-item--good svg {
  color: #22c55e;
}

/* Part 3 — Dignity Promise */
.advance__dignity {
  background: #FAF8F6;
  padding: 80px 24px;
  position: relative;
}

@media (min-width: 1024px) {
  .advance__dignity {
    padding: 120px 40px;
  }
}

.advance__dignity-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 768px) {
  .advance__dignity-inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}

.advance__dignity-content {
  flex: 1;
}

.advance__dignity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 56, 19, 0.06);
  color: #F23813;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(242, 56, 19, 0.1);
  letter-spacing: 0.04em;
}

.advance__dignity-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.advance__dignity-accent {
  color: #F23813;
}

.advance__dignity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.advance__dignity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  font-weight: 500;
}

.advance__dignity-item svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* Dignity Image */
.advance__dignity-image-wrapper {
  flex: 1;
  position: relative;
  max-width: 460px;
  width: 100%;
}

.advance__dignity-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(242, 56, 19, 0.1) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}

.advance__dignity-image {
  position: relative;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  background: linear-gradient(180deg, #FAFAF9 0%, #fff 50%, #FAFAF9 100%);
  padding: 80px 24px;
  position: relative;
}

@media (min-width: 1024px) {
  .stats {
    padding: 120px 40px;
  }
}

.stats__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.stats__header {
  text-align: center;
  margin-bottom: 64px;
}

.stats__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.stats__title-accent {
  color: #F23813;
}

.stats__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #888;
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Stats Grid ─── */
.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* ─── Stats Card ─── */
.stats__card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.stats__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.08);
}

.stats__card-value {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #F23813;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.05;
}

.stats__card-label {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.stats__card-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #999;
  font-weight: 400;
}

.stats__card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F23813 0%, #ff6b47 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.stats__card:hover .stats__card-line {
  transform: scaleX(1);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: #000;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.testimonials::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(242, 56, 19, 0.08) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.testimonials::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(242, 56, 19, 0.06) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .testimonials {
    padding: 120px 40px;
  }
}

.testimonials__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── Header ─── */
.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 56, 19, 0.1);
  color: #F23813;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(242, 56, 19, 0.15);
  letter-spacing: 0.04em;
}

.testimonials__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.testimonials__title-accent {
  color: #F23813;
}

.testimonials__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Testimonials Grid ─── */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ─── Testimonial Card ─── */
.testimonials__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 36px 28px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.testimonials__card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(242, 56, 19, 0.15);
}

.testimonials__card-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonials__card-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  font-style: italic;
  flex: 1;
  margin-bottom: 28px;
}

.testimonials__card-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonials__card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F23813 0%, #ff6b47 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.testimonials__card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.testimonials__card-role {
  font-size: 12px;
  font-weight: 400;
  color: #777;
  letter-spacing: 0.02em;
}

/* ============================================
   FAQ SECTION — Tabbed Side-by-Side Layout
   ============================================ */
.faq {
  background: linear-gradient(180deg, #fff 0%, #FAFAF9 100%);
  padding: 80px 24px;
  position: relative;
}

@media (min-width: 1024px) {
  .faq {
    padding: 120px 40px;
  }
}

.faq__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 768px) {
  .faq__inner {
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
  }
}

/* ─── Left — Header + Tabs ─── */
.faq__left {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .faq__left {
    width: 300px;
    position: sticky;
    top: 100px;
  }
}

.faq__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.faq__title-accent {
  color: #F23813;
}

.faq__subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #888;
  font-weight: 400;
  margin-bottom: 32px;
}

/* ─── Tabs ─── */
.faq__tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

@media (min-width: 768px) {
  .faq__tabs {
    flex-direction: column;
    gap: 6px;
  }
}

.faq__tab {
  padding: 12px 20px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid #e8e8e8;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-align: left;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.faq__tab:hover {
  background: #fff;
  color: #000;
  border-color: #ddd;
}

.faq__tab--active {
  background: #F23813;
  color: #fff;
  border-color: #F23813;
  box-shadow: 0 4px 16px rgba(242, 56, 19, 0.2);
}

.faq__tab--active:hover {
  background: #d93010;
  color: #fff;
  border-color: #d93010;
}

/* ─── Right — Accordion ─── */
.faq__right {
  flex: 1;
  min-width: 0;
}

/* ─── FAQ List ─── */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ─── FAQ Item ─── */
.faq__item {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq__item:hover {
  border-color: #e0e0e0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq__item--open {
  border-color: rgba(242, 56, 19, 0.15);
  box-shadow: 0 8px 32px rgba(242, 56, 19, 0.06);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: #F23813;
}

.faq__item--open .faq__question {
  color: #F23813;
}

.faq__chevron {
  flex-shrink: 0;
  color: #999;
  transition: transform 0.3s ease, color 0.2s ease;
}

.faq__item--open .faq__chevron {
  transform: rotate(180deg);
  color: #F23813;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq__item--open .faq__answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq__answer p {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  font-weight: 400;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: #000;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(242, 56, 19, 0.06) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .contact {
    padding: 120px 40px;
  }
}

.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .contact__inner {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
  }
}

/* ─── Left — Info ─── */
.contact__info {
  flex: 1;
}

.contact__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.contact__title-accent {
  color: #F23813;
}

.contact__subtitle {
  font-size: 15px;
  line-height: 1.75;
  color: #777;
  font-weight: 400;
  max-width: 400px;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(242, 56, 19, 0.1);
  color: #F23813;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(242, 56, 19, 0.12);
}

.contact__detail-label {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 14px;
  color: #888;
  font-weight: 400;
  line-height: 1.6;
}

/* ─── Right — Form ─── */
.contact__form-wrapper {
  flex: 1.2;
  max-width: 540px;
  width: 100%;
}

.contact__form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 36px 32px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .contact__form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.contact__form-row .contact__form-group {
  margin-bottom: 0;
}

.contact__form-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
}

.contact__form-input,
.contact__form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: border-color 0.25s ease, background 0.25s ease;
  outline: none;
  box-sizing: border-box;
}

.contact__form-input::placeholder,
.contact__form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact__form-input:focus,
.contact__form-textarea:focus {
  border-color: rgba(242, 56, 19, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.contact__form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 5.646a.5.5 0 0 1 .708 0L8 8.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact__form-select option {
  background: #111;
  color: #fff;
}

.contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form-btn {
  width: 100%;
  margin-top: 8px;
}

.contact__form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact__form-error {
  font-size: 13px;
  color: #ef4444;
  font-weight: 500;
  margin-bottom: 8px;
  padding: 10px 16px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 12px;
}

/* Contact Success State */
.contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
}

.contact__success-icon {
  color: #22c55e;
  margin-bottom: 20px;
}

.contact__success-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.contact__success-desc {
  font-size: 15px;
  color: #888;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 320px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #000;
  padding: 80px 24px 0;
  position: relative;
  overflow: visible;
}

/* Subtle top glow */
.footer::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 300px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(242, 56, 19, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .footer {
    padding: 100px 40px 0;
  }
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── Top Section ─── */
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 56px;
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    gap: 80px;
    padding-bottom: 72px;
  }
}

/* Brand column */
.footer__brand {
  flex: 1.2;
  max-width: 360px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer__logo img {
  height: 28px;
  width: auto;
}

.footer__brand-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #777;
  font-weight: 400;
  margin-bottom: 24px;
}

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__contact-link:hover {
  color: #F23813;
}

.footer__contact-link svg {
  color: #F23813;
  flex-shrink: 0;
}

/* Link columns group */
.footer__links-group {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 639px) {
  .footer__links-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer__link {
  font-size: 14px;
  color: #777;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer__link:hover {
  color: #F23813;
  padding-left: 4px;
}

/* ─── CTA Banner ─── */
.footer__cta-banner {
  background: linear-gradient(135deg, #F23813 0%, #d93010 100%);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.footer__cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .footer__cta-banner {
    flex-direction: row;
    text-align: left;
    padding: 48px 48px;
    gap: 40px;
  }
}

.footer__cta-content {
  flex: 1;
}

.footer__cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.footer__cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.6;
}

.footer__cta-banner .btn--primary {
  background: #fff;
  color: #F23813;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.footer__cta-banner .btn--primary:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.footer__cta-banner .btn--primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Footer CTA Form */
.footer__cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 640px) {
  .footer__cta-form {
    flex-direction: row;
    width: auto;
  }
}

.footer__cta-input {
  padding: 14px 20px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  min-width: 220px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.footer__cta-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer__cta-input:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.footer__cta-success {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #22c55e;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* ─── Bottom Bar ─── */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-size: 13px;
  color: #555;
  font-weight: 400;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-link {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer__bottom-link:hover {
  color: #F23813;
}

/* ─── APP WRAPPER ─── */
.app {
  min-height: 100vh;
  background-color: #FAFAF9;
  overflow-x: hidden;
}

/* ============================================
   LEGAL / POLICY PAGES
   ============================================ */
.legal {
  min-height: 100vh;
  background: #FAF8F6;
  display: flex;
  flex-direction: column;
}

.legal__nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
}

.legal__nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #F23813;
  text-decoration: none;
  transition: all 0.2s ease;
}

.legal__back:hover {
  gap: 12px;
}

.legal__nav .navbar__logo img {
  height: 24px;
}

.legal__container {
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  width: 100%;
}

.legal__header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid #F23813;
}

.legal__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.2;
}

.legal__updated {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.legal__content {
  color: #333;
  line-height: 1.8;
}

.legal__content section {
  margin-bottom: 40px;
}

.legal__content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  padding-top: 8px;
}

.legal__content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal__content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

.legal__content ul {
  margin: 12px 0 20px 0;
  padding-left: 24px;
}

.legal__content li {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 8px;
}

.legal__content li strong {
  color: #222;
}

/* ─────────────────────────────────────────────────────
   INNER PAGE HERO  (about, save, faq pages)
───────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 24px 80px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 180px 40px 100px;
  }
}

.page-hero--dark {
  background: linear-gradient(160deg, #0d0d0d 0%, #111 40%, #0a0a0a 100%);
}

.page-hero--dark::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(242, 56, 19, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero--light {
  background: #FAFAF9;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(242, 56, 19, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(242, 56, 19, 0.03) 0%, transparent 40%);
}

.page-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.page-hero--dark .page-hero__kicker {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

.page-hero--light .page-hero__kicker {
  color: #F23813;
  background: rgba(242, 56, 19, 0.07);
  border: 1px solid rgba(242, 56, 19, 0.15);
}

.page-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.page-hero--dark .page-hero__title { color: #fff; }
.page-hero--light .page-hero__title { color: #0a0a0a; }

.page-hero__accent { color: #F23813; }

.page-hero__subtitle {
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.page-hero--dark .page-hero__subtitle { color: #888; }
.page-hero--light .page-hero__subtitle { color: #555; }

.page-hero__cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.page-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0;
}

.page-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.page-hero--dark .page-hero__chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

.page-hero--light .page-hero__chip {
  background: #fff;
  border: 1px solid #e8e8e8;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-hero__chip-dot {
  width: 7px;
  height: 7px;
  background: #F23813;
  border-radius: 50%;
  flex-shrink: 0;
}

.page-hero__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
  padding-top: 40px;
  flex-wrap: wrap;
}

.page-hero--dark .page-hero__stats {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.page-hero--light .page-hero__stats {
  border-top: 1px solid #e8e8e8;
}

.page-hero__stat {
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.page-hero__stat + .page-hero__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
}

.page-hero--dark .page-hero__stat + .page-hero__stat::before {
  background: rgba(255,255,255,0.1);
}

.page-hero--light .page-hero__stat + .page-hero__stat::before {
  background: #ddd;
}

.page-hero__stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.page-hero--dark .page-hero__stat-value { color: #fff; }
.page-hero--light .page-hero__stat-value { color: #F23813; }

.page-hero__stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero--dark .page-hero__stat-label { color: #666; }
.page-hero--light .page-hero__stat-label { color: #888; }

/* ─── Fix first-section top padding where an existing section acts as hero ─── */
.advance--page-first .advance__hero {
  padding-top: 156px;
}

@media (min-width: 1024px) {
  .advance--page-first .advance__hero {
    padding-top: 176px;
  }
}

.farm--page-first {
  padding-top: 156px !important;
}

@media (min-width: 1024px) {
  .farm--page-first {
    padding-top: 176px !important;
  }
}

.contact--page-first {
  padding-top: 156px !important;
}

@media (min-width: 1024px) {
  .contact--page-first {
    padding-top: 176px !important;
  }
}

.legal__content a {
  color: #F23813;
  text-decoration: underline;
}

.legal__content a:hover {
  color: #d93010;
}

.legal__content em {
  color: #666;
  font-style: italic;
}

.legal__footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #ddd;
}

.legal__footer p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.legal__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal__contact a,
.legal__contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.legal__contact a:hover {
  color: #F23813;
}

/* Bottom bar */
.legal__bottom-bar {
  background: #111;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.legal__bottom-bar p {
  font-size: 13px;
  color: #666;
}

.legal__bottom-links {
  display: flex;
  gap: 20px;
}

.legal__bottom-links a {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal__bottom-links a:hover {
  color: #F23813;
}

/* ============================================================
   DARK-PAGE NAVBAR — logo, link & button overrides
   Applied via .navbar--dark-page on pages with dark heroes
   ============================================================ */

/* Logo: default shows dark logo, hides white logo */
.navbar__logo-img--light { display: block; }
.navbar__logo-img--dark  { display: none; }

/* On dark pages (not yet scrolled): show white logo */
.navbar--dark-page:not(.navbar--scrolled) .navbar__logo-img--light { display: none; }
.navbar--dark-page:not(.navbar--scrolled) .navbar__logo-img--dark  { display: block; }

/* Nav links */
.navbar--dark-page:not(.navbar--scrolled) .navbar__link {
  color: rgba(255, 255, 255, 0.75);
}
.navbar--dark-page:not(.navbar--scrolled) .navbar__link:hover {
  color: #fff;
}
.navbar--dark-page:not(.navbar--scrolled) .navbar__link--active {
  color: #F23813;
}

/* Hamburger icon */
.navbar--dark-page:not(.navbar--scrolled) .navbar__hamburger {
  color: #fff;
}

/* Login (outline) button */
.navbar--dark-page:not(.navbar--scrolled) .btn--outline {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}
.navbar--dark-page:not(.navbar--scrolled) .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   PAGE HERO — inner-page banner sections
   ============================================================ */

.page-hero {
  padding: 160px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Dark variant */
.page-hero--dark {
  background: #000;
}
.page-hero--dark::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(242, 56, 19, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* Light variant */
.page-hero--light {
  background: #FAFAF9;
}
.page-hero--light::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at top right, rgba(242, 56, 19, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero--light::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse at bottom left, rgba(242, 56, 19, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.page-hero--dark .page-hero__kicker {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.page-hero--light .page-hero__kicker {
  background: rgba(242, 56, 19, 0.08);
  color: #F23813;
  border: 1px solid rgba(242, 56, 19, 0.15);
}

.page-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero--dark .page-hero__title  { color: #fff; }
.page-hero--light .page-hero__title { color: #111; }

.page-hero__accent { color: #F23813; }

.page-hero__subtitle {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 32px;
}
.page-hero--dark .page-hero__subtitle  { color: rgba(255, 255, 255, 0.55); }
.page-hero--light .page-hero__subtitle { color: #555; }

.page-hero__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Chips row */
.page-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.page-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}
.page-hero--dark .page-hero__chip {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.page-hero--light .page-hero__chip {
  background: #fff;
  color: #333;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.page-hero__chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #F23813;
  flex-shrink: 0;
}

/* Stats bar */
.page-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page-hero__stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.page-hero__stat + .page-hero__stat {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.page-hero__stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.page-hero__stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Loan page: red hero bg — give navbar a dark tint so white+red logo is legible */
.navbar--red-page:not(.navbar--scrolled) {
  background: #000;
}

/* Fix ghost & outline button hover in dark section contexts */
.page-hero--dark .btn--ghost:hover,
.contact .btn--ghost:hover,
.advance__hero .btn--ghost:hover,
.farm .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* ─── First-section padding fixes (fixed 76px navbar) ─── */
.advance--page-first .advance__hero { padding-top: 156px; }
.farm--page-first { padding-top: 156px !important; }
.contact--page-first { padding-top: 156px !important; }

/* Steps section top breathing room when it follows a hero */
.page-hero + .steps { padding-top: 80px; }

/* ============================================================
   ECOSYSTEM CARDS — clickable links
   ============================================================ */
.ecosystem__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-top: 16px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, gap 0.2s ease;
}
.ecosystem__card--red .ecosystem__card-link {
  color: rgba(255, 255, 255, 0.75);
}
.ecosystem__card-link:hover {
  color: #fff;
  gap: 10px;
}

/* ============================================================
   MOBILE RESPONSIVE — inner pages
   ============================================================ */

@media (max-width: 768px) {
  .page-hero {
    padding: 130px 20px 60px;
  }
  .page-hero__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  .page-hero__cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .page-hero__cta-row .btn {
    text-align: center;
    justify-content: center;
  }
  .page-hero__stats {
    gap: 0;
  }
  .page-hero__stat {
    padding: 0 12px;
  }
  .page-hero__stat-value {
    font-size: 1.3rem;
  }

  /* Steps responsive */
  .steps__card {
    padding: 48px 20px;
  }

  /* Contact responsive */
  .contact {
    padding: 20px;
  }
  .contact__inner {
    flex-direction: column;
    gap: 40px;
  }
  .contact__form-wrapper {
    max-width: 100%;
  }

  /* Loan page advance hero responsive */
  .advance--page-first .advance__hero {
    padding-top: 120px;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Invest page farm hero responsive */
  .farm--page-first {
    padding-top: 120px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Ecosystem grid mobile */
  .ecosystem__grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 110px 16px 48px;
  }
  .page-hero__chips {
    gap: 8px;
  }
  .page-hero__chip {
    font-size: 12px;
    padding: 6px 14px;
  }
  .page-hero__stats {
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 24px;
    padding-top: 32px;
  }
  .page-hero__stat + .page-hero__stat {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
  }
}
