:root {
    --tf-bg: #eef3f9;
    --tf-bg-soft: #fbfdff;
    --tf-surface: rgba(255, 255, 255, 0.72);
    --tf-card: rgba(255, 255, 255, 0.9);
    --tf-ink: #101a31;
    --tf-muted: #62708a;
    --tf-line: rgba(16, 26, 49, 0.1);
    --tf-accent: #67f0cf;
    --tf-accent-deep: #2f62ff;
    --tf-accent-alt: #4e7bff;
    --tf-accent-pop: #8a7cff;
    --tf-accent-violet: #6171ff;
    --tf-highlight: #c9f7ee;
    --tf-dark: #101a31;
    --tf-shadow: 0 26px 68px rgba(19, 33, 63, 0.12);
    --tf-radius-xl: 32px;
    --tf-radius-lg: 24px;
    --tf-radius-md: 18px;
    --tf-shell: min(1180px, calc(100% - 40px));
}

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

html {
    scroll-behavior: smooth;
}

body.tf-home {
    margin: 0;
    color: var(--tf-ink);
    background:
        radial-gradient(circle at 14% 10%, rgba(103, 240, 207, 0.16), transparent 24%),
        radial-gradient(circle at 84% 16%, rgba(97, 113, 255, 0.14), transparent 24%),
        radial-gradient(circle at 62% 56%, rgba(78, 123, 255, 0.08), transparent 22%),
        linear-gradient(180deg, var(--tf-bg-soft) 0%, var(--tf-bg) 58%, #e8eef6 100%);
    font-family: 'Instrument Sans', sans-serif;
}

body.tf-home::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 33, 50, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 33, 50, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    z-index: -1;
}

body.tf-home::after {
    content: '';
    position: fixed;
    top: 72px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background:
        conic-gradient(from 210deg, rgba(97, 113, 255, 0.16), rgba(78, 123, 255, 0.14), rgba(103, 240, 207, 0.18), rgba(97, 113, 255, 0.16));
    filter: blur(48px);
    opacity: 0.52;
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

.tf-shell {
    width: var(--tf-shell);
    margin: 0 auto;
}

.tf-eyebrow,
.tf-section-tag,
.tf-card-label,
.tf-logo-strip p {
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.73rem;
}

.tf-eyebrow,
.tf-section-tag,
.tf-card-label {
    color: #436dff;
}

.tf-section-tag-light {
    color: rgba(255, 255, 255, 0.72);
}

.tf-nav-shell {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
    backdrop-filter: blur(18px);
    background: rgba(251, 253, 255, 0.78);
    border-bottom: 1px solid rgba(19, 33, 63, 0.08);
    transition: padding 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.tf-nav {
    width: var(--tf-shell);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 20px;
}

.tf-brand,
.tf-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.tf-brand-mark {
    position: relative;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--tf-ink);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.86));
    border: 1px solid rgba(78, 123, 255, 0.14);
    box-shadow: 0 14px 28px rgba(78, 123, 255, 0.12);
    transform: none;
    transition: transform 0.24s ease, box-shadow 0.24s ease, width 0.24s ease, height 0.24s ease;
}

.tf-brand-mark::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(78, 123, 255, 0.12);
    border-radius: 15px;
}

.tf-brand-mark svg {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: block;
}

.tf-brand-lockup {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tf-brand-lockup strong {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--tf-ink);
}

.tf-brand-lockup em {
    font-style: normal;
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(19, 33, 63, 0.58);
}

.tf-nav-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.tf-nav-links a,
.tf-mobile-panel a {
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.76rem;
    color: var(--tf-ink);
}

.tf-home.is-scrolled .tf-nav-shell {
    padding: 8px 0;
    background: rgba(251, 253, 255, 0.92);
    box-shadow: 0 16px 30px rgba(19, 33, 63, 0.08);
}

.tf-home.is-scrolled .tf-brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
}

.tf-nav-links a:hover,
.tf-mobile-panel a:hover {
    color: var(--tf-accent-deep);
}

.tf-nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.tf-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--tf-ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.tf-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.tf-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.tf-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.tf-nav-cta,
.tf-primary-btn,
.tf-secondary-btn,
.tf-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.tf-nav-cta,
.tf-primary-btn,
.tf-mobile-cta {
    color: #ffffff;
    background: linear-gradient(135deg, var(--tf-accent-deep), var(--tf-accent-alt));
    box-shadow: 0 14px 32px rgba(78, 123, 255, 0.22);
}

.tf-nav-cta:hover,
.tf-primary-btn:hover,
.tf-mobile-cta:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(78, 123, 255, 0.26);
}

.tf-secondary-btn {
    color: var(--tf-ink);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(16, 33, 50, 0.12);
}

.tf-secondary-btn:hover {
    transform: translateY(-2px);
    color: var(--tf-accent-deep);
    border-color: rgba(103, 240, 207, 0.36);
    background: rgba(255, 255, 255, 0.86);
}

.tf-secondary-btn-light {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
}

.tf-mobile-panel {
    width: var(--tf-shell);
    margin: 12px auto 0;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--tf-line);
    box-shadow: var(--tf-shadow);
}

.tf-mobile-panel a {
    display: block;
    padding: 12px 6px;
}

.tf-mobile-cta {
    margin-top: 10px;
}

.tf-hero {
    position: relative;
    overflow: clip;
    padding: 126px 0 58px;
}

.tf-hero::before,
.tf-hero::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.tf-hero::before {
    top: 62px;
    left: -66px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(103, 240, 207, 0.22), rgba(103, 240, 207, 0));
}

.tf-hero::after {
    right: 2%;
    bottom: 8%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(97, 113, 255, 0.14), rgba(97, 113, 255, 0));
}

.tf-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
    gap: 36px;
    align-items: start;
}

.tf-hero-copy h1 {
    margin: 14px 0 18px;
    max-width: 8.4ch;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.95rem, 5vw, 5.35rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.tf-hero-copy p {
    max-width: 62ch;
    margin: 0 0 28px;
    color: var(--tf-muted);
    font-size: 1.08rem;
    line-height: 1.76;
}

.tf-hero-stickers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
}

.tf-hero-stickers span,
.tf-aside-sticker {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tf-hero-stickers span:nth-child(1) {
    color: var(--tf-accent-deep);
    background: rgba(78, 123, 255, 0.1);
}

.tf-hero-stickers span:nth-child(2) {
    color: var(--tf-accent-violet);
    background: rgba(97, 113, 255, 0.1);
}

.tf-hero-stickers span:nth-child(3) {
    color: #178f77;
    background: rgba(103, 240, 207, 0.18);
}

.tf-hero-actions,
.tf-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.tf-proof-list {
    display: grid;
    gap: 12px;
    margin: 30px 0 0;
    padding: 0;
}

.tf-proof-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.tf-proof-list i {
    color: var(--tf-accent-alt);
}

.tf-hero-aside {
    display: grid;
    gap: 18px;
}

.tf-aside-sticker {
    justify-self: start;
    color: var(--tf-accent-deep);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(78, 123, 255, 0.16);
    box-shadow: 0 14px 26px rgba(78, 123, 255, 0.08);
    transform: none;
}

.tf-summary-card,
.tf-outcome-card,
.tf-note-card,
.tf-service-card,
.tf-value-card,
.tf-process-card,
.tf-industry-card {
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-radius-lg);
    box-shadow: var(--tf-shadow);
}

.tf-summary-card {
    padding: 30px;
    background: var(--tf-surface);
    backdrop-filter: blur(14px);
    border-color: rgba(78, 123, 255, 0.12);
}

.tf-summary-card h2 {
    margin: 12px 0 24px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.78rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 18ch;
}

.tf-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.tf-summary-grid article {
    padding: 18px 18px 20px;
    border-radius: var(--tf-radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(78, 123, 255, 0.08);
}

.tf-summary-grid strong {
    display: block;
    margin-bottom: 10px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.04rem;
}

.tf-summary-grid p,
.tf-outcome-card li,
.tf-note-card li,
.tf-service-card p,
.tf-value-card p,
.tf-process-card p,
.tf-industry-card p,
.tf-footer p,
.tf-footer a {
    color: var(--tf-muted);
    line-height: 1.72;
}

.tf-summary-grid p {
    font-size: 0.99rem;
}

.tf-outcome-card {
    padding: 24px 28px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(16, 26, 49, 0.98), rgba(78, 123, 255, 0.9));
}

.tf-outcome-card .tf-card-label {
    color: rgba(255, 255, 255, 0.72);
}

.tf-outcome-card ul {
    margin: 14px 0 0;
    padding-left: 18px;
}

.tf-outcome-card li {
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 10px;
}

.tf-logo-strip,
.tf-intro,
.tf-services,
.tf-process,
.tf-industries,
.tf-cta-band {
    padding: 58px 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
}

.tf-logo-strip {
    padding-top: 8px;
}

.tf-logo-strip p {
    margin: 0 0 16px;
    color: rgba(16, 26, 49, 0.54);
    text-align: center;
}

.tf-logo-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}

.tf-logo-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: tf-logo-marquee 40s linear infinite;
}

.tf-logo-marquee:hover .tf-logo-track {
    animation-play-state: paused;
}

.tf-logo-item {
    min-width: 148px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(78, 123, 255, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.tf-logo-item img {
    width: auto;
    max-width: 110px;
    height: 28px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.76;
    transition: filter 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
}

.tf-logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(78, 123, 255, 0.12);
    background: rgba(255, 255, 255, 0.96);
}

.tf-logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

.tf-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.tf-section-heading,
.tf-two-col > div:first-child {
    max-width: 720px;
}

.tf-two-col h2,
.tf-section-heading h2,
.tf-cta-panel h2 {
    margin: 12px 0 14px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.1rem, 3.2vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.tf-two-col p,
.tf-section-heading p,
.tf-cta-panel p {
    margin: 0;
    color: var(--tf-muted);
    font-size: 1.05rem;
    line-height: 1.74;
}

.tf-section-heading {
    margin-bottom: 6px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.tf-note-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(78, 123, 255, 0.1);
}

.tf-note-card h3,
.tf-service-card h3,
.tf-value-card h3,
.tf-process-card strong,
.tf-industry-card h3,
.tf-footer h3 {
    margin: 0 0 12px;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--tf-ink);
}

.tf-footer h3 {
    color: #ffffff;
}

.tf-footer p {
    color: rgba(255, 255, 255, 0.72);
}

.tf-note-card ul,
.tf-footer ul {
    margin: 0;
    padding-left: 18px;
}

.tf-card-grid {
    display: grid;
    gap: 20px;
}

.tf-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 30px;
}

.tf-service-card,
.tf-industry-card,
.tf-process-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.8);
}

.tf-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100%;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.tf-service-card::before,
.tf-service-card::after {
    content: '';
    position: absolute;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.tf-service-card::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    opacity: 0.9;
}

.tf-service-card::after {
    right: -24px;
    top: -18px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    opacity: 0.2;
}

.tf-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(78, 123, 255, 0.16);
    box-shadow: 0 30px 54px rgba(78, 123, 255, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.tf-service-card img,
.tf-industry-card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 18px;
}

.tf-service-card img {
    transition: transform 0.24s ease;
}

.tf-service-card:hover img {
    transform: scale(1.04);
}

.tf-service-card:hover::after {
    transform: scale(1.05);
    opacity: 0.24;
}

.tf-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--tf-accent-deep);
    font-weight: 800;
    text-decoration: none;
}

.tf-service-card--it::before {
    background: linear-gradient(90deg, var(--tf-accent-deep), #8aa6ff);
}

.tf-service-card--it::after {
    background: radial-gradient(circle, rgba(78, 123, 255, 0.46), rgba(78, 123, 255, 0));
}

.tf-service-card--security::before {
    background: linear-gradient(90deg, var(--tf-accent-violet), #99a4ff);
}

.tf-service-card--security::after {
    background: radial-gradient(circle, rgba(97, 113, 255, 0.44), rgba(97, 113, 255, 0));
}

.tf-service-card--cloud::before {
    background: linear-gradient(90deg, #41d9b7, var(--tf-highlight));
}

.tf-service-card--cloud::after {
    background: radial-gradient(circle, rgba(103, 240, 207, 0.36), rgba(103, 240, 207, 0));
}

.tf-service-card--software::before {
    background: linear-gradient(90deg, #8aa6ff, var(--tf-accent-pop));
}

.tf-service-card--software::after {
    background: radial-gradient(circle, rgba(244, 74, 160, 0.46), rgba(244, 74, 160, 0));
}

.tf-service-card a::after {
    content: '\2192';
    transition: transform 0.2s ease;
}

.tf-service-card a:hover {
    color: var(--tf-accent-alt);
}

.tf-service-card a:hover::after {
    transform: translateX(4px);
}

.tf-values {
    padding: 18px 0 54px;
}

.tf-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tf-value-card {
    padding: 26px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.92));
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.tf-value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 123, 255, 0.16);
    box-shadow: 0 30px 54px rgba(78, 123, 255, 0.1);
}

.tf-value-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(103, 240, 207, 0.18);
    color: var(--tf-accent-deep);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
}

.tf-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 30px;
}

.tf-process-card {
    position: relative;
    min-height: 220px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.92));
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.tf-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--tf-accent), var(--tf-accent-alt));
}

.tf-process-card:hover,
.tf-industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 54px rgba(78, 123, 255, 0.1);
}

.tf-process-card strong {
    display: block;
    margin-top: 18px;
    font-size: 1.25rem;
}

.tf-industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
}

.tf-industry-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 247, 255, 0.94));
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.tf-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 26px;
    align-items: center;
    padding: 34px;
    border-radius: var(--tf-radius-xl);
    background:
        radial-gradient(circle at top right, rgba(103, 240, 207, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(16, 26, 49, 0.98), rgba(78, 123, 255, 0.84) 54%, rgba(103, 240, 207, 0.42));
    box-shadow: 0 28px 60px rgba(20, 33, 59, 0.2);
}

.tf-cta-panel h2,
.tf-cta-panel p,
.tf-inline-link {
    color: #ffffff;
}

.tf-cta-panel p {
    color: rgba(255, 255, 255, 0.82);
}

.tf-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
}

.tf-inline-link:hover {
    color: #d8fff6;
}

.tf-footer {
    margin-top: 54px;
    padding: 42px 0 0;
    color: #ffffff;
    background:
        radial-gradient(circle at top left, rgba(103, 240, 207, 0.16), transparent 22%),
        linear-gradient(180deg, #14213d 0%, #0e1830 100%);
}

.tf-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.7fr));
    gap: 28px;
}

.tf-footer-brand {
    margin-bottom: 18px;
}

.tf-footer .tf-brand-mark {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.tf-footer .tf-brand-lockup strong {
    color: #ffffff;
}

.tf-footer .tf-brand-lockup em {
    color: rgba(255, 255, 255, 0.64);
}

.tf-footer .tf-brand-mark::after {
    border-color: rgba(255, 255, 255, 0.12);
}

.tf-footer ul {
    padding-left: 0;
}

.tf-footer li {
    list-style: none;
    margin-bottom: 10px;
}

.tf-footer a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
}

.tf-footer a:hover {
    color: #ffffff;
}

.tf-footer-bottom {
    margin-top: 26px;
    padding: 16px 0 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tf-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

@keyframes tf-logo-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

.tf-scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--tf-accent-deep), var(--tf-accent));
    box-shadow: 0 16px 30px rgba(204, 79, 29, 0.24);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tf-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.tf-scroll-top img {
    width: 20px;
    height: 20px;
}

@media (max-width: 1080px) {
    .tf-hero-grid,
    .tf-two-col,
    .tf-cta-panel {
        grid-template-columns: 1fr;
    }

    .tf-service-grid,
    .tf-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tf-logo-item {
        min-width: 136px;
    }

    .tf-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 840px) {
    .tf-nav {
        grid-template-columns: auto 1fr auto;
    }

    .tf-nav-links,
    .tf-nav-cta {
        display: none;
    }

    .tf-nav-toggle {
        display: inline-block;
        justify-self: end;
    }
}

@media (max-width: 768px) {
    :root {
        --tf-shell: min(100% - 24px, 1180px);
    }

    .tf-nav-shell {
        padding: 12px 0;
    }

    .tf-hero {
        padding-top: 72px;
    }

    .tf-hero-copy h1 {
        max-width: none;
    }

    .tf-summary-grid,
    .tf-service-grid,
    .tf-value-grid,
    .tf-process-grid,
    .tf-industry-grid,
    .tf-footer-grid {
        grid-template-columns: 1fr;
    }

    .tf-logo-item {
        min-width: 124px;
        height: 60px;
        padding: 0 14px;
    }

    .tf-aside-sticker {
        justify-self: start;
        transform: rotate(0deg);
    }

    .tf-primary-btn,
    .tf-secondary-btn,
    .tf-mobile-cta {
        width: 100%;
    }

    .tf-hero-actions,
    .tf-cta-actions {
        align-items: stretch;
    }

    .tf-summary-card,
    .tf-outcome-card,
    .tf-note-card,
    .tf-service-card,
    .tf-industry-card,
    .tf-process-card,
    .tf-cta-panel {
        padding: 22px;
    }
}
