/* ============================================================
   TELNESS STANDALONE v8
   Reference: MOBILABONNEMANG.png design
   - White page, hero is a rounded card (not full-screen)
   - Header always white, navy nav text, ImageKit logo
   - Full footer with two columns + social icons
   ============================================================ */

/* Google Fonts removed here — loaded via <link> in template <head> to avoid
   render-blocking @import and duplicate network requests.
   See template-telness-*.php <head> for the canonical font load. */

/* ── Kill Elementor body background ─────────────────────── */
html.tl-standalone,
body.tl-standalone {
  background-color: #ffffff !important;
  background-image: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/* ── Tokens ──────────────────────────────────────────────── */
#tl-root {
  --c-navy:   #272657;
  --c-navy-d: #1d1b45;
  --c-green:  #04af8f;
  --c-green-h:#039b7e;
  --c-teal:   #4fefd1;
  --c-white:  #ffffff;
  --c-off:    #f5f6f4;
  --c-gray:   #5a5a5a;
  --c-gray-l: #e2e2e2;
  --c-gray-m: #9a9a9a;

  --ff-h: 'DM Sans', sans-serif;
  --ff-b: 'Inter', sans-serif;

  /* Type scale */
  --fs-hero:  clamp(30px, 3.5vw + 10px, 56px);
  --fs-h2:    clamp(26px, 2.5vw + 10px, 44px);
  --fs-h3:    clamp(18px, 1.5vw + 8px,  28px);
  --fs-price: clamp(28px, 3vw + 8px,    46px);
  --fs-data:  clamp(22px, 2vw + 8px,    36px);
  --fs-lg:    clamp(15px, 0.8vw + 9px,  18px);
  --fs-body:  15px;
  --fs-ui:    14px;
  --fs-sm:    13px;
  --fs-xs:    11px;

  --sec: clamp(64px, 7vw, 96px);
  --r-card: 16px;
  --r-hero: 20px;

  display: block;
  font-family: var(--ff-b);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--c-navy);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Element resets */
#tl-root h1,#tl-root h2,#tl-root h3,#tl-root h4 {
  font-family: var(--ff-h); font-weight: 700; font-synthesis: none; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--c-navy);
  margin: 0; padding: 0; background: none; text-transform: none; border: none;
}
#tl-root p   { margin: 0; padding: 0; background: none; font-family: var(--ff-b); }
#tl-root ul,
#tl-root ol  { list-style: none; margin: 0; padding: 0; }
#tl-root li  { list-style: none; margin: 0; padding: 0; background: none; }
#tl-root li::before { content: none; }
#tl-root a   { color: inherit; text-decoration: none; background: none; border: none; }
#tl-root a:hover,#tl-root a:visited { text-decoration: none; }
#tl-root button { font-family: var(--ff-b); cursor: pointer; border: none; background: none; padding: 0; margin: 0; }
#tl-root img { max-width: 100%; height: auto; border: none; box-shadow: none; background: none; display: block; }
#tl-root hr { border: none; margin: 0; padding: 0; }

/* ── Logo — all WP variants ──────────────────────────────── */
#tl-root .tl-logo,
#tl-root .tl-logo > a,
#tl-root .tl-logo > a.custom-logo-link {
  display: flex; align-items: center; flex-shrink: 0;
  padding: 0; margin: 0; background: none; border: none; text-decoration: none;
}
#tl-root .tl-logo img,
#tl-root .tl-logo > a img,
#tl-root .tl-logo .custom-logo {
  display: block !important;
  height: 56px !important; width: auto !important;
  max-width: 200px !important; max-height: 56px !important;
  min-height: unset !important; min-width: unset !important;
  border: none !important; box-shadow: none !important;
  border-radius: 0 !important; padding: 0 !important; margin: 0 !important;
  object-fit: contain; filter: none !important;
}

/* ── Layout ──────────────────────────────────────────────── */
#tl-root .tl-wrap {
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
}

/* ── Label ───────────────────────────────────────────────── */
#tl-root .tl-label {
  display: block; font-family: var(--ff-b); font-size: var(--fs-xs);
  font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--c-green); margin-bottom: 8px;
}

/* ── Buttons ─────────────────────────────────────────────── */
#tl-root .tl-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px; font-family: var(--ff-b); font-size: var(--fs-ui);
  font-weight: 600; letter-spacing: 0.01em; line-height: 1;
  padding: 11px 22px; border-radius: 100px;
  border: 1.5px solid transparent; text-decoration: none;
  white-space: nowrap; cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease,
              background 140ms ease, color 140ms ease;
}
#tl-root .tl-btn:hover  { transform: translateY(-1px); }
#tl-root .tl-btn:active { transform: translateY(0); }

#tl-root .tl-btn--primary  { background: var(--c-green); color: #fff; box-shadow: 0 2px 10px rgba(4,175,143,.22); }
#tl-root .tl-btn--primary:hover { background: var(--c-green-h); color: #fff; box-shadow: 0 5px 18px rgba(4,175,143,.32); }
#tl-root .tl-btn--navy    { background: var(--c-navy); color: #fff; }
#tl-root .tl-btn--navy:hover { background: var(--c-navy-d); color: #fff; }
#tl-root .tl-btn--ghost   { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.4); }
#tl-root .tl-btn--ghost:hover { background: rgba(255,255,255,.24); color: #fff; }
#tl-root .tl-btn--outline { background: transparent; color: var(--c-navy); border-color: rgba(39,38,87,.35); }
#tl-root .tl-btn--outline:hover { border-color: var(--c-navy); }

/* ── Check list ──────────────────────────────────────────── */
#tl-root .tl-checks {
  display: flex; flex-direction: column;
  gap: 10px; list-style: none; padding: 0; margin: 0;
}
#tl-root .tl-checks li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--ff-b); font-size: var(--fs-body);
  font-weight: 400; line-height: 1.45; color: var(--c-navy);
}
#tl-root .tl-checks li::before {
  content: '' !important; flex-shrink: 0; display: block;
  width: 20px; height: 20px; border-radius: 50%;
  background-color: var(--c-green) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11'%3E%3Cpath d='M1.5 5.5L5.5 9.5L12.5 1.5' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important; background-position: center !important; background-size: 11px !important;
}
/* Hero checks — clean, minimal, less visual noise */
#tl-root .tl-checks--hero li {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--c-navy);
  gap: 8px;
}
#tl-root .tl-checks--hero li::before {
  width: 18px; height: 18px; background-size: 10px;
  background-color: rgba(4,175,143,.15) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11'%3E%3Cpath d='M1.5 5.5L5.5 9.5L12.5 1.5' stroke='%2304af8f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") !important;
}
#tl-root .tl-checks--white li { color: rgba(255,255,255,.92); }
#tl-root .tl-checks--sm li { font-size: 13px; gap: 7px; }
#tl-root .tl-checks--sm li::before { width: 17px; height: 17px; background-size: 9px; }


/* ── Reveal ──────────────────────────────────────────────── */
/* Default: fully visible. JS adds .tl-js to #tl-root to opt-in to animation.
   If JS errors or loads late, nothing stays invisible. */
#tl-root.tl-js .tl-reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 520ms cubic-bezier(.22,1,.36,1), transform 520ms cubic-bezier(.22,1,.36,1);
}
#tl-root .tl-reveal.tl-in { opacity: 1 !important; transform: none !important; }
#tl-root.tl-js .tl-d1 { transition-delay: 70ms; }
#tl-root.tl-js .tl-d2 { transition-delay: 140ms; }
#tl-root.tl-js .tl-d3 { transition-delay: 210ms; }

/* ═══════════════════════════════════════════════════════════
   HEADER — always white, navy text
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  -webkit-transform: translateZ(0); transform: translateZ(0);
  background-color: #ffffff;
  border-bottom: 1px solid var(--c-gray-l);
  box-shadow: 0 1px 12px rgba(39,38,87,.06);
}
#tl-root .tl-header__inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px; gap: 16px;
}

#tl-root .tl-logo__text {
  font-family: var(--ff-h); font-size: 20px; font-weight: 800;
  color: var(--c-navy); letter-spacing: -0.02em;
}

#tl-root .tl-nav { display: flex; align-items: center; gap: 2px; }
#tl-root .tl-nav > a,
#tl-root .tl-nav__dd-trigger {
  font-family: var(--ff-b); font-size: 13px; font-weight: 500;
  color: var(--c-navy); padding: 6px 10px; border-radius: 6px;
  transition: background 120ms ease, color 120ms ease;
  text-decoration: none; white-space: nowrap; display: flex;
  align-items: center; gap: 4px; background: none; border: none; cursor: pointer;
}
#tl-root .tl-nav > a:hover,
#tl-root .tl-nav__dd-trigger:hover,
#tl-root .tl-nav__dd.is-open .tl-nav__dd-trigger { background: var(--c-off); color: var(--c-navy); }

/* Chevron rotation */
#tl-root .tl-nav__chevron { transition: transform 200ms ease; }
#tl-root .tl-nav__dd.is-open .tl-nav__chevron { transform: rotate(180deg); }

/* ── Desktop dropdown ─────────────────────────────────── */
#tl-root .tl-nav__dd { position: relative; }
#tl-root .tl-nav__dd-panel {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: #fff; border: 1.5px solid var(--c-gray-l); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(39,38,87,.1), 0 2px 8px rgba(39,38,87,.06);
  padding: 24px 28px; min-width: 560px;
  z-index: 100;
}
#tl-root .tl-nav__dd.is-open .tl-nav__dd-panel {
  display: block;
}
#tl-root .tl-nav__dd-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
#tl-root .tl-nav__dd-col {
  display: flex; flex-direction: column; gap: 4px;
}
#tl-root .tl-nav__dd-label {
  font-family: var(--ff-b); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--c-gray-m); padding: 0 8px; margin-bottom: 4px;
}
#tl-root .tl-nav__dd-col a {
  font-family: var(--ff-b); font-size: 13px; font-weight: 500;
  color: var(--c-navy); padding: 6px 8px; border-radius: 6px;
  text-decoration: none; display: block; white-space: nowrap;
  transition: background 120ms ease;
}
#tl-root .tl-nav__dd-col a:hover { background: var(--c-off); }

#tl-root .tl-hd-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
#tl-root .tl-hd-login {
  font-family: var(--ff-b); font-size: 13px; font-weight: 500;
  color: var(--c-navy); padding: 6px 12px; border-radius: 6px;
  transition: background 120ms ease; text-decoration: none; white-space: nowrap;
}
#tl-root .tl-hd-login:hover { background: var(--c-off); }

#tl-root .tl-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 8px;
  border-radius: 6px; background: none; border: none; cursor: pointer; flex-shrink: 0;
}
#tl-root .tl-burger span {
  display: block; width: 100%; height: 2px; background: var(--c-navy);
  border-radius: 2px; transition: transform 260ms ease, opacity 180ms ease;
}
#tl-root .tl-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#tl-root .tl-burger.is-open span:nth-child(2) { opacity: 0; }
#tl-root .tl-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav — light design ─────────────────────────── */
#tl-root .tl-mnav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 8999;
  padding: 80px 24px 100px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 320ms cubic-bezier(.22,1,.36,1);
  overflow-y: auto;
}
#tl-root .tl-mnav.is-open { transform: translateX(0); }
#tl-root .tl-mnav > a {
  display: block; font-family: var(--ff-b); font-size: 16px;
  font-weight: 600; color: var(--c-navy); padding: 14px 0;
  border-bottom: 1px solid var(--c-gray-l); text-decoration: none;
  transition: color 120ms ease;
}
#tl-root .tl-mnav > a:hover { color: var(--c-green); }

/* Accordion group */
#tl-root .tl-mnav__group { border-bottom: 1px solid var(--c-gray-l); }
#tl-root .tl-mnav__toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-family: var(--ff-b); font-size: 16px;
  font-weight: 600; color: var(--c-navy); padding: 14px 0;
  background: none; border: none; cursor: pointer;
  transition: color 120ms ease;
}
#tl-root .tl-mnav__toggle:hover { color: var(--c-green); }
#tl-root .tl-mnav__toggle .tl-nav__chevron { color: var(--c-gray-m); transition: transform 200ms ease; }
#tl-root .tl-mnav__group.is-open .tl-mnav__toggle .tl-nav__chevron { transform: rotate(180deg); color: var(--c-green); }
#tl-root .tl-mnav__sub {
  max-height: 0; overflow: hidden; transition: max-height 300ms ease;
  padding-left: 16px;
}
#tl-root .tl-mnav__group.is-open .tl-mnav__sub { max-height: 800px; }
#tl-root .tl-mnav__sub a {
  display: block; font-family: var(--ff-b); font-size: 15px; font-weight: 500;
  color: var(--c-gray); padding: 10px 0; border-bottom: none;
  text-decoration: none; transition: color 120ms ease;
}
#tl-root .tl-mnav__sub a:hover { color: var(--c-green); }
#tl-root .tl-mnav__label {
  display: block; font-family: var(--ff-b); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--c-gray-m); padding: 16px 0 4px; margin: 0;
}
#tl-root .tl-mnav__sub .tl-mnav__label:first-child { padding-top: 8px; }

/* ── Fixed bottom app bar (mobile only) ───────────────── */
#tl-root .tl-appbar {
  display: none; /* hidden on desktop */
}
@media (max-width: 900px) {
  #tl-root .tl-appbar {
    display: flex !important; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 9001; background: #fff;
    border-top: 1px solid var(--c-gray-l);
    box-shadow: 0 -2px 12px rgba(39,38,87,.06);
    padding: 0; height: 64px;
  }
}
#tl-root .tl-appbar__btn {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px; text-decoration: none;
  font-family: var(--ff-b); font-size: 11px; font-weight: 600;
  color: var(--c-navy); background: #fff;
  transition: background 120ms ease, color 120ms ease;
  padding: 8px 0;
}
#tl-root .tl-appbar__btn svg {
  width: 22px; height: 22px;
}
#tl-root .tl-appbar__btn:hover {
  background: var(--c-off);
}
#tl-root .tl-appbar__btn--primary {
  background: var(--c-green); color: #fff;
}
#tl-root .tl-appbar__btn--primary svg {
  stroke: #fff;
}
#tl-root .tl-appbar__btn--primary:hover {
  background: #03a080; color: #fff;
}

/* Add bottom padding to page content so app bar doesn't cover it */
@media (max-width: 900px) {
  #tl-root .tl-footer { padding-bottom: 80px; }
  /* Push Intercom bubble above the app bar */
  .intercom-lightweight-app-launcher,
  .intercom-launcher,
  #intercom-container .intercom-launcher-frame,
  iframe.intercom-launcher-frame {
    bottom: 76px !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO — white page background, rounded card, split layout:
   text LEFT  (~50%) | photo RIGHT (~50%, overflow hidden)
   Photo is anchored center so cropping always looks natural.
   Replace .tl-hero__ph with a real <img> when ready.
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-hero-wrap {
  background-color: #ffffff;
  padding: 84px 0 0; /* push below fixed header */
}
#tl-root .tl-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-hero);
  min-height: clamp(420px, 46vw, 580px);
  display: grid;
  /* Text 52%, photo 48% — more room for text, less overflow risk */
  grid-template-columns: 52% 48%;
  background-color: #f8f8f7; /* near-white — crisp without bleeding into page */
}

/* LEFT column — text content */
#tl-root .tl-hero__inner {
  position: relative; z-index: 4;
  padding: clamp(52px, 6vw, 88px) clamp(36px, 5vw, 68px);
  display: flex; align-items: center;
  background-color: transparent;
}
#tl-root .tl-hero__content { width: 100%; }

/* RIGHT column — photo fills it completely, cropped from center */
#tl-root .tl-hero__bg {
  position: relative; /* in-flow grid cell, NOT absolute */
  overflow: hidden;
  background-color: #dde0e8;
}
#tl-root .tl-hero__bg img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Gradient fade div — real DOM element, works in all browsers including Safari.
   Sits inside .tl-hero__bg, covers its full area, fades left→transparent right */
#tl-root .tl-hero__fade {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 55%;
  z-index: 2;
  background: linear-gradient(
    to right,
    #f8f8f7 0%,
    rgba(248,248,247,.85) 30%,
    rgba(248,248,247,.4) 65%,
    rgba(248,248,247,0) 100%
  );
  pointer-events: none;
}

/* No pseudo-element needed — gradient is a real div now */
#tl-root .tl-hero::after,
#tl-root .tl-hero__bg::after { display: none !important; content: none !important; }

/* Placeholder shown until real image is added */
#tl-root .tl-hero__ph {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #c8cdd8 0%, #b0b8cc 100%);
  display: flex; align-items: center; justify-content: center;
}
#tl-root .tl-hero__ph::after {
  content: 'Hero-bild här';
  font-family: var(--ff-b); font-size: 13px; color: rgba(255,255,255,.6);
  letter-spacing: 0.04em;
}

/* Hero entrance — only animate if motion is ok and not cached */
@media (prefers-reduced-motion: no-preference) {
  #tl-root .tl-hero__content > * {
    opacity: 0; transform: translateY(16px);
    animation: tlIn 560ms cubic-bezier(.22,1,.36,1) forwards;
  }
  #tl-root .tl-hero__content > *:nth-child(1) { animation-delay: 50ms; }
  #tl-root .tl-hero__content > *:nth-child(2) { animation-delay: 110ms; }
  #tl-root .tl-hero__content > *:nth-child(3) { animation-delay: 170ms; }
  #tl-root .tl-hero__content > *:nth-child(4) { animation-delay: 230ms; }
  #tl-root .tl-hero__content > *:nth-child(5) { animation-delay: 290ms; }
  #tl-root .tl-hero__content > *:nth-child(6) { animation-delay: 340ms; }
}
@keyframes tlIn { to { opacity: 1; transform: translateY(0); } }

/* Eyebrow — clean uppercase label, no decorative line */
#tl-root .tl-hero__eye {
  display: inline-block;
  font-family: var(--ff-b); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--c-green); margin-bottom: 14px;
}
#tl-root .tl-hero__eye::before,
#tl-root .tl-hero__eye::after { display: none !important; content: none !important; }

#tl-root .tl-hero h1 {
  font-family: var(--ff-h); font-size: var(--fs-hero); font-weight: 700;
  color: var(--c-navy); line-height: 1.05; letter-spacing: -0.015em; margin-bottom: 8px;
}
#tl-root .tl-hero__sub {
  font-family: var(--ff-b); font-size: clamp(14px, 1.4vw, 18px); font-weight: 500;
  color: var(--c-gray); line-height: 1.3; letter-spacing: 0;
  margin-bottom: 28px; display: block;
}

#tl-root .tl-hero__ctas {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px; align-items: center;
}

#tl-root .tl-trust { display: flex; align-items: center; gap: 8px; }
#tl-root .tl-trust__stars { display: flex; gap: 2px; }
#tl-root .tl-trust__stars span {
  display: block; width: 17px; height: 17px; background: #00b67a;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
#tl-root .tl-trust__text {
  font-family: var(--ff-b); font-size: 12px; color: var(--c-gray-m); line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   USP BAR
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-usp {
  background-color: var(--c-off);
  border-bottom: 1px solid var(--c-gray-l);
  padding: 14px 0;
}
#tl-root .tl-usp__row {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 6px 24px; list-style: none; padding: 0; margin: 0;
}
#tl-root .tl-usp__row li {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--ff-b); font-size: 13px; font-weight: 500; color: var(--c-navy);
}
#tl-root .tl-usp__row li::before {
  content: '' !important; flex-shrink: 0; display: block;
  width: 16px; height: 16px; border-radius: 50%;
  background-color: var(--c-green) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11'%3E%3Cpath d='M1.5 5.5L5.5 9.5L12.5 1.5' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important; background-position: center !important; background-size: 8px !important;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-pricing { padding: clamp(64px, 7vw, 96px) 0; background-color: #fff; }
#tl-root .tl-pricing__hd { margin-bottom: 40px; }
#tl-root .tl-pricing__h2 {
  font-family: var(--ff-h); font-size: var(--fs-h2); font-weight: 800;
  color: var(--c-navy); letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 6px;
}
#tl-root .tl-pricing__sub {
  font-family: var(--ff-b); font-size: var(--fs-body); color: var(--c-gray); line-height: 1.5;
}
#tl-root .tl-pricing__grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 18px !important;
  align-items: stretch !important;
}
#tl-root .tl-pricing__grid > .tl-card {
  flex: 1 1 22% !important;
  min-width: 220px !important; width: 100%;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

#tl-root .tl-card {
  position: relative; display: flex; flex-direction: column;
  background-color: #fff; border: 1.5px solid var(--c-gray-l);
  border-radius: var(--r-card); padding: 30px 22px 22px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
#tl-root .tl-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(39,38,87,.09); }
#tl-root .tl-card--feat { border-color: var(--c-green); box-shadow: 0 0 0 1px var(--c-green); }
#tl-root .tl-card--feat:hover { box-shadow: 0 0 0 1px var(--c-green), 0 10px 32px rgba(4,175,143,.12); }

#tl-root .tl-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--c-green); color: #fff;
  font-family: var(--ff-b); font-size: 10px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 13px; border-radius: 20px; white-space: nowrap; display: block;
}
#tl-root .tl-card__dlabel {
  display: block; font-family: var(--ff-b); font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-gray-m); margin-bottom: 3px;
}
#tl-root .tl-card__data {
  display: block; font-family: var(--ff-h); font-size: var(--fs-data); font-weight: 800;
  color: var(--c-navy); letter-spacing: -0.02em; line-height: 1; margin-bottom: 12px;
}
#tl-root .tl-card__divider { height: 1px; background: var(--c-gray-l); border: none; margin-bottom: 10px; display: block; }
#tl-root .tl-card__tagline {
  display: block; font-family: var(--ff-b); font-size: 13px; color: var(--c-gray-m); margin-bottom: 6px; line-height: 1.4;
}
#tl-root .tl-card__price {
  display: block; font-family: var(--ff-h); font-size: var(--fs-price); font-weight: 800;
  color: var(--c-green); letter-spacing: -0.02em; line-height: 1; margin-bottom: 18px;
}
#tl-root .tl-card__price span {
  font-family: var(--ff-b); font-size: 13px; font-weight: 400; color: var(--c-gray); letter-spacing: 0;
}
#tl-root .tl-card__feats {
  display: flex; flex-direction: column; gap: 9px; flex: 1;
  margin-bottom: 20px; list-style: none; padding: 0;
}
#tl-root .tl-card__feats li {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-b); font-size: 14px; font-weight: 400; color: var(--c-navy); line-height: 1.4;
}
#tl-root .tl-card__feats li::before {
  content: '' !important; flex-shrink: 0; display: block;
  width: 17px; height: 17px; border-radius: 50%;
  background-color: rgba(4,175,143,.13) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11'%3E%3Cpath d='M1.5 5.5L5.5 9.5L12.5 1.5' stroke='%2304af8f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important; background-position: center !important; background-size: 9px !important;
}
#tl-root .tl-card__note {
  font-family: var(--ff-b); font-size: 12px; color: var(--c-gray-m);
  line-height: 1.5; margin: 0 0 16px; padding: 0;
}
/* Phone image in card */
#tl-root .tl-card__phone-img {
  position: relative; display: flex; align-items: center; justify-content: center;
  padding: 20px 24px 0; background: var(--c-off); border-radius: var(--r-card) var(--r-card) 0 0;
  min-height: 160px;
}
#tl-root .tl-card__phone-img img {
  max-height: 140px; width: auto; display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.1));
}
#tl-root .tl-card__tag {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--ff-b); font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 100px; letter-spacing: 0.02em;
}
#tl-root .tl-card__tag--new { background: var(--c-green); color: #fff; }
#tl-root .tl-card__tag--used { background: var(--c-navy); color: #fff; }

#tl-root .tl-card__cta {
  display: flex; align-items: center; justify-content: center; width: 100%;
  padding: 12px 16px; border-radius: 100px;
  font-family: var(--ff-b); font-size: 13px; font-weight: 600;
  color: #fff; background: var(--c-navy); border: none; text-decoration: none;
  transition: background 140ms ease, transform 140ms ease;
}
#tl-root .tl-card__cta:hover { background: var(--c-navy-d); transform: translateY(-1px); color: #fff; }
#tl-root .tl-card--feat .tl-card__cta { background: var(--c-green); }
#tl-root .tl-card--feat .tl-card__cta:hover { background: var(--c-green-h); color: #fff; }
#tl-root .tl-pricing__note {
  display: block; text-align: center; margin-top: 16px;
  font-family: var(--ff-b); font-size: 12px; color: var(--c-gray-m);
}

/* ═══════════════════════════════════════════════════════════
   PARTNERS
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-partners { background-color: #fff; padding: 40px 0; }
#tl-root .tl-partners__label {
  display: block; font-family: var(--ff-b); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-gray-m);
  text-align: center; margin-bottom: 20px;
}
#tl-root .tl-partners__row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 40px;
}
#tl-root .tl-partners__row span {
  display: inline-block; font-family: var(--ff-h); font-size: 15px; font-weight: 700;
  color: var(--c-gray); opacity: .45; letter-spacing: -0.01em; transition: opacity 200ms ease;
}
#tl-root .tl-partners__row span:hover { opacity: .75; }
#tl-root .tl-partners__row img {
  height: clamp(22px, 2.5vw, 32px);
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1) opacity(.45);
  transition: filter 220ms ease;
  display: block;
}
#tl-root .tl-partners__row img:hover { filter: grayscale(0) opacity(1); }

/* ═══════════════════════════════════════════════════════════
   CONTENT BLOCKS
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-content { padding: clamp(64px, 7vw, 96px) 0; background-color: #fff; }
#tl-root .tl-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4.5vw, 64px); align-items: center;
  margin-bottom: clamp(80px, 10vw, 140px);
}
#tl-root .tl-block:last-child { margin-bottom: 0; }
#tl-root .tl-block--flip { direction: rtl; }
#tl-root .tl-block--flip > * { direction: ltr; }

#tl-root .tl-block__vis {
  border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 5/4; background-color: var(--c-off); position: relative;
}
#tl-root .tl-block__vis img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 0; transition: transform 440ms ease;
}
#tl-root .tl-block__vis:hover img { transform: scale(1.04); }
#tl-root .tl-block__ph {
  position: absolute; inset: 0; background: linear-gradient(135deg, #ebebec, #e0e0e3);
  display: flex; align-items: center; justify-content: center;
}
#tl-root .tl-block__ph span { font-family: var(--ff-b); font-size: 12px; color: var(--c-gray-m); }

#tl-root .tl-block__text h2 {
  font-family: var(--ff-h); font-size: var(--fs-h2); font-weight: 800;
  color: var(--c-navy); letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 12px;
}
#tl-root .tl-block__text p {
  font-family: var(--ff-b); font-size: var(--fs-lg); color: var(--c-gray);
  line-height: 1.7; margin-bottom: 22px;
}

/* ═══════════════════════════════════════════════════════════
   TRUECALLER DARK SECTION
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-dark {
  background-color: var(--c-navy-d);
  padding: clamp(52px,6vw,88px) 0;
}
#tl-root .tl-dark h2 {
  font-family: var(--ff-h); font-size: var(--fs-h2); font-weight: 800;
  color: #fff; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 10px;
}
#tl-root .tl-dark__sub {
  font-family: var(--ff-b); font-size: var(--fs-lg); color: rgba(255,255,255,.70);
  line-height: 1.6; margin-bottom: 28px; display: block;
}
#tl-root .tl-dark__checks { margin-bottom: 32px; }
#tl-root .tl-dark__split {
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(32px,4vw,64px);
}
#tl-root .tl-dark__split .tl-dark__inner { flex: 1 1 50%; max-width: 55%; }
#tl-root .tl-dark__img { flex: 1 1 35%; }
#tl-root .tl-dark__img img {
  width: 100%; height: auto; display: block;
}

/* ═══════════════════════════════════════════════════════════
   FAQ — centered
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-faq { background-color: var(--c-off); padding: clamp(64px, 7vw, 96px) 0; }
#tl-root .tl-faq__hd { margin-bottom: 40px; text-align: center; }
#tl-root .tl-faq__h2 {
  font-family: var(--ff-h); font-size: var(--fs-h2); font-weight: 800;
  color: var(--c-navy); letter-spacing: -0.025em; line-height: 1.1;
}
#tl-root .tl-faq__list {
  max-width: 680px; margin: 0 auto;
  border-top: 1px solid var(--c-gray-l);
  overflow: hidden;
}
#tl-root .tl-faq__item { border-bottom: 1px solid var(--c-gray-l); overflow: hidden; }
#tl-root .tl-faq__btn {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  gap: 14px; padding: 18px 0; text-align: left;
  font-family: var(--ff-b); font-size: 15px; font-weight: 500;
  color: var(--c-navy); line-height: 1.35;
  background: none; border: none; cursor: pointer;
  transition: color 120ms ease;
  min-width: 0;
}
#tl-root .tl-faq__btn span:first-child,
#tl-root .tl-faq__btn > span:not(.tl-faq__ico),
#tl-root .tl-faq__btn .tl-faq__q {
  flex: 1 1 0%; min-width: 0; max-width: calc(100% - 40px);
  overflow-wrap: break-word; word-break: break-word;
  white-space: normal;
}
#tl-root .tl-faq__btn:hover { color: var(--c-green); }
#tl-root .tl-faq__ico {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--c-navy); display: flex; align-items: center;
  justify-content: center; color: #fff; transition: background 180ms ease;
}
#tl-root .tl-faq__ico svg {
  width: 11px; height: 11px; stroke: currentColor; stroke-width: 2.5;
  stroke-linecap: round; fill: none; transition: transform 240ms cubic-bezier(.22,1,.36,1);
}
#tl-root .tl-faq__item.is-open .tl-faq__ico { background: var(--c-green); }
#tl-root .tl-faq__item.is-open .tl-faq__ico svg { transform: rotate(45deg); }
#tl-root .tl-faq__body { overflow: hidden; max-height: 0; transition: max-height 300ms cubic-bezier(.22,1,.36,1); }
#tl-root .tl-faq__inner {
  padding: 0 36px 18px 0;
  font-family: var(--ff-b); font-size: var(--fs-body); color: var(--c-gray); line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   TABS NAV — pricing page section navigation
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-tabs {
  position: sticky; top: 64px; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--c-gray-l);
  padding: 0;
}
#tl-root .tl-tabs__nav {
  display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#tl-root .tl-tabs__nav::-webkit-scrollbar { display: none; }
#tl-root .tl-tabs__link {
  font-family: var(--ff-b); font-size: 13px; font-weight: 600;
  color: var(--c-gray-m); padding: 16px 20px; white-space: nowrap;
  text-decoration: none; border-bottom: 2px solid transparent;
  transition: color 120ms ease, border-color 120ms ease;
}
#tl-root .tl-tabs__link:hover { color: var(--c-navy); }
#tl-root .tl-tabs__link.is-active {
  color: var(--c-green); border-bottom-color: var(--c-green);
}

/* ═══════════════════════════════════════════════════════════
   COUNTRY LIST — priser utomlands
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-alpha-nav {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 32px;
}
#tl-root .tl-alpha-btn {
  font-family: var(--ff-b); font-size: 13px; font-weight: 600;
  width: 36px; height: 36px; border-radius: 8px;
  border: 1.5px solid var(--c-gray-l); background: #fff; color: var(--c-navy);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}
#tl-root .tl-alpha-btn:hover {
  background: var(--c-green); border-color: var(--c-green); color: #fff;
}
#tl-root .tl-country-letter {
  font-family: var(--ff-h); font-size: 20px; font-weight: 700;
  color: var(--c-navy); padding: 24px 0 8px; margin: 0;
  border-bottom: 1px solid var(--c-gray-l);
  scroll-margin-top: 140px;
}
#tl-root .tl-country-list {
  columns: 3; -webkit-columns: 3; -moz-columns: 3;
  column-gap: 24px; list-style: none; padding-left: 0; margin: 0 0 48px;
}
#tl-root .tl-country-list li {
  break-inside: avoid; margin-bottom: 2px;
}
#tl-root .tl-country-item {
  display: block; font-family: var(--ff-b); font-size: 14px; font-weight: 500;
  color: var(--c-navy); padding: 7px 0; text-decoration: none;
  transition: color 120ms ease;
}
#tl-root .tl-country-item:hover { color: var(--c-green); }

/* Modal close button */
#tl-root .tl-modal__close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 28px; line-height: 1;
  color: var(--c-gray-m); cursor: pointer; padding: 4px;
  transition: color 120ms ease;
}
#tl-root .tl-modal__close:hover { color: var(--c-navy); }
#tl-root .tl-modal__box { position: relative; }

@media (max-width: 900px) {
  #tl-root .tl-country-list { column-count: 2; }
}
@media (max-width: 640px) {
  #tl-root .tl-country-list { column-count: 1; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES GRID — home page product cards
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
#tl-root .tl-svc-card {
  background: #fff; border: 1.5px solid var(--c-gray-l); border-radius: var(--r-card);
  padding: 0; overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 200ms ease, transform 200ms ease;
}
#tl-root .tl-svc-card:hover {
  box-shadow: 0 8px 28px rgba(39,38,87,.08);
  transform: translateY(-2px);
}
#tl-root .tl-svc-card__img {
  display: block; width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--c-off);
}
#tl-root .tl-svc-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
#tl-root .tl-svc-card h3 {
  font-family: var(--ff-h); font-size: 18px; font-weight: 700;
  color: var(--c-navy); padding: 20px 24px 0; letter-spacing: -0.01em;
}
#tl-root .tl-svc-card p {
  font-family: var(--ff-b); font-size: 14px; color: var(--c-gray);
  line-height: 1.6; padding: 8px 24px 0; flex: 1;
}
#tl-root .tl-svc-card__actions {
  padding: 20px 24px 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
#tl-root .tl-svc-card__link {
  font-family: var(--ff-b); font-size: 13px; font-weight: 600;
  color: var(--c-green); text-decoration: none;
  transition: color 120ms ease;
}
#tl-root .tl-svc-card__link:hover { color: var(--c-navy); }
#tl-root .tl-svc-card--noimg h3 { padding-top: 24px; }
#tl-root .tl-svc-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: rgba(4,175,143,.08); border-radius: 10px;
  padding: 0; margin: 24px 0 0 24px; flex-shrink: 0;
}
#tl-root .tl-svc-card__icon + h3 { padding-top: 16px; }

@media (max-width: 900px) {
  #tl-root .tl-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  #tl-root .tl-svc-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   STATS — metric cards
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-stats {
  background: var(--c-off); padding: clamp(64px, 7vw, 96px) 0;
}
#tl-root .tl-stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
#tl-root .tl-stat-card {
  background: #fff; border: 1.5px solid var(--c-gray-l); border-radius: var(--r-card);
  padding: 32px 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
#tl-root .tl-stat-card__number {
  font-family: var(--ff-h); font-size: clamp(36px, 4vw, 52px); font-weight: 800;
  color: var(--c-green); line-height: 1; letter-spacing: -0.02em;
}
#tl-root .tl-stat-card__text {
  font-family: var(--ff-b); font-size: 14px; color: var(--c-gray);
  line-height: 1.5; margin-bottom: 12px;
}
#tl-root .tl-stat-card__cta {
  font-family: var(--ff-b); font-size: 13px; font-weight: 600;
  color: var(--c-green); text-decoration: none; padding: 8px 20px;
  border: 1.5px solid var(--c-green); border-radius: 100px;
  transition: background 140ms ease, color 140ms ease;
}
#tl-root .tl-stat-card__cta:hover {
  background: var(--c-green); color: #fff;
}

@media (max-width: 900px) {
  #tl-root .tl-stats__grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — two columns + social
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-footer {
  background-color: #fff; border-top: 1px solid var(--c-gray-l);
}
#tl-root .tl-footer__top {
  display: grid; grid-template-columns: 1fr 1fr auto;
  gap: 40px; padding: 52px 0 48px;
  border-bottom: 1px solid var(--c-gray-l);
}
#tl-root .tl-footer__col h4,
#tl-root .tl-footer__col .tl-footer__heading {
  font-family: var(--ff-b); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-gray-m);
  margin-bottom: 14px;
}
#tl-root .tl-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
#tl-root .tl-footer__col ul li { background: none; }
#tl-root .tl-footer__col ul li::before { content: none !important; }
#tl-root .tl-footer__col ul a {
  font-family: var(--ff-b); font-size: 14px; font-weight: 400;
  color: var(--c-navy); text-decoration: none; transition: color 120ms ease; display: block;
}
#tl-root .tl-footer__col ul a:hover { color: var(--c-green); }

#tl-root .tl-footer__brand { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
#tl-root .tl-footer__brand-logo img,
#tl-root .tl-footer__brand-logo .custom-logo {
  height: 40px !important; width: auto !important; max-width: 160px !important;
  display: block !important; border: none !important; box-shadow: none !important;
  border-radius: 0 !important; padding: 0 !important; margin: 0 !important;
}
#tl-root .tl-footer__social { display: flex; gap: 10px; }
#tl-root .tl-footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--c-navy); color: #fff; text-decoration: none;
  transition: background 140ms ease, transform 140ms ease;
}
#tl-root .tl-footer__social a:hover { background: var(--c-green); transform: translateY(-2px); }
#tl-root .tl-footer__social svg { width: 15px; height: 15px; fill: currentColor; }

#tl-root .tl-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; padding: 18px 0;
}
#tl-root .tl-footer__legal {
  font-family: var(--ff-b); font-size: 12px; color: var(--c-gray-m); display: block;
}
#tl-root .tl-footer__links { display: flex; gap: 18px; }
#tl-root .tl-footer__links a {
  font-family: var(--ff-b); font-size: 12px; color: var(--c-gray-m);
  text-decoration: none; transition: color 120ms ease;
}
#tl-root .tl-footer__links a:hover { color: var(--c-navy); }

/* ── Skip link ───────────────────────────────────────────── */
#tl-root .tl-skip {
  position: absolute; top: -100px; left: 24px;
  background: var(--c-green); color: #fff;
  font-family: var(--ff-b); font-size: 13px; font-weight: 600;
  padding: 10px 18px; border-radius: 100px;
  z-index: 9999; transition: top 180ms ease; text-decoration: none;
}
#tl-root .tl-skip:focus { top: 12px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  #tl-root .tl-pricing__grid { max-width: 400px; }
  #tl-root .tl-pricing__grid > .tl-card { flex: 1 1 100% !important; }
  #tl-root .tl-footer__top { grid-template-columns: 1fr 1fr; }
  #tl-root .tl-footer__brand { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (max-width: 840px) {
  #tl-root .tl-block { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
  #tl-root .tl-block--flip { direction: ltr; }
  /* Hero stacks vertically on tablet: photo goes below text */
  #tl-root .tl-hero { grid-template-columns: 1fr; grid-template-rows: auto 280px; }
  #tl-root .tl-hero__bg { order: 1; }
  #tl-root .tl-hero__inner { order: 0; }
}
@media (max-width: 900px) {
  #tl-root .tl-nav, #tl-root .tl-hd-actions { display: none; }
  #tl-root .tl-burger { display: flex; }
  #tl-root .tl-hero-wrap { padding-top: 64px; }
  #tl-root .tl-hero { border-radius: 12px; }
  #tl-root .tl-pricing, #tl-root .tl-content, #tl-root .tl-faq, #tl-root .tl-dark { padding: 52px 0; }
  #tl-root .tl-footer__top { grid-template-columns: 1fr; gap: 28px; padding: 36px 0 32px; }
  #tl-root .tl-footer__brand { align-items: flex-start; }
}
@media (max-width: 480px) {
  #tl-root .tl-hero__inner { padding: 32px 24px; }
  #tl-root .tl-hero__eye { margin-bottom: 8px; }
  #tl-root .tl-hero h1 { margin-bottom: 4px; }
  #tl-root .tl-hero__sub { margin-bottom: 16px; }
  #tl-root .tl-checks--hero { margin-bottom: 18px !important; }
  #tl-root .tl-checks--hero li { font-size: 13px; }
  #tl-root .tl-hero__ctas { flex-direction: column; margin-bottom: 20px; }
  #tl-root .tl-hero__ctas .tl-btn { width: 100%; justify-content: center; }
  #tl-root .tl-card { padding: 26px 16px 18px; }
  #tl-root .tl-footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  #tl-root *, #tl-root *::before, #tl-root *::after {
    animation-duration: .01ms !important; transition-duration: .01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   BLOG POST CTA BOX
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-post-cta {
  display: flex; align-items: center; gap: 28px;
  border: 1.5px solid var(--c-gray-l);
  border-left: 4px solid var(--c-navy);
  border-radius: 12px;
  padding: 22px 28px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
#tl-root .tl-post-cta__text { flex: 1; min-width: 0; }
#tl-root .tl-post-cta__label {
  display: block;
  font-family: var(--ff-b); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--c-navy); margin-bottom: 4px;
}
#tl-root .tl-post-cta__text p {
  font-family: var(--ff-b) !important; font-size: 13.5px !important; color: #555 !important;
  line-height: 1.55 !important; margin: 0 !important;
}
#tl-root .tl-post-cta__text p strong { color: var(--c-navy) !important; font-weight: 600 !important; }
#tl-root .tl-post-cta__action {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 20px;
}
#tl-root .tl-post-cta__compare {
  font-family: var(--ff-b); font-size: 12px; color: var(--c-gray-m);
  line-height: 1.5; white-space: nowrap; text-align: right;
}
#tl-root .tl-post-cta__compare strong {
  color: var(--c-green); font-weight: 600; display: block;
}
#tl-root .tl-post-cta .tl-btn { white-space: nowrap; font-size: 13px; padding: 11px 22px; }
@media (max-width: 680px) {
  #tl-root .tl-post-cta { flex-direction: column; align-items: stretch; gap: 16px; padding: 18px 20px; border-left-width: 4px; }
  #tl-root .tl-post-cta__action { flex-direction: row; align-items: center; gap: 14px; justify-content: space-between; }
  #tl-root .tl-post-cta__compare { text-align: left; }
}

/* ═══════════════════════════════════════════════════════════
   HUBSPOT FORM SECTION
   ═══════════════════════════════════════════════════════════ */
#tl-root .tl-form-section {
  background-color: var(--c-navy-d);
  padding: clamp(64px, 7vw, 96px) 0;
}
#tl-root .tl-form-section__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
#tl-root .tl-form-section__text {
  text-align: center;
}
#tl-root .tl-form-section__trust-link {
  display: inline-block; margin-top: 24px;
  font-family: var(--ff-b); font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none; transition: color 140ms ease;
  letter-spacing: 0.01em;
}
#tl-root .tl-form-section__trust-link:hover { color: rgba(255,255,255,.8); }
#tl-root .tl-form-section__text .tl-label { color: var(--c-teal); }
#tl-root .tl-form-section__text h2 {
  font-family: var(--ff-h); font-size: var(--fs-h2); font-weight: 700;
  color: #ffffff; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 14px;
}
#tl-root .tl-form-section__text p {
  font-family: var(--ff-b); font-size: 16px; color: rgba(255,255,255,.68);
  line-height: 1.72; margin-bottom: 24px;
}
#tl-root .tl-form-section__text .tl-checks--sm li { color: rgba(255,255,255,.85); }
#tl-root .tl-form-section__form {
  background: #ffffff;
  border-radius: var(--r-card);
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}
/* HubSpot iframe + form field spacing */
#tl-root .tl-form-section__form iframe.hs-form-iframe {
  width: 100% !important;
  border: none !important;
  display: block !important;
}
/* HubSpot injects styles into the iframe, but we can control the wrapper */
#tl-root .tl-form-section__form .hbspt-form { margin: 0 !important; }
#tl-root .tl-form-section__form .hs-form-field { margin-bottom: 16px !important; }
#tl-root .tl-form-section__form .hs-form-field label {
  font-family: var(--ff-b) !important; font-size: 13px !important;
  font-weight: 600 !important; color: var(--c-navy) !important;
  margin-bottom: 6px !important; display: block !important;
}
#tl-root .tl-form-section__form .hs-input {
  width: 100% !important; padding: 10px 14px !important;
  border: 1.5px solid var(--c-gray-l) !important;
  border-radius: 8px !important; font-size: 15px !important;
  font-family: var(--ff-b) !important; color: var(--c-navy) !important;
  background: #fff !important; box-sizing: border-box !important;
}
#tl-root .tl-form-section__form .hs-input:focus {
  outline: none !important; border-color: var(--c-green) !important;
}
#tl-root .tl-form-section__form .hs-button {
  background: var(--c-green) !important; color: #fff !important;
  border: none !important; border-radius: 100px !important;
  padding: 13px 28px !important; font-family: var(--ff-b) !important;
  font-size: 14px !important; font-weight: 600 !important;
  cursor: pointer !important; width: 100% !important;
  margin-top: 8px !important; transition: background 140ms ease !important;
}
#tl-root .tl-form-section__form .hs-button:hover {
  background: var(--c-green-h) !important;
}
@media (max-width: 760px) {
  #tl-root .tl-form-section__text { max-width: 100%; }
  #tl-root .tl-form-section__form { padding: 24px 20px; }
}

/* ── Contact Modal (mobile) ───────────────────────────────── */
#tl-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(29,27,69,.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
  padding: 24px;
  /* Inherit tokens since modal lives outside #tl-root */
  --c-navy: #272657; --c-navy-d: #1d1b45; --c-green: #04af8f;
  --c-green-h: #039b7e; --c-teal: #4fefd1; --c-off: #f5f6f4;
  --c-gray: #5a5a5a; --c-gray-l: #e2e2e2;
  --ff-h: 'DM Sans', sans-serif;
  --ff-b: 'Inter', sans-serif;
}
#tl-modal-overlay.is-open { opacity: 1; visibility: visible; }
#tl-modal-overlay.is-open .tl-modal { transform: translateY(0); opacity: 1; }
@media (max-width: 760px) {
  #tl-modal-overlay { display: flex; }
}

#tl-modal-overlay .tl-modal {
  position: relative !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  width: 100% !important; max-width: 500px !important;
  max-height: calc(100dvh - 48px) !important;
  overflow-y: auto !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.25) !important;
  transform: translateY(24px); opacity: 0;
  transition: transform 320ms cubic-bezier(.22,1,.36,1), opacity 280ms ease;
  /* Reset any vaxel .tl-modal overrides */
  left: auto !important; top: auto !important;
  height: auto !important;
  display: block !important;
}
#tl-modal-overlay .tl-modal__header {
  padding: 28px 28px 0;
  text-align: center;
}
#tl-modal-overlay .tl-modal__header .tl-label {
  color: var(--c-green) !important; font-family: var(--ff-b) !important;
  font-size: 12px !important; font-weight: 600 !important; text-transform: uppercase !important;
  letter-spacing: 0.08em !important; display: block !important; margin-bottom: 4px !important;
}
#tl-modal-overlay .tl-modal__header h2 {
  font-family: var(--ff-h) !important; font-size: 24px !important;
  font-weight: 700 !important; color: var(--c-navy) !important; letter-spacing: -0.02em !important;
  line-height: 1.15 !important; margin: 0 0 6px !important;
}
#tl-modal-overlay .tl-modal__header p {
  font-family: var(--ff-b) !important; font-size: 14px !important; color: var(--c-gray) !important;
  line-height: 1.6 !important; margin: 0 !important;
}
#tl-modal-overlay .tl-modal__body {
  padding: 24px 28px 28px;
}
#tl-modal-overlay .tl-modal__close {
  position: absolute !important; top: 14px !important; right: 14px !important;
  width: 36px !important; height: 36px !important; border: none !important;
  background: var(--c-off) !important; border-radius: 50% !important;
  cursor: pointer; display: flex !important; align-items: center; justify-content: center;
  transition: background 140ms ease;
  z-index: 1;
}
#tl-modal-overlay .tl-modal__close:hover { background: var(--c-gray-l) !important; }
#tl-modal-overlay .tl-modal__close svg { width: 16px !important; height: 16px !important; stroke: var(--c-navy); stroke-width: 2; }

@media (max-width: 500px) {
  #tl-modal-overlay { padding: 8px; align-items: flex-end; }
  #tl-modal-overlay .tl-modal { border-radius: 16px 16px 10px 10px !important; max-height: calc(100dvh - 16px) !important; }
  #tl-modal-overlay .tl-modal__header { padding: 16px 18px 0; }
  #tl-modal-overlay .tl-modal__header h2 { font-size: 20px !important; margin-bottom: 2px !important; }
  #tl-modal-overlay .tl-modal__header p { font-size: 13px !important; }
  #tl-modal-overlay .tl-modal__body { padding: 14px 18px 18px; }
  #tl-modal-overlay .hs-form-field { margin-bottom: 10px !important; }
  #tl-modal-overlay .hs-form-field label { font-size: 12px !important; margin-bottom: 3px !important; }
  #tl-modal-overlay .hs-input { padding: 8px 12px !important; font-size: 14px !important; }
  #tl-modal-overlay .hs-button { padding: 11px 24px !important; font-size: 13px !important; margin-top: 4px !important; }
  #tl-modal-overlay textarea.hs-input { min-height: 60px !important; height: 60px !important; }
}

/* ── Contact Drawer (desktop) ────────────────────────────── */
/* Backdrop that dims page behind drawer */
#tl-drawer-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 9997;
  background: rgba(29,27,69,.45);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}
#tl-drawer-backdrop.is-open { opacity: 1; visibility: visible; }
@media (min-width: 761px) {
  #tl-drawer-backdrop { display: block; }
}

#tl-drawer {
  display: none;
  position: fixed; bottom: 0; left: 50%; z-index: 9998;
  transform: translateX(-50%) translateY(calc(100% - 48px));
  width: 780px; max-width: calc(100vw - 48px);
  flex-direction: column;
  transition: transform 380ms cubic-bezier(.22,1,.36,1);
  /* Inherit tokens since drawer lives outside #tl-root */
  --c-navy: #272657; --c-navy-d: #1d1b45; --c-green: #04af8f;
  --c-green-h: #039b7e; --c-teal: #4fefd1; --c-off: #f5f6f4;
  --c-gray: #5a5a5a; --c-gray-l: #e2e2e2;
  --ff-h: 'DM Sans', sans-serif;
  --ff-b: 'Inter', sans-serif;
  --r-card: 16px;
}
#tl-drawer.is-open {
  transform: translateX(-50%) translateY(0);
}
@media (min-width: 761px) {
  #tl-drawer { display: flex; }
}

/* The little folder-tab that peeks up */
#tl-drawer .tl-drawer__tab {
  align-self: center;
  width: auto !important; min-width: 180px !important;
  background: #272657 !important;
  color: #fff !important;
  font-family: 'Inter', sans-serif !important; font-size: 13px !important; font-weight: 600 !important;
  letter-spacing: 0.02em;
  padding: 10px 24px !important;
  border-radius: 12px 12px 0 0 !important;
  border: none !important; cursor: pointer;
  display: flex !important; align-items: center; justify-content: center; gap: 8px;
  transition: background 180ms ease;
  position: relative !important;
  left: auto !important; top: auto !important;
  height: auto !important;
}
#tl-drawer .tl-drawer__tab:hover { background: #1d1b45 !important; }
#tl-drawer .tl-drawer__tab svg {
  width: 14px !important; height: 14px !important; stroke: currentColor; stroke-width: 2;
  transition: transform 300ms cubic-bezier(.22,1,.36,1);
}
#tl-drawer.is-open .tl-drawer__tab svg { transform: rotate(180deg); }

/* The panel body */
#tl-drawer .tl-drawer__panel {
  background: #ffffff !important;
  border-radius: 20px 20px 0 0 !important;
  overflow-y: auto;
  max-height: calc(100dvh - 120px);
  box-shadow: 0 -4px 40px rgba(0,0,0,.15);
}
#tl-drawer .tl-drawer__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px 0;
}
#tl-drawer .tl-drawer__logo {
  height: 28px; width: auto; display: block;
}
#tl-drawer .tl-drawer__close {
  width: 34px; height: 34px; border: none;
  background: var(--c-off); border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 140ms ease;
}
#tl-drawer .tl-drawer__close:hover { background: var(--c-gray-l); }
#tl-drawer .tl-drawer__close svg { width: 14px; height: 14px; stroke: var(--c-navy); stroke-width: 2; }
#tl-drawer .tl-drawer__header {
  padding: 16px 32px 0; text-align: left;
}
#tl-drawer .tl-drawer__header .tl-label {
  color: var(--c-green) !important; font-family: var(--ff-b) !important;
  font-size: 12px !important; font-weight: 600 !important; text-transform: uppercase !important;
  letter-spacing: 0.08em !important; display: block !important; margin-bottom: 4px !important;
}
#tl-drawer .tl-drawer__header h2 {
  font-family: var(--ff-h) !important; font-size: 28px !important; font-weight: 700 !important;
  color: var(--c-navy) !important; letter-spacing: -0.02em !important;
  line-height: 1.15 !important; margin: 0 0 6px !important;
}
#tl-drawer .tl-drawer__header p {
  font-family: var(--ff-b) !important; font-size: 15px !important; color: var(--c-gray) !important;
  line-height: 1.6 !important; margin: 0 !important;
}
#tl-drawer .tl-drawer__body {
  padding: 24px 32px 32px;
}

/* Spinner */
.tl-drawer__spinner,
.tl-modal__spinner {
  display: flex; align-items: center; justify-content: center;
  padding: 48px 0;
}
.tl-drawer__spinner::after,
.tl-modal__spinner::after {
  content: ''; width: 32px; height: 32px;
  border: 3px solid var(--c-gray-l);
  border-top-color: var(--c-green);
  border-radius: 50%;
  animation: tl-spin .7s linear infinite;
}
@keyframes tl-spin { to { transform: rotate(360deg); } }

/* Shared HubSpot form styles (modal + drawer) */
#tl-modal-overlay .hs-form-field,
#tl-drawer .hs-form-field { margin-bottom: 16px !important; }
#tl-modal-overlay .hs-form-field label,
#tl-drawer .hs-form-field label {
  font-family: var(--ff-b) !important; font-size: 13px !important;
  font-weight: 600 !important; color: var(--c-navy) !important;
  margin-bottom: 6px !important; display: block !important;
}
#tl-modal-overlay .hs-input,
#tl-drawer .hs-input {
  width: 100% !important; padding: 10px 14px !important;
  border: 1.5px solid var(--c-gray-l) !important;
  border-radius: 8px !important; font-size: 15px !important;
  font-family: var(--ff-b) !important; color: var(--c-navy) !important;
  background: #fff !important; box-sizing: border-box !important;
}
#tl-modal-overlay .hs-input:focus,
#tl-drawer .hs-input:focus {
  outline: none !important; border-color: var(--c-green) !important;
}
#tl-modal-overlay .hs-button,
#tl-drawer .hs-button {
  background: var(--c-green) !important; color: #fff !important;
  border: none !important; border-radius: 100px !important;
  padding: 13px 28px !important; font-family: var(--ff-b) !important;
  font-size: 14px !important; font-weight: 600 !important;
  cursor: pointer !important; width: 100% !important;
  margin-top: 8px !important; transition: background 140ms ease !important;
}
#tl-modal-overlay .hs-button:hover,
#tl-drawer .hs-button:hover { background: var(--c-green-h) !important; }
#tl-modal-overlay .hbspt-form,
#tl-drawer .hbspt-form { margin: 0 !important; }

@media (min-width: 761px) and (max-width: 960px) {
  #tl-drawer { width: 560px; }
  #tl-drawer .tl-drawer__top { padding: 16px 24px 0; }
  #tl-drawer .tl-drawer__header { padding: 12px 24px 0; }
  #tl-drawer .tl-drawer__body { padding: 20px 24px 28px; }
}
