/* ============================================================
   FarmTab – Informational Pages Shared Stylesheet
   Applies to: How FarmTab Works, For Farmers, For Customers,
               Farmer Join, Pricing & Fees, FAQ
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Lucide Icons (icon library) ── */
/* Icons are used via <i data-lucide="icon-name"></i> + lucide.createIcons() */

/* ── CSS Variables ── */
:root {
  --ft-green-dark:    #1a3a22;
  --ft-green:         #2f6f3e;
  --ft-green-mid:     #3d8a50;
  --ft-green-light:   #e8f2ea;
  --ft-green-xlight:  #f2f7f3;
  --ft-cream:         #faf9f6;
  --ft-sand:          #f0ede6;
  --ft-border:        #dde8df;
  --ft-text:          #1a2e1c;
  --ft-text-mid:      #3d5c42;
  --ft-text-light:    #6a8a6e;
  --ft-white:         #ffffff;
  --ft-blue-tag:      #cbd5f5;
  --ft-blue-tag-bg:   #f8fafc;
  --ft-shadow:        0 2px 16px rgba(26,58,34,0.08);
  --ft-shadow-md:     0 4px 32px rgba(26,58,34,0.12);
  --ft-radius:        12px;
  --ft-radius-sm:     8px;
  --ft-radius-pill:   999px;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1100px;
  --section-pad: 5rem 1.5rem;
}

/* ── Base reset for info pages ── */
.ft-info-page *,
.ft-info-page *::before,
.ft-info-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ft-info-page {
  font-family: var(--font-body);
  color: var(--ft-text);
  background: var(--ft-white);
  -webkit-font-smoothing: antialiased;
}

.ft-info-page a {
  color: var(--ft-green);
  text-decoration: none;
}

.ft-info-page a:hover {
  text-decoration: underline;
}

.ft-info-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Container ── */
.ft-container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ── Breadcrumb ── */
.ft-breadcrumb {
  background: var(--ft-white);
  border-bottom: 1px solid var(--ft-border);
  padding: 0.75rem 0;
}

.ft-breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ft-text-light);
  flex-wrap: wrap;
}

.ft-breadcrumb__inner a {
  color: var(--ft-text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-breadcrumb__inner a:hover {
  color: var(--ft-green);
  text-decoration: none;
}

.ft-breadcrumb__sep {
  color: var(--ft-border);
  font-size: 0.7rem;
}

.ft-breadcrumb__current {
  color: var(--ft-green);
  font-weight: 600;
}

/* ── Hero Section ── */
.ft-hero {
  background: var(--ft-green-dark);
  color: var(--ft-white);
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.ft-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 110%, rgba(47,111,62,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at -10% 40%, rgba(61,138,80,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.ft-hero--light {
  background: var(--ft-green-xlight);
  color: var(--ft-text);
}

.ft-hero--light::before {
  background-image:
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(47,111,62,0.08) 0%, transparent 70%);
}

/* ── Hero with background photo ── */
.ft-hero--bg-image {
  background-color: var(--ft-green-dark); /* fallback while image loads */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Strengthen the overlay for photo heroes so text stays readable */
.ft-hero--bg-image::before {
  background-image:
    linear-gradient(to right, rgba(15,35,18,0.82) 0%, rgba(15,35,18,0.55) 60%, rgba(15,35,18,0.35) 100%);
  z-index: 0;
}

.ft-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.ft-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--ft-radius-pill);
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.9);
}

.ft-hero--light .ft-hero__eyebrow {
  background: var(--ft-green-light);
  border-color: var(--ft-border);
  color: var(--ft-green);
}

.ft-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  max-width: 800px;
}

.ft-hero__title.white {
  color: #fff;
}

.ft-hero__subtitle.white {
  color: #fff;
}

.ft-cta__title.white {
  color: #fff;
}

.ft-btn.ft-btn--outline {
  color: rgba(255,255,255,.5)!important;
}

.ft-cta__desc.white {
  color: #fff;
}

.ft-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  opacity: 0.85;
  max-width: 600px;
  margin-bottom: 2rem;
  font-weight: 300;
}

.ft-hero--light .ft-hero__subtitle {
  color: var(--ft-text-mid);
  opacity: 1;
}

.ft-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ft-hero__actions .ft-btn.ft-btn--primary {
   color: #fff;
}

/* ── Buttons ── */
.ft-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: var(--ft-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}

.ft-btn--primary {
  background: var(--ft-green);
  color: var(--ft-white);
  border-color: var(--ft-green);
}

.ft-btn--primary:hover {
  background: var(--ft-green-mid);
  border-color: var(--ft-green-mid);
  text-decoration: none;
  color: var(--ft-white);
}

.ft-btn--outline {
  background: transparent;
  color: var(--ft-white);
  border-color: rgba(255,255,255,0.5);
}

.ft-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  text-decoration: none;
  color: var(--ft-white)!important;
}

.ft-btn--outline-dark {
  background: transparent;
  color: var(--ft-green);
  border-color: var(--ft-green);
}

.ft-btn--outline-dark:hover {
  background: var(--ft-green-light);
  text-decoration: none;
  color: var(--ft-green-dark);
}

.ft-btn i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Section Titles ── */
.ft-section {
  padding: var(--section-pad);
}

.ft-section--alt {
  background: var(--ft-green-xlight);
  border-top: 1px solid var(--ft-border);
  border-bottom: 1px solid var(--ft-border);
}

.ft-section--sand {
  background: var(--ft-sand);
  border-top: 1px solid var(--ft-border);
  border-bottom: 1px solid var(--ft-border);
}

.ft-section--dark {
  background: var(--ft-green-dark);
  color: var(--ft-white);
}

.ft-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ft-green);
  margin-bottom: 0.75rem;
}

.ft-section--dark .ft-section-label {
  color: rgba(255,255,255,0.6);
}

.ft-section-label i {
  width: 13px;
  height: 13px;
}

.ft-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ft-text);
  margin-bottom: 1rem;
  max-width: 700px;
}

.ft-section--dark .ft-section-title {
  color: var(--ft-white);
}

.ft-section-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ft-text-mid);
  max-width: 600px;
  margin-bottom: 3rem;
}

.ft-section--dark .ft-section-desc {
  color: rgba(255,255,255,0.7);
}

.ft-section-header--center {
  text-align: center;
}

.ft-section-header--center .ft-section-title,
.ft-section-header--center .ft-section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ── Steps / Numbered List ── */
.ft-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.ft-step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ft-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--ft-radius-pill);
  background: var(--ft-green);
  color: var(--ft-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ft-step__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ft-text);
}

.ft-step__body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ft-text-mid);
}

/* ── Feature Cards ── */
.ft-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.ft-card {
  background: var(--ft-white);
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius);
  padding: 1.75rem;
  box-shadow: var(--ft-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.ft-card:hover {
  box-shadow: var(--ft-shadow-md);
  transform: translateY(-2px);
}

.ft-card__icon {
  width: 44px;
  height: 44px;
  background: var(--ft-green-light);
  border-radius: var(--ft-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ft-green);
  flex-shrink: 0;
}

.ft-card__icon i {
  width: 22px;
  height: 22px;
}

.ft-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ft-text);
}

.ft-card__body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ft-text-mid);
}

/* ── Two-column split layout ── */
.ft-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ft-split--reverse .ft-split__media {
  order: -1;
}

@media (max-width: 768px) {
  .ft-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ft-split--reverse .ft-split__media {
    order: unset;
  }
}

.ft-split__img-wrap {
  border-radius: var(--ft-radius);
  overflow: hidden;
  border: 1px solid var(--ft-border);
  box-shadow: var(--ft-shadow-md);
  aspect-ratio: 4/3;
  background: var(--ft-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-split__img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--ft-green);
  opacity: 0.5;
  font-size: 0.8rem;
  text-align: center;
}

.ft-split__img-placeholder i {
  width: 40px;
  height: 40px;
}

.ft-split__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Checklist ── */
.ft-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.ft-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ft-text-mid);
}

.ft-checklist li i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 17px;
  height: 17px;
  color: var(--ft-green);
}

/* ── Pill Tags ── */
.ft-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.ft-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: var(--ft-radius-pill);
  background: var(--ft-blue-tag-bg);
  border: 1px solid var(--ft-blue-tag);
  color: var(--ft-text);
}

.ft-tag i {
  width: 13px;
  height: 13px;
  color: var(--ft-green);
}

/* ── Stat Row ── */
.ft-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.ft-stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--ft-green);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.ft-stat__label {
  font-size: 0.85rem;
  color: var(--ft-text-light);
  line-height: 1.5;
}

/* ── Pricing Cards ── */
.ft-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.ft-pricing-card {
  background: var(--ft-white);
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius);
  padding: 2rem;
  box-shadow: var(--ft-shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ft-pricing-card--featured {
  border-color: var(--ft-green);
  background: var(--ft-green-xlight);
}

.ft-pricing-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ft-text-light);
}

.ft-pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--ft-text);
  line-height: 1;
}

.ft-pricing-card__amount span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ft-text-light);
  margin-left: 0.25rem;
}

.ft-pricing-card__desc {
  font-size: 0.875rem;
  color: var(--ft-text-mid);
  line-height: 1.6;
}

.ft-pricing-card__divider {
  height: 1px;
  background: var(--ft-border);
}

/* ── FAQ Accordion ── */
.ft-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ft-faq-item {
  background: var(--ft-white);
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.ft-faq-item[open] {
  border-color: var(--ft-green);
  background: var(--ft-green-xlight);
}

.ft-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--ft-text);
  gap: 1rem;
  user-select: none;
}

.ft-faq-item summary::-webkit-details-marker {
  display: none;
}

.ft-faq-item summary::after {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232f6f3e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s;
}

.ft-faq-item[open] summary::after {
  transform: rotate(180deg);
}

.ft-faq-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ft-text-mid);
}

.ft-faq-body p + p {
  margin-top: 0.75rem;
}

.ft-faq-body ul {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
}

.ft-faq-body ul li {
  margin-bottom: 0.4rem;
}

/* ── FAQ Groups ── */
.ft-faq-group {
  margin-bottom: 3rem;
}

.ft-faq-group__heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ft-text);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ft-border);
}

.ft-faq-group__heading i {
  width: 20px;
  height: 20px;
  color: var(--ft-green);
}

/* ── CTA Banner ── */
.ft-cta {
  background: var(--ft-green-dark);
  color: var(--ft-white);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ft-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(61,138,80,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(47,111,62,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.ft-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.ft-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.ft-cta__desc {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 300;
}

.ft-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.ft-btn--white {
  background: var(--ft-white);
  color: var(--ft-green-dark);
  border-color: var(--ft-white);
}

.ft-btn--white:hover {
  background: var(--ft-green-light);
  border-color: var(--ft-green-light);
  color: var(--ft-green-dark);
  text-decoration: none;
}

/* ── Divider ── */
.ft-divider {
  height: 1px;
  background: var(--ft-border);
  margin: 0;
}

/* ── Related Links Strip ── */
.ft-related {
  padding: 2.5rem 1.5rem;
  background: var(--ft-sand);
  border-top: 1px solid var(--ft-border);
}

.ft-related__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.ft-related__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ft-text-light);
  white-space: nowrap;
}

.ft-related__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ft-related__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: var(--ft-radius-pill);
  background: var(--ft-white);
  border: 1px solid var(--ft-border);
  color: var(--ft-text);
  transition: all 0.2s;
  text-decoration: none;
}

.ft-related__link:hover {
  border-color: var(--ft-green);
  color: var(--ft-green);
  background: var(--ft-green-xlight);
  text-decoration: none;
}

.ft-related__link i {
  width: 14px;
  height: 14px;
}

/* ── Notice / info box ── */
.ft-notice {
  background: var(--ft-green-light);
  border: 1px solid var(--ft-border);
  border-left: 3px solid var(--ft-green);
  border-radius: var(--ft-radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--ft-text-mid);
  line-height: 1.65;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.ft-notice i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 17px;
  height: 17px;
  color: var(--ft-green);
}

/* ── Two-col FAQ layout ── */
.ft-faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .ft-faq-cols {
    grid-template-columns: 1fr;
  }
}

/* ── Image placeholder ── */
.ft-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--ft-green-light);
  border: 1px dashed var(--ft-green-mid);
  border-radius: var(--ft-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--ft-green);
  font-size: 0.8rem;
  font-weight: 500;
}

.ft-img-placeholder i {
  width: 32px;
  height: 32px;
  opacity: 0.6;
}

/* ── Process Steps (numbered inline) ── */
.ft-process {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.ft-process__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.ft-process__item:last-child {
  padding-bottom: 0;
}

.ft-process__line-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ft-process__dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ft-green);
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.ft-process__connector {
  width: 2px;
  flex: 1;
  background: var(--ft-border);
  margin-top: 4px;
}

.ft-process__item:last-child .ft-process__connector {
  display: none;
}

.ft-process__content {
  padding-top: 0.5rem;
}

.ft-process__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ft-text);
  margin-bottom: 0.5rem;
}

.ft-process__body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ft-text-mid);
}

.ft-process__body ul {
  margin-top: 0.5rem;
  padding-left: 1.1rem;
}

.ft-process__body li {
  margin-bottom: 0.35rem;
}

/* ── Hero image placeholder (banner style) ── */
.ft-hero-img-wrap {
  margin-top: 3rem;
  border-radius: var(--ft-radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: var(--ft-shadow-md);
}

/* ── Join Form ── */
.ft-join-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--ft-white);
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius);
  box-shadow: var(--ft-shadow-md);
  overflow: hidden;
}

.ft-join-form__header {
  padding: 2.5rem 2.5rem 0;
}

.ft-join-form__body {
  padding: 1.5rem 2.5rem 2.5rem;
}

@media (max-width: 640px) {
  .ft-join-form__header {
    padding: 1.5rem 1.5rem 0;
  }
  .ft-join-form__body {
    padding: 1.25rem 1.5rem 1.5rem;
  }
}

/* ── Utility ── */
.ft-mt-sm { margin-top: 1rem; }
.ft-mt-md { margin-top: 2rem; }
.ft-mt-lg { margin-top: 3rem; }
.ft-mb-sm { margin-bottom: 1rem; }
.ft-mb-md { margin-bottom: 2rem; }
.ft-text-center { text-align: center; }

/* ── Responsive ── */
@media (max-width: 640px) {
  :root {
    --section-pad: 3.5rem 1rem;
  }

  .ft-hero {
    padding: 3.5rem 1rem 3rem;
  }

  .ft-cards {
    grid-template-columns: 1fr;
  }

  .ft-steps {
    grid-template-columns: 1fr;
  }

  .ft-stats {
    grid-template-columns: 1fr 1fr;
  }

  .ft-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ft-pricing-grid {
    grid-template-columns: 1fr;
  }
}
