@font-face {
  font-family: "Familjen Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../../assets/fonts/familjen-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Familjen Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../../assets/fonts/familjen-grotesk-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../../assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../../assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
:root {
  --tf-ink: #14181d;
  --tf-ink-soft: #232a33;
  --tf-slate: #3c4450;
  --tf-muted: #6b7280;
  --tf-accent: #ff5a1f;
  --tf-accent-dark: #d9430c;
  --tf-accent-soft: #fff1ea;
  --tf-paper: #f7f4ef;
  --tf-surface: #ffffff;
  --tf-line: #e3ded5;
  --tf-line-strong: #cdc5b8;
  --tf-radius-sm: 10px;
  --tf-radius: 18px;
  --tf-radius-lg: 28px;
  --tf-shadow: 0 24px 60px -32px rgba(20, 24, 29, 0.35);
  --tf-shadow-sm: 0 12px 28px -20px rgba(20, 24, 29, 0.4);
  --tf-container: 1180px;
  --tf-container-wide: 1400px;
  --tf-container-narrow: 760px;
  --tf-gutter: 24px;
  --tf-header-height: 84px;
  --tf-font-heading: "Familjen Grotesk", "Helvetica Neue", Arial, sans-serif;
  --tf-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--tf-header-height) + 24px);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  background: var(--tf-surface);
  color: var(--tf-slate);
  font-family: var(--tf-font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
.tf-container,
.tf-container--wide,
.tf-container--narrow {
  width: min(var(--tf-container), calc(100% - var(--tf-gutter) * 2));
  margin-inline: auto;
  min-width: 0;
}
.tf-container--wide {
  width: min(var(--tf-container-wide), calc(100% - var(--tf-gutter) * 2));
}
.tf-container--narrow {
  width: min(var(--tf-container-narrow), calc(100% - var(--tf-gutter) * 2));
}
.tf-section {
  position: relative;
  padding-block: clamp(72px, 9vw, 124px);
}
.tf-section--tight {
  padding-block: clamp(44px, 6vw, 76px);
}
.tf-section--loose {
  padding-block: clamp(96px, 12vw, 168px);
}
.tf-section--none {
  padding-block: 0;
}
.tf-section--white {
  background: var(--tf-surface);
}
.tf-section--paper {
  background: var(--tf-paper);
}
.tf-section--ink {
  background: var(--tf-ink);
  color: rgba(255, 255, 255, 0.78);
}
.tf-section--ink h1,
.tf-section--ink h2,
.tf-section--ink h3,
.tf-section--ink h4 {
  color: #fff;
}
.tf-section--ink .tf-eyebrow {
  color: #ffa885;
}
.tf-section--ink a:not(.tf-button) {
  color: #fff;
}
.tf-section--accent {
  background: var(--tf-accent);
  color: #fff;
}
.tf-section--accent h1,
.tf-section--accent h2,
.tf-section--accent h3,
.tf-section--accent h4 {
  color: #fff;
}
.tf-section--accent .tf-eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.tf-section--accent a:not(.tf-button) {
  color: #fff;
}
.tf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--tf-accent-dark);
  font-family: var(--tf-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tf-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  flex: none;
}
.tf-section-intro {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.tf-section-intro > *:last-child {
  margin-bottom: 0;
}
.tf-section-intro--center {
  margin-inline: auto;
  text-align: center;
}
.tf-section-intro--center .tf-eyebrow {
  justify-content: center;
}
.tf-lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
  color: var(--tf-muted);
}
.tf-section--ink .tf-lead {
  color: rgba(255, 255, 255, 0.72);
}
.tf-section--accent .tf-lead {
  color: rgba(255, 255, 255, 0.9);
}
.tf-section--accent strong,
.tf-section--accent b,
.tf-section--ink strong,
.tf-section--ink b {
  color: #fff;
}
.tf-rule {
  height: 1px;
  background: var(--tf-line);
  border: 0;
  margin: 0;
}
.tf-card {
  background: var(--tf-surface);
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius);
  padding: clamp(24px, 3vw, 34px);
}
.tf-icon {
  width: 1em;
  height: 1em;
  flex: none;
}
.tf-skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 999;
  background: var(--tf-ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--tf-radius-sm) var(--tf-radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}
.tf-skip-link:focus {
  top: 0;
}
.tf-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid var(--tf-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (max-width: 640px) {
  :root {
    --tf-gutter: 18px;
    --tf-header-height: 68px;
  }
  body {
    font-size: 16px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em;
  color: var(--tf-ink);
  font-family: var(--tf-font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h1 {
  font-size: clamp(38px, 5.4vw, 74px);
}
h2 {
  font-size: clamp(30px, 3.6vw, 48px);
}
h3 {
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.2;
}
h4 {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
h5,
h6 {
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
p {
  margin: 0 0 1.15em;
  overflow-wrap: break-word;
}
a {
  color: var(--tf-accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.16s ease;
}
a:hover {
  color: var(--tf-ink);
}
strong,
b {
  font-weight: 600;
  color: var(--tf-ink);
}
small {
  font-size: 14px;
}
blockquote {
  margin: 2em 0;
  padding: 4px 0 4px 26px;
  border-left: 3px solid var(--tf-accent);
  font-family: var(--tf-font-heading);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--tf-ink);
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--tf-font-body);
  font-size: 15px;
  font-style: normal;
  color: var(--tf-muted);
}
code,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em;
}
code {
  background: var(--tf-paper);
  border: 1px solid var(--tf-line);
  border-radius: 5px;
  padding: 1px 6px;
}
hr {
  border: 0;
  border-top: 1px solid var(--tf-line);
  margin: clamp(32px, 4vw, 56px) 0;
}
.tf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 26px;
  border: 2px solid var(--tf-accent);
  border-radius: 999px;
  background: var(--tf-accent);
  color: #fff;
  font-family: var(--tf-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.tf-button .tf-icon {
  width: 20px;
  height: 20px;
}
.tf-button:hover {
  background: var(--tf-ink);
  border-color: var(--tf-ink);
  color: #fff;
  transform: translateY(-1px);
}
.tf-button--ink {
  background: var(--tf-ink);
  border-color: var(--tf-ink);
  color: #fff;
}
.tf-button--ink:hover {
  background: var(--tf-accent);
  border-color: var(--tf-accent);
  color: #fff;
}
.tf-button--ghost {
  background: transparent;
  border-color: var(--tf-line-strong);
  color: var(--tf-ink);
}
.tf-button--ghost:hover {
  background: var(--tf-ink);
  border-color: var(--tf-ink);
  color: #fff;
}
.tf-button--light {
  background: #fff;
  border-color: #fff;
  color: var(--tf-ink);
}
.tf-button--light:hover {
  background: var(--tf-accent);
  border-color: var(--tf-accent);
  color: #fff;
}
.tf-button--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.tf-button--outline-light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--tf-ink);
}
.tf-button--small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 15px;
}
.tf-textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tf-accent-dark);
  font-weight: 600;
  text-decoration: none;
}
.tf-textlink .tf-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.16s ease;
}
.tf-textlink:hover {
  color: var(--tf-ink);
}
.tf-textlink:hover .tf-icon {
  transform: translateX(4px);
}
.tf-section--ink .tf-textlink {
  color: #ffa885;
}
.tf-section--ink .tf-textlink:hover {
  color: #fff;
}
.tf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
@media (max-width: 560px) {
  .tf-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .tf-button {
    width: 100%;
  }
}
.tf-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
}
.tf-logo__mark {
  width: 34px;
  height: 34px;
  flex: none;
  color: var(--tf-accent);
}
.tf-logo__word {
  font-family: var(--tf-font-heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--tf-ink);
}
.tf-logo--light .tf-logo__word {
  color: #fff;
}
.tf-logo__image {
  width: auto;
  height: 34px;
}
@media (max-width: 640px) {
  .tf-logo__mark {
    width: 30px;
    height: 30px;
  }
  .tf-logo__word {
    font-size: 23px;
  }
}
.tf-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tf-header.is-stuck {
  border-bottom-color: var(--tf-line);
  box-shadow: 0 10px 30px -24px rgba(20, 24, 29, 0.5);
}
.tf-header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--tf-header-height);
}
.tf-header__logo {
  flex: none;
  display: block;
}
.tf-header__logo img {
  width: auto;
  height: 32px;
}
.tf-header__nav {
  flex: 1 1 auto;
  min-width: 0;
}
.tf-header__actions {
  flex: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.tf-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tf-ink);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
}
.tf-header__phone .tf-icon {
  width: 18px;
  height: 18px;
  color: var(--tf-accent-dark);
}
.tf-header__phone:hover {
  color: var(--tf-accent-dark);
}
.tf-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tf-menu--primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.tf-menu--primary > .tf-menu__item {
  position: relative;
}
.tf-menu--primary .tf-menu__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--tf-ink);
  font-size: 15.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.16s ease, color 0.16s ease;
}
.tf-menu--primary .tf-menu__item:hover > .tf-menu__link,
.tf-menu--primary .tf-menu__item.is-current > .tf-menu__link {
  background: var(--tf-paper);
  color: var(--tf-ink);
}
.tf-menu--primary .tf-menu__item.is-current > .tf-menu__link {
  box-shadow: inset 0 0 0 1px var(--tf-line);
}
.tf-menu--primary .tf-menu__toggle {
  display: none;
}
.tf-menu--primary .tf-menu__item--has-children > .tf-menu__link::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.55;
}
.tf-menu--sub {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 248px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius);
  box-shadow: var(--tf-shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.tf-menu--sub .tf-menu__link {
  display: block;
  width: 100%;
  padding: 9px 14px;
  border-radius: var(--tf-radius-sm);
  font-size: 15px;
}
.tf-menu--primary .tf-menu__item--has-children:hover > .tf-menu--sub,
.tf-menu--primary .tf-menu__item--has-children:focus-within > .tf-menu--sub {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.tf-header__burger {
  display: none;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--tf-line);
  border-radius: 12px;
  cursor: pointer;
}
.tf-header__burger-box {
  display: grid;
  gap: 4px;
  width: 20px;
}
.tf-header__burger-box span {
  display: block;
  height: 2px;
  background: var(--tf-ink);
  border-radius: 2px;
}
.tf-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20, 24, 29, 0.45);
}
.tf-mobile-nav[hidden] {
  display: none;
}
.tf-mobile-nav__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: min(420px, 100%);
  height: 100%;
  margin-left: auto;
  padding: 20px var(--tf-gutter) 32px;
  background: var(--tf-surface);
  overflow-y: auto;
  animation: tf-slide-in 0.22s ease;
}
@keyframes tf-slide-in {
  from {
    transform: translateX(24px);
    opacity: 0;
  }
}
.tf-mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tf-mobile-nav__top img {
  height: 30px;
  width: auto;
}
.tf-mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--tf-paper);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}
.tf-mobile-nav__close .tf-icon {
  width: 22px;
  height: 22px;
}
.tf-menu--mobile {
  display: grid;
}
.tf-menu--mobile .tf-menu__item {
  position: relative;
  border-bottom: 1px solid var(--tf-line);
}
.tf-menu--mobile .tf-menu__link {
  display: block;
  padding: 15px 44px 15px 0;
  color: var(--tf-ink);
  font-family: var(--tf-font-heading);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.tf-menu--mobile .tf-menu__toggle {
  position: absolute;
  top: 8px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--tf-paper);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}
.tf-menu--mobile .tf-menu__toggle .tf-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
}
.tf-menu--mobile .tf-menu__toggle[aria-expanded="true"] .tf-icon {
  transform: rotate(180deg);
}
.tf-menu--mobile .tf-menu--sub {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  display: none;
  min-width: 0;
  margin: 0 0 12px;
  padding: 0 0 0 14px;
  background: transparent;
  border: 0;
  border-left: 2px solid var(--tf-line);
  border-radius: 0;
  box-shadow: none;
}
.tf-menu--mobile .tf-menu--sub .tf-menu__link {
  padding: 9px 0;
  font-family: var(--tf-font-body);
  font-size: 16px;
  font-weight: 500;
}
.tf-menu--mobile .tf-menu--sub .tf-menu__item {
  border: 0;
}
.tf-menu--mobile .tf-menu__item--has-children.is-open > .tf-menu--sub {
  display: block;
}
.tf-mobile-nav__footer {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--tf-line);
}
.tf-mobile-nav__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tf-ink);
  font-weight: 500;
  text-decoration: none;
}
.tf-mobile-nav__contact .tf-icon {
  width: 18px;
  height: 18px;
  color: var(--tf-accent-dark);
}
body.tf-nav-open {
  overflow: hidden;
}
@media (max-width: 1080px) {
  .tf-header__phone span {
    display: none;
  }
  .tf-header__inner {
    gap: 18px;
  }
  .tf-menu--primary .tf-menu__link {
    padding: 10px;
    font-size: 15px;
  }
}
@media (max-width: 940px) {
  .tf-header__nav,
  .tf-header__cta {
    display: none;
  }
  .tf-header__burger {
    display: inline-flex;
  }
  .tf-header__inner {
    justify-content: space-between;
  }
  .tf-header__phone span {
    display: inline;
  }
}
@media (max-width: 480px) {
  .tf-header__phone span {
    display: none;
  }
}
.tf-footer {
  position: relative;
  background: var(--tf-ink);
  color: rgba(255, 255, 255, 0.68);
  padding-block: clamp(56px, 7vw, 88px) 28px;
  font-size: 15.5px;
}
.tf-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
.tf-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.tf-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.tf-footer__logo img {
  height: 34px;
  width: auto;
}
.tf-footer__description {
  max-width: 42ch;
  margin: 20px 0 24px;
  line-height: 1.65;
}
.tf-footer__contact {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tf-footer__contact li > * {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}
.tf-footer__contact .tf-icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--tf-accent);
}
.tf-footer__social {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}
.tf-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.tf-footer__social a:hover {
  background: var(--tf-accent);
  border-color: var(--tf-accent);
  color: var(--tf-ink);
}
.tf-footer__social .tf-icon {
  width: 19px;
  height: 19px;
}
.tf-footer__heading {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--tf-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tf-footer__menu {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tf-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}
.tf-footer__bottom p {
  margin: 0;
}
.tf-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tf-floating {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 180;
  gap: 10px;
  transition: transform 0.24s ease, opacity 0.24s ease;
}
.tf-floating.is-hidden {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.tf-floating__button {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 10px 14px;
  background: var(--tf-accent);
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 32px -14px rgba(20, 24, 29, 0.6);
}
.tf-floating__button .tf-icon {
  width: 19px;
  height: 19px;
}
.tf-floating__button--ghost {
  background: var(--tf-ink);
  color: #fff;
}
@media (max-width: 900px) {
  .tf-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tf-footer__brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 780px) {
  .tf-floating {
    display: flex;
  }
  .tf-footer {
    padding-bottom: 92px;
  }
}
@media (max-width: 560px) {
  .tf-footer__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
  .tf-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.tf-breadcrumbs {
  background: var(--tf-paper);
  border-bottom: 1px solid var(--tf-line);
  font-size: 14px;
}
.tf-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 12px 0;
}
.tf-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--tf-muted);
}
.tf-breadcrumbs__item a {
  color: var(--tf-muted);
  text-decoration: none;
}
.tf-breadcrumbs__item a:hover {
  color: var(--tf-ink);
  text-decoration: underline;
}
.tf-breadcrumbs__item [aria-current="page"] {
  color: var(--tf-ink);
  font-weight: 500;
}
.tf-breadcrumbs__sep {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}
.tf-prose > *:last-child {
  margin-bottom: 0;
}
.tf-prose ul,
.tf-prose ol {
  margin: 0 0 1.35em;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.tf-prose ul > li {
  position: relative;
  padding-left: 30px;
}
.tf-prose ul > li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tf-accent);
  box-shadow: 0 0 0 5px var(--tf-accent-soft);
}
.tf-prose ol {
  counter-reset: tf-list;
}
.tf-prose ol > li {
  position: relative;
  counter-increment: tf-list;
  padding-left: 40px;
}
.tf-prose ol > li::before {
  content: counter(tf-list);
  position: absolute;
  left: 0;
  top: 0.15em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--tf-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.tf-prose li > ul,
.tf-prose li > ol {
  margin: 10px 0 0;
}
.tf-prose .wp-block-image {
  margin: 2em 0;
}
.tf-prose .wp-block-image img {
  border-radius: var(--tf-radius);
}
.tf-prose .wp-block-image figcaption {
  margin-top: 10px;
  color: var(--tf-muted);
  font-size: 14px;
  text-align: center;
}
.tf-prose .wp-block-table {
  margin: 2em 0;
  overflow-x: auto;
}
.tf-prose .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
}
.tf-prose .wp-block-table th,
.tf-prose .wp-block-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--tf-line);
  text-align: left;
}
.tf-prose .wp-block-table th {
  background: var(--tf-paper);
  color: var(--tf-ink);
  font-weight: 600;
}
.tf-prose .wp-block-separator {
  margin: clamp(32px, 4vw, 56px) auto;
  max-width: 120px;
  border-top: 2px solid var(--tf-accent);
}
.tf-prose .wp-block-embed {
  margin: 2em 0;
}
.tf-prose .wp-block-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--tf-radius);
}
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 0;
}
.wp-block-buttons .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 26px;
  border: 2px solid var(--tf-accent);
  border-radius: 999px;
  background: var(--tf-accent);
  color: #fff;
  font-family: var(--tf-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.wp-block-buttons .wp-block-button__link .tf-icon {
  width: 20px;
  height: 20px;
}
.wp-block-buttons .wp-block-button__link:hover {
  background: var(--tf-ink);
  border-color: var(--tf-ink);
  color: #fff;
  transform: translateY(-1px);
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 26px;
  border: 2px solid var(--tf-accent);
  border-radius: 999px;
  background: var(--tf-accent);
  color: #fff;
  font-family: var(--tf-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  background: transparent;
  border-color: var(--tf-line-strong);
  color: var(--tf-ink);
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link .tf-icon {
  width: 20px;
  height: 20px;
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--tf-ink);
  border-color: var(--tf-ink);
  color: #fff;
  transform: translateY(-1px);
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--tf-ink);
  border-color: var(--tf-ink);
  color: #fff;
}
.tf-section--ink .wp-block-buttons .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 26px;
  border: 2px solid var(--tf-accent);
  border-radius: 999px;
  background: var(--tf-accent);
  color: #fff;
  font-family: var(--tf-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  background: #fff;
  border-color: #fff;
  color: var(--tf-ink);
}
.tf-section--ink .wp-block-buttons .wp-block-button__link .tf-icon {
  width: 20px;
  height: 20px;
}
.tf-section--ink .wp-block-buttons .wp-block-button__link:hover {
  background: var(--tf-ink);
  border-color: var(--tf-ink);
  color: #fff;
  transform: translateY(-1px);
}
.tf-section--ink .wp-block-buttons .wp-block-button__link:hover {
  background: var(--tf-accent);
  border-color: var(--tf-accent);
  color: #fff;
}
.tf-section--ink .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 26px;
  border: 2px solid var(--tf-accent);
  border-radius: 999px;
  background: var(--tf-accent);
  font-family: var(--tf-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.tf-section--ink .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link .tf-icon {
  width: 20px;
  height: 20px;
}
.tf-section--ink .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--tf-ink);
  border-color: var(--tf-ink);
  color: #fff;
  transform: translateY(-1px);
}
.tf-section--ink .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: #fff;
  border-color: #fff;
  color: var(--tf-ink);
}
.tf-article {
  padding-block: clamp(40px, 5vw, 72px) clamp(64px, 8vw, 104px);
}
.tf-article__header {
  max-width: 760px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  text-align: center;
}
.tf-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 18px;
  color: var(--tf-muted);
  font-size: 14px;
}
.tf-article__category {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--tf-accent-soft);
  color: var(--tf-accent-dark);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
}
.tf-article__lead {
  margin-top: 18px;
  font-size: clamp(18px, 1.8vw, 21px);
  color: var(--tf-muted);
  line-height: 1.6;
}
.tf-article__figure {
  margin: 0 0 clamp(32px, 4vw, 52px);
}
.tf-article__figure img {
  width: 100%;
  border-radius: var(--tf-radius-lg);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.tf-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.tf-article__body {
  max-width: 68ch;
  font-size: 17.5px;
}
.tf-article__body h2 {
  margin-top: 1.6em;
  font-size: clamp(25px, 2.6vw, 33px);
  scroll-margin-top: calc(var(--tf-header-height) + 24px);
}
.tf-article__body h3 {
  margin-top: 1.4em;
}
.tf-article__body > *:first-child {
  margin-top: 0;
}
.tf-toc {
  position: sticky;
  top: calc(var(--tf-header-height) + 24px);
  padding: 22px 24px;
  background: var(--tf-paper);
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius);
}
.tf-toc[hidden] {
  display: none;
}
.tf-toc__title {
  margin: 0 0 14px;
  font-family: var(--tf-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tf-muted);
}
.tf-toc__list {
  display: grid;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tf-toc__list a {
  display: block;
  padding: 5px 0 5px 14px;
  border-left: 2px solid var(--tf-line-strong);
  color: var(--tf-slate);
  font-size: 14.5px;
  line-height: 1.4;
  text-decoration: none;
  transition: border-color 0.16s ease, color 0.16s ease;
}
.tf-toc__list a:hover {
  border-left-color: var(--tf-accent);
  color: var(--tf-ink);
}
.tf-article__footer {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 28px;
  border-top: 1px solid var(--tf-line);
}
.tf-article__related {
  background: var(--tf-paper);
  padding-block: clamp(56px, 7vw, 88px);
}
@media (max-width: 900px) {
  .tf-article__layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .tf-toc {
    position: static;
    order: -1;
  }
}
.tf-archive {
  padding-block: clamp(48px, 6vw, 80px) clamp(64px, 8vw, 104px);
}
.tf-archive__header {
  max-width: 680px;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.tf-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
}
.tf-post-card {
  display: flex;
  flex-direction: column;
  background: var(--tf-surface);
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.tf-post-card:hover {
  transform: translateY(-3px);
  border-color: var(--tf-line-strong);
  box-shadow: var(--tf-shadow-sm);
}
.tf-post-card__media {
  display: block;
  background: var(--tf-paper);
}
.tf-post-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.tf-post-card__media--empty {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--tf-paper), var(--tf-accent-soft));
}
.tf-post-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}
.tf-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--tf-muted);
  font-size: 13.5px;
}
.tf-post-card__title {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}
.tf-post-card__title a {
  color: var(--tf-ink);
  text-decoration: none;
}
.tf-post-card__title a:hover {
  color: var(--tf-accent-dark);
}
.tf-post-card__excerpt {
  margin: 0;
  color: var(--tf-muted);
  font-size: 15.5px;
}
.tf-post-card__link {
  margin-top: auto;
  padding-top: 6px;
}
.tf-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(36px, 4vw, 56px);
  list-style: none;
  padding: 0;
}
.tf-pagination a,
.tf-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--tf-line);
  border-radius: 12px;
  color: var(--tf-ink);
  font-weight: 500;
  text-decoration: none;
}
.tf-pagination .current span,
.tf-pagination span[aria-current] {
  background: var(--tf-ink);
  border-color: var(--tf-ink);
  color: #fff;
}
.tf-pagination a:hover {
  border-color: var(--tf-ink);
}
.tf-empty {
  padding: clamp(32px, 4vw, 48px);
  background: var(--tf-paper);
  border-radius: var(--tf-radius);
  text-align: center;
}
.tf-search-form {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.tf-search-form input[type="search"] {
  flex: 1 1 auto;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid var(--tf-line);
  border-radius: 999px;
  font: inherit;
  background: #fff;
}
.tf-search-form input[type="search"]:focus {
  outline: 3px solid var(--tf-accent);
  outline-offset: 2px;
}
.tf-form .frm-fluent-form {
  display: grid;
  gap: 18px;
}
.tf-form .ff-el-group {
  margin: 0;
}
.tf-form .ff-el-input--label label,
.tf-form .ff-el-input--label {
  display: block;
  margin-bottom: 7px;
  color: var(--tf-ink);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.tf-form .ff-el-is-required.asterisk-right label::after {
  color: var(--tf-accent-dark);
}
.tf-form input[type="text"],
.tf-form input[type="email"],
.tf-form input[type="tel"],
.tf-form input[type="number"],
.tf-form input[type="date"],
.tf-form input[type="url"],
.tf-form select,
.tf-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius-sm);
  color: var(--tf-ink);
  font-family: var(--tf-font-body);
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.tf-form input[type="text"]::placeholder,
.tf-form input[type="email"]::placeholder,
.tf-form input[type="tel"]::placeholder,
.tf-form input[type="number"]::placeholder,
.tf-form input[type="date"]::placeholder,
.tf-form input[type="url"]::placeholder,
.tf-form select::placeholder,
.tf-form textarea::placeholder {
  color: #a0a5ad;
}
.tf-form input[type="text"]:hover,
.tf-form input[type="email"]:hover,
.tf-form input[type="tel"]:hover,
.tf-form input[type="number"]:hover,
.tf-form input[type="date"]:hover,
.tf-form input[type="url"]:hover,
.tf-form select:hover,
.tf-form textarea:hover {
  border-color: var(--tf-line-strong);
}
.tf-form input[type="text"]:focus,
.tf-form input[type="email"]:focus,
.tf-form input[type="tel"]:focus,
.tf-form input[type="number"]:focus,
.tf-form input[type="date"]:focus,
.tf-form input[type="url"]:focus,
.tf-form select:focus,
.tf-form textarea:focus {
  outline: none;
  border-color: var(--tf-accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.18);
}
.tf-form textarea {
  min-height: 130px;
  resize: vertical;
}
.tf-form select.ff-el-form-control,
.tf-form select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314181d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9.5 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.tf-form .ff-el-tooltip,
.tf-form .ff-el-tooltip svg {
  color: var(--tf-muted);
  fill: currentColor;
}
.tf-form .ff-el-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.tf-form .ff-el-form-check label {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--tf-slate);
  line-height: 1.5;
}
.tf-form .ff-el-form-check input[type="checkbox"],
.tf-form .ff-el-form-check input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--tf-accent);
  flex: none;
}
.tf-form .ff-el-form-check-label {
  cursor: pointer;
}
.tf-form .ff-btn-submit,
.tf-form .ff_btn_style {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 26px;
  border: 2px solid var(--tf-accent);
  border-radius: 999px;
  background: var(--tf-accent);
  color: #fff;
  font-family: var(--tf-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  width: auto;
  margin-top: 6px;
}
.tf-form .ff-btn-submit .tf-icon,
.tf-form .ff_btn_style .tf-icon {
  width: 20px;
  height: 20px;
}
.tf-form .ff-btn-submit:hover,
.tf-form .ff_btn_style:hover {
  background: var(--tf-ink);
  border-color: var(--tf-ink);
  color: #fff;
  transform: translateY(-1px);
}
.tf-form .error-text,
.tf-form .text-danger,
.tf-form .ff-el-is-error .error {
  color: #b3200e;
  font-size: 14px;
  margin-top: 6px;
}
.tf-form .ff-el-is-error input,
.tf-form .ff-el-is-error select,
.tf-form .ff-el-is-error textarea {
  border-color: #b3200e;
}
.tf-form .ff-message-success,
.tf-form .ff_submit_success {
  padding: 20px 22px;
  background: var(--tf-accent-soft);
  border: 1px solid #ffd0bb;
  border-radius: var(--tf-radius-sm);
  color: var(--tf-ink);
}
.tf-form .ff-t-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.tf-form .ff-t-cell {
  min-width: 0;
  padding: 0 !important;
}
.tf-form .ff-el-form-bottom {
  margin-top: 6px;
}
.tf-form .ff-el-help-message {
  margin-top: 6px;
  color: var(--tf-muted);
  font-size: 13.5px;
}
.tf-section--ink .tf-form .ff-el-input--label label {
  color: #fff;
}
.tf-section--ink .tf-form .ff-el-form-check label {
  color: rgba(255, 255, 255, 0.78);
}
.tf-404 {
  padding-block: clamp(72px, 10vw, 140px);
  text-align: center;
}
.tf-404__code {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--tf-font-heading);
  font-size: clamp(72px, 14vw, 168px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--tf-accent);
}
.tf-404__text {
  max-width: 520px;
  margin: 0 auto 8px;
  color: var(--tf-muted);
}
.tf-404 .tf-actions {
  justify-content: center;
}
.tf-404__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  list-style: none;
  padding: 0;
}
.tf-404__links a {
  display: inline-flex;
  padding: 9px 16px;
  background: var(--tf-paper);
  border: 1px solid var(--tf-line);
  border-radius: 999px;
  color: var(--tf-ink);
  font-size: 15px;
  text-decoration: none;
}
.tf-404__links a:hover {
  border-color: var(--tf-ink);
}
.block-editor-writing-flow {
  background: var(--tf-surface);
}
.editor-styles-wrapper {
  font-family: var(--tf-font-body);
  color: var(--tf-slate);
}
.editor-styles-wrapper .wp-block[data-align="full"] {
  margin-inline: 0;
}
.editor-styles-wrapper .acf-block-preview .tf-section {
  margin: 0;
}
.tf-block-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 26px 28px;
  background: var(--tf-paper);
  border: 1px dashed var(--tf-line-strong);
  border-radius: var(--tf-radius);
  color: var(--tf-muted);
  font-size: 15px;
}
.tf-block-placeholder .tf-icon {
  width: 20px;
  height: 20px;
  color: var(--tf-accent-dark);
}
.tf-checklist__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px) clamp(28px, 4vw, 60px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.tf-checklist--cols-1 .tf-checklist__list {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}
.tf-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: clamp(18px, 2.4vw, 26px);
  border-bottom: 1px solid var(--tf-line);
}
.tf-checklist__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: none;
  background: var(--tf-accent-soft);
  border-radius: 50%;
  color: var(--tf-accent-dark);
}
.tf-checklist__marker .tf-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.8;
}
.tf-checklist__title {
  margin: 0 0 5px;
  font-size: 18.5px;
  line-height: 1.3;
}
.tf-checklist__text {
  margin: 0;
  color: var(--tf-muted);
  font-size: 15.5px;
}
.tf-section--ink .tf-checklist__item {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.tf-section--ink .tf-checklist__marker {
  background: rgba(255, 90, 31, 0.18);
  color: #ffa885;
}
.tf-section--ink .tf-checklist__text {
  color: rgba(255, 255, 255, 0.68);
}
@media (max-width: 720px) {
  .tf-checklist__list {
    grid-template-columns: minmax(0, 1fr);
  }
}
.tf-city-grid__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.tf-city-card__link {
  position: relative;
  display: block;
  height: 100%;
  border-radius: var(--tf-radius);
  overflow: hidden;
  background: var(--tf-ink);
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}
.tf-city-card__link:hover .tf-city-card__media img {
  transform: scale(1.05);
}
.tf-city-card__link:hover .tf-city-card__cta {
  background: var(--tf-accent);
  color: var(--tf-ink);
}
.tf-city-card__media {
  display: block;
}
.tf-city-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.4s ease, opacity 0.25s ease;
}
.tf-city-card__body {
  position: absolute;
  inset: auto 0 0 0;
  display: block;
  padding: 22px 24px;
  background: linear-gradient(to top, rgba(20, 24, 29, 0.92) 35%, rgba(20, 24, 29, 0));
}
.tf-city-card__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tf-font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.tf-city-card__title .tf-icon {
  width: 19px;
  height: 19px;
  color: var(--tf-accent);
}
.tf-city-card__text {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14.5px;
  line-height: 1.5;
}
.tf-city-card__cta {
  position: absolute;
  top: -22px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.tf-city-card__cta .tf-icon {
  width: 19px;
  height: 19px;
}
.tf-city-card__link:not(:has(.tf-city-card__media)) {
  min-height: 210px;
  background: linear-gradient(150deg, var(--tf-ink), #2b333d);
}
@media (max-width: 900px) {
  .tf-city-grid__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .tf-city-grid__list {
    grid-template-columns: minmax(0, 1fr);
  }
}
.tf-contact-split__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 4.5vw, 68px);
  align-items: start;
}
.tf-contact-split__details {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.tf-contact-split__details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.tf-contact-split__details strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tf-muted);
}
.tf-contact-split__details a,
.tf-contact-split__details div > span {
  color: var(--tf-ink);
  font-size: 17px;
  text-decoration: none;
}
.tf-contact-split__details a:hover {
  color: var(--tf-accent-dark);
  text-decoration: underline;
}
.tf-contact-split__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  background: var(--tf-paper);
  border-radius: 12px;
  color: var(--tf-accent-dark);
}
.tf-contact-split__icon .tf-icon {
  width: 21px;
  height: 21px;
}
.tf-contact-split__form {
  padding: clamp(26px, 3vw, 40px);
  background: var(--tf-paper);
  border-radius: var(--tf-radius-lg);
}
.tf-contact-split__form-title {
  margin: 0 0 22px;
  font-size: clamp(21px, 2vw, 26px);
}
.tf-section--paper .tf-contact-split__form {
  background: var(--tf-surface);
  border: 1px solid var(--tf-line);
}
.tf-section--paper .tf-contact-split__icon {
  background: var(--tf-surface);
}
.tf-section--ink .tf-contact-split__details a,
.tf-section--ink .tf-contact-split__details div > span {
  color: #fff;
}
.tf-section--ink .tf-contact-split__details strong {
  color: rgba(255, 255, 255, 0.55);
}
.tf-section--ink .tf-contact-split__icon {
  background: rgba(255, 255, 255, 0.08);
  color: #ffa885;
}
.tf-section--ink .tf-contact-split__form {
  background: var(--tf-surface);
  color: var(--tf-slate);
}
@media (max-width: 900px) {
  .tf-contact-split__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
.tf-content-media__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.tf-content-media--media-left .tf-content-media__inner {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}
.tf-content-media__text {
  min-width: 0;
  max-width: 58ch;
}
.tf-content-media__text > *:last-child {
  margin-bottom: 0;
}
.tf-content-media--media-left .tf-content-media__media {
  order: -1;
}
.tf-content-media__media {
  margin: 0;
  min-width: 0;
}
.tf-content-media__media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: var(--tf-radius-lg);
}
.tf-content-media__checklist {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}
.tf-content-media__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
}
.tf-content-media__checklist .tf-icon {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  padding: 3px;
  flex: none;
  background: var(--tf-accent);
  border-radius: 50%;
  color: #fff;
  stroke-width: 3;
}
.tf-section--ink .tf-content-media__checklist .tf-icon {
  color: var(--tf-ink);
}
@media (max-width: 860px) {
  .tf-content-media__inner,
  .tf-content-media--media-left .tf-content-media__inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .tf-content-media--media-left .tf-content-media__media,
  .tf-content-media--media-right .tf-content-media__media {
    order: -1;
  }
  .tf-content-media__media img {
    aspect-ratio: 16 / 10;
  }
}
.tf-faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}
.tf-faq__intro {
  position: sticky;
  top: calc(var(--tf-header-height) + 32px);
}
.tf-faq__intro > *:last-child {
  margin-bottom: 0;
}
.tf-faq__items {
  border-top: 1px solid var(--tf-line);
}
.tf-faq-item {
  border-bottom: 1px solid var(--tf-line);
}
.tf-faq-item__heading {
  margin: 0;
  font-size: inherit;
  letter-spacing: normal;
}
.tf-faq-item__toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: 0;
  color: var(--tf-ink);
  font-family: var(--tf-font-heading);
  font-size: clamp(18px, 1.7vw, 21px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}
.tf-faq-item__sign {
  width: 34px;
  height: 34px;
  padding: 7px;
  flex: none;
  background: var(--tf-paper);
  border-radius: 50%;
  color: var(--tf-ink);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.tf-faq-item__toggle[aria-expanded="true"] .tf-faq-item__sign {
  transform: rotate(45deg);
  background: var(--tf-accent);
  color: var(--tf-ink);
}
.tf-faq-item__panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.24s ease;
}
[data-tf-faq].is-enhanced .tf-faq-item__panel {
  grid-template-rows: 0fr;
}
[data-tf-faq].is-enhanced .tf-faq-item.is-open .tf-faq-item__panel {
  grid-template-rows: 1fr;
}
.tf-faq-item__answer {
  overflow: hidden;
  min-height: 0;
  color: var(--tf-muted);
  font-size: 16px;
}
.tf-faq-item__answer > *:first-child {
  margin-top: 0;
}
.tf-faq-item.is-open .tf-faq-item__answer {
  padding-bottom: 24px;
}
.tf-section--paper .tf-faq-item__sign {
  background: var(--tf-surface);
}
.tf-section--ink .tf-faq__items,
.tf-section--ink .tf-faq-item {
  border-color: rgba(255, 255, 255, 0.14);
}
.tf-section--ink .tf-faq-item__toggle {
  color: #fff;
}
.tf-section--ink .tf-faq-item__sign {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.tf-section--ink .tf-faq-item__answer {
  color: rgba(255, 255, 255, 0.68);
}
@media (max-width: 860px) {
  .tf-faq__inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .tf-faq__intro {
    position: static;
  }
}
.tf-cta-banner {
  padding-block: clamp(52px, 6.5vw, 92px);
}
.tf-cta-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.tf-cta-banner__text h2 {
  margin-bottom: 0.3em;
  font-size: clamp(28px, 3.4vw, 44px);
}
.tf-cta-banner__lead {
  max-width: 52ch;
  margin: 0;
  font-size: clamp(16px, 1.5vw, 19px);
}
.tf-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}
.tf-cta-banner__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.tf-cta-banner__phone .tf-icon {
  width: 24px;
  height: 24px;
}
.tf-cta-banner__phone span {
  display: grid;
  line-height: 1.25;
}
.tf-cta-banner__phone small {
  font-size: 13px;
  opacity: 0.72;
}
.tf-cta-banner__phone strong {
  font-family: var(--tf-font-heading);
  font-size: 19px;
  letter-spacing: -0.02em;
  color: inherit;
}
.tf-cta-banner__phone:hover strong {
  text-decoration: underline;
}
.tf-section--ink .tf-cta-banner__phone strong,
.tf-section--accent .tf-cta-banner__phone strong {
  color: #fff;
}
@media (max-width: 860px) {
  .tf-cta-banner__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
.tf-hero {
  overflow: hidden;
  padding-block: clamp(48px, 6vw, 92px) clamp(56px, 7vw, 104px);
}
.tf-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.tf-hero--has-media .tf-hero__inner {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
.tf-hero__content {
  min-width: 0;
  max-width: 640px;
}
.tf-hero__heading {
  margin-bottom: 0.35em;
}
.tf-hero__lead {
  max-width: 54ch;
  margin-bottom: 0;
}
.tf-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  font-size: 14px;
  color: var(--tf-muted);
}
.tf-hero__crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  opacity: 0.5;
}
.tf-hero__crumbs a {
  color: inherit;
  text-decoration: none;
}
.tf-hero__crumbs a:hover {
  color: var(--tf-ink);
  text-decoration: underline;
}
.tf-hero__crumbs [aria-current="page"] {
  color: var(--tf-ink);
}
.tf-section--ink .tf-hero__crumbs {
  color: rgba(255, 255, 255, 0.55);
}
.tf-section--ink .tf-hero__crumbs a:hover,
.tf-section--ink .tf-hero__crumbs [aria-current="page"] {
  color: #fff;
}
.tf-section--accent .tf-hero__crumbs {
  color: rgba(255, 255, 255, 0.72);
}
.tf-section--accent .tf-hero__crumbs a:hover,
.tf-section--accent .tf-hero__crumbs [aria-current="page"] {
  color: #fff;
}
.tf-hero__usps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  font-size: 15.5px;
}
.tf-hero__usps li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.tf-hero__usps .tf-icon {
  width: 20px;
  height: 20px;
  color: var(--tf-accent);
}
.tf-hero__media {
  position: relative;
  min-width: 0;
}
.tf-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--tf-radius-lg);
}
.tf-hero__media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--tf-accent);
  border-radius: var(--tf-radius-lg);
  z-index: 0;
}
.tf-hero--start {
  padding-block: clamp(56px, 7vw, 116px) clamp(64px, 8vw, 124px);
}
.tf-hero--start .tf-hero__heading {
  font-size: clamp(40px, 5.6vw, 78px);
}
.tf-hero--start::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 720px;
  height: 720px;
  max-width: 90vw;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.22), transparent 62%);
  pointer-events: none;
}
.tf-section--ink .tf-hero__media::after {
  border-color: rgba(255, 255, 255, 0.28);
}
.tf-hero--simple {
  text-align: center;
}
.tf-hero--simple .tf-hero__content {
  max-width: 780px;
  margin-inline: auto;
}
.tf-hero--simple .tf-hero__lead {
  margin-inline: auto;
}
.tf-hero--simple .tf-eyebrow,
.tf-hero--simple .tf-hero__crumbs,
.tf-hero--simple .tf-actions,
.tf-hero--simple .tf-hero__usps {
  justify-content: center;
}
.tf-hero--ort .tf-eyebrow::before,
.tf-hero--service .tf-eyebrow::before {
  width: 20px;
}
@media (max-width: 960px) {
  .tf-hero--has-media .tf-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .tf-hero__media {
    order: -1;
  }
  .tf-hero__media img {
    aspect-ratio: 16 / 10;
  }
  .tf-hero__media::after {
    inset: 14px -14px -14px 14px;
  }
  .tf-hero__content {
    max-width: none;
  }
}
@media (max-width: 560px) {
  .tf-hero__usps {
    flex-direction: column;
    gap: 10px;
  }
}
.tf-post-grid .tf-actions {
  justify-content: center;
}
.tf-pricing-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2vw, 26px);
  align-items: start;
}
.tf-price-box {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(26px, 3vw, 36px);
  background: var(--tf-surface);
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius-lg);
}
.tf-price-box--highlight {
  border-color: var(--tf-ink);
  box-shadow: var(--tf-shadow);
}
.tf-price-box__flag {
  position: absolute;
  top: -13px;
  left: clamp(26px, 3vw, 36px);
  padding: 5px 14px;
  background: var(--tf-accent);
  border-radius: 999px;
  color: var(--tf-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tf-price-box__title {
  margin: 0 0 8px;
  font-size: 23px;
}
.tf-price-box__text {
  margin: 0 0 20px;
  color: var(--tf-muted);
  font-size: 15.5px;
}
.tf-price-box__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--tf-line);
}
.tf-price-box__amount {
  font-family: var(--tf-font-heading);
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--tf-ink);
}
.tf-price-box__unit {
  color: var(--tf-muted);
  font-size: 15px;
}
.tf-price-box__features {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  font-size: 15.5px;
}
.tf-price-box__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tf-price-box__features .tf-icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: none;
  color: var(--tf-accent-dark);
  stroke-width: 2.6;
}
.tf-price-box__button {
  margin-top: auto;
  width: 100%;
}
.tf-pricing-grid__footnote {
  max-width: 760px;
  margin: clamp(28px, 3vw, 42px) auto 0;
  padding: 22px 26px;
  background: var(--tf-surface);
  border: 1px dashed var(--tf-line-strong);
  border-radius: var(--tf-radius);
  color: var(--tf-muted);
  font-size: 15px;
  text-align: center;
}
.tf-pricing-grid__footnote > *:last-child {
  margin-bottom: 0;
}
.tf-process-steps__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 34px);
  counter-reset: tf-step;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tf-process-step {
  position: relative;
  padding-top: 26px;
}
.tf-process-step::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: calc(-1 * clamp(20px, 2.5vw, 34px));
  height: 2px;
  background: var(--tf-line);
}
.tf-process-step:last-child::before {
  right: 0;
  background: linear-gradient(90deg, var(--tf-line), transparent);
}
.tf-process-step__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  background: var(--tf-ink);
  border: 3px solid var(--tf-surface);
  border-radius: 50%;
  color: #fff;
  font-family: var(--tf-font-heading);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}
.tf-process-step:first-child .tf-process-step__number {
  background: var(--tf-accent);
  color: #fff;
}
.tf-process-step__title {
  margin: 0 0 8px;
  font-size: clamp(19px, 1.7vw, 22px);
}
.tf-process-step__text {
  margin: 0;
  color: var(--tf-muted);
  font-size: 15.8px;
}
.tf-section--paper .tf-process-step__number {
  border-color: var(--tf-paper);
}
.tf-section--ink .tf-process-step::before {
  background: rgba(255, 255, 255, 0.16);
}
.tf-section--ink .tf-process-step__number {
  border-color: var(--tf-ink);
  background: rgba(255, 255, 255, 0.1);
}
.tf-section--ink .tf-process-step__text {
  color: rgba(255, 255, 255, 0.68);
}
@media (max-width: 900px) {
  .tf-process-steps__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .tf-process-steps__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .tf-process-step {
    display: flex;
    gap: 18px;
    padding: 0 0 26px;
  }
  .tf-process-step::before {
    top: 52px;
    bottom: 0;
    left: 25px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .tf-process-step:last-child::before {
    display: none;
  }
  .tf-process-step__number {
    margin-bottom: 0;
    flex: none;
  }
  .tf-process-step__body {
    padding-top: 8px;
  }
}
.tf-quote-form__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 4.5vw, 68px);
  align-items: start;
}
.tf-quote-form__copy > *:last-child {
  margin-bottom: 0;
}
.tf-quote-form__usps {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 30px 0;
  padding: 0;
}
.tf-quote-form__usps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.tf-quote-form__usps strong {
  display: block;
  font-family: var(--tf-font-heading);
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--tf-ink);
}
.tf-quote-form__usps span {
  color: var(--tf-muted);
  font-size: 15.5px;
}
.tf-quote-form__usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  background: var(--tf-surface);
  border: 1px solid var(--tf-line);
  border-radius: 12px;
  color: var(--tf-accent-dark);
}
.tf-quote-form__usp-icon .tf-icon {
  width: 21px;
  height: 21px;
}
.tf-quote-form__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tf-ink);
  font-weight: 600;
  text-decoration: none;
}
.tf-quote-form__phone .tf-icon {
  width: 20px;
  height: 20px;
  color: var(--tf-accent-dark);
}
.tf-quote-form__phone:hover {
  text-decoration: underline;
}
.tf-quote-form__card {
  padding: clamp(26px, 3vw, 40px);
  background: var(--tf-surface);
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius-lg);
  box-shadow: var(--tf-shadow);
}
.tf-quote-form__card-title {
  margin: 0 0 22px;
  font-size: clamp(21px, 2vw, 26px);
}
.tf-quote-form__note {
  margin: 18px 0 0;
  color: var(--tf-muted);
  font-size: 14px;
}
.tf-section--ink .tf-quote-form__usps strong {
  color: #fff;
}
.tf-section--ink .tf-quote-form__usps span {
  color: rgba(255, 255, 255, 0.68);
}
.tf-section--ink .tf-quote-form__usp-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffa885;
}
.tf-section--ink .tf-quote-form__phone {
  color: #fff;
}
.tf-section--ink .tf-quote-form__card {
  color: var(--tf-slate);
}
.tf-section--ink .tf-quote-form__card-title {
  color: var(--tf-ink);
}
@media (max-width: 900px) {
  .tf-quote-form__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
.tf-service-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.tf-service-cards--cols-2 .tf-service-cards__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.tf-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(24px, 2.6vw, 32px);
  background: var(--tf-surface);
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.tf-service-card:hover {
  transform: translateY(-3px);
  border-color: var(--tf-ink);
  box-shadow: var(--tf-shadow-sm);
}
.tf-service-card:hover .tf-service-card__link .tf-icon {
  transform: translateX(4px);
}
.tf-service-card__cover {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.tf-service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.tf-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--tf-accent-soft);
  border-radius: 14px;
  color: var(--tf-accent-dark);
}
.tf-service-card__icon .tf-icon {
  width: 26px;
  height: 26px;
}
.tf-service-card__number {
  font-family: var(--tf-font-heading);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--tf-line-strong);
}
.tf-service-card__title {
  margin: 0;
  font-size: clamp(20px, 1.9vw, 24px);
}
.tf-service-card__title a {
  position: relative;
  z-index: 1;
  color: var(--tf-ink);
  text-decoration: none;
}
.tf-service-card__text {
  margin: 0;
  color: var(--tf-muted);
  font-size: 15.8px;
}
.tf-service-card__link {
  margin-top: auto;
  padding-top: 8px;
}
.tf-section--ink .tf-service-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}
.tf-section--ink .tf-service-card:hover {
  border-color: var(--tf-accent);
}
.tf-section--ink .tf-service-card__title a {
  color: #fff;
}
.tf-section--ink .tf-service-card__text {
  color: rgba(255, 255, 255, 0.68);
}
.tf-section--ink .tf-service-card__icon {
  background: rgba(255, 90, 31, 0.16);
  color: #ffa885;
}
.tf-section--ink .tf-service-card__number {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.28);
}
@media (max-width: 900px) {
  .tf-service-cards__grid,
  .tf-service-cards--cols-2 .tf-service-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .tf-service-cards__grid,
  .tf-service-cards--cols-2 .tf-service-cards__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.tf-stats-row {
  padding-block: clamp(48px, 6vw, 80px);
}
.tf-stats-row__heading {
  margin-bottom: clamp(28px, 3vw, 44px);
  font-size: clamp(24px, 2.6vw, 34px);
  text-align: center;
}
.tf-stats-row__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin: 0;
}
.tf-stat {
  text-align: center;
  padding-inline: 10px;
  border-left: 1px solid var(--tf-line);
}
.tf-stat:first-child {
  border-left: 0;
}
.tf-stat__value {
  font-family: var(--tf-font-heading);
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--tf-accent);
  font-variant-numeric: tabular-nums;
}
.tf-stat__label {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--tf-muted);
}
.tf-section--ink .tf-stat {
  border-left-color: rgba(255, 255, 255, 0.14);
}
.tf-section--ink .tf-stat__label {
  color: rgba(255, 255, 255, 0.7);
}
.tf-section--accent .tf-stat {
  border-left-color: rgba(255, 255, 255, 0.28);
}
.tf-section--accent .tf-stat__value {
  color: #fff;
}
.tf-section--accent .tf-stat__label {
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 780px) {
  .tf-stats-row__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
  }
  .tf-stat:nth-child(odd) {
    border-left: 0;
  }
}
.tf-testimonials__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.tf-testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 36px);
  background: var(--tf-paper);
  border-radius: var(--tf-radius-lg);
}
.tf-testimonial__mark {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  color: var(--tf-accent);
  opacity: 0.32;
}
.tf-testimonial__rating {
  display: flex;
  gap: 3px;
  margin: 0 0 14px;
}
.tf-testimonial__rating .tf-icon {
  width: 18px;
  height: 18px;
  color: var(--tf-line-strong);
}
.tf-testimonial__rating .tf-icon.is-on {
  color: var(--tf-accent);
}
.tf-testimonial__quote {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  font-family: var(--tf-font-body);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: normal;
  color: var(--tf-slate);
  flex: 1 1 auto;
}
.tf-testimonial__quote p {
  margin: 0;
}
.tf-testimonial__author {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--tf-line);
}
.tf-testimonial__author strong {
  display: block;
  font-family: var(--tf-font-heading);
  font-size: 17px;
  letter-spacing: -0.01em;
}
.tf-testimonial__author span {
  color: var(--tf-muted);
  font-size: 14.5px;
}
.tf-section--paper .tf-testimonial {
  background: var(--tf-surface);
  border: 1px solid var(--tf-line);
}
.tf-section--ink .tf-testimonial {
  background: rgba(255, 255, 255, 0.05);
}
.tf-section--ink .tf-testimonial__quote {
  color: rgba(255, 255, 255, 0.82);
}
.tf-section--ink .tf-testimonial__author {
  border-top-color: rgba(255, 255, 255, 0.14);
}
.tf-section--ink .tf-testimonial__author strong {
  color: #fff;
}
.tf-section--ink .tf-testimonial__author span {
  color: rgba(255, 255, 255, 0.6);
}
.tf-section--ink .tf-testimonial__rating .tf-icon {
  color: rgba(255, 255, 255, 0.28);
}
@media (max-width: 940px) {
  .tf-testimonials__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .tf-testimonials__list {
    grid-template-columns: minmax(0, 1fr);
  }
}
.tf-section-header .tf-section-intro {
  margin-bottom: 0;
}
.tf-trust-badges {
  padding-block: clamp(40px, 5vw, 68px);
}
.tf-trust-badges__heading {
  margin-bottom: 28px;
  font-size: clamp(21px, 2vw, 26px);
}
.tf-trust-badges__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.tf-trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: var(--tf-paper);
  border-radius: var(--tf-radius);
}
.tf-trust-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  background: var(--tf-surface);
  border-radius: 12px;
  color: var(--tf-accent-dark);
}
.tf-trust-badge__icon .tf-icon {
  width: 22px;
  height: 22px;
}
.tf-trust-badge__title {
  display: block;
  margin-bottom: 3px;
  font-family: var(--tf-font-heading);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--tf-ink);
}
.tf-trust-badge__text {
  color: var(--tf-muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.tf-section--paper .tf-trust-badge {
  background: var(--tf-surface);
  border: 1px solid var(--tf-line);
}
.tf-section--ink .tf-trust-badge {
  background: rgba(255, 255, 255, 0.05);
}
.tf-section--ink .tf-trust-badge__icon {
  background: rgba(255, 255, 255, 0.08);
  color: #ffa885;
}
.tf-section--ink .tf-trust-badge__title {
  color: #fff;
}
.tf-section--ink .tf-trust-badge__text {
  color: rgba(255, 255, 255, 0.66);
}
@media (max-width: 940px) {
  .tf-trust-badges__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .tf-trust-badges__list {
    grid-template-columns: minmax(0, 1fr);
  }
}
/*# sourceMappingURL=app.css.map */