/* ===================================
   BE-TANGO — Free Trial Page Styles
   =================================== */

/* ---------- Skeleton loader ---------- */
.ft-skeleton-wrap {
  padding: 0.5rem 0;
}

.ft-skeleton {
  background: linear-gradient(90deg,
    rgba(226,192,51,0.08) 25%,
    rgba(226,192,51,0.18) 50%,
    rgba(226,192,51,0.08) 75%);
  background-size: 200% 100%;
  animation: ft-shimmer 1.4s infinite;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.ft-skeleton--header { height: 1.25rem; width: 60%; }
.ft-skeleton--card   { height: 3.5rem;  width: 100%; }
.ft-skeleton--short  { width: 75%; }

@keyframes ft-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- Empty / Error states ---------- */
.ft-empty {
  text-align: center;
  padding: 1.5rem 1rem;
  color: #4a4a4a;
  font-size: 0.9rem;
}

.ft-empty-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  opacity: 0.45;
}

.ft-empty-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
}

/* ---------- Empty-state banner (no trials) ---------- */
.ft-empty-banner {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(201, 168, 32, 0.08);
  border: 2px dashed rgba(201, 168, 32, 0.35);
  border-radius: 12px;
}
.ft-empty-banner__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: #C9A820;
}
.ft-empty-banner__icon svg {
  width: 3rem;
  height: 3rem;
  display: block;
}
.ft-empty-banner__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #111827;
  margin: 0 0 0.5rem;
}
.ft-empty-banner__text {
  font-size: 0.9rem;
  color: #4B5563;
  margin: 0;
  line-height: 1.5;
}

/* ---------- Schedule container ---------- */
.ft-schedule {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ---------- Location block ---------- */
.ft-location-block {
  background: #0d0d0d;
  border: 1px solid rgba(226,192,51,0.25);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
}

.ft-location-head {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(226,192,51,0.12);
  background: rgba(226,192,51,0.06);
}

/* Force SVG pin icon to a small, fixed size */
.ft-pin-icon {
  flex-shrink: 0;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  min-height: 14px;
  max-width: 14px;
  max-height: 14px;
  margin-top: 3px;
  stroke: #E2C033;
  fill: none;
  display: block;
}

.ft-loc-name {
  display: block;
  color: #E2C033;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ft-loc-building,
.ft-loc-address {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin-top: 1px;
}

/* ---------- Trial cards ---------- */
.ft-trials-grid {
  padding: 0.25rem 0;
}

.ft-trial-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0;
  animation: ft-fade-in 0.4s ease forwards;
  transition: background 0.2s ease;
}

.ft-trial-card:last-child {
  border-bottom: none;
}

.ft-trial-card--selectable {
  cursor: pointer;
}

.ft-trial-card--selectable:hover {
  background: rgba(226,192,51,0.1);
  border-bottom-color: rgba(226,192,51,0.15);
}

.ft-trial-card--selectable:focus-visible {
  outline: 2px solid #E2C033;
  outline-offset: -2px;
}

.ft-trial-card:hover {
  background: rgba(226,192,51,0.05);
}

@keyframes ft-fade-in {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ft-trial-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.ft-trial-date {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.ft-trial-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
}

/* Force clock SVG to a small, fixed size */
.ft-trial-time svg {
  width: 12px !important;
  height: 12px !important;
  min-width: 12px;
  min-height: 12px;
  max-width: 12px;
  max-height: 12px;
  flex-shrink: 0;
  stroke: #E2C033;
  fill: none;
  display: block;
  opacity: 0.7;
}

.ft-trial-right {
  flex-shrink: 0;
}

/* ---------- Spots badge ---------- */
.ft-spots-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.ft-spots-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.ft-spots-badge.ft-spots--ok {
  background: rgba(0, 208, 132, 0.12);
  color: #00d084;
  border: 1px solid rgba(0, 208, 132, 0.25);
}
.ft-spots-badge.ft-spots--ok .ft-spots-dot { background: #00d084; }

.ft-spots-badge.ft-spots--low {
  background: rgba(255, 177, 60, 0.12);
  color: #ffb13c;
  border: 1px solid rgba(255, 177, 60, 0.25);
}
.ft-spots-badge.ft-spots--low .ft-spots-dot { background: #ffb13c; }

.ft-spots-badge.ft-spots--critical {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.ft-spots-badge.ft-spots--critical .ft-spots-dot { background: #ef4444; }

/* ---------- Success card ---------- */
.ft-success {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(226,192,51,0.3);
  border-radius: 12px;
  animation: ft-fade-in 0.5s ease forwards;
}

.ft-success-check {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(226,192,51,0.12);
  border: 2px solid #E2C033;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-success-check svg {
  width: 1.75rem !important;
  height: 1.75rem !important;
  display: block;
  stroke: #E2C033;
  fill: none;
}

.ft-success-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #E2C033;
  margin-bottom: 0.5rem;
}

.ft-success-msg {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}

.ft-success-email {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.ft-success-email strong {
  color: rgba(255,255,255,0.85);
}

.ft-success-meta {
  border-top: 1px solid rgba(226,192,51,0.15);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.ft-success-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.ft-success-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.ft-success-val {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  text-align: right;
}

.ft-success-val em {
  display: block;
  font-style: normal;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}

.ft-success-ref {
  font-weight: 700;
  color: #E2C033;
  font-size: 1rem;
}

/* ---------- Inline form error ---------- */
.ft-form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .ft-trial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .ft-trial-date {
    white-space: normal;
  }

  .ft-success {
    padding: 1.75rem 1.25rem;
  }

  .ft-success-row {
    flex-direction: column;
    gap: 0.2rem;
  }

  .ft-success-val {
    text-align: left;
  }
}

/* ===================================================================
   BE-TANGO — Free Trial Page: Draft-B "Immersive Split" Design
   =================================================================== */

*, *::before, *::after { box-sizing: border-box; }

body { background: #FAF8F5; }

/* ── Compact hero ────────────────────────────────────────────────── */
.ft-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111827;
}

.ft-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Tango-2048x1365-1.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 1;
}

.ft-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.45) 0%,
    rgba(17, 24, 39, 0.2) 60%,
    rgba(17, 24, 39, 0.05) 100%
  );
}

.ft-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 56px;
}

.ft-hero__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E2C033;
  margin-bottom: 12px;
}

.ft-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.ft-hero__title .gold { color: #E2C033; }

.ft-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 520px;
}

.ft-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}

.ft-hero__pill i {
  color: #E2C033;
  font-size: 11px;
}

/* ── Split layout ────────────────────────────────────────────────── */
.ft-split {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.ft-left-top,
.ft-schedule-wrapper,
.ft-left-bottom { min-width: 0; }

.ft-left-top     { grid-column: 1; grid-row: 1; }
.ft-schedule-wrapper { grid-column: 1; grid-row: 2; }
.ft-left-bottom  { grid-column: 1; grid-row: 3; }

.ft-right {
  grid-column: 2;
  grid-row: 1 / span 3;
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.15) transparent;
}
.ft-right::-webkit-scrollbar { width: 6px; }
.ft-right::-webkit-scrollbar-track { background: transparent; }
.ft-right::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }
.ft-right::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.25); }

/* ── Section headings ────────────────────────────────────────────── */
.ft-section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A820;
  margin-bottom: 8px;
}

.ft-section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.ft-section-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #6B7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.ft-block { margin-bottom: 48px; }
.ft-block:last-child { margin-bottom: 0; }

/* ── Intro image ─────────────────────────────────────────────────── */
.ft-intro-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  aspect-ratio: 16/9;
}

.ft-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ── Checklist ───────────────────────────────────────────────────── */
.ft-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.55;
}

.ft-checklist__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FDF6DC;
  border: 1.5px solid #E2C033;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.ft-checklist__icon i {
  font-size: 9px;
  color: #C9A820;
}

.ft-checklist li strong { color: #111827; font-weight: 600; }

/* ── Schedule widget block — light theme ─────────────────────────── */
.ft-schedule-block {
  background: #FFFFFF;
  border: 1.5px solid #E9E4DB;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.ft-schedule-block-title {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A820;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-schedule-block-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 16px;
  background: linear-gradient(180deg, #C9A820, #E2C033);
  border-radius: 99px;
  flex-shrink: 0;
}

/* Light-theme overrides for the schedule widget */
.ft-schedule-block .ft-location-block {
  background: #F9F7F3;
  border: 1px solid #E9E4DB;
  box-shadow: none;
}

.ft-schedule-block .ft-location-head {
  background: #FDF9EE;
  border-bottom-color: #E9E4DB;
}

.ft-schedule-block .ft-loc-name { color: #C9A820; }

.ft-schedule-block .ft-loc-building,
.ft-schedule-block .ft-loc-address { color: #6B7280; }

.ft-schedule-block .ft-pin-icon { stroke: #C9A820; }

.ft-schedule-block .ft-trial-card { border-bottom-color: rgba(0,0,0,0.06); }

.ft-schedule-block .ft-trial-date { color: #111827; }

.ft-schedule-block .ft-trial-time { color: #6B7280; }

.ft-schedule-block .ft-trial-time svg { stroke: #C9A820; opacity: 1; }

.ft-schedule-block .ft-trial-card--selectable:hover {
  background: #FDF9EE;
  border-bottom-color: #E2C033;
}

.ft-schedule-block .ft-spots-badge.ft-spots--ok {
  background: rgba(0,160,100,0.08);
  color: #007a4d;
  border-color: rgba(0,160,100,0.2);
}
.ft-schedule-block .ft-spots-badge.ft-spots--ok .ft-spots-dot { background: #007a4d; }

.ft-schedule-block .ft-spots-badge.ft-spots--low {
  background: rgba(200,120,0,0.08);
  color: #b35a00;
  border-color: rgba(200,120,0,0.2);
}
.ft-schedule-block .ft-spots-badge.ft-spots--low .ft-spots-dot { background: #b35a00; }

.ft-schedule-block .ft-spots-badge.ft-spots--critical {
  background: rgba(220,38,38,0.07);
  color: #b91c1c;
  border-color: rgba(220,38,38,0.18);
}
.ft-schedule-block .ft-spots-badge.ft-spots--critical .ft-spots-dot { background: #b91c1c; }

.ft-schedule-block .ft-empty { color: #6B7280; }
.ft-schedule-block .ft-empty-icon { opacity: 0.35; color: #C9A820; }

.ft-schedule-block .ft-skeleton {
  background: linear-gradient(90deg, #F3EDD8 25%, #EDE5C8 50%, #F3EDD8 75%);
  background-size: 200% 100%;
}

/* ── FAQ accordion ───────────────────────────────────────────────── */
.ft-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  overflow: hidden;
}

.ft-faq-item { border-bottom: 1px solid #F3F4F6; }
.ft-faq-item:last-child { border-bottom: none; }

.ft-faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  background: #FFFFFF;
  transition: background 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
}

.ft-faq-item summary::-webkit-details-marker { display: none; }
.ft-faq-item summary:hover { background: #FAFAF8; }

.ft-faq-item[open] summary {
  background: #FEFDF8;
  border-bottom: 1px solid #F3F4F6;
}

.ft-faq-question {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.4;
}

.ft-faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: #9CA3AF;
  transition: background 0.18s ease, color 0.18s ease, transform 0.22s ease;
  line-height: 1;
}

.ft-faq-item[open] .ft-faq-icon {
  background: #FDF6DC;
  color: #C9A820;
  transform: rotate(45deg);
}

.ft-faq-answer {
  padding: 16px 20px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #4B5563;
  line-height: 1.65;
  background: #FEFDF8;
}

/* ── Timeline ────────────────────────────────────────────────────── */
.ft-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.ft-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, #E2C033 0%, rgba(226,192,51,0.15) 100%);
}

.ft-timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}

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

.ft-timeline-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E2C033;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px #FAF8F5;
}

.ft-timeline-body { padding-top: 8px; min-width: 0; }

.ft-timeline-body h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.ft-timeline-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* ── Form card (right column) ────────────────────────────────────── */
.ft-form-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow:
    0 4px 6px -1px rgba(0,0,0,0.05),
    0 20px 50px -8px rgba(0,0,0,0.18),
    0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
}

.ft-form-gold-bar {
  height: 5px;
  background: linear-gradient(90deg, #C9A820 0%, #E2C033 45%, #F0D060 100%);
  border-radius: 12px 12px 0 0;
}

.ft-form-header { padding: 22px 26px 4px; }

.ft-form-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A820;
  margin-bottom: 6px;
}

.ft-form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.ft-form-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #9CA3AF;
  margin-bottom: 0;
  line-height: 1.5;
}

.ft-form-divider {
  height: 1px;
  background: #F3F4F6;
  margin: 16px 26px 0;
}

#free-trial-form {
  padding: 20px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ft-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
  row-gap: 6px;
  margin-top: 14px;
  align-items: start;
}

.ft-form-row:first-child { margin-top: 0; }

.ft-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}

.ft-form-field:first-child { margin-top: 0; }

/* Inside a two-column row, both fields must start at the same vertical position */
.ft-form-row .ft-form-field { margin-top: 0; }

.ft-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.ft-label .ft-req { color: #E2C033; margin-left: 2px; }

.ft-input,
.ft-select,
.ft-textarea {
  width: 100%;
  padding: 11px 14px;
  background: #FFFFFF;
  border: 1.5px solid #D1D5DB;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #111827;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}

.ft-input::placeholder,
.ft-textarea::placeholder { color: #9CA3AF; font-weight: 400; }

.ft-input:hover,
.ft-select:hover,
.ft-textarea:hover { border-color: #B0B8C4; }

.ft-input:focus,
.ft-select:focus,
.ft-textarea:focus {
  border-color: #E2C033;
  box-shadow: 0 0 0 3px rgba(226,192,51,0.15);
}

.ft-select-wrap { position: relative; }

.ft-select-wrap::after {
  content: '';
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 5.5L8 10.5L12.5 5.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.ft-select-wrap:focus-within::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 5.5L8 10.5L12.5 5.5' stroke='%23E2C033' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ft-select { padding-right: 36px; cursor: pointer; }
.ft-select option { color: #111827; background: #FFFFFF; }
.ft-textarea { resize: vertical; min-height: 76px; }

/* ── Partner toggle cards ────────────────────────────────────────── */
.ft-partner-section {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #F3F4F6;
}

.ft-partner-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-partner-label::before {
  content: '';
  display: block;
  width: 3px;
  height: 14px;
  background: #E2C033;
  border-radius: 99px;
  flex-shrink: 0;
}

.ft-partner-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ft-partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 96px;
  padding: 14px 10px;
  background: #FAFAFA;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  user-select: none;
  -webkit-user-select: none;
}

.ft-partner-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ft-partner-card:hover { border-color: #C9A820; background: #FFFDF0; }

.ft-partner-card.is-selected {
  border-color: #E2C033;
  background: #FFFEF5;
  box-shadow: 0 0 0 3px rgba(226,192,51,0.12);
}

.ft-partner-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.18s ease;
  flex-shrink: 0;
}

.ft-partner-card.is-selected .ft-partner-icon { background: #FDF6DC; }

.ft-partner-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #374151;
  text-align: center;
  transition: color 0.18s ease;
}

.ft-partner-card.is-selected .ft-partner-name { color: #1C244B; }

.ft-partner-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #E2C033;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.34,1.4,0.64,1);
}

.ft-partner-card.is-selected .ft-partner-check {
  opacity: 1;
  transform: scale(1);
}

.ft-partner-check svg { width: 10px; height: 10px; }

#partner { display: none; }

/* ── Consent ─────────────────────────────────────────────────────── */
.ft-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: #6B7280;
  line-height: 1.5;
  cursor: pointer;
}

.ft-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #E2C033;
  cursor: pointer;
}

/* ── Notify-me checkbox (when dates exist but none work) ───────── */
.ft-notify-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(201, 168, 32, 0.07);
  border: 1px solid rgba(201, 168, 32, 0.25);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #374151;
  line-height: 1.45;
  cursor: pointer;
  transition: border-color 0.2s;
}
.ft-notify-checkbox:hover {
  border-color: rgba(201, 168, 32, 0.5);
}
.ft-notify-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: #C9A820;
  cursor: pointer;
}

/* ── Submit ──────────────────────────────────────────────────────── */
.ft-submit-wrap { margin-top: 20px; }

.ft-submit {
  width: 100%;
  padding: 14px 24px;
  background: #E2C033;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.18s ease, transform 0.18s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.18s ease;
}

.ft-submit:hover {
  background: #D4B12A;
  transform: scale(1.015);
  box-shadow: 0 6px 20px -4px rgba(226,192,51,0.45);
}

.ft-submit:active { transform: scale(0.99); }
.ft-submit-arrow { transition: transform 0.18s ease; }
.ft-submit:hover .ft-submit-arrow { transform: translateX(3px); }

.ft-form-note {
  margin-top: 12px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.5;
}

/* ── Success card overrides (light card context) ─────────────────── */
.ft-form-card .ft-success {
  background: #FFFFFF;
  border: none;
  border-left: 4px solid #E2C033;
  border-radius: 10px;
  padding: 28px 24px;
  margin: 0;
  max-width: 100%;
  text-align: left;
  animation: ft-fade-in 0.5s ease forwards;
}

.ft-form-card .ft-success-check {
  background: rgba(34,197,94,0.1);
  border-color: #22C55E;
  margin: 0 0 16px 0;
}

.ft-form-card .ft-success-check svg { stroke: #22C55E; }
.ft-form-card .ft-success-title { color: #111827; }
.ft-form-card .ft-success-msg { color: #374151; }
.ft-form-card .ft-success-email { color: #6B7280; }
.ft-form-card .ft-success-email strong { color: #111827; }
.ft-form-card .ft-success-lbl { color: #9CA3AF; }
.ft-form-card .ft-success-val { color: #111827; }
.ft-form-card .ft-success-ref { color: #C9A820; }
.ft-form-card .ft-success-meta { border-top-color: #E5E7EB; }

/* ── Contact alternatives below form ─────────────────────────────── */
.ft-contact-alt {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-contact-alt-title {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9CA3AF;
  text-align: center;
  padding: 0 4px;
}

.ft-contact-links { display: flex; gap: 8px; }

.ft-contact-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 10px 8px;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.ft-contact-link i { font-size: 13px; color: #C9A820; }

.ft-contact-link:hover {
  border-color: #E2C033;
  background: #FEFDF8;
  color: #111827;
}

/* ── Final dark CTA section ──────────────────────────────────────── */
.ft-cta-section {
  background: #111827;
  padding: 80px 24px;
  text-align: center;
}

.ft-cta-inner { max-width: 600px; margin: 0 auto; }

.ft-cta-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E2C033;
  margin-bottom: 12px;
}

.ft-cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.ft-cta-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  line-height: 1.6;
}

.ft-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.ft-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #E2C033;
  color: #111827;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.ft-cta-btn-primary:hover { background: #D4B12A; transform: scale(1.02); }

.ft-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.ft-cta-btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: #FFFFFF;
}

.ft-cta-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.ft-cta-note a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.ft-cta-note a:hover { color: #FFFFFF; }

/* ── Form error (light context) ──────────────────────────────────── */
.ft-form-error {
  background: rgba(239,68,68,0.08);
  border: 1.5px solid rgba(239,68,68,0.25);
  color: #DC2626;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.ft-req { color: #E2C033; }

/* ── Mobile responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .ft-split {
    grid-template-columns: 1fr;
    padding: 32px 20px 56px;
    gap: 0;
  }

  .ft-schedule-wrapper { order: -3; margin-bottom: 32px; grid-row: auto; grid-column: 1; }
  .ft-right             { position: static; order: -2; margin-bottom: 40px; grid-row: auto; grid-column: 1; max-height: none; overflow-y: visible; }
  .ft-left-top          { order: -1; grid-row: auto; grid-column: 1; }
  .ft-left-bottom       { order: 0;  grid-row: auto; grid-column: 1; }
}

@media (max-width: 600px) {
  .ft-hero { min-height: 300px; }
  .ft-hero__inner { padding: 44px 20px 40px; }

  /* Form card — visible card background, rounded corners, shadow */
  .ft-form-card {
    border-radius: 14px;
    box-shadow:
      0 2px 4px rgba(0,0,0,0.08),
      0 12px 32px rgba(0,0,0,0.14),
      0 0 0 1px rgba(0,0,0,0.05);
  }

  /* Form header — more breathing room */
  .ft-form-header {
    padding: 20px 20px 4px;
  }

  .ft-form-divider {
    margin: 14px 20px 0;
  }

  /* Form body — generous horizontal padding */
  #free-trial-form {
    padding: 18px 20px 24px;
  }

  /* Labels — clear font size and spacing */
  .ft-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
  }

  /* Form rows — always single column on mobile */
  .ft-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 14px;
  }

  /* Fields inside a row — label immediately above its input */
  .ft-form-row .ft-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 0;
  }

  /* Inputs & selects — 50px min touch target, 16px prevents iOS auto-zoom */
  .ft-input,
  .ft-select {
    min-height: 50px;
    padding: 0 16px;
    font-size: 16px;
  }

  .ft-select {
    padding-right: 36px;
    width: 100%;
  }

  /* Partner toggle cards — 2-col grid, adequate touch target */
  .ft-partner-cards {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .ft-partner-card {
    min-height: 88px;
    padding: 14px 10px;
  }

  /* Consent row — comfortable spacing */
  .ft-consent {
    gap: 12px;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.55;
  }

  .ft-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
  }

  /* Submit button — full-width, 52px tall, gold */
  .ft-submit-wrap { margin-top: 20px; }

  .ft-submit {
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    font-size: 15px;
  }

  .ft-contact-links { flex-direction: column; }
}
