/*
 * funtranslate.com — design system
 * Indigo #3C20C4 + Coral #F95454 + Lemon #F5DF4D + Cream #FBF9FF
 * Plus Jakarta Sans (display) + DM Sans (body)
 * Nav: FIXED LEFT SIDEBAR (260px) — unique layout
 * Hero: Full-bleed indigo gradient with bento-grid accent cards
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── TOKENS ───────────────────────────────────────── */
:root {
  --ft-indigo:   #3C20C4;
  --ft-indigo-d: #2A1498;
  --ft-indigo-l: #E9E5FF;
  --ft-violet:   #6045E4;
  --ft-coral:    #F95454;
  --ft-coral-l:  rgba(249,84,84,.12);
  --ft-lemon:    #F5DF4D;
  --ft-cream:    #FBF9FF;
  --ft-pale:     #F0EEFF;
  --ft-dark:     #110E2A;
  --ft-text:     #3A3660;
  --ft-muted:    #8886A0;
  --ft-border:   rgba(60,32,196,.10);
  --ft-border-d: rgba(255,255,255,.12);

  --ft-fh: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
  --ft-fb: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --ft-dock-w: 260px;
  --ft-r4: 4px;
  --ft-r8: 8px;
  --ft-r12: 12px;
  --ft-r16: 16px;
  --ft-r24: 24px;

  --ft-sh1: 0 1px 4px rgba(60,32,196,.07), 0 4px 16px rgba(60,32,196,.05);
  --ft-sh2: 0 4px 20px rgba(60,32,196,.10), 0 8px 32px rgba(60,32,196,.07);
  --ft-sh3: 0 8px 40px rgba(17,14,42,.20);
}

/* ── RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ft-fb);
  font-size: .9375rem;
  line-height: 1.72;
  color: var(--ft-text);
  background: var(--ft-cream);
  overflow-x: hidden;
  display: flex;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: var(--ft-fb); }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--ft-fh); font-weight: 700; line-height: 1.15; color: var(--ft-dark); }
h1 { font-size: clamp(2.375rem, 4.5vw, 4rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.875rem, 3vw, 2.75rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
h4 { font-size: 1.0625rem; font-weight: 700; }
p  { line-height: 1.8; }

/* ── SIDEBAR LAYOUT ───────────────────────────────── */
.ft-dock {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: var(--ft-dock-w); z-index: 800;
  background: #fff;
  border-right: 1.5px solid var(--ft-border);
  display: flex; flex-direction: column;
  overflow-y: auto; overflow-x: hidden;
  transition: transform .3s ease;
}
.ft-core {
  flex: 1; min-width: 0;
  margin-left: var(--ft-dock-w);
  min-height: 100vh;
}

/* Sidebar sections */
.ft-dock-top {
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1.5px solid var(--ft-border);
}
.ft-dock-logo {
  font-family: var(--ft-fh); font-weight: 800;
  font-size: clamp(1.1875rem, 1.8vw, 1.4375rem);
  color: var(--ft-indigo); letter-spacing: -.02em;
  white-space: nowrap;
}
.ft-dock-logo span { color: var(--ft-coral); }
.ft-dock-tagline { font-size: .75rem; color: var(--ft-muted); margin-top: .25rem; }

.ft-dock-nav {
  flex: 1; padding: 1.25rem .875rem;
}
.ft-navlinks { display: flex; flex-direction: column; gap: .25rem; }
.ft-navlink {
  display: block; font-family: var(--ft-fh);
  font-size: 1.0625rem; font-weight: 600;
  color: var(--ft-text); padding: .625rem .875rem;
  border-radius: var(--ft-r8); transition: background .18s, color .18s;
}
.ft-navlink:hover, .ft-navlink.ft-nl-on {
  background: var(--ft-pale); color: var(--ft-indigo);
}
.ft-navlink.ft-nl-on { font-weight: 700; }

.ft-dock-bottom {
  padding: 1.25rem 1.5rem;
  border-top: 1.5px solid var(--ft-border);
}
.ft-dock-cta {
  display: block; text-align: center;
  background: var(--ft-coral); color: #fff;
  font-family: var(--ft-fh); font-size: .9375rem; font-weight: 700;
  padding: .75rem 1rem; border-radius: var(--ft-r8);
  margin-bottom: 1rem; transition: background .2s;
}
.ft-dock-cta:hover { background: #d93f3f; }
.ft-dock-socials { display: flex; gap: .625rem; }
.ft-dock-soc {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--ft-border); color: var(--ft-muted);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s;
}
.ft-dock-soc:hover { border-color: var(--ft-indigo); color: var(--ft-indigo); }

/* Mobile burger inside core */
.ft-burger-bar {
  display: none; position: sticky; top: 0; z-index: 700;
  background: #fff; border-bottom: 1.5px solid var(--ft-border);
  padding: .875rem 1.25rem;
  align-items: center; justify-content: space-between;
}
.ft-burger-logo { font-family: var(--ft-fh); font-size: 1.125rem; font-weight: 800; color: var(--ft-indigo); }
.ft-burger-logo span { color: var(--ft-coral); }
.ft-burger-btn { background: none; border: none; color: var(--ft-dark); padding: .375rem; }
.ft-veil { position: fixed; inset: 0; background: rgba(17,14,42,.5); z-index: 790; display: none; }
.ft-veil.ft-v-on { display: block; }

/* ── LAYOUT WRAP ──────────────────────────────────── */
.ft-shell { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ── REVEAL ───────────────────────────────────────── */
.ft-rise { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.ft-rise.ft-visible { opacity: 1; transform: none; }

/* ── LABELS ───────────────────────────────────────── */
.ft-chip {
  display: inline-flex; align-items: center; gap: .375rem;
  font-family: var(--ft-fh); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--ft-indigo); background: var(--ft-pale);
  padding: .35rem .875rem; border-radius: 100px; margin-bottom: .875rem;
}
.ft-chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ft-coral); }

/* ── BUTTONS ──────────────────────────────────────── */
.ft-btn-coral {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ft-coral); color: #fff;
  font-family: var(--ft-fh); font-size: .9375rem; font-weight: 700;
  padding: .8125rem 1.75rem; border-radius: var(--ft-r4);
  border: none; transition: background .2s, transform .15s; white-space: nowrap;
}
.ft-btn-coral:hover { background: #d93f3f; transform: translateY(-1px); }

.ft-btn-indigo {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ft-indigo); color: #fff;
  font-family: var(--ft-fh); font-size: .9375rem; font-weight: 700;
  padding: .8125rem 1.75rem; border-radius: var(--ft-r4);
  border: none; transition: background .2s; white-space: nowrap;
}
.ft-btn-indigo:hover { background: var(--ft-indigo-d); }

.ft-btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--ft-indigo);
  font-family: var(--ft-fh); font-size: .9375rem; font-weight: 700;
  padding: .8125rem 1.75rem; border-radius: var(--ft-r4);
  border: 1.5px solid var(--ft-indigo); transition: background .2s;
  white-space: nowrap;
}
.ft-btn-outline:hover { background: var(--ft-pale); }

.ft-btn-ghost-lt {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); color: #fff;
  font-family: var(--ft-fh); font-size: .9375rem; font-weight: 700;
  padding: .8125rem 1.75rem; border-radius: var(--ft-r4);
  border: 1.5px solid rgba(255,255,255,.25); transition: background .2s;
  white-space: nowrap;
}
.ft-btn-ghost-lt:hover { background: rgba(255,255,255,.2); }

.ft-btn-sm { padding: .5625rem 1.125rem; font-size: .875rem; }

.ft-text-cta {
  display: inline-flex; align-items: center; gap: .375rem;
  font-family: var(--ft-fh); font-size: .9375rem; font-weight: 700;
  color: var(--ft-indigo); border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.ft-text-cta:hover { border-color: var(--ft-coral); }

/* ── HERO: DIAGONAL GRADIENT FULL-BLEED ───────────── */
#ft-splash {
  background: linear-gradient(135deg, var(--ft-indigo-d) 0%, var(--ft-indigo) 55%, #5537E8 100%);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4.5rem);
  position: relative; overflow: hidden;
}
#ft-splash::before {
  content: ''; position: absolute;
  top: -40%; right: -10%; width: 600px; height: 600px;
  border-radius: 50%; background: rgba(245,223,77,.06);
  pointer-events: none;
}
#ft-splash::after {
  content: ''; position: absolute;
  bottom: -20%; left: 5%; width: 400px; height: 400px;
  border-radius: 50%; background: rgba(249,84,84,.07);
  pointer-events: none;
}
.ft-splash-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.ft-splash-copy h1 {
  color: #fff; margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}
.ft-splash-copy h1 em { font-style: normal; color: var(--ft-lemon); }
.ft-splash-sub {
  color: rgba(255,255,255,.6); max-width: 46ch; margin-bottom: 2rem;
  font-size: clamp(1rem, 1.8vw, 1.125rem); line-height: 1.75;
}
.ft-splash-acts { display: flex; gap: .875rem; flex-wrap: wrap; }
.ft-splash-visual { display: flex; flex-direction: column; gap: 1rem; }

/* Bento mini-cards inside hero right column */
.ft-splash-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ft-bento-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--ft-r12); padding: 1.25rem;
  backdrop-filter: blur(4px);
}
.ft-bento-box.ft-bb-coral { background: rgba(249,84,84,.2); border-color: rgba(249,84,84,.3); }
.ft-bento-box.ft-bb-lemon { background: rgba(245,223,77,.15); border-color: rgba(245,223,77,.25); }
.ft-bb-n { font-family: var(--ft-fh); font-size: 1.875rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: .25rem; }
.ft-bb-l { font-size: .8125rem; color: rgba(255,255,255,.5); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.ft-splash-hero-img { border-radius: var(--ft-r16); overflow: hidden; aspect-ratio: 4/3; background: rgba(255,255,255,.05); }
.ft-splash-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }

/* ── TICKER ───────────────────────────────────────── */
.ft-ticker-band {
  background: var(--ft-lemon); overflow: hidden; padding: .75rem 0;
}
.ft-ticker-track {
  display: flex; gap: 0; width: max-content;
  animation: ft-roll 22s linear infinite;
}
.ft-ticker-track:hover { animation-play-state: paused; }
@keyframes ft-roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ft-ticker-item {
  display: flex; align-items: center; gap: 0;
  font-family: var(--ft-fh); font-size: .8125rem; font-weight: 800;
  color: var(--ft-dark); text-transform: uppercase; letter-spacing: .08em;
  padding: 0 1.5rem; white-space: nowrap;
}
.ft-ticker-item::after { content: '—'; margin: 0 .25rem; opacity: .3; }

/* ── BAND (SECTION) ───────────────────────────────── */
.ft-band { padding: clamp(4rem, 8vw, 7rem) 0; }
.ft-band-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.ft-band-pale  { background: var(--ft-pale); }
.ft-band-dark  { background: var(--ft-dark); }
.ft-band-cream { background: var(--ft-cream); }
.ft-band-indigo{ background: var(--ft-indigo); }

/* Section headers */
.ft-sh { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.ft-sh h2 { max-width: 20ch; }
.ft-sh p { color: var(--ft-muted); max-width: 54ch; margin-top: .875rem; }
.ft-sh-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }

/* ── SERVICES (ft-wheel) ──────────────────────────── */
.ft-wheel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ft-spoke {
  background: #fff; border: 1.5px solid var(--ft-border);
  border-radius: var(--ft-r16); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.ft-spoke:hover { box-shadow: var(--ft-sh2); transform: translateY(-3px); }
.ft-spoke-img { aspect-ratio: 16/9; background: var(--ft-pale); overflow: hidden; }
.ft-spoke-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ft-spoke:hover .ft-spoke-img img { transform: scale(1.04); }
.ft-spoke-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.ft-spoke-ico {
  width: 40px; height: 40px; border-radius: var(--ft-r8);
  background: var(--ft-pale); color: var(--ft-indigo);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; transition: background .2s;
}
.ft-spoke:hover .ft-spoke-ico { background: var(--ft-indigo); color: #fff; }
.ft-spoke-name { font-family: var(--ft-fh); font-size: 1.0625rem; font-weight: 700; margin-bottom: .5rem; }
.ft-spoke-desc { font-size: .875rem; color: var(--ft-muted); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.ft-spoke-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1.5px solid var(--ft-border); }
.ft-spoke-price { font-family: var(--ft-fh); font-size: 1rem; font-weight: 700; color: var(--ft-indigo); }
.ft-spoke-arr { color: var(--ft-muted); transition: color .18s, transform .2s; }
.ft-spoke:hover .ft-spoke-arr { color: var(--ft-coral); transform: translate(2px,-2px); }

/* ── PROCESS VERTICAL LADDER ──────────────────────── */
.ft-ladder { position: relative; }
.ft-ladder::before {
  content: ''; position: absolute;
  left: 28px; top: 36px; bottom: 36px; width: 2px;
  background: linear-gradient(to bottom, var(--ft-indigo) 0%, rgba(60,32,196,.1) 100%);
}
.ft-rung {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 1.5rem; align-items: flex-start;
  padding-bottom: 2.5rem; position: relative;
}
.ft-rung:last-child { padding-bottom: 0; }
.ft-rung-bubble {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ft-indigo); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ft-fh); font-size: 1rem; font-weight: 800;
  flex-shrink: 0; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--ft-pale);
}
.ft-rung-content { padding-top: .875rem; }
.ft-rung-h { font-family: var(--ft-fh); font-size: 1.0625rem; font-weight: 700; color: var(--ft-dark); margin-bottom: .375rem; }
.ft-rung-b { font-size: .9375rem; color: var(--ft-muted); line-height: 1.75; }

/* ── TESTIMONIALS (ft-echo) ───────────────────────── */
.ft-echo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ft-voice-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--ft-r16); padding: 2rem;
}
.ft-voice-stars { display: flex; gap: .25rem; color: var(--ft-lemon); margin-bottom: 1rem; }
.ft-voice-lang {
  display: inline-flex; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06); padding: .25rem .75rem; border-radius: 100px;
  margin-bottom: .875rem; border: 1px solid rgba(255,255,255,.1);
  font-family: var(--ft-fh);
}
.ft-voice-q {
  font-size: 1rem; font-style: italic; color: rgba(255,255,255,.75);
  line-height: 1.65; margin-bottom: 1.25rem;
}
.ft-voice-name { font-weight: 600; font-size: .875rem; color: #fff; font-family: var(--ft-fh); }
.ft-voice-role { font-size: .8125rem; color: rgba(255,255,255,.35); }

/* ── WHY US (ft-pillars) ──────────────────────────── */
.ft-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ft-pillar {
  background: #fff; border: 1.5px solid var(--ft-border); border-radius: var(--ft-r12);
  padding: 1.75rem; border-top: 4px solid var(--ft-coral);
}
.ft-pillar h4 { font-family: var(--ft-fh); font-size: 1.0625rem; margin-bottom: .625rem; }
.ft-pillar p { font-size: .875rem; color: var(--ft-muted); line-height: 1.75; margin: 0; }

/* ── CASE STUDIES ─────────────────────────────────── */
.ft-case-tabs { display: flex; gap: .5rem; margin-bottom: 2.5rem; }
.ft-case-tab {
  padding: .75rem 1.5rem; font-family: var(--ft-fh); font-size: .875rem; font-weight: 700;
  background: none; border: 1.5px solid var(--ft-border);
  border-radius: 100px; cursor: pointer; color: var(--ft-muted);
  transition: all .2s;
}
.ft-case-tab.ft-tab-on { background: var(--ft-indigo); color: #fff; border-color: var(--ft-indigo); }
.ft-case-panel { display: none; }
.ft-case-panel.ft-panel-on { display: grid; grid-template-columns: 1fr 380px; gap: 3.5rem; align-items: start; }
.ft-case-badge {
  display: inline-flex; gap: .5rem; align-items: center;
  background: var(--ft-pale); color: var(--ft-indigo);
  font-size: .8125rem; font-weight: 700; font-family: var(--ft-fh);
  text-transform: uppercase; letter-spacing: .08em;
  padding: .4rem .875rem; border-radius: 100px; margin-bottom: 1rem;
}
.ft-case-panel h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: .75rem; }
.ft-case-lbl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ft-indigo); font-family: var(--ft-fh); margin-bottom: .5rem; }
.ft-case-panel p { color: var(--ft-muted); font-size: .9375rem; margin-bottom: 1rem; line-height: 1.82; }
.ft-case-metric {
  background: var(--ft-indigo); border-radius: var(--ft-r12); padding: 2rem;
  text-align: center; margin-bottom: 1.25rem;
}
.ft-case-metric-n { font-family: var(--ft-fh); font-size: 3rem; font-weight: 800; color: var(--ft-lemon); line-height: 1; }
.ft-case-metric-l { font-size: .8125rem; color: rgba(255,255,255,.4); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-top: .375rem; }
.ft-case-img { border-radius: var(--ft-r12); overflow: hidden; aspect-ratio: 4/3; background: var(--ft-pale); }
.ft-case-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── PRICING (ft-tiers) ───────────────────────────── */
.ft-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ft-tier {
  border: 1.5px solid var(--ft-border); border-radius: var(--ft-r16);
  padding: 2rem; background: #fff; position: relative;
  transition: box-shadow .25s;
}
.ft-tier:hover { box-shadow: var(--ft-sh1); }
.ft-tier.ft-tier-on { background: var(--ft-indigo); border-color: var(--ft-indigo); }
.ft-tier-crown {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--ft-coral); color: #fff; font-family: var(--ft-fh);
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem 1rem; border-radius: 100px; white-space: nowrap;
}
.ft-tier-words {
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ft-coral); font-family: var(--ft-fh); margin-bottom: .375rem;
}
.ft-tier.ft-tier-on .ft-tier-words { color: rgba(255,255,255,.45); }
.ft-tier-name { font-family: var(--ft-fh); font-size: 1.5rem; font-weight: 800; color: var(--ft-dark); margin-bottom: 1rem; }
.ft-tier.ft-tier-on .ft-tier-name { color: #fff; }
.ft-tier-price { font-family: var(--ft-fh); font-size: 2.5rem; font-weight: 800; color: var(--ft-indigo); line-height: 1; margin-bottom: .375rem; }
.ft-tier.ft-tier-on .ft-tier-price { color: var(--ft-lemon); }
.ft-tier-period { font-size: .8125rem; color: var(--ft-muted); margin-bottom: 1.75rem; }
.ft-tier.ft-tier-on .ft-tier-period { color: rgba(255,255,255,.35); }
.ft-tier-feats { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 2rem; }
.ft-tier-feat { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--ft-text); }
.ft-tier.ft-tier-on .ft-tier-feat { color: rgba(255,255,255,.75); }
.ft-tier-ico { color: var(--ft-indigo); flex-shrink: 0; margin-top: 1px; }
.ft-tier.ft-tier-on .ft-tier-ico { color: rgba(255,255,255,.45); }
.ft-tier-cta { width: 100%; justify-content: center; }

/* ── PACKAGE BUILDER ──────────────────────────────── */
.ft-builder-grid { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.ft-builder-step { background: #fff; border: 1.5px solid var(--ft-border); border-radius: var(--ft-r16); padding: 2rem; margin-bottom: 1.25rem; }
.ft-bs-hd { font-family: var(--ft-fb); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ft-muted); margin-bottom: 1rem; padding-bottom: .625rem; border-bottom: 1.5px solid var(--ft-border); }
.ft-pkg-pick {
  border: 1.5px solid var(--ft-border); border-radius: var(--ft-r8);
  padding: 1rem 1.25rem; cursor: pointer; margin-bottom: .625rem;
  display: flex; align-items: center; gap: 1rem;
  transition: border-color .2s, background .2s;
}
.ft-pkg-pick:hover { border-color: var(--ft-indigo); background: var(--ft-pale); }
.ft-pkg-pick.ft-picked { border-color: var(--ft-indigo); background: var(--ft-pale); }
.ft-pkg-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--ft-border); flex-shrink: 0;
  transition: all .2s;
}
.ft-pkg-pick.ft-picked .ft-pkg-radio { border-color: var(--ft-indigo); background: var(--ft-indigo); box-shadow: inset 0 0 0 4px #fff; }
.ft-pkg-nm  { font-weight: 700; font-size: .9375rem; color: var(--ft-dark); font-family: var(--ft-fh); }
.ft-pkg-tg  { font-size: .8125rem; color: var(--ft-muted); }
.ft-pkg-pr  { margin-left: auto; font-family: var(--ft-fh); font-size: 1.125rem; font-weight: 800; color: var(--ft-indigo); }

.ft-add-list { display: flex; flex-direction: column; gap: .5rem; }
.ft-add-item {
  display: flex; align-items: center; gap: .875rem; padding: .875rem 1rem;
  border: 1.5px solid var(--ft-border); border-radius: var(--ft-r8);
  cursor: pointer; transition: all .2s;
}
.ft-add-item:hover { border-color: var(--ft-indigo); background: var(--ft-pale); }
.ft-add-item.ft-added { border-color: var(--ft-indigo); background: var(--ft-pale); }
.ft-add-chk {
  width: 20px; height: 20px; border: 1.5px solid var(--ft-border); border-radius: 4px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; background: transparent; transition: all .18s;
}
.ft-add-item.ft-added .ft-add-chk { background: var(--ft-indigo); border-color: var(--ft-indigo); }
.ft-add-nm  { flex: 1; font-size: .9375rem; font-weight: 500; color: var(--ft-dark); }
.ft-add-pr  { font-family: var(--ft-fh); font-size: 1rem; font-weight: 700; color: var(--ft-muted); }

.ft-hrs-wrap { display: flex; align-items: center; gap: 1rem; }
.ft-hrs-range { flex: 1; accent-color: var(--ft-indigo); }
.ft-hrs-show  { font-family: var(--ft-fh); font-size: 1.25rem; font-weight: 800; color: var(--ft-indigo); min-width: 5rem; }

/* Summary panel */
.ft-summary-box {
  background: var(--ft-indigo); border-radius: var(--ft-r16); padding: 2rem;
  position: sticky; top: 1.5rem;
}
.ft-sum-hd { font-family: var(--ft-fh); font-size: 1.125rem; font-weight: 800; color: #fff; margin-bottom: 1.25rem; }
.ft-sum-rows { min-height: 60px; margin-bottom: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.ft-sum-row { display: flex; justify-content: space-between; gap: 1rem; }
.ft-sum-rk { font-size: .875rem; color: rgba(255,255,255,.5); }
.ft-sum-rv { font-size: .875rem; font-weight: 700; color: #fff; white-space: nowrap; }
.ft-sum-nil { font-size: .875rem; font-style: italic; color: rgba(255,255,255,.25); }
.ft-sum-div { border-top: 1px solid rgba(255,255,255,.12); margin: 1rem 0; }
.ft-sum-total { display: flex; justify-content: space-between; align-items: center; }
.ft-sum-tl { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.35); }
.ft-sum-tv { font-family: var(--ft-fh); font-size: 2rem; font-weight: 800; color: var(--ft-lemon); }
.ft-sum-cta { margin-top: 1.25rem; width: 100%; justify-content: center; background: var(--ft-coral); }
.ft-sum-cta:hover { background: #d93f3f; transform: none; }
.ft-sum-note { font-size: .75rem; color: rgba(255,255,255,.25); text-align: center; margin-top: .75rem; line-height: 1.55; }

/* ── CHECKOUT ─────────────────────────────────────── */
.ft-checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.ft-chk-form { background: #fff; border: 1.5px solid var(--ft-border); border-radius: var(--ft-r16); padding: 2.5rem; }
.ft-order-sidebar { background: var(--ft-indigo); border-radius: var(--ft-r16); padding: 2rem; position: sticky; top: 1.5rem; }
.ft-ord-hd { font-family: var(--ft-fh); font-size: 1.125rem; font-weight: 800; color: #fff; margin-bottom: 1.25rem; }
.ft-ord-row { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .5rem; font-size: .875rem; }
.ft-ord-k { color: rgba(255,255,255,.45); }
.ft-ord-v { color: #fff; font-weight: 700; text-align: right; }
.ft-ord-div { border-top: 1px solid rgba(255,255,255,.12); margin: 1rem 0; }
.ft-ord-total { display: flex; justify-content: space-between; align-items: center; }
.ft-ord-tl { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.3); }
.ft-ord-tv { font-family: var(--ft-fh); font-size: 2rem; font-weight: 800; color: var(--ft-lemon); }
.ft-ord-note { font-size: .8125rem; color: rgba(255,255,255,.3); margin-top: 1rem; line-height: 1.65; }

.ft-form-field { margin-bottom: 1.25rem; }
.ft-form-field label { display: block; font-size: .875rem; font-weight: 600; color: var(--ft-dark); margin-bottom: .4rem; font-family: var(--ft-fh); }
.ft-form-field input, .ft-form-field select, .ft-form-field textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--ft-border); border-radius: var(--ft-r8);
  font-family: var(--ft-fb); font-size: .9375rem; color: var(--ft-dark);
  background: #fff; transition: border-color .2s; -webkit-appearance: none;
}
.ft-form-field input:focus, .ft-form-field select:focus, .ft-form-field textarea:focus {
  outline: none; border-color: var(--ft-indigo);
  box-shadow: 0 0 0 3px var(--ft-indigo-l);
}
.ft-field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ft-tos-wrap { display: flex; align-items: flex-start; gap: .75rem; margin: 1.5rem 0; }
.ft-tos-wrap input { flex-shrink: 0; margin-top: 3px; accent-color: var(--ft-indigo); }
.ft-tos-wrap label { font-size: .875rem; color: var(--ft-muted); line-height: 1.6; }
.ft-tos-wrap a { color: var(--ft-indigo); text-decoration: underline; }

/* ── PAGE HEADERS ─────────────────────────────────── */
.ft-page-head {
  background: linear-gradient(135deg, var(--ft-indigo-d) 0%, var(--ft-indigo) 100%);
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
}
.ft-page-head h1 { color: #fff; }
.ft-page-head .ft-chip { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); margin-bottom: 1rem; justify-content: center; }
.ft-page-head .ft-chip .ft-chip-dot { background: var(--ft-lemon); }
.ft-page-head-sub { color: rgba(255,255,255,.5); max-width: 54ch; margin: .875rem auto 0; font-size: clamp(.9375rem, 1.8vw, 1.0625rem); }

/* Service page */
.ft-svc-head {
  background: linear-gradient(135deg, var(--ft-indigo-d) 0%, #5537E8 100%);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
  text-align: center; position: relative; overflow: hidden;
}
.ft-svc-head::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--ft-cream); clip-path: ellipse(55% 100% at 50% 100%); }
.ft-svc-head h1 { color: #fff; position: relative; z-index: 1; }
.ft-svc-head .ft-chip { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); justify-content: center; }
.ft-svc-head-sub { color: rgba(255,255,255,.5); max-width: 58ch; margin: .875rem auto 0; position: relative; z-index: 1; }
.ft-svc-pg { max-width: 820px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 3vw, 2rem); }
.ft-svc-img { border-radius: var(--ft-r12); overflow: hidden; aspect-ratio: 16/9; background: var(--ft-pale); margin-bottom: 2.5rem; }
.ft-svc-img img { width: 100%; height: 100%; object-fit: cover; }
.ft-svc-body p { color: var(--ft-muted); margin-bottom: 1.25rem; font-size: .9375rem; line-height: 1.85; }
.ft-feat-box { background: var(--ft-pale); border-radius: var(--ft-r12); padding: 1.75rem; margin-top: 2rem; }
.ft-feat-hd { font-family: var(--ft-fb); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--ft-muted); margin-bottom: 1rem; }
.ft-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .625rem; }
.ft-feat-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--ft-text); }
.ft-feat-ico { color: var(--ft-indigo); flex-shrink: 0; margin-top: 1px; }
.ft-svc-order-bar { background: var(--ft-indigo); border-radius: var(--ft-r16); padding: 2.5rem; text-align: center; margin-top: 3rem; }
.ft-sob-from { font-size: .8125rem; color: rgba(255,255,255,.35); font-family: var(--ft-fh); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.ft-sob-price { font-family: var(--ft-fh); font-size: 2.5rem; font-weight: 800; color: #fff; }
.ft-sob-note { font-size: .875rem; color: rgba(255,255,255,.35); margin-bottom: 1.75rem; }
.ft-sob-acts { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.ft-svc-related { margin-top: 3rem; }
.ft-svc-related h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.ft-svc-rel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }
.ft-svc-rel-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: .875rem 1rem; border-radius: var(--ft-r8); background: var(--ft-pale);
  border: 1.5px solid transparent; font-size: .875rem; font-weight: 500; color: var(--ft-dark);
  transition: border-color .18s;
}
.ft-svc-rel-card:hover { border-color: var(--ft-indigo); }
.ft-svc-rel-arr { color: var(--ft-muted); }

/* ── FAQ (ft-ask) ─────────────────────────────────── */
.ft-ask { max-width: 760px; margin: 0 auto; }
.ft-ask-2col { columns: 2; gap: 1.5rem; }
.ft-qrow { break-inside: avoid; margin-bottom: 1px; }
.ft-qrow-inner { border-bottom: 1.5px solid var(--ft-border); }
.ft-q-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0; background: none; border: none; text-align: left; cursor: pointer;
}
.ft-q-text { font-family: var(--ft-fh); font-size: 1rem; font-weight: 700; color: var(--ft-dark); flex: 1; }
.ft-q-ico { color: var(--ft-muted); flex-shrink: 0; transition: transform .25s; }
.ft-qrow.ft-q-open .ft-q-ico { transform: rotate(180deg); }
.ft-q-ans { display: none; padding-bottom: 1.25rem; }
.ft-qrow.ft-q-open .ft-q-ans { display: block; }
.ft-q-ans p { font-size: .9375rem; color: var(--ft-muted); line-height: 1.8; }

/* ── CONTACT ──────────────────────────────────────── */
.ft-ct-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.ft-ct-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.ft-ct-item { display: flex; align-items: flex-start; gap: 1rem; }
.ft-ct-ico { width: 44px; height: 44px; border-radius: 50%; background: var(--ft-pale); color: var(--ft-indigo); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ft-ct-lbl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ft-muted); font-family: var(--ft-fh); }
.ft-ct-val { font-size: .9375rem; font-weight: 500; color: var(--ft-dark); margin-top: .125rem; }
.ft-ct-form-box { background: #fff; border: 1.5px solid var(--ft-border); border-radius: var(--ft-r16); padding: 2rem; }

/* ── PAYMENT PAGES ────────────────────────────────── */
.ft-confirm { min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.ft-confirm-inner { max-width: 520px; text-align: center; padding: clamp(2rem, 5vw, 4rem); }
.ft-confirm-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--ft-pale); color: var(--ft-indigo); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; }
.ft-confirm-steps { text-align: left; margin: 2rem 0; display: flex; flex-direction: column; gap: .875rem; }
.ft-confirm-step { display: flex; align-items: flex-start; gap: 1rem; }
.ft-confirm-step-n { width: 32px; height: 32px; border-radius: 50%; background: var(--ft-indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--ft-fh); font-size: .875rem; font-weight: 800; flex-shrink: 0; }
.ft-confirm-step p { font-size: .9rem; color: var(--ft-muted); line-height: 1.65; }
.ft-confirm-btns { display: flex; gap: .875rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }

/* ── LEGAL ────────────────────────────────────────── */
.ft-legal { max-width: 840px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 3vw, 2rem); }
.ft-legal h1 { text-align: center; margin-bottom: .5rem; }
.ft-legal-date { text-align: center; font-size: .875rem; color: var(--ft-muted); margin-bottom: 3rem; }
.ft-legal h2 { font-size: 1.25rem; margin: 2.5rem 0 .75rem; color: var(--ft-indigo); font-family: var(--ft-fh); }
.ft-legal h3 { font-size: 1.0625rem; margin: 1.75rem 0 .5rem; }
.ft-legal p  { color: var(--ft-text); margin-bottom: 1rem; line-height: 1.85; }
.ft-legal ul, .ft-legal ol { margin: .875rem 0 1rem 1.5rem; }
.ft-legal li { color: var(--ft-text); margin-bottom: .5rem; line-height: 1.75; }
.ft-legal ul li { list-style: disc; }
.ft-legal ol li { list-style: decimal; }
.ft-legal code { font-family: monospace; font-size: .875rem; background: var(--ft-pale); padding: .125rem .375rem; border-radius: 3px; }

/* ── COOKIE BANNER ────────────────────────────────── */
.ft-cookie {
  position: fixed; bottom: 1.5rem; left: calc(var(--ft-dock-w) + 1.5rem);
  right: 1.5rem; z-index: 9000;
  background: var(--ft-dark); border-radius: var(--ft-r12);
  padding: 1.125rem 1.5rem; display: flex; align-items: center;
  gap: 1.5rem; flex-wrap: wrap; box-shadow: var(--ft-sh3);
  max-width: 700px; opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.ft-cookie.ft-ck-show { opacity: 1; visibility: visible; }
.ft-ck-txt { font-size: .875rem; color: rgba(255,255,255,.6); flex: 1; min-width: 180px; }
.ft-ck-txt a { color: var(--ft-lemon); text-decoration: underline; }
.ft-ck-btns { display: flex; gap: .625rem; flex-shrink: 0; }
.ft-ck-ok  { background: var(--ft-coral); color: #fff; border: none; font-family: var(--ft-fh); font-size: .875rem; font-weight: 700; padding: .5rem 1.125rem; border-radius: var(--ft-r4); cursor: pointer; }
.ft-ck-no  { background: transparent; color: rgba(255,255,255,.4); border: 1.5px solid rgba(255,255,255,.15); font-family: var(--ft-fh); font-size: .875rem; font-weight: 700; padding: .5rem 1.125rem; border-radius: var(--ft-r4); cursor: pointer; }

/* ── CHAT WIDGET ──────────────────────────────────── */
.ft-chat-btn {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 8888;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--ft-coral); color: #fff;
  border: none; cursor: pointer; box-shadow: var(--ft-sh2);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.ft-chat-btn:hover { transform: scale(1.1); }
.ft-chat-box {
  position: fixed; bottom: 5.5rem; right: 1.75rem; z-index: 8888;
  width: 320px; background: #fff; border-radius: var(--ft-r16);
  box-shadow: var(--ft-sh3); border: 1.5px solid var(--ft-border);
  display: none; flex-direction: column; overflow: hidden;
}
.ft-chat-box.ft-chat-open { display: flex; }
.ft-chat-top { background: var(--ft-indigo); padding: 1rem 1.25rem; display: flex; align-items: center; gap: .75rem; }
.ft-chat-av { width: 36px; height: 36px; border-radius: 50%; background: var(--ft-coral); display: flex; align-items: center; justify-content: center; font-family: var(--ft-fh); font-size: .8125rem; font-weight: 800; color: #fff; }
.ft-chat-nm { color: #fff; font-weight: 700; font-size: .9375rem; font-family: var(--ft-fh); }
.ft-chat-st { color: rgba(255,255,255,.45); font-size: .75rem; }
.ft-chat-msgs { padding: 1rem; flex: 1; max-height: 240px; overflow-y: auto; display: flex; flex-direction: column; gap: .625rem; }
.ft-msg { max-width: 80%; padding: .625rem .875rem; border-radius: var(--ft-r8); font-size: .875rem; line-height: 1.5; }
.ft-msg.ft-bot { background: var(--ft-pale); color: var(--ft-dark); align-self: flex-start; border-bottom-left-radius: 3px; }
.ft-msg.ft-usr { background: var(--ft-indigo); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.ft-chat-input-row { display: flex; gap: .5rem; padding: .75rem 1rem; border-top: 1.5px solid var(--ft-border); }
.ft-chat-inp { flex: 1; border: 1.5px solid var(--ft-border); border-radius: var(--ft-r8); padding: .5rem .75rem; font-family: var(--ft-fb); font-size: .875rem; background: var(--ft-pale); }
.ft-chat-go { background: var(--ft-coral); color: #fff; border: none; border-radius: var(--ft-r8); padding: .5rem .75rem; cursor: pointer; }

/* ── FOOTER (ft-ground) ───────────────────────────── */
.ft-ground {
  background: var(--ft-dark); color: rgba(255,255,255,.5);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
}
.ft-ground-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.ft-ground-logo { font-family: var(--ft-fh); font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 800; color: #fff; margin-bottom: .75rem; }
.ft-ground-logo span { color: var(--ft-coral); }
.ft-ground-tagline { font-size: .875rem; line-height: 1.7; max-width: 34ch; margin-bottom: 1.25rem; }
.ft-ground-socials { display: flex; gap: .625rem; }
.ft-ground-soc { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.ft-ground-soc:hover { border-color: var(--ft-coral); color: var(--ft-coral); }
.ft-ground-col-hd { font-family: var(--ft-fh); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.25); margin-bottom: 1rem; }
.ft-ground-col a { display: block; font-size: .875rem; margin-bottom: .5rem; color: rgba(255,255,255,.5); transition: color .18s; }
.ft-ground-col a:hover { color: #fff; }
.ft-ground-bar { border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8125rem; color: rgba(255,255,255,.2); }
.ft-ground-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.ft-ground-legal a { color: rgba(255,255,255,.25); transition: color .18s; }
.ft-ground-legal a:hover { color: #fff; }

/* ── UTILS ────────────────────────────────────────── */
.ft-tc  { text-align: center; }
.ft-mt1 { margin-top: .875rem; }
.ft-mt2 { margin-top: 1.75rem; }
.ft-mt3 { margin-top: 3rem; }
.ft-flexc { display: flex; align-items: center; justify-content: center; gap: .875rem; flex-wrap: wrap; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
  .ft-case-panel.ft-panel-on { grid-template-columns: 1fr; }
  .ft-ground-grid { grid-template-columns: 1fr 1fr; }
  .ft-wheel { grid-template-columns: 1fr 1fr; }
  .ft-tiers { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .ft-echo-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .ft-dock { transform: translateX(-100%); }
  .ft-core { margin-left: 0; }
  .ft-burger-bar { display: flex; }
  .ft-dock.ft-open { transform: none; }
  .ft-splash-inner { grid-template-columns: 1fr; }
  .ft-splash-bento { display: none; }
  .ft-builder-grid { grid-template-columns: 1fr; }
  .ft-summary-box { position: static; }
  .ft-checkout-grid { grid-template-columns: 1fr; }
  .ft-order-sidebar { position: static; }
  .ft-ct-wrap { grid-template-columns: 1fr; }
  .ft-ask-2col { columns: 1; }
  .ft-cookie { left: 1.5rem; }
  .ft-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ft-wheel { grid-template-columns: 1fr; }
  .ft-echo-row { grid-template-columns: 1fr; }
  .ft-ground-grid { grid-template-columns: 1fr; }
  .ft-field-pair { grid-template-columns: 1fr; }
  .ft-feat-grid { grid-template-columns: 1fr; }
  .ft-ground-bar { flex-direction: column; text-align: center; }
  .ft-pillars { grid-template-columns: 1fr; }
  .ft-svc-rel-grid { grid-template-columns: 1fr; }
  .ft-chat-box { width: calc(100vw - 3.5rem); right: 1rem; }
}
