/* flowing-translations.com -- style.css */
/* Design: Warm teal + coral accent + sandy cream | Sticky mega-menu | Asymmetric photo-collage hero */
/* Fonts: Source Serif 4 (headings) + DM Sans (body) */
/* CSS prefix: flt- */

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

/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  --flt-teal:    #1A5F6F;
  --flt-teal2:   #0E3D49;
  --flt-teal-lt: #2A8A9E;
  --flt-coral:   #E8715A;
  --flt-coral2:  #C9533D;
  --flt-sand:    #FAF4EC;
  --flt-sand2:   #F0E6D8;
  --flt-cream:   #FEFCF8;
  --flt-ink:     #1A1A2E;
  --flt-slate:   #2C3E50;
  --flt-muted:   #6B7A8D;
  --flt-rule:    #E4DDD5;
  --flt-white:   #FFFFFF;
  --flt-purple:  #5C4A7A;
  --flt-navy:    #2C4A6A;
  --flt-red:     #B83030;

  --flt-h-font: 'Source Serif 4', Georgia, serif;
  --flt-b-font: 'DM Sans', system-ui, sans-serif;

  --flt-r:    8px;
  --flt-r-lg: 16px;
  --flt-r-xl: 24px;
  --flt-r-pill: 100px;

  --flt-sh-sm: 0 2px 12px rgba(26,95,111,.08);
  --flt-sh:    0 6px 28px rgba(26,95,111,.12);
  --flt-sh-lg: 0 16px 56px rgba(26,95,111,.18);
  --flt-sh-warm: 0 6px 28px rgba(232,113,90,.2);

  --flt-max: 1200px;
  --flt-pad: 1.5rem;
  --flt-ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--flt-b-font);
  font-size: 1rem;
  line-height: 1.68;
  color: var(--flt-ink);
  background: var(--flt-cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; outline: none; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.flt-wrap {
  max-width: var(--flt-max);
  margin: 0 auto;
  padding: 0 var(--flt-pad);
}
.flt-eyebrow {
  font-family: var(--flt-b-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flt-coral);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.flt-eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--flt-coral);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--flt-h-font);
  line-height: 1.18;
  color: var(--flt-ink);
}
h1 { font-size: clamp(2.8rem, 5vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3vw, 2.9rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.65rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--flt-muted); line-height: 1.76; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.flt-cta, .flt-cta-ghost, .flt-cta-outline, .flt-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--flt-b-font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.9rem;
  border-radius: var(--flt-r-pill);
  transition: var(--flt-ease);
  cursor: pointer;
  white-space: nowrap;
}
.flt-cta {
  background: var(--flt-coral);
  color: var(--flt-white);
  border: 2px solid var(--flt-coral);
}
.flt-cta:hover { background: var(--flt-coral2); border-color: var(--flt-coral2); transform: translateY(-2px); box-shadow: var(--flt-sh-warm); }
.flt-cta-ghost {
  background: var(--flt-teal);
  color: var(--flt-white);
  border: 2px solid var(--flt-teal);
}
.flt-cta-ghost:hover { background: var(--flt-teal2); border-color: var(--flt-teal2); transform: translateY(-2px); box-shadow: var(--flt-sh); }
.flt-cta-outline {
  background: transparent;
  color: var(--flt-teal);
  border: 2px solid var(--flt-teal);
}
.flt-cta-outline:hover { background: var(--flt-teal); color: var(--flt-white); }
.flt-cta-white {
  background: var(--flt-white);
  color: var(--flt-teal);
  border: 2px solid var(--flt-white);
}
.flt-cta-white:hover { background: var(--flt-sand); }
.flt-cta svg, .flt-cta-ghost svg, .flt-cta-outline svg, .flt-cta-white svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── STICKY MEGA-MENU NAV ────────────────────────────────────── */
.flt-navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--flt-white);
  border-bottom: 1px solid var(--flt-rule);
  transition: box-shadow var(--flt-ease);
}
.flt-navbar.flt-scrolled { box-shadow: var(--flt-sh); }
.flt-nav-inner {
  max-width: var(--flt-max);
  margin: 0 auto;
  padding: 0 var(--flt-pad);
  display: flex;
  align-items: center;
  height: 70px;
  gap: 0.5rem;
}
.flt-nav-logo {
  font-family: var(--flt-h-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--flt-teal);
  letter-spacing: -0.03em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 1rem;
}
.flt-nav-logo span { color: var(--flt-coral); }
.flt-nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
}
.flt-nav-item {
  position: relative;
}
.flt-nav-link {
  font-family: var(--flt-b-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--flt-slate);
  padding: 0.45rem 0.85rem;
  border-radius: var(--flt-r);
  transition: color var(--flt-ease), background var(--flt-ease);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.flt-nav-link:hover, .flt-nav-link.flt-active { color: var(--flt-teal); background: var(--flt-sand); }
.flt-nav-link svg { width: 12px; height: 12px; transition: transform var(--flt-ease); }
.flt-nav-item:hover .flt-nav-link svg { transform: rotate(180deg); }
.flt-nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}
/* Mega menu dropdown */
.flt-mega {
  position: absolute;
  top: calc(100% + 4px);
  left: -1rem;
  min-width: 660px;
  background: var(--flt-white);
  border: 1px solid var(--flt-rule);
  border-radius: var(--flt-r-lg);
  box-shadow: var(--flt-sh-lg);
  padding: 1.5rem;
  display: none;
  z-index: 200;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.flt-nav-item:hover .flt-mega { display: grid; }
.flt-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--flt-r);
  text-decoration: none;
  transition: background var(--flt-ease);
}
.flt-mega-item:hover { background: var(--flt-sand); }
.flt-mega-ico {
  width: 36px; height: 36px;
  border-radius: var(--flt-r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.flt-mega-ico img { width: 18px; height: 18px; }
.flt-mega-n { font-weight: 700; color: var(--flt-ink); font-family: var(--flt-b-font); font-size: 0.88rem; margin-bottom: 0.2rem; }
.flt-mega-d { font-size: 0.78rem; color: var(--flt-muted); line-height: 1.45; }
.flt-mega-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--flt-rule);
}
.flt-mega-footer-txt { font-size: 0.8rem; color: var(--flt-muted); }
/* Simple 1-level submenu */
.flt-subnav {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: var(--flt-white);
  border: 1px solid var(--flt-rule);
  border-radius: var(--flt-r-lg);
  box-shadow: var(--flt-sh);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  z-index: 200;
}
.flt-nav-item:hover .flt-subnav { display: flex; }
.flt-subnav a {
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--flt-slate);
  border-radius: var(--flt-r);
  transition: background var(--flt-ease), color var(--flt-ease);
}
.flt-subnav a:hover { background: var(--flt-sand); color: var(--flt-teal); }
/* Mobile burger */
.flt-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
}
.flt-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--flt-teal);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.flt-burger.flt-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.flt-burger.flt-open span:nth-child(2) { opacity: 0; }
.flt-burger.flt-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.flt-mobile-drawer {
  display: none;
  flex-direction: column;
  background: var(--flt-white);
  border-top: 1px solid var(--flt-rule);
  padding: 1rem var(--flt-pad) 2rem;
  max-height: 80vh;
  overflow-y: auto;
}
.flt-mobile-drawer.flt-drawer-open { display: flex; }
.flt-mob-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--flt-rule);
  font-weight: 600;
  font-size: 1rem;
  color: var(--flt-slate);
}
.flt-mob-link.flt-mob-sub {
  padding-left: 1rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--flt-muted);
}

/* ── HERO -- asymmetric photo collage ────────────────────────── */
/* Left: collage of overlapping images | Right: large heading + CTA */
.flt-hero-shell {
  min-height: calc(100svh - 70px);
  background: var(--flt-sand);
  display: grid;
  grid-template-columns: 5fr 6fr;
  overflow: hidden;
  position: relative;
}
.flt-hero-photos {
  position: relative;
  padding: 3rem 2rem 3rem var(--flt-pad);
  padding-left: max(var(--flt-pad), calc((100vw - var(--flt-max)) / 2 + var(--flt-pad)));
  display: flex;
  align-items: center;
}
.flt-hero-collage {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 580px;
}
.flt-himg-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--flt-r-xl);
  box-shadow: var(--flt-sh-lg);
  z-index: 2;
}
.flt-himg-second {
  position: absolute;
  bottom: 0; right: 0;
  width: 60%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--flt-r-lg);
  box-shadow: var(--flt-sh);
  border: 4px solid var(--flt-cream);
  z-index: 3;
}
.flt-hero-badge {
  position: absolute;
  top: 1.5rem; right: -1rem;
  background: var(--flt-coral);
  color: var(--flt-white);
  border-radius: var(--flt-r-lg);
  padding: 1rem 1.25rem;
  text-align: center;
  z-index: 4;
  box-shadow: var(--flt-sh-warm);
}
.flt-hero-badge-n {
  font-family: var(--flt-h-font);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.flt-hero-badge-l {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 0.15rem;
}
.flt-hero-langs {
  position: absolute;
  bottom: 2rem; left: 0;
  background: var(--flt-teal);
  border-radius: var(--flt-r-lg);
  padding: 1rem 1.25rem;
  z-index: 4;
  box-shadow: var(--flt-sh);
}
.flt-hero-langs-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 0.5rem;
}
.flt-lang-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  max-width: 160px;
}
.flt-lang-dot {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1);
  border-radius: var(--flt-r-pill);
  padding: 0.2rem 0.5rem;
}
/* Right content */
.flt-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem var(--flt-pad) 4rem 3rem;
  padding-right: max(var(--flt-pad), calc((100vw - var(--flt-max)) / 2 + var(--flt-pad)));
}
.flt-hero-h1 {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--flt-ink);
}
.flt-hero-h1 span {
  color: var(--flt-teal);
  font-style: italic;
}
.flt-hero-sub {
  font-size: 1.05rem;
  color: var(--flt-muted);
  max-width: 40ch;
  line-height: 1.72;
  margin-bottom: 2.25rem;
}
.flt-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.flt-hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--flt-rule);
}
.flt-trust-pt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--flt-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.flt-trust-pt svg { width: 16px; height: 16px; color: var(--flt-teal); flex-shrink: 0; }

/* ── PARTNER STRIP ───────────────────────────────────────────── */
.flt-partner-strip {
  background: var(--flt-teal2);
  padding: 1.25rem 0;
}
.flt-partner-inner {
  max-width: var(--flt-max);
  margin: 0 auto;
  padding: 0 var(--flt-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.flt-partner-item {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ── SERVICE CARDS (home) -- diagonal hover effect ───────────── */
.flt-svc-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.flt-svc-tile {
  border-radius: var(--flt-r-xl);
  overflow: hidden;
  background: var(--flt-white);
  border: 1.5px solid var(--flt-rule);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow var(--flt-ease), transform var(--flt-ease), border-color var(--flt-ease);
  position: relative;
}
.flt-svc-tile:hover { box-shadow: var(--flt-sh-lg); transform: translateY(-4px); border-color: var(--flt-teal-lt); }
.flt-svc-tile-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.flt-svc-tile-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.flt-svc-tile-icon {
  width: 40px; height: 40px;
  border-radius: var(--flt-r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem;
}
.flt-svc-tile-icon img { width: 20px; height: 20px; }
.flt-svc-from {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--flt-muted);
  margin-bottom: 0.25rem;
}
.flt-svc-name {
  font-family: var(--flt-h-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--flt-ink);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.flt-svc-desc { font-size: 0.83rem; color: var(--flt-muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.flt-svc-cta-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--flt-teal);
  transition: gap var(--flt-ease);
}
.flt-svc-tile:hover .flt-svc-cta-link { gap: 0.55rem; }
.flt-svc-cta-link svg { width: 13px; height: 13px; }
/* Wide card for 5th service */
.flt-svc-tile--wide { grid-column: span 2; }

/* ── STATS BAND ──────────────────────────────────────────────── */
.flt-stats-band {
  background: var(--flt-teal);
  padding: 5rem 0;
}
.flt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.flt-stat-val {
  font-family: var(--flt-h-font);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--flt-white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.flt-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── ABOUT / WHY ─────────────────────────────────────────────── */
.flt-why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.flt-why-img-col {
  position: relative;
  padding-right: 1rem;
}
.flt-why-main {
  width: 90%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--flt-r-xl);
  box-shadow: var(--flt-sh-lg);
}
.flt-why-small {
  position: absolute;
  bottom: -2rem; right: -1rem;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--flt-r-lg);
  border: 4px solid var(--flt-cream);
  box-shadow: var(--flt-sh);
}
.flt-why-yr-badge {
  position: absolute;
  top: 2rem; right: 2rem;
  background: var(--flt-sand2);
  border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r-lg);
  padding: 1rem 1.25rem;
  text-align: center;
}
.flt-why-yr-n { font-family: var(--flt-h-font); font-size: 1.9rem; font-weight: 700; color: var(--flt-teal); line-height: 1; }
.flt-why-yr-l { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--flt-muted); margin-top: 0.2rem; }
.flt-why-text h2 { margin-bottom: 1.15rem; }
.flt-why-text p { margin-bottom: 0.95rem; }
.flt-why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1.75rem 0 2rem;
}
.flt-why-pt {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--flt-slate);
}
.flt-pt-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(26,95,111,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.flt-pt-check svg { width: 10px; height: 10px; color: var(--flt-teal); }

/* ── PROCESS -- horizontal tabs ──────────────────────────────── */
.flt-proc-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border-radius: var(--flt-r-xl);
  overflow: hidden;
  border: 1.5px solid var(--flt-rule);
}
.flt-proc-tab {
  padding: 2rem 1.5rem;
  background: var(--flt-white);
  border-right: 1px solid var(--flt-rule);
  cursor: pointer;
  transition: background var(--flt-ease);
  position: relative;
}
.flt-proc-tab:last-child { border-right: none; }
.flt-proc-tab:hover, .flt-proc-tab.flt-ptab-on {
  background: var(--flt-sand);
}
.flt-proc-tab.flt-ptab-on::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--flt-coral);
}
.flt-proc-tab-n {
  font-family: var(--flt-h-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--flt-rule);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color var(--flt-ease);
}
.flt-proc-tab.flt-ptab-on .flt-proc-tab-n,
.flt-proc-tab:hover .flt-proc-tab-n { color: var(--flt-coral); }
.flt-proc-tab h3 { font-size: 0.95rem; font-weight: 700; color: var(--flt-ink); margin-bottom: 0.5rem; }
.flt-proc-tab p { font-size: 0.82rem; line-height: 1.55; }
.flt-proc-panels { margin-top: 2rem; }
.flt-proc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--flt-sand);
  border-radius: var(--flt-r-xl);
  border: 1.5px solid var(--flt-rule);
}
.flt-proc-panel.flt-panel-on { display: grid; }
.flt-proc-panel img { width: 100%; border-radius: var(--flt-r-lg); box-shadow: var(--flt-sh); aspect-ratio: 4/3; object-fit: cover; }

/* ── CASE STUDIES -- horizontal scroll on mobile, grid on desktop */
.flt-cases-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.flt-case-strip {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r-xl);
  overflow: hidden;
  background: var(--flt-white);
  transition: box-shadow var(--flt-ease);
}
.flt-case-strip:hover { box-shadow: var(--flt-sh-lg); }
.flt-case-strip:nth-child(even) { direction: rtl; }
.flt-case-strip:nth-child(even) > * { direction: ltr; }
.flt-case-thumb {
  position: relative;
  overflow: hidden;
}
.flt-case-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.flt-case-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--flt-coral);
  color: var(--flt-white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: var(--flt-r-pill);
}
.flt-case-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.flt-case-h { font-family: var(--flt-h-font); font-size: 1.3rem; font-weight: 700; color: var(--flt-ink); margin-bottom: 0.75rem; line-height: 1.28; }
.flt-case-p { font-size: 0.87rem; color: var(--flt-muted); line-height: 1.7; flex: 1; margin-bottom: 1.5rem; }
.flt-case-kpis {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--flt-rule);
}
.flt-kpi-n { font-family: var(--flt-h-font); font-size: 1.8rem; font-weight: 700; color: var(--flt-teal); line-height: 1; }
.flt-kpi-l { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--flt-muted); margin-top: 0.2rem; }

/* ── TESTIMONIALS -- magazine-style grid ─────────────────────── */
.flt-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.flt-review-card {
  background: var(--flt-white);
  border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.flt-review-card--alt {
  background: var(--flt-teal);
  border-color: transparent;
}
.flt-review-card--alt .flt-rv-txt { color: rgba(255,255,255,.78); }
.flt-review-card--alt .flt-rv-who { color: var(--flt-white); }
.flt-review-card--alt .flt-rv-org { color: rgba(255,255,255,.5); }
.flt-review-card--alt .flt-rv-div { border-top-color: rgba(255,255,255,.1); }
.flt-rv-color-bar {
  width: 32px; height: 4px;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.flt-rv-txt {
  font-size: 0.93rem;
  font-style: italic;
  color: var(--flt-slate);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 1.5rem;
}
.flt-rv-div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--flt-rule);
}
.flt-rv-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--flt-h-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--flt-white);
  flex-shrink: 0;
}
.flt-rv-who { font-weight: 700; font-size: 0.88rem; color: var(--flt-ink); }
.flt-rv-org { font-size: 0.75rem; color: var(--flt-muted); }

/* ── FAQ -- two column, accordion ────────────────────────────── */
.flt-faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
}
.flt-faq-group { display: flex; flex-direction: column; }
.flt-faq-item {
  border-top: 1px solid var(--flt-rule);
  padding: 1.1rem 0;
  cursor: pointer;
}
.flt-faq-item:last-child { border-bottom: 1px solid var(--flt-rule); }
.flt-faq-item.flt-fopen { border-top-color: var(--flt-teal); }
.flt-faq-q-btn {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--flt-b-font);
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--flt-ink);
  background: none; border: none;
  cursor: pointer; text-align: left; width: 100%; padding: 0;
}
.flt-faq-q-btn svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--flt-teal); transition: transform var(--flt-ease); }
.flt-faq-item.flt-fopen .flt-faq-q-btn svg { transform: rotate(45deg); }
.flt-faq-answer {
  display: none;
  padding-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--flt-muted);
  line-height: 1.72;
}
.flt-faq-item.flt-fopen .flt-faq-answer { display: block; }

/* ── PRICING ─────────────────────────────────────────────────── */
.flt-plan-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.flt-plan-card {
  background: var(--flt-white);
  border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r-xl);
  overflow: hidden;
  transition: box-shadow var(--flt-ease), transform var(--flt-ease);
}
.flt-plan-card:hover { box-shadow: var(--flt-sh-lg); transform: translateY(-4px); }
.flt-plan-card--pop { background: var(--flt-teal); border-color: var(--flt-teal); }
.flt-plan-header { padding: 2rem 2rem 1.5rem; border-bottom: 1.5px solid var(--flt-rule); }
.flt-plan-card--pop .flt-plan-header { border-bottom-color: rgba(255,255,255,.1); }
.flt-plan-badge-pill {
  display: inline-block;
  background: var(--flt-coral);
  color: var(--flt-white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: var(--flt-r-pill);
  margin-bottom: 0.7rem;
}
.flt-plan-name-h { font-family: var(--flt-h-font); font-size: 1.35rem; color: var(--flt-ink); margin-bottom: 0.3rem; }
.flt-plan-card--pop .flt-plan-name-h { color: var(--flt-white); }
.flt-plan-amount { font-family: var(--flt-h-font); font-size: 3rem; font-weight: 700; color: var(--flt-ink); line-height: 1; }
.flt-plan-card--pop .flt-plan-amount { color: rgba(255,255,255,.95); }
.flt-plan-caption { font-size: 0.78rem; color: var(--flt-muted); margin-top: 0.35rem; }
.flt-plan-card--pop .flt-plan-caption { color: rgba(255,255,255,.45); }
.flt-plan-body { padding: 2rem; }
.flt-plan-feats { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }
.flt-plan-feat {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.87rem; color: var(--flt-slate);
}
.flt-plan-card--pop .flt-plan-feat { color: rgba(255,255,255,.72); }
.flt-feat-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(26,95,111,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.flt-plan-card--pop .flt-feat-dot { background: rgba(232,113,90,.2); }
.flt-feat-dot svg { width: 9px; height: 9px; color: var(--flt-teal); }
.flt-plan-card--pop .flt-feat-dot svg { color: var(--flt-coral); }
.flt-plan-cta-btn { display: block; width: 100%; text-align: center; }

/* ── BUILDER ─────────────────────────────────────────────────── */
.flt-build-grid {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 2.5rem;
  align-items: start;
  margin-top: 3rem;
}
.flt-build-section {
  background: var(--flt-white);
  border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r-xl);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.flt-build-sec-h {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--flt-h-font);
  font-size: 1rem; font-weight: 700; color: var(--flt-ink);
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--flt-rule);
}
.flt-build-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--flt-teal); color: var(--flt-white);
  font-family: var(--flt-b-font); font-size: 0.72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.flt-select-row {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r);
  cursor: pointer; margin-bottom: 0.55rem;
  transition: border-color var(--flt-ease), background var(--flt-ease);
}
.flt-select-row:hover { border-color: var(--flt-teal-lt); }
.flt-select-row.flt-selected { border-color: var(--flt-teal); background: rgba(26,95,111,.04); }
.flt-select-row input { accent-color: var(--flt-teal); cursor: pointer; flex-shrink: 0; }
.flt-sel-body { flex: 1; }
.flt-sel-name { font-weight: 700; color: var(--flt-ink); font-size: 0.92rem; }
.flt-sel-hint { font-size: 0.75rem; color: var(--flt-muted); margin-top: 0.1rem; }
.flt-sel-price { font-weight: 800; color: var(--flt-teal); font-size: 0.88rem; white-space: nowrap; }
.flt-addon-row {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r);
  cursor: pointer; margin-bottom: 0.5rem;
  transition: border-color var(--flt-ease), background var(--flt-ease);
}
.flt-addon-row:hover { border-color: var(--flt-teal-lt); }
.flt-addon-row.flt-addon-on { border-color: var(--flt-teal); background: rgba(26,95,111,.04); }
.flt-addon-row input { accent-color: var(--flt-teal); cursor: pointer; flex-shrink: 0; }
.flt-addon-lbl { flex: 1; font-weight: 600; color: var(--flt-slate); font-size: 0.87rem; }
.flt-addon-pr { font-weight: 800; color: var(--flt-teal); font-size: 0.83rem; white-space: nowrap; }
.flt-hrs-band { display: flex; align-items: center; gap: 1.25rem; }
.flt-hrs-range { flex: 1; accent-color: var(--flt-teal); height: 5px; }
.flt-hrs-readout { font-weight: 800; color: var(--flt-ink); font-size: 0.92rem; min-width: 110px; text-align: right; }
/* Summary Panel */
.flt-summary-box {
  position: sticky; top: 88px;
  background: var(--flt-teal2);
  border-radius: var(--flt-r-xl);
  padding: 2rem;
  color: var(--flt-white);
}
.flt-summary-title {
  font-family: var(--flt-h-font);
  font-size: 1.15rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.flt-summary-lines { min-height: 50px; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1rem; }
.flt-summary-line { display: flex; justify-content: space-between; font-size: 0.84rem; gap: 1rem; }
.flt-sl-k { color: rgba(255,255,255,.42); }
.flt-sl-v { font-weight: 700; color: var(--flt-white); text-align: right; }
.flt-summary-div { height: 1px; background: rgba(255,255,255,.08); margin: 0.75rem 0; }
.flt-summary-total-row { display: flex; justify-content: space-between; align-items: baseline; }
.flt-summary-total-k { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,.35); }
.flt-summary-total-v { font-family: var(--flt-h-font); font-size: 2.6rem; font-weight: 700; color: var(--flt-white); }
.flt-summary-go {
  display: block; width: 100%; margin-top: 1.5rem;
  padding: 0.92rem; background: var(--flt-coral);
  color: var(--flt-white); border: none; border-radius: var(--flt-r-pill);
  font-family: var(--flt-b-font); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: background var(--flt-ease), transform var(--flt-ease);
}
.flt-summary-go:hover { background: var(--flt-coral2); transform: translateY(-1px); }
.flt-summary-go:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }
.flt-summary-note { font-size: 0.7rem; color: rgba(255,255,255,.25); text-align: center; margin-top: 0.65rem; }

/* ── CHECKOUT ────────────────────────────────────────────────── */
.flt-checkout-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.flt-chk-form-box {
  background: var(--flt-white);
  border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r-xl);
  padding: 2.5rem;
}
.flt-chk-order-box {
  background: var(--flt-sand);
  border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r-xl);
  padding: 2rem;
  position: sticky;
  top: 88px;
}
.flt-chk-order-box h3 {
  font-family: var(--flt-h-font);
  font-size: 1.1rem; color: var(--flt-ink);
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--flt-rule);
}
.flt-chk-line { display: flex; justify-content: space-between; font-size: 0.84rem; margin-bottom: 0.55rem; }
.flt-chk-k { color: var(--flt-muted); }
.flt-chk-v { font-weight: 700; color: var(--flt-ink); }
.flt-chk-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 2px solid var(--flt-rule); padding-top: 0.85rem; margin-top: 0.85rem;
}
.flt-chk-total-k { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--flt-muted); }
.flt-chk-total-v { font-family: var(--flt-h-font); font-size: 2.2rem; font-weight: 700; color: var(--flt-ink); }

/* ── FORMS ───────────────────────────────────────────────────── */
.flt-field { margin-bottom: 1.15rem; }
.flt-label { display: block; font-size: 0.73rem; font-weight: 800; color: var(--flt-ink); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.42rem; }
.flt-input {
  width: 100%; padding: 0.8rem 1.1rem;
  border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r);
  font-family: var(--flt-b-font); font-size: 0.95rem; color: var(--flt-ink);
  background: var(--flt-white);
  transition: border-color var(--flt-ease), box-shadow var(--flt-ease);
}
.flt-input:focus { border-color: var(--flt-teal); box-shadow: 0 0 0 3px rgba(26,95,111,.1); outline: none; }
.flt-input::placeholder { color: var(--flt-muted); opacity: 0.6; }
.flt-field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.flt-agree-row { display: flex; align-items: flex-start; gap: 0.7rem; margin-top: 1rem; }
.flt-agree-row input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--flt-teal); cursor: pointer; }
.flt-agree-row label { font-size: 0.84rem; color: var(--flt-muted); cursor: pointer; line-height: 1.5; }
.flt-agree-row label a { color: var(--flt-teal); text-decoration: underline; text-underline-offset: 3px; }
.flt-form-btn {
  display: block; width: 100%; margin-top: 1.75rem;
  padding: 1rem; background: var(--flt-teal); color: var(--flt-white);
  border: none; border-radius: var(--flt-r-pill);
  font-family: var(--flt-b-font); font-size: 0.97rem; font-weight: 700;
  cursor: pointer; transition: background var(--flt-ease), transform var(--flt-ease);
}
.flt-form-btn:hover { background: var(--flt-teal2); transform: translateY(-1px); }

/* ── PAGE HEADER ─────────────────────────────────────────────── */
.flt-page-head {
  background: var(--flt-sand);
  padding: 5.5rem var(--flt-pad) 4rem;
  text-align: center;
  border-bottom: 1px solid var(--flt-rule);
}
.flt-page-head h1 { text-align: center; margin-bottom: 0.75rem; }
.flt-page-head > p { color: var(--flt-muted); max-width: 52ch; margin: 0 auto; text-align: center; }
.flt-breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem; font-size: 0.75rem; color: var(--flt-muted);
  margin-bottom: 1.25rem;
}
.flt-breadcrumb a { color: var(--flt-muted); transition: color var(--flt-ease); }
.flt-breadcrumb a:hover { color: var(--flt-teal); }
.flt-breadcrumb svg { width: 10px; height: 10px; }

/* ── SECTIONS ────────────────────────────────────────────────── */
.flt-sec { padding: 7rem 0; }
.flt-sec--sand { background: var(--flt-sand); padding: 7rem 0; }
.flt-sec--teal { background: var(--flt-teal); padding: 7rem 0; }
.flt-sec--ink { background: var(--flt-teal2); padding: 7rem 0; }
.flt-sec--cream { background: var(--flt-cream); padding: 7rem 0; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.flt-cta-band {
  background: var(--flt-teal2);
  padding: 6rem var(--flt-pad);
  text-align: center;
  position: relative; overflow: hidden;
}
.flt-cta-band::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(232,113,90,.08);
}
.flt-cta-band h2 { color: var(--flt-white); margin-bottom: 0.8rem; position: relative; z-index: 1; }
.flt-cta-band > p { color: rgba(255,255,255,.5); max-width: 50ch; margin: 0 auto 2.25rem; position: relative; z-index: 1; }
.flt-cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── SERVICE SINGLE PAGE ─────────────────────────────────────── */
.flt-svc-page-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem;
}
.flt-svc-pg-text h2 { font-size: 1.65rem; margin: 2rem 0 0.75rem; }
.flt-svc-pg-text p { margin-bottom: 0.95rem; line-height: 1.76; }
.flt-svc-pg-text ul { margin-bottom: 0.95rem; display: flex; flex-direction: column; gap: 0.5rem; }
.flt-svc-pg-text li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--flt-muted);
}
.flt-svc-pg-text li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--flt-coral); flex-shrink: 0; margin-top: 0.65rem;
}
.flt-svc-sidebar {
  position: sticky; top: 88px;
  border-radius: var(--flt-r-xl); overflow: hidden;
  border: 1.5px solid var(--flt-rule);
  background: var(--flt-white);
}
.flt-svc-sb-head { background: var(--flt-teal2); padding: 1.75rem; }
.flt-svc-sb-from { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 0.25rem; }
.flt-svc-sb-price { font-family: var(--flt-h-font); font-size: 3rem; font-weight: 700; color: var(--flt-white); line-height: 1; }
.flt-svc-sb-unit { font-size: 0.78rem; color: rgba(255,255,255,.35); margin-top: 0.2rem; }
.flt-svc-sb-body { padding: 1.5rem; }
.flt-svc-detail {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0; border-bottom: 1px solid var(--flt-rule); font-size: 0.84rem;
}
.flt-svc-detail:last-child { border-bottom: none; }
.flt-sd-k { color: var(--flt-muted); }
.flt-sd-v { font-weight: 700; color: var(--flt-ink); text-align: right; }
.flt-svc-sb-cta {
  display: block; margin: 0 1.25rem 0.85rem; text-align: center;
  padding: 0.88rem; background: var(--flt-coral); color: var(--flt-white);
  border-radius: var(--flt-r-pill); font-family: var(--flt-b-font); font-weight: 700;
  transition: background var(--flt-ease);
}
.flt-svc-sb-cta:hover { background: var(--flt-coral2); }
.flt-svc-sb-alt {
  display: block; text-align: center;
  font-size: 0.78rem; color: var(--flt-muted);
  margin-bottom: 1.25rem; transition: color var(--flt-ease);
}
.flt-svc-sb-alt:hover { color: var(--flt-teal); }

/* ── LEGAL PAGES ─────────────────────────────────────────────── */
.flt-legal-body { max-width: 820px; margin: 4rem auto; }
.flt-legal-body h2 { font-size: 1.55rem; margin: 2.5rem 0 0.75rem; }
.flt-legal-body h3 { font-size: 1.1rem; margin: 1.75rem 0 0.5rem; color: var(--flt-muted); }
.flt-legal-body p { font-size: 0.9rem; color: var(--flt-muted); margin-bottom: 1rem; line-height: 1.78; }
.flt-legal-body ul, .flt-legal-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.flt-legal-body li { font-size: 0.9rem; color: var(--flt-muted); line-height: 1.72; margin-bottom: 0.5rem; }
.flt-legal-body a { color: var(--flt-teal); text-decoration: underline; text-underline-offset: 3px; }
.flt-legal-date {
  display: inline-block; background: var(--flt-sand);
  border: 1px solid var(--flt-rule); border-radius: var(--flt-r-pill);
  padding: 0.28rem 0.85rem; font-size: 0.75rem; color: var(--flt-muted); margin-bottom: 1.75rem;
}
.flt-legal-callout {
  background: var(--flt-sand); border-left: 4px solid var(--flt-teal);
  border-radius: var(--flt-r); padding: 1.1rem; margin-top: 1.75rem;
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.flt-contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; margin-top: 3.5rem; }
.flt-contact-pts { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.flt-contact-pt { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--flt-muted); }
.flt-contact-ico {
  width: 36px; height: 36px; border-radius: var(--flt-r);
  background: var(--flt-sand); border: 1px solid var(--flt-rule);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.flt-contact-ico svg { width: 15px; height: 15px; color: var(--flt-teal); }

/* ── RESULT PAGES ────────────────────────────────────────────── */
.flt-result-screen {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  padding: 6rem var(--flt-pad);
}
.flt-result-box {
  max-width: 520px; width: 100%; text-align: center;
  background: var(--flt-white); border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r-xl); padding: 3rem; box-shadow: var(--flt-sh);
}
.flt-result-icon {
  width: 68px; height: 68px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.flt-result-icon--ok { background: rgba(26,95,111,.08); }
.flt-result-icon--fail { background: rgba(184,48,48,.08); }
.flt-result-icon svg { width: 30px; height: 30px; }

/* ── ABOUT PAGE VALUES ───────────────────────────────────────── */
.flt-values-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.flt-value-tile { padding: 2rem; background: var(--flt-white); border: 1.5px solid var(--flt-rule); border-radius: var(--flt-r-xl); }
.flt-value-tile h3 { font-size: 1.05rem; margin-bottom: 0.65rem; }
.flt-value-tile p { font-size: 0.86rem; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.flt-footer {
  background: var(--flt-teal2);
  padding: 5rem 0 2rem;
}
.flt-foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.flt-foot-brand-name {
  font-family: var(--flt-h-font);
  font-size: 1.4rem; font-weight: 700;
  color: var(--flt-white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.flt-foot-brand-name span { color: var(--flt-coral); }
.flt-foot-tag { font-size: 0.85rem; color: rgba(255,255,255,.4); line-height: 1.65; margin-bottom: 1.25rem; }
.flt-foot-contact-info { font-size: 0.82rem; color: rgba(255,255,255,.35); line-height: 1.8; }
.flt-foot-contact-info a { color: rgba(255,255,255,.35); transition: color var(--flt-ease); }
.flt-foot-contact-info a:hover { color: rgba(255,255,255,.7); }
.flt-foot-col h4 { font-family: var(--flt-h-font); font-size: 0.88rem; color: rgba(255,255,255,.55); margin-bottom: 0.85rem; font-weight: 600; }
.flt-foot-col ul { display: flex; flex-direction: column; gap: 0.45rem; }
.flt-foot-col li a { font-size: 0.82rem; color: rgba(255,255,255,.3); transition: color var(--flt-ease); }
.flt-foot-col li a:hover { color: rgba(255,255,255,.65); }
.flt-foot-bottom {
  padding-top: 1.75rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.flt-foot-copy { font-size: 0.76rem; color: rgba(255,255,255,.2); }
.flt-foot-legals { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.flt-foot-legals a { font-size: 0.76rem; color: rgba(255,255,255,.2); transition: color var(--flt-ease); }
.flt-foot-legals a:hover { color: rgba(255,255,255,.5); }
.flt-digital-flag {
  font-size: 0.72rem; color: rgba(255,255,255,.2);
  display: flex; align-items: center; gap: 0.3rem; margin-top: 0.35rem;
}
.flt-digital-flag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--flt-coral); opacity: 0.5; flex-shrink: 0; }

/* ── COOKIE BANNER ───────────────────────────────────────────── */
.flt-cookie {
  position: fixed; bottom: 1.25rem; right: 1.25rem;
  width: 315px; background: var(--flt-white);
  border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r-xl); padding: 1.4rem;
  box-shadow: var(--flt-sh-lg); z-index: 9999;
}
.flt-cookie.flt-cookie-hidden { display: none; }
.flt-cookie-text { font-size: 0.83rem; color: var(--flt-muted); margin-bottom: 1rem; line-height: 1.6; }
.flt-cookie-btns { display: flex; gap: 0.6rem; }
.flt-ck-yes {
  flex: 1; padding: 0.52rem; background: var(--flt-teal); color: var(--flt-white);
  border: none; border-radius: var(--flt-r-pill); font-size: 0.8rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background var(--flt-ease);
}
.flt-ck-yes:hover { background: var(--flt-teal2); }
.flt-ck-no {
  flex: 1; padding: 0.52rem; border: 1px solid var(--flt-rule); color: var(--flt-muted);
  background: none; border-radius: var(--flt-r-pill); font-size: 0.8rem; cursor: pointer;
  font-family: inherit; transition: border-color var(--flt-ease), color var(--flt-ease);
}
.flt-ck-no:hover { border-color: var(--flt-coral); color: var(--flt-coral); }

/* ── CHAT WIDGET ─────────────────────────────────────────────── */
.flt-chat-trigger {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--flt-coral); color: var(--flt-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--flt-sh-warm); z-index: 8000;
  border: none; transition: transform var(--flt-ease), background var(--flt-ease);
}
.flt-chat-trigger:hover { transform: scale(1.08); background: var(--flt-coral2); }
.flt-chat-trigger svg { width: 22px; height: 22px; }
.flt-chat-box {
  position: fixed; bottom: calc(1.5rem + 52px + 0.75rem); left: 1.5rem;
  width: 315px; background: var(--flt-white);
  border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r-xl); box-shadow: var(--flt-sh-lg);
  z-index: 8000; overflow: hidden;
  transform: translateY(10px) scale(0.97); opacity: 0; pointer-events: none;
  transition: transform 0.22s, opacity 0.22s;
}
.flt-chat-box.flt-chat-open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.flt-chat-head { background: var(--flt-coral); padding: 1.1rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.flt-chat-av {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--flt-h-font); font-size: 0.95rem; font-weight: 700; color: var(--flt-white);
}
.flt-chat-head-info h4 { font-size: 0.85rem; font-weight: 700; color: var(--flt-white); font-family: var(--flt-b-font); }
.flt-chat-head-info span { font-size: 0.7rem; color: rgba(255,255,255,.6); }
.flt-chat-body-inner { padding: 1.25rem; }
.flt-chat-intro { font-size: 0.83rem; color: var(--flt-muted); margin-bottom: 0.85rem; line-height: 1.6; }
.flt-chat-inp, .flt-chat-msg {
  width: 100%; padding: 0.6rem 0.85rem;
  border: 1.5px solid var(--flt-rule);
  border-radius: var(--flt-r); font-family: var(--flt-b-font); font-size: 0.83rem;
  color: var(--flt-ink); margin-bottom: 0.5rem;
  transition: border-color var(--flt-ease);
}
.flt-chat-msg { resize: none; height: 68px; }
.flt-chat-inp:focus, .flt-chat-msg:focus { border-color: var(--flt-coral); outline: none; }
.flt-chat-send-btn {
  width: 100%; padding: 0.62rem; background: var(--flt-coral); color: var(--flt-white);
  border: none; border-radius: var(--flt-r-pill);
  font-family: var(--flt-b-font); font-size: 0.83rem; font-weight: 700;
  cursor: pointer; transition: background var(--flt-ease);
}
.flt-chat-send-btn:hover { background: var(--flt-coral2); }
.flt-chat-thanks { display: none; text-align: center; padding: 0.85rem; font-size: 0.85rem; color: var(--flt-coral); font-weight: 700; }

/* ── REVEAL ──────────────────────────────────────────────────── */
.flt-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.flt-reveal.flt-in { opacity: 1; transform: none; }
.flt-d1 { transition-delay: 0.08s; }
.flt-d2 { transition-delay: 0.16s; }
.flt-d3 { transition-delay: 0.24s; }
.flt-d4 { transition-delay: 0.32s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media(max-width:1060px) {
  .flt-hero-shell { grid-template-columns: 1fr; }
  .flt-hero-photos { order: -1; padding: 3rem var(--flt-pad) 1rem; justify-content: center; }
  .flt-hero-collage { max-width: 360px; height: 420px; margin: 0 auto; }
  .flt-hero-badge { right: 0; }
  .flt-why-layout { grid-template-columns: 1fr; gap: 3rem; }
  .flt-why-yr-badge { display: none; }
  .flt-svc-page-layout { grid-template-columns: 1fr; }
  .flt-svc-sidebar { position: static; }
  .flt-contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .flt-checkout-layout { grid-template-columns: 1fr; }
  .flt-foot-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  :root { --flt-pad: 1.15rem; }
  .flt-nav-links { display: none; }
  .flt-nav-right .flt-cta { display: none; }
  .flt-burger { display: flex; }
  .flt-svc-deck { grid-template-columns: 1fr; }
  .flt-svc-tile--wide { grid-column: span 1; }
  .flt-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .flt-proc-tabs { grid-template-columns: 1fr 1fr; }
  .flt-proc-panel.flt-panel-on { grid-template-columns: 1fr; }
  .flt-cases-layout .flt-case-strip { grid-template-columns: 1fr; }
  .flt-case-strip:nth-child(even) { direction: ltr; }
  .flt-case-thumb { min-height: 200px; }
  .flt-review-grid { grid-template-columns: 1fr; }
  .flt-faq-cols { grid-template-columns: 1fr; }
  .flt-plan-row { grid-template-columns: 1fr; }
  .flt-build-grid { grid-template-columns: 1fr; }
  .flt-summary-box { position: static; }
  .flt-foot-grid { grid-template-columns: 1fr; }
  .flt-foot-bottom { flex-direction: column; align-items: flex-start; }
  .flt-values-tiles { grid-template-columns: 1fr; }
  .flt-field-pair { grid-template-columns: 1fr; }
  .flt-why-points { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
  .flt-hero-actions { flex-direction: column; align-items: flex-start; }
  .flt-cta-actions { flex-direction: column; align-items: center; }
}
