/* ============================================================
   FREE TRIAL PAGE — GLOBAL OVERRIDES
   ============================================================ */

.main_menu_container, #hsa-login-link, .custom-try-free-class, .top_footer {
  display: none;
}

/* ============================================================
   PAGE-LEVEL STEP VISIBILITY
   Controls sections outside the form based on which step is active.
   JS sets data-form-part="2" on #ft-page when advancing to step 2.
   ============================================================ */

#ft-page:not([data-form-part="2"]) .ft-step-2-only { display: none; }
#ft-page[data-form-part="2"] .ft-step-1-only { display: none; }

/* ============================================================
   FORM-LEVEL STEP VISIBILITY
   Controls sections inside the form.
   ============================================================ */

.free-trial-form:not([data-form-part]) .second-form-only { display: none; }
.free-trial-form[data-form-part="2"] .first-form-only { display: none; }

/* Hide form fields until session_for is selected */
.free-trial-form[data-session-for="null"] #form-first-half-id,
.free-trial-form[data-session-for="null"] #next-button-div,
.free-trial-form:not([data-session-for]) #form-first-half-id,
.free-trial-form:not([data-session-for]) #next-button-div { display: none; }

/* Hide learner info until session type is chosen */
.free-trial-form[data-session-type="null"] #learner-information-id { display: none; }

/* Hide second student if individual session */
.free-trial-form[data-session-type="FCST_individual"] #student-2-info,
.free-trial-form[data-session-type="FCST_individual"] #student-1-info-title { display: none; }

/* ============================================================
   STEP 2: INFO EDIT VISIBILITY
   The reservation card is hidden in step 2 (info is in the topbar).
   When "Edit" is clicked, JS sets data-edit-info on both the form
   and #ft-page, so the card reappears as an edit panel.
   ============================================================ */

/* Hide reservation card in step 2 by default */
#ft-page[data-form-part="2"] .ft-reservation-card { display: none; }

/* Show reservation card as edit panel when editing */
#ft-page[data-form-part="2"][data-edit-info] .ft-reservation-card {
  display: block;
  background: #F4F8FB;
  border: 1px solid #C5D9EC;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

/* Hide form inputs in step 2 by default */
.free-trial-form[data-form-part="2"] #form-first-half-inputs { display: none; }

/* Show form inputs when editing in step 2 */
.free-trial-form[data-edit-info][data-form-part="2"] #form-first-half-inputs { display: block; }

/* Hide info summary in topbar when editing */
#ft-page[data-form-part="2"][data-edit-info] #your-info-summary { display: none; }

/* Show/hide "Edit your information" label inside the form */
.free-trial-form[data-form-part="2"] #your-info-title { display: none; }
.free-trial-form[data-form-part="2"][data-edit-info] #your-info-title { display: block; margin-bottom: 12px; }

/* Edit button toggle state */
#expand-your-information-id .ft-edit-open { display: inline; }
#expand-your-information-id .ft-edit-close { display: none; }
#ft-page[data-edit-info] #expand-your-information-id .ft-edit-open { display: none; }
#ft-page[data-edit-info] #expand-your-information-id .ft-edit-close { display: inline; }

/* ============================================================
   PAGE WRAPPER
   ============================================================ */

.ft-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

/* ============================================================
   PROGRESS INDICATOR
   ============================================================ */

.ft-progress {
  padding: 16px 0 24px;
}

.ft-progress-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #636E76;
  margin: 0 0 8px;
}

.ft-progress-aside {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.ft-progress-bar {
  display: flex;
  gap: 6px;
  height: 4px;
}

.ft-progress-bar-step {
  flex: 1;
  background: #D8E3EA;
  border-radius: 2px;
}

#ft-page:not([data-form-part="2"]) .ft-progress-step-1 { background: #1A7ABC; }
#ft-page[data-form-part="2"] .ft-progress-step-2 { background: #1A7ABC; }

/* ============================================================
   STEP 2 — FULL-WIDTH TOPBAR (heading + info bar, above grid)
   ============================================================ */

.ft-step2-topbar {
  margin-bottom: 28px;
}

.ft-step2-title, #ft-name-display {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #1A7ABC;
  margin: 0 0 10px;
}

.ft-step2-subtitle {
  font-size: 15px;
  color: #636E76;
  margin: 0 0 16px;
}

.ft-step2-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #F4F8FB;
  border: 1px solid #C5D9EC;
  border-radius: 8px;
  padding: 12px 16px;
}

.ft-step2-info-content {
  font-size: 14px;
  color: #424B52;
  line-height: 1.5;
}

.ft-step2-edit-btn {
  flex-shrink: 0;
  background: none;
  border: 1px solid #1A7ABC;
  border-radius: 6px;
  color: #1A7ABC;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.ft-step2-edit-btn:hover {
  background: #1A7ABC;
  color: #fff;
}

/* ============================================================
   MAIN TWO-COLUMN LAYOUT
   Using flexbox for broad theme compatibility.
   ============================================================ */

.ft-main-grid {
  display: flex;
  align-items: flex-start;
  gap: 36px;
}

.ft-left-col {
  flex: 3;
  min-width: 0;
}

.ft-right-col {
  flex: 2;
  min-width: 0;
}

/* ============================================================
   STEP 1: HERO HEADING (inside left column)
   ============================================================ */

.ft-hero { margin-bottom: 24px; }

.ft-hero-title {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  color: #1A7ABC;
  margin: 0 0 12px;
}

.ft-hero-subtitle {
  font-size: 16px;
  color: #636E76;
  margin: 0;
}

/* ============================================================
   FORM — SHARED INPUTS
   ============================================================ */

.free-trial-form input,
.free-trial-form select {
  margin-bottom: 16px;
  border: 1px solid #BABABA;
  background: white;
  border-radius: 6px;
  display: inline-block;
  width: 100%;
  height: 44px;
  padding: 0 12px;
  font-size: 15px;
  color: #1A1F24;
  box-sizing: border-box;
}

.free-trial-form input[type="submit"],
.free-trial-form input[type="button"] {
  height: auto;
  padding: 12px 24px;
  cursor: pointer;
}

.free-trial-form [aria-invalid="true"] { border: 1px solid #e53e3e; }

.free-trial-form h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #424B52;
  margin-bottom: 12px;
}

.free-trial-form h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #424B52;
  margin: 12px 0;
}

.free-trial-form .hidden-form-field { display: none; }

.ft-input-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #424B52;
  margin-bottom: 4px;
}

.ft-field-label {
  font-size: 14px;
  font-weight: 600;
  color: #424B52;
  margin-bottom: 10px;
}

/* Radio button bar */
.free-trial-form ul.radio-button-bar {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.free-trial-form ul.radio-button-bar > li {
  display: grid;
  grid-template-columns: min-content 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid #B8C0C6;
  background-color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.free-trial-form ul.radio-button-bar > li::before { content: none; }

.free-trial-form ul.radio-button-bar label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.free-trial-form ul.radio-button-bar input {
  min-width: 18px;
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
}

/* Split two-column input row */
.free-trial-form .split-input-div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Tooltip errors */
.input-container { position: relative; }

.free-trial-form .tooltip {
  visibility: hidden;
  background-color: #e53e3e;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 2px 6px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  font-size: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.free-trial-form .tooltip.selectbox-tooltip { bottom: -20px; }

.tooltip.visible {
  visibility: visible;
  opacity: 1;
}

/* Form progress buttons */
.free-trial-form .form-progress-button {
  display: block;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 24px;
  margin: 0 0 10px;
  text-transform: none;
  border: 0;
  transition: background-color 0.3s;
  color: white;
  background-color: #33BF5C;
  cursor: pointer;
  box-sizing: border-box;
}

.free-trial-form .form-progress-button:hover { background-color: #2aad51; }
.free-trial-form .form-progress-button:disabled { background-color: #A0E6B4; cursor: default; }
.free-trial-form .form-progress-button:disabled:hover { background-color: #A0E6B4; }

/* Terms text */
.ft-terms-text {
  text-align: center;
  color: #636E76;
  margin: 4px 0 16px;
  font-size: 13px;
}

.ft-terms-text a { color: #1A7ABC; }

/* ============================================================
   STEP 1: CLASS RESERVATION CARD
   ============================================================ */

/* Step 1: full card */
.free-trial-form:not([data-form-part]) .ft-reservation-card {
  background: #fff;
  border: 1px solid #D8E3EA;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(26, 122, 188, 0.08);
  margin-bottom: 0;
}

.ft-form-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A1F24;
  margin: 0 0 20px;
}

/* Trusted accredited section */
.ft-trusted-accredited {
  border-top: 1px solid #EEF2F5;
  padding-top: 16px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-trusted-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A9299;
  margin: 0 0 8px;
}

.ft-accredited-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ft-accredited-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.ft-trusted-by {
  border-top: 1px solid #EEF2F5;
  padding-top: 14px;
}

.ft-trusted-logos {
  max-width: min(496px, 100%);
  mix-blend-mode: multiply;
  display: block;
}

/* ============================================================
   STEP 2: "EDIT YOUR INFORMATION" LABEL
   ============================================================ */

.ft-edit-info-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: #424B52;
  margin: 0;
}

/* ============================================================
   SHARED CARD BASE
   ============================================================ */

.ft-why-extra,
.ft-customize-card,
.ft-teachers-card,
.ft-expect-card,
.ft-trusted-families-card {
  background: #fff;
  border: 1px solid #D8E3EA;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(26, 122, 188, 0.08);
}

.ft-customize-card,
.ft-teachers-card,
.ft-trusted-families-card {
  overflow: hidden;
}

/* ============================================================
   STEP 2: WHY WE ASK + VIDEO PLACEHOLDER
   ============================================================ */

.ft-why-extra {
  margin-bottom: 20px;
  padding: 24px;
}

.ft-why-title {
  font-size: 18px;
  font-weight: 700;
  color: #1A1F24;
  margin: 0 0 16px;
}

.ft-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.ft-why-text {
  font-size: 14px;
  color: #636E76;
  line-height: 1.6;
  margin: 0;
}

.ft-video-placeholder {
  background: #1A1F24 url('../img/free-trial/video-thumbnail.jpg') center / cover no-repeat;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* top gradient scrim so controls stay legible over any thumbnail */
.ft-video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 50%);
  pointer-events: none;
}

.ft-video-play-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1F24;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.2s;
}

.ft-video-play-btn svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.ft-video-placeholder:hover .ft-video-play-btn {
  opacity: 1;
  transform: scale(1.1);
}

.ft-video-label {
  position: absolute;
  top: 18px;
  left: 56px;
  z-index: 1;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* Video lightbox modal */
.ft-video-modal {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ft-video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ft-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.ft-video-modal-content {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 960px;
}

.ft-video-modal-content video {
  display: block;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  max-height: 80vh;
  background: #000;
}

.ft-video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.8;
  transition: opacity 0.15s;
}

.ft-video-modal-close:hover {
  opacity: 1;
}

/* ============================================================
   STEP 2: CUSTOMIZE YOUR CLASS CARD
   ============================================================ */

.ft-customize-card-header {
  background: #1A7ABC;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ft-customize-card-body {
  padding: 24px;
}

.ft-customize-subtitle {
  font-size: 13px;
  color: #636E76;
  margin: 0 0 20px;
}

/* Learner info section inside customize card */
.ft-customize-card #learner-information-id {
  background-color: #E8F4FB;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 16px;
}

.ft-customize-card #learner-information-id h3 {
  font-weight: 700;
  color: #1A7ABC;
}

.ft-customize-card #learner-information-id h4 {
  font-weight: 600;
  color: #1A7ABC;
}

.ft-schedule-btn { margin-top: 8px; }

/* ============================================================
   RIGHT COLUMN — STEP 1: MEET YOUR CERTIFIED TEACHERS
   ============================================================ */

.ft-teachers-card-header {
  background: #33BF5C;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: center;
}

.ft-teachers-card-body {
  padding: 20px;
  border-bottom: 1px solid #EEF2F5;
}

.ft-teacher-photos-wrap {
  position: relative;
  margin-bottom: 14px;
}

.ft-teacher-photos {
  display: flex;
  gap: 8px;
}

.ft-teacher-photos img {
  width: calc(33.33% - 6px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  margin: 0;
}

.ft-teacher-badge {
  position: absolute;
  bottom: -10px;
  right: 0;
  background: #1A7ABC;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
  padding: 4px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ft-teachers-desc {
  font-size: 13px;
  color: #636E76;
  line-height: 1.5;
  margin: 16px 0 0;
}

/* Testimonials inside teachers card */
.ft-right-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #1A1F24;
  padding: 16px 20px 0;
  margin: 0;
}

.ft-testimonials-list {
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft-testimonial-body {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: start;
  border-left: 3px solid rgba(26, 122, 188, 0.4);
  padding-left: 14px;
}

.ft-testimonial-body p::before { content: '\201C'; }
.ft-testimonial-body p::after { content: '\201D'; }

.ft-testimonial-body::before {
  content: '\201C';
  font-size: 48px;
  line-height: 0.85;
  font-family: Georgia, 'Times New Roman', serif;
  color: #1A7ABC;
  opacity: 0.35;
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  pointer-events: none;
}

.ft-testimonial p {
  font-size: 15px;
  color: #424B52;
  line-height: 1.55;
  margin: 0 0 6px;
  font-style: italic;
  grid-column: 2;
  grid-row: 1;
}

.ft-testimonial-author {
  font-size: 13px;
  color: #636E76;
  grid-column: 2;
  grid-row: 2;
}

.ft-stars {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* ============================================================
   RIGHT COLUMN — STEP 2: WHAT TO EXPECT + TRUSTED BY FAMILIES
   ============================================================ */

.ft-step2-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* What to expect card */
.ft-expect-card {
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.ft-expect-title {
  font-size: 15px;
  font-weight: 700;
  color: #1A1F24;
  margin: 0 0 16px;
}

.ft-expect-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-expect-list > li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  list-style: none !important;
}

.ft-expect-list > li::before { content: none !important; }
.ft-expect-list > li::marker { content: none !important; display: none !important; }

.ft-expect-check {
  color: #33BF5C;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.ft-expect-list strong {
  display: block;
  font-size: 14px;
  color: #1A1F24;
  margin-bottom: 2px;
}

.ft-expect-list p {
  font-size: 13px;
  color: #636E76;
  margin: 0;
  line-height: 1.4;
}

.ft-expect-no-cc {
  font-size: 12px;
  color: #8A9299;
  margin: 16px 0 0;
}

.ft-trusted-families-header {
  background: #F4F8FB;
  border-bottom: 1px solid #D8E3EA;
  padding: 16px 20px;
  text-align: center;
}

.ft-big-stars {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.ft-trusted-families-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #424B52;
  margin: 0;
}

.ft-trusted-by-sidebar {
  padding: 24px;
}

/* ============================================================
   HOW YOUR FREE SPANISH CLASS WORKS
   ============================================================ */

.ft-how-it-works {
  margin-top: 56px;
  background: #F4F8FB;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
}

.ft-how-title {
  font-size: 24px;
  font-weight: 700;
  color: #1A1F24;
  margin: 0 0 8px;
}

.ft-how-subtitle {
  font-size: 15px;
  color: #636E76;
  margin: 0 0 32px;
}

.ft-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ft-how-step-icon {
  width: 125px;
  height: 125px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-how-step-icon img {
  max-width: 125px;
  max-height: 125px;
}

.ft-how-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1A7ABC;
  margin: 0 0 4px;
}

.ft-how-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #1A1F24;
  margin: 0 0 8px;
}

.ft-how-step-desc {
  font-size: 14px;
  color: #636E76;
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   FREQUENTLY ASKED QUESTIONS
   ============================================================ */

.ft-faq {
  margin-top: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.ft-faq h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1A1F24;
  margin: 0 0 24px;
  text-align: center;
}

.r2-custom-faq-collapsible {
  background: #fff;
  color: #1A1F24;
  cursor: pointer;
  padding: 16px 20px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #EEF2F5;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.r2-custom-faq-collapsible:first-of-type {
  border-top: 1px solid #EEF2F5;
}

.r2-custom-faq-collapsible:hover { background-color: #F4F8FB; }

.r2-custom-faq-collapsible::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: #1A7ABC;
  flex-shrink: 0;
}

.r2-custom-faq-active::after { content: '×'; }

.r2-custom-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #F4F8FB;
}

.r2-custom-faq-content p {
  padding: 16px 20px;
  margin: 0;
  font-size: 14px;
  color: #424B52;
  line-height: 1.65;
}

/* ============================================================
   HEADER CLEARANCE
   The theme uses position:absolute for the header (header_over_bg), so the
   content needs explicit top padding to clear it. At ≤767px the header reverts
   to position:relative, so the extra padding is removed there.
   ============================================================ */

.page-template-page-free-trial .main_wrapper {
  padding-top: 110px;
}

@media only screen and (max-width: 767px) {
  .page-template-page-free-trial .main_wrapper {
    padding-top: 40px;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (max 900px)
   ============================================================ */

@media screen and (max-width: 900px) {
  .ft-hero-title { font-size: 28px; }
  .ft-main-grid { gap: 24px; }
  .ft-how-it-works { padding: 32px 24px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 767px)
   ============================================================ */

@media screen and (max-width: 767px) {
  .ft-page { padding: 0 12px 48px; }

  .ft-main-grid {
    flex-direction: column;
    gap: 24px;
  }

  .ft-left-col,
  .ft-right-col {
    width: 100%;
  }

  /* Right column appears after left column on mobile */
  .ft-right-col { order: 2; }
  .ft-left-col { order: 1; }

  .ft-hero-title { font-size: 24px; }
  .ft-step2-title { font-size: 24px; }

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

  .ft-how-it-works {
    padding: 28px 20px;
  }

  .ft-how-steps {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
    gap: 32px;
  }

  .ft-faq { margin-top: 32px; }

  .free-trial-form:not([data-form-part]) .ft-reservation-card {
    padding: 16px;
  }

  .ft-why-extra { padding: 20px 16px; }

  .ft-customize-card-body { padding: 16px; }

  .ft-step2-info-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .ft-step2-topbar { margin-bottom: 20px; }
}
