/* =============================================================
   floatpay.css — Float (floatpay.org) site styles
   Namespace: flt-*
   ============================================================= */

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1c1917;
  background: #ffffff;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* --- CSS Custom Properties --------------------------------- */
:root {
  --flt-accent: #14532d;
  --flt-accent-light: #86efac;
  --flt-accent-on-dark: #86efac;
  --flt-secondary: #7c2d12;
  --flt-text-body: #1c1917;
  --flt-text-muted: #57534e;
  --flt-bg-warm: #f5f0eb;
  --flt-bg-light: #fafaf8;
  --flt-bg-dark: #0f172a;
  --flt-radius: 10px;
  --flt-shadow: 0 4px 24px rgba(0,0,0,0.08);
  --flt-transition: 0.2s ease;
}

/* --- Utility ----------------------------------------------- */
.flt-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.flt-section {
  padding: 80px 0;
}
.flt-section-alt {
  background: #fafaf8;
}
.flt-section-warm {
  background: #f5f0eb;
}
.flt-section-dark {
  background: #0f172a;
  color: #f5f0eb;
}
.flt-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #14532d;
  margin-bottom: 12px;
}
.flt-eyebrow--light {
  color: #86efac;
}
.flt-section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: #1c1917;
  margin-bottom: 16px;
}
.flt-section-title--light {
  color: #f5f0eb;
}
.flt-section-lede {
  font-size: 18px;
  color: #57534e;
  max-width: 580px;
  line-height: 1.65;
}
.flt-section-lede--light {
  color: #cbd5e1;
}
.flt-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: filter var(--flt-transition), background var(--flt-transition);
}
.flt-btn--primary {
  background: #14532d;
  color: #ffffff;
}
.flt-btn--primary:hover {
  filter: brightness(1.12);
}
.flt-btn--outline {
  background: transparent;
  color: #14532d;
  border: 2px solid #14532d;
}
.flt-btn--outline:hover {
  background: #14532d;
  color: #ffffff;
}
.flt-btn--white {
  background: #ffffff;
  color: #14532d;
}
.flt-btn--white:hover {
  filter: brightness(0.97);
}
.flt-btn--ghost {
  background: transparent;
  color: #f5f0eb;
  border: 2px solid rgba(245,240,235,0.4);
}
.flt-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
}

/* --- Nav --------------------------------------------------- */
.flt-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow var(--flt-transition);
}
.flt-nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.flt-nav--sticky {
  position: sticky;
}
.flt-nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flt-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.flt-nav__logo img {
  height: 32px;
  width: auto;
}
.flt-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.flt-nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: #57534e;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color var(--flt-transition), background var(--flt-transition);
}
.flt-nav__links a:hover,
.flt-nav__links a.active {
  color: #14532d;
  background: #f0fdf4;
}
.flt-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.flt-nav__cta {
  background: #14532d;
  color: #ffffff !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: filter var(--flt-transition) !important;
}
.flt-nav__cta:hover {
  filter: brightness(1.12) !important;
  background: #14532d !important;
  color: #ffffff !important;
}
.flt-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.flt-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1c1917;
  transition: all 0.3s;
}
.flt-nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.flt-nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.flt-nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .flt-nav__toggle {
    display: flex;
  }
  .flt-nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    gap: 4px;
  }
  .flt-nav__links.open {
    display: flex;
  }
  .flt-nav__links li {
    width: 100%;
  }
  .flt-nav__links a {
    display: block;
    padding: 12px 16px;
    width: 100%;
  }
  .flt-nav__actions {
    display: none;
  }
  .flt-nav__inner {
    position: relative;
  }
}

/* --- Hero -------------------------------------------------- */
.flt-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: #0f172a;
  overflow: hidden;
}
.flt-hero--bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.flt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.82) 0%, rgba(20,83,45,0.55) 100%);
  z-index: 1;
}
.flt-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 24px;
}
.flt-hero__content-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.flt-hero__title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.08;
  color: #f5f0eb;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.flt-hero__subtitle {
  font-size: 20px;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 560px;
}
.flt-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .flt-hero__title { font-size: 36px; }
  .flt-hero__subtitle { font-size: 17px; }
}

/* --- Page Hero (sub-pages) --------------------------------- */
.flt-page-hero {
  background: #f5f0eb;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.flt-page-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #14532d;
  margin-bottom: 8px;
}
.flt-page-hero__title {
  font-size: 40px;
  font-weight: 800;
  color: #1c1917;
  margin-bottom: 12px;
  line-height: 1.15;
}
.flt-page-hero__lede {
  font-size: 18px;
  color: #57534e;
  max-width: 560px;
}

/* --- Stats ------------------------------------------------- */
.flt-stats {
  padding: 72px 0;
}
.flt-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.flt-stats__card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--flt-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--flt-shadow);
}
.flt-stats__value {
  font-size: 42px;
  font-weight: 900;
  color: #14532d;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'IBM Plex Mono', monospace;
}
.flt-stats__label {
  font-size: 14px;
  color: #57534e;
  font-weight: 500;
}

@media (max-width: 900px) {
  .flt-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .flt-stats__grid { grid-template-columns: 1fr; }
}

/* --- Features (alternating) -------------------------------- */
.flt-features {
  padding: 80px 0;
}
.flt-features__row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 72px;
}
.flt-features__row:last-child {
  margin-bottom: 0;
}
.flt-features__row--reverse {
  flex-direction: row-reverse;
}
.flt-features__media {
  flex: 0 0 45%;
  max-width: 45%;
  border-radius: 12px;
  overflow: hidden;
}
.flt-features__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.flt-features__body {
  flex: 1;
}
.flt-features__body h3 {
  font-size: 28px;
  font-weight: 800;
  color: #1c1917;
  margin-bottom: 12px;
}
.flt-features__body p {
  font-size: 16px;
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 20px;
}
.flt-features__tag {
  display: inline-block;
  background: #f0fdf4;
  color: #14532d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .flt-features__row,
  .flt-features__row--reverse {
    flex-direction: column;
    gap: 32px;
  }
  .flt-features__media {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

/* --- Process -------------------------------------------- */
.flt-process {
  padding: 80px 0;
}
.flt-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.flt-process__step {
  display: flex;
  flex-direction: column;
}
.flt-process__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #14532d;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.flt-process__step h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 8px;
}
.flt-process__step p {
  font-size: 15px;
  color: #57534e;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .flt-process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .flt-process__grid { grid-template-columns: 1fr; }
}

/* --- Testimonials ----------------------------------------- */
.flt-testimonials {
  padding: 80px 0;
}
.flt-testimonials__grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.flt-testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--flt-radius);
  padding: 32px;
  flex: 1 1 calc(33.333% - 18px);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--flt-shadow);
}
.flt-testimonial-card__quote {
  font-size: 16px;
  color: #1c1917;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.flt-testimonial-card__quote::before {
  content: '\201C';
  font-size: 40px;
  color: #14532d;
  line-height: 0.7;
  display: block;
  margin-bottom: 12px;
}
.flt-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.flt-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.flt-testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #1c1917;
  display: block;
}
.flt-testimonial-card__role {
  font-size: 12px;
  color: #57534e;
}

@media (max-width: 768px) {
  .flt-testimonial-card { flex: 1 1 100%; }
}

/* --- CTA Banner ------------------------------------------ */
.flt-cta {
  background: #14532d;
  padding: 72px 0;
  text-align: center;
}
.flt-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}
.flt-cta__headline {
  font-size: 34px;
  font-weight: 800;
  color: #f5f0eb;
  margin-bottom: 16px;
  line-height: 1.2;
}
.flt-cta__sub {
  font-size: 17px;
  color: #86efac;
  margin-bottom: 32px;
}
.flt-cta__button {
  background: #ffffff;
  color: #14532d;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 10px;
  display: inline-block;
  transition: filter var(--flt-transition);
}
.flt-cta__button:hover {
  filter: brightness(0.96);
}

/* --- Blog grid (A-cards) ---------------------------------- */
.flt-blog {
  padding: 72px 0;
}
.flt-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.flt-blog__card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--flt-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--flt-shadow);
  transition: box-shadow var(--flt-transition);
}
.flt-blog__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.flt-blog__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.flt-blog__card:hover .flt-blog__thumb {
  transform: scale(1.03);
}
.flt-blog__thumb-wrap {
  overflow: hidden;
}
.flt-blog__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.flt-blog__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #14532d;
  background: #f0fdf4;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.flt-blog__date {
  font-size: 12px;
  color: #57534e;
  margin-bottom: 10px;
  font-family: 'IBM Plex Mono', monospace;
}
.flt-blog__title {
  font-size: 18px;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.35;
  margin-bottom: 10px;
}
.flt-blog__title a {
  color: #1c1917;
  transition: color var(--flt-transition);
}
.flt-blog__title a:hover {
  color: #14532d;
}
.flt-blog__excerpt {
  font-size: 14px;
  color: #57534e;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.flt-blog__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #14532d;
  margin-top: auto;
  transition: gap var(--flt-transition);
}
.flt-blog__read-more:hover {
  gap: 10px;
}

@media (max-width: 900px) {
  .flt-blog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .flt-blog__grid { grid-template-columns: 1fr; }
}

/* --- Blog article reading-width (MANDATORY) --------------- */
.flt-post {
  max-width: 1140px;
  margin: 60px auto;
  padding: 0 24px;
}
.flt-post__header {
  max-width: 780px;
  margin: 0 auto 32px;
}
.flt-post__title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.12;
  color: #1c1917;
  margin-bottom: 16px;
}
.flt-post__cover {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 40px;
  height: auto;
  border-radius: 12px;
  display: block;
}
.flt-post__body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #1c1917;
}
.flt-post__body h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 40px 0 16px;
  color: #1c1917;
}
.flt-post__body h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: #1c1917;
}
.flt-post__body p {
  margin-bottom: 20px;
}
.flt-post__body ul,
.flt-post__body ol {
  margin: 0 0 20px 24px;
}
.flt-post__body li {
  margin-bottom: 8px;
}
.flt-post__body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 24px 0;
}
.blog-img-full {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-radius: 0;
}
.flt-related {
  max-width: 780px;
  margin: 60px auto;
  padding: 0 24px;
}
.flt-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.flt-related__card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}
.flt-related__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.flt-related__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.flt-related__title {
  font-size: 15px;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.4;
}
.flt-related__title a {
  color: #1c1917;
}
.flt-related__title a:hover {
  color: #14532d;
}

@media (max-width: 640px) {
  .flt-related__grid { grid-template-columns: 1fr; }
}

/* --- Team ------------------------------------------------- */
.flt-team {
  padding: 80px 0;
}
.flt-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.flt-team__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.flt-team__portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 16px;
  border: 3px solid #f0fdf4;
}
.flt-team__name {
  font-size: 17px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 4px;
}
.flt-team__title {
  font-size: 13px;
  color: #57534e;
  margin-bottom: 12px;
}
.flt-team__bio {
  font-size: 14px;
  color: #57534e;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .flt-team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .flt-team__grid { grid-template-columns: 1fr; }
}

/* --- Contact ---------------------------------------------- */
.flt-contact {
  padding: 80px 0;
}
.flt-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.flt-contact__form input,
.flt-contact__form textarea,
.flt-contact__form select {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1c1917;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  margin-bottom: 16px;
  box-sizing: border-box;
  transition: border-color var(--flt-transition);
}
.flt-contact__form input:focus,
.flt-contact__form textarea:focus {
  outline: 2px solid #14532d;
  outline-offset: 2px;
  border-color: #14532d;
}
.flt-contact__form input::placeholder,
.flt-contact__form textarea::placeholder {
  color: #94a3b8;
}
.flt-contact__form textarea {
  min-height: 140px;
  resize: vertical;
}
.flt-contact__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #57534e;
}
.flt-contact__consent input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
}
.flt-contact__submit {
  background: #14532d;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: filter var(--flt-transition);
}
.flt-contact__submit:hover {
  filter: brightness(1.12);
}
.flt-contact__success {
  display: none;
  background: #f0fdf4;
  border: 1px solid rgba(21,128,61,0.2);
  color: #15803d;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  margin-top: 12px;
}
.flt-contact__info h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1c1917;
  margin-bottom: 16px;
}
.flt-contact__info p {
  font-size: 15px;
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 28px;
}
.flt-contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.flt-contact__detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #f0fdf4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14532d;
  font-size: 16px;
}
.flt-contact__detail-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 2px;
}
.flt-contact__detail-text span {
  font-size: 14px;
  color: #57534e;
}

@media (max-width: 768px) {
  .flt-contact__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Footer ----------------------------------------------- */
.flt-footer {
  background: #0f172a;
  color: #f5f0eb;
  padding: 64px 0 0;
}
.flt-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.flt-footer__brand {
}
.flt-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}
.flt-footer__logo img {
  height: 30px;
  width: auto;
}
.flt-footer__tagline {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 24px;
}
.flt-footer__socials {
  display: flex;
  gap: 12px;
}
.flt-footer__socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 14px;
  transition: background var(--flt-transition), color var(--flt-transition);
}
.flt-footer__socials a:hover {
  background: #14532d;
  color: #ffffff;
}
.flt-footer__links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f5f0eb;
  margin-bottom: 16px;
}
.flt-footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.flt-footer__links ul a {
  font-size: 14px;
  color: #94a3b8;
  transition: color var(--flt-transition);
}
.flt-footer__links ul a:hover {
  color: #86efac;
}
.flt-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.flt-footer__bottom p {
  font-size: 13px;
  color: #57534e;
}
.flt-footer__bottom-links {
  display: flex;
  gap: 20px;
}
.flt-footer__bottom-links a {
  font-size: 13px;
  color: #57534e;
  transition: color var(--flt-transition);
}
.flt-footer__bottom-links a:hover {
  color: #94a3b8;
}

@media (max-width: 768px) {
  .flt-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* --- Cookie Banner ---------------------------------------- */
.flt-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1c1917;
  border-top: 2px solid #14532d;
  z-index: 9999;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.flt-cookie__text {
  font-size: 14px;
  color: #f5f0eb;
  line-height: 1.55;
  flex: 1;
  min-width: 240px;
}
.flt-cookie__text a {
  color: #86efac;
  text-decoration: underline;
}
.flt-cookie__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.flt-cookie__btn-accept {
  background: #14532d;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: filter var(--flt-transition);
}
.flt-cookie__btn-accept:hover {
  filter: brightness(1.12);
}
.flt-cookie__btn-decline {
  background: transparent;
  color: #f5f0eb;
  border: 1.5px solid rgba(245,240,235,0.35);
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--flt-transition), background var(--flt-transition);
}
.flt-cookie__btn-decline:hover {
  border-color: #f5f0eb;
  background: rgba(245,240,235,0.08);
}

@media (max-width: 640px) {
  .flt-cookie { flex-direction: column; align-items: flex-start; }
  .flt-cookie__actions { width: 100%; justify-content: flex-start; }
}

/* --- About sections ---------------------------------------- */
.flt-about-story {
  padding: 80px 0;
}
.flt-about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.flt-about-story__img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 400px;
}
.flt-about-story__body h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1c1917;
  margin-bottom: 16px;
}
.flt-about-story__body p {
  font-size: 16px;
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .flt-about-story__grid { grid-template-columns: 1fr; }
  .flt-about-story__img { height: 280px; }
}

.flt-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.flt-values__item {
  background: #f5f0eb;
  border-radius: var(--flt-radius);
  padding: 28px 24px;
}
.flt-values__item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #14532d;
  margin-bottom: 8px;
}
.flt-values__item p {
  font-size: 14px;
  color: #57534e;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .flt-values__grid { grid-template-columns: 1fr; }
}

.flt-backed-by {
  background: #f5f0eb;
  padding: 48px 0;
  text-align: center;
}
.flt-backed-by h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #57534e;
  margin-bottom: 16px;
}
.flt-backed-by__name {
  font-size: 24px;
  font-weight: 800;
  color: #1c1917;
}

/* --- Glossary --------------------------------------------- */
.flt-glossary {
  padding: 80px 0;
}
.flt-glossary__list {
  max-width: 760px;
  margin: 0 auto;
}
.flt-glossary__item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.flt-glossary__item:last-child {
  border-bottom: none;
}
.flt-glossary__term {
  font-size: 18px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 6px;
  font-family: 'IBM Plex Mono', monospace;
}
.flt-glossary__def {
  font-size: 15px;
  color: #57534e;
  line-height: 1.7;
}

/* --- Login (split layout) ---------------------------------- */
.flt-login-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 200px);
}
.flt-login-value {
  background: #14532d;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #f5f0eb;
}
.flt-login-value h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #f5f0eb;
}
.flt-login-value p {
  font-size: 16px;
  color: #86efac;
  line-height: 1.65;
  margin-bottom: 32px;
}
.flt-login-value__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.flt-login-value__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #dcfce7;
  line-height: 1.5;
}
.flt-login-value__bullets li i {
  color: #86efac;
  margin-top: 2px;
  flex-shrink: 0;
}
.flt-login-form-side {
  background: #ffffff;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flt-auth__back-bar {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: #14532d;
  margin-bottom: 32px;
  transition: color var(--flt-transition);
}
.flt-auth__back-bar:hover {
  color: #0f3d21;
  text-decoration: underline;
}
.flt-login-form-side h1 {
  font-size: 28px;
  font-weight: 800;
  color: #1c1917;
  margin-bottom: 8px;
}
.flt-login-form-side .flt-login__sub {
  font-size: 15px;
  color: #57534e;
  margin-bottom: 32px;
}
.flt-login__form .flt-field {
  margin-bottom: 16px;
}
.flt-login__form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 6px;
}
.flt-login__form input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1c1917;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color var(--flt-transition);
}
.flt-login__form input:focus {
  outline: 2px solid #14532d;
  outline-offset: 2px;
  border-color: #14532d;
}
.flt-login__form input::placeholder {
  color: #94a3b8;
}
.flt-login__submit {
  width: 100%;
  padding: 14px;
  background: #14532d;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: filter var(--flt-transition);
  margin-top: 8px;
}
.flt-login__submit:hover {
  filter: brightness(1.12);
}
.flt-login__links {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #57534e;
}
.flt-login__links a {
  color: #14532d;
  font-weight: 500;
}
.flt-login__links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .flt-login-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .flt-login-value {
    padding: 40px 24px;
    display: none;
  }
  .flt-login-form-side {
    padding: 40px 24px;
  }
}

/* --- 404 page --------------------------------------------- */
.flt-notfound {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.flt-notfound__inner h1 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 120px;
  font-weight: 900;
  color: #14532d;
  line-height: 1;
  margin-bottom: 16px;
}
.flt-notfound__inner h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1c1917;
  margin-bottom: 12px;
}
.flt-notfound__inner p {
  font-size: 16px;
  color: #57534e;
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.flt-notfound__wave {
  font-size: 48px;
  margin-bottom: 24px;
}

/* --- Legal pages ------------------------------------------ */
.flt-legal {
  padding: 72px 0;
}
.flt-legal__content {
  max-width: 760px;
  margin: 0 auto;
}
.flt-legal__content h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1c1917;
  margin: 40px 0 14px;
}
.flt-legal__content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1c1917;
  margin: 28px 0 10px;
}
.flt-legal__content p {
  font-size: 15px;
  color: #57534e;
  line-height: 1.75;
  margin-bottom: 16px;
}
.flt-legal__content ul {
  margin: 0 0 16px 24px;
}
.flt-legal__content li {
  font-size: 15px;
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 8px;
}
