.ts-site,
.ts-site * {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body.ts-site {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.ts-site img {
    max-width: 100%;
}

.ts-site {
    --blue: #2563eb;
    --blue-dark: #1e40af;
    --cyan: #38bdf8;
    --navy: #0f172a;
    --ink: #020617;
    --text: #475569;
    --muted: #64748b;
    --soft: #f8fafc;
    --border: #e2e8f0;
    --white: #ffffff;
    background: var(--white);
    color: var(--text);
    font-family: Poppins, Inter, Manrope, "Plus Jakarta Sans", Arial, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.ts-site h1, .ts-site h2, .ts-site h3 {
    color: var(--navy);
    font-weight: 760;
    line-height: 1.1;
    margin: 0 0 18px;
}

.ts-site h1 { font-size: clamp(44px, 5.2vw, 74px); letter-spacing: 0; }
.ts-site h2 { font-size: clamp(30px, 4vw, 48px); }
.ts-site h3 { font-size: 21px; }
.ts-site p { margin: 0 0 18px; }
.ts-shell { max-width: 1320px; margin: 0 auto; padding: 0 22px; }

.ts-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(226, 232, 240, .74);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
}

.ts-nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.ts-brand {
    display: inline-flex;
    align-items: center;
    color: var(--navy);
    text-decoration: none;
}

.ts-brand img {
    display: block;
    width: 142px;
    height: auto;
}

.ts-nav nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.ts-nav nav a, .ts-footer a {
    color: var(--text);
    text-decoration: none;
    font-weight: 650;
}

.ts-nav nav a:hover, .ts-footer a:hover { color: var(--blue); }

.ts-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--blue);
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-weight: 760;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(37, 99, 235, .18);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.ts-btn:hover {
    color: var(--white);
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, .24);
}

.ts-btn-secondary {
    background: rgba(255, 255, 255, .94);
    color: var(--navy);
    border-color: var(--border);
    box-shadow: none;
}

.ts-btn-secondary:hover { background: var(--soft); color: var(--navy); }
.ts-btn-small { min-height: 42px; padding: 0 16px; font-size: 14px; }
.ts-btn-wide { width: 100%; }

.ts-hero, .ts-page-hero {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.ts-hero { padding: 92px 0 72px; }
.ts-page-hero { padding: 82px 0 64px; }
.ts-page-hero p, .ts-hero-text { max-width: 760px; font-size: 20px; color: var(--text); }

.ts-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .86fr);
    gap: 72px;
    align-items: center;
}

.ts-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 820;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.ts-eyebrow:before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
}

.ts-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.ts-center { justify-content: center; }
.ts-trust, .ts-check, .ts-price-card ul { list-style: none; margin: 0; padding: 0; }
.ts-trust { display: flex; flex-wrap: wrap; gap: 12px; max-width: 760px; }
.ts-trust li, .ts-check li, .ts-price-card li { position: relative; padding-left: 24px; }

.ts-trust li:before, .ts-check li:before, .ts-price-card li:before {
    content: "";
    position: absolute;
    top: .68em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.ts-hero-art {
    position: relative;
    min-height: 560px;
}

.ts-hero-image {
    position: absolute;
    inset: 0 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 34px;
    background: #f8fafc;
    box-shadow: 0 34px 90px rgba(15, 23, 42, .14);
}

.ts-hero-image:before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(37, 99, 235, .16);
    border-radius: 26px;
}

.ts-hero-image img {
    position: relative;
    z-index: 1;
    max-width: 94%;
    height: auto;
    filter: drop-shadow(0 24px 26px rgba(15, 23, 42, .16));
}

.ts-floating-card {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 2px;
    min-width: 190px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .15);
}

.ts-floating-card strong {
    color: var(--navy);
    font-size: 24px;
    line-height: 1;
}

.ts-floating-card span { color: var(--muted); font-weight: 650; }
.ts-floating-card-one { position: absolute; left: 0; bottom: 58px; }
.ts-floating-card-two { position: absolute; right: 0; top: 74px; }

.ts-proof {
    margin-top: -34px;
    position: relative;
    z-index: 3;
}

.ts-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .1);
    overflow: hidden;
}

.ts-proof-grid div {
    padding: 26px 28px;
    border-right: 1px solid var(--border);
}

.ts-proof-grid div:last-child { border-right: 0; }
.ts-proof-grid strong { display: block; color: var(--navy); font-size: 18px; margin-bottom: 4px; }
.ts-proof-grid span { color: var(--muted); font-size: 14px; font-weight: 650; }

.ts-section { padding: 86px 0; }
.ts-soft { background: var(--soft); }
.ts-section-head { max-width: 760px; margin-bottom: 38px; }
.ts-card-grid, .ts-pricing-grid, .ts-process { display: grid; gap: 18px; }
.ts-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ts-card, .ts-price-card, .ts-process article, .ts-info, .ts-form, .ts-faq-list details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}

.ts-card {
    position: relative;
    padding: 30px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ts-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, .3);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .1);
}

.ts-card-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: #eff6ff;
}

.ts-card-icon img {
    max-width: 42px;
    max-height: 42px;
}

.ts-about-band {
    display: grid;
    grid-template-columns: minmax(420px, .92fr) minmax(0, 1fr);
    gap: 76px;
    align-items: center;
}

.ts-review-stack {
    display: grid;
    gap: 16px;
}

.ts-review-stack article {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}

.ts-review-stack article:nth-child(2) { margin-left: 38px; }
.ts-review-stack article:nth-child(3) { margin-left: 76px; }
.ts-review-stack span { color: var(--blue); font-weight: 850; }
.ts-review-stack strong { display: block; color: var(--navy); font-size: 22px; margin: 8px 0; }
.ts-review-stack p { margin: 0; color: var(--muted); }
.ts-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr); gap: 54px; align-items: start; }
.ts-check { display: grid; gap: 16px; margin-top: 26px; border-left: 3px solid var(--blue); padding-left: 28px; }
.ts-process { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ts-process article { padding: 34px; position: relative; overflow: hidden; }
.ts-process article:after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -52px;
    bottom: -52px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
}

.ts-process span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: #dbeafe;
    color: var(--blue);
    font-weight: 820;
}

.ts-pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
}

.ts-pricing-grid + .ts-note { margin-bottom: -28px; }

.ts-price-card {
    position: relative;
    padding: 30px 28px;
    display: grid;
    grid-template-rows: auto auto auto minmax(88px, auto) 1fr auto;
    min-height: 620px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
}

.ts-price-card.ts-popular {
    border-color: var(--blue);
    box-shadow: 0 24px 56px rgba(37, 99, 235, .14);
    transform: none;
}

.ts-pill {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    color: var(--blue);
    background: #eff6ff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
}

.ts-price-card h3 {
    padding-right: 72px;
    margin-bottom: 18px;
}

.ts-price {
    color: var(--navy);
    font-size: 40px;
    font-weight: 830;
    margin-bottom: 2px;
}

.ts-duration {
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 18px;
}

.ts-price-card > p:not(.ts-duration) {
    min-height: 76px;
    margin-bottom: 20px;
    color: var(--text);
}

.ts-price-card ul {
    display: grid;
    align-content: start;
    gap: 10px;
    margin: 0 0 24px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.ts-price-card .ts-btn {
    align-self: end;
    margin-top: 0;
}

.ts-site .ts-note {
    width: min(860px, 100%);
    margin: 18px auto 0;
    color: var(--muted);
    text-align: center;
}
.ts-faq-wrap { display: grid; grid-template-columns: minmax(280px, .6fr) minmax(0, 1fr); gap: 44px; }
.ts-faq-list { display: grid; gap: 12px; }
.ts-faq-list details { padding: 20px 22px; }
.ts-faq-list summary { color: var(--navy); cursor: pointer; font-weight: 780; }
.ts-faq-list p { margin-top: 12px; }

.ts-cta {
    text-align: center;
    background: var(--navy);
}
.ts-cta h2, .ts-cta p { color: var(--white); }
.ts-cta p { max-width: 720px; margin-left: auto; margin-right: auto; color: #cbd5e1; }
.ts-narrow { max-width: 820px; }
.ts-info, .ts-form { padding: 28px; }
.ts-contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 24px; align-items: start; }

.ts-form input, .ts-form textarea, .ts-form select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--navy);
    background: var(--white);
}

.ts-form label { color: var(--navy); font-weight: 700; }
.ts-form input[type="submit"] { width: auto; min-width: 180px; border-color: var(--blue); background: var(--blue); color: var(--white); font-weight: 780; }
.ts-policy { max-width: 880px; }
.ts-policy h2 { margin-top: 34px; font-size: 30px; }

.ts-footer {
    background: #08111f;
    color: #cbd5e1;
    padding: 58px 0 28px;
}

@keyframes ts-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.ts-footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr 1fr; gap: 34px; }
.ts-footer h2 { color: var(--white); font-size: 16px; margin-bottom: 16px; }
.ts-footer p { color: #b6c3d4; }
.ts-footer a { color: #d7e0ec; display: block; margin-bottom: 10px; }
.ts-footer a:hover { color: #60a5fa; }
.ts-footer .ts-brand { margin-bottom: 18px; }
.ts-footer .ts-brand img { width: 132px; filter: none; }
.ts-footer-bottom { border-top: 1px solid rgba(226, 232, 240, .18); margin-top: 36px; padding-top: 22px; color: #b6c3d4; font-size: 14px; }

@media (max-width: 1040px) {
    .ts-hero-grid, .ts-split, .ts-about-band, .ts-faq-wrap, .ts-contact-grid, .ts-footer-grid { grid-template-columns: 1fr; }
    .ts-card-grid, .ts-pricing-grid, .ts-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ts-nav nav { gap: 16px; }
    .ts-hero-art { min-height: 520px; }
    .ts-hero-image { inset: 0; }
    .ts-review-stack article:nth-child(2),
    .ts-review-stack article:nth-child(3) { margin-left: 0; }
    .ts-proof-grid div:nth-child(2) { border-right: 0; }
    .ts-proof-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 760px) {
    .ts-nav { min-height: auto; padding-top: 16px; padding-bottom: 16px; flex-wrap: wrap; }
    .ts-brand { width: 100%; }
    .ts-brand img { width: 132px; }
    .ts-nav nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
    .ts-hero, .ts-page-hero, .ts-section { padding: 64px 0; }
    .ts-site h1 { font-size: 38px; }
    .ts-page-hero p, .ts-hero-text { font-size: 18px; }
    .ts-card-grid, .ts-pricing-grid, .ts-process, .ts-proof-grid { grid-template-columns: 1fr; }
    .ts-pricing-grid + .ts-note { margin-bottom: 0; }
    .ts-price-card {
        min-height: 0;
        grid-template-rows: none;
    }
    .ts-price-card h3 { padding-right: 72px; }
    .ts-price-card > p:not(.ts-duration) { min-height: 0; }
    .ts-hero-art { min-height: auto; }
    .ts-hero-image {
        position: relative;
        inset: auto;
        min-height: 260px;
        padding: 20px;
    }
    .ts-hero-image:before { inset: 14px; }
    .ts-hero-image img {
        max-width: 100%;
        max-height: 300px;
        object-fit: contain;
    }
    .ts-floating-card {
        position: static;
        min-width: 0;
        padding: 12px 14px;
        margin-top: 10px;
    }
    .ts-floating-card strong { font-size: 18px; }
    .ts-floating-card span { font-size: 13px; }
    .ts-proof { margin-top: 0; }
    .ts-proof-grid div { border-right: 0; border-bottom: 1px solid var(--border); }
    .ts-proof-grid div:last-child { border-bottom: 0; }
    .ts-btn { width: 100%; }
    .ts-price-card.ts-popular { transform: none; }
}

/* Previous dark style direction */
.ts-site {
    --blue: #3482ff;
    --blue-dark: #2563eb;
    --purple: #7a21a3;
    --navy: #ffffff;
    --ink: #161620;
    --panel: #1d1d25;
    --panel-soft: #292930;
    --text: #c9ceda;
    --muted: #8f96a8;
    --soft: #292930;
    --border: rgba(255, 255, 255, .08);
    background: var(--ink);
    color: var(--text);
}

.ts-site h1,
.ts-site h2,
.ts-site h3 {
    color: #ffffff;
}

.ts-header {
    background: rgba(29, 29, 37, .96);
    border-bottom-color: rgba(255, 255, 255, .06);
    box-shadow: none;
}

.ts-brand img {
    filter: brightness(0) invert(1);
}

.ts-nav nav a,
.ts-footer a {
    color: #ffffff;
}

.ts-nav nav a:hover,
.ts-footer a:hover {
    color: #a855f7;
}

.ts-btn {
    border-color: #3482ff;
    background: #3482ff;
    color: #ffffff;
    box-shadow: none;
}

.ts-btn:hover {
    background: #7a21a3;
    border-color: #7a21a3;
}

.ts-btn-secondary {
    border-color: rgba(255, 255, 255, .16);
    background: #ffffff;
    color: #161620;
}

.ts-btn-secondary:hover {
    background: #7a21a3;
    border-color: #7a21a3;
    color: #ffffff;
}

.ts-hero,
.ts-page-hero,
.ts-section,
.ts-soft {
    background: var(--panel);
    border-color: rgba(255, 255, 255, .06);
}

.ts-hero {
    background: #1d1d25;
}

@media (min-width: 1041px) {
    .ts-hero-grid > div:first-child {
        order: 2;
    }

    .ts-hero-art {
        order: 1;
    }
}

.ts-eyebrow {
    color: #e68839;
}

.ts-eyebrow:before {
    background: #7a21a3;
}

.ts-hero-text,
.ts-page-hero p,
.ts-section-head p,
.ts-card p,
.ts-process p,
.ts-review-stack p,
.ts-price-card > p:not(.ts-duration),
.ts-faq-list p,
.ts-check li,
.ts-trust li {
    color: #b9bfcc;
}

.ts-shape {
    display: block;
    position: absolute;
    pointer-events: none;
    opacity: .8;
}

.ts-shape-one {
    top: 130px;
    left: 52%;
    width: 70px;
}

.ts-shape-two {
    right: 5%;
    top: 440px;
    width: 52px;
}

.ts-hero-image {
    inset: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.ts-hero-image:before {
    display: none;
}

.ts-hero-image img {
    max-width: 82%;
    filter: drop-shadow(0 34px 34px rgba(0, 0, 0, .26));
}

.ts-floating-card {
    border-color: rgba(255, 255, 255, .08);
    background: rgba(22, 22, 32, .92);
    box-shadow: 0 22px 46px rgba(0, 0, 0, .24);
}

.ts-floating-card strong {
    color: #ffffff;
}

.ts-floating-card span {
    color: #b9bfcc;
}

.ts-proof-grid,
.ts-card,
.ts-price-card,
.ts-process article,
.ts-info,
.ts-form,
.ts-faq-list details,
.ts-review-stack article {
    background: #1d1d25;
    border-color: rgba(255, 255, 255, .08);
    box-shadow: none;
}

.ts-proof-grid {
    background: #161620;
}

.ts-proof-grid div {
    border-color: rgba(255, 255, 255, .08);
}

.ts-proof-grid strong,
.ts-review-stack strong {
    color: #ffffff;
}

.ts-proof-grid span {
    color: #b9bfcc;
}

.ts-card:hover {
    border-color: #7a21a3;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.ts-card-icon,
.ts-process span {
    background: #292930;
}

.ts-price-card {
    background: #161620;
}

.ts-price-card.ts-popular {
    background: #7a21a3;
    border-color: #7a21a3;
    box-shadow: none;
}

.ts-price-card.ts-popular .ts-price,
.ts-price-card.ts-popular h3,
.ts-price-card.ts-popular .ts-duration,
.ts-price-card.ts-popular li,
.ts-price-card.ts-popular p {
    color: #ffffff;
}

.ts-pill {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
}

.ts-price {
    color: #ffffff;
}

.ts-price-card li:before,
.ts-trust li:before,
.ts-check li:before {
    background: #3482ff;
}

.ts-price-card ul {
    border-top-color: rgba(255, 255, 255, .08);
}

.ts-site .ts-note {
    color: #b9bfcc;
}

.ts-faq-list summary {
    color: #ffffff;
}

.ts-cta,
.ts-footer {
    background: #161620;
}

.ts-footer {
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.ts-footer p,
.ts-footer-bottom {
    color: #b9bfcc;
}

.ts-footer-bottom {
    border-top-color: rgba(255, 255, 255, .08);
}

.ts-form input,
.ts-form textarea,
.ts-form select {
    background: #161620;
    border-color: rgba(255, 255, 255, .1);
    color: #ffffff;
}

@media (max-width: 760px) {
    .ts-shape {
        display: none;
    }

    .ts-hero-image {
        background: transparent;
    }

    .ts-hero-image img {
        max-width: 78%;
        max-height: 300px;
    }
}

/* Light professional direction */
.ts-site {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --purple: #6d28d9;
    --navy: #0f172a;
    --ink: #0f172a;
    --panel: #ffffff;
    --panel-soft: #f8fafc;
    --text: #475569;
    --muted: #64748b;
    --soft: #f8fafc;
    --border: #e2e8f0;
    background: #ffffff;
    color: var(--text);
}

.ts-site h1,
.ts-site h2,
.ts-site h3 {
    color: var(--navy);
}

.ts-header {
    background: rgba(255, 255, 255, .96);
    border-bottom-color: rgba(226, 232, 240, .9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
}

.ts-brand img {
    filter: none;
}

.ts-nav nav a {
    color: #334155;
}

.ts-nav nav a:hover {
    color: var(--blue);
}

.ts-btn {
    border-color: var(--blue);
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(37, 99, 235, .18);
}

.ts-btn:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.ts-btn-secondary {
    border-color: var(--border);
    background: #ffffff;
    color: var(--navy);
}

.ts-btn-secondary:hover {
    background: var(--soft);
    border-color: var(--border);
    color: var(--navy);
}

.ts-hero,
.ts-page-hero {
    background: #ffffff;
    border-bottom-color: var(--border);
}

.ts-section {
    background: #ffffff;
}

.ts-soft {
    background: var(--soft);
}

@media (min-width: 1041px) {
    .ts-hero-grid > div:first-child {
        order: 1;
    }

    .ts-hero-art {
        order: 2;
    }
}

.ts-eyebrow {
    color: var(--blue);
}

.ts-eyebrow:before {
    background: var(--blue);
}

.ts-hero-text,
.ts-page-hero p,
.ts-section-head p,
.ts-card p,
.ts-process p,
.ts-review-stack p,
.ts-price-card > p:not(.ts-duration),
.ts-faq-list p,
.ts-check li,
.ts-trust li {
    color: var(--text);
}

.ts-shape {
    opacity: .18;
}

.ts-hero-image {
    background: var(--soft);
    border-radius: 34px;
    box-shadow: 0 34px 90px rgba(15, 23, 42, .1);
}

.ts-hero-image:before {
    display: block;
}

.ts-hero-image img {
    max-width: 82%;
    filter: drop-shadow(0 24px 26px rgba(15, 23, 42, .14));
}

.ts-floating-card {
    border-color: var(--border);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 22px 46px rgba(15, 23, 42, .12);
}

.ts-floating-card strong,
.ts-proof-grid strong,
.ts-review-stack strong,
.ts-faq-list summary {
    color: var(--navy);
}

.ts-floating-card span,
.ts-proof-grid span {
    color: var(--muted);
}

.ts-proof-grid,
.ts-card,
.ts-price-card,
.ts-process article,
.ts-info,
.ts-form,
.ts-faq-list details,
.ts-review-stack article {
    background: #ffffff;
    border-color: var(--border);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}

.ts-proof-grid div,
.ts-price-card ul {
    border-color: var(--border);
}

.ts-card:hover {
    border-color: rgba(37, 99, 235, .35);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .1);
}

.ts-card-icon,
.ts-process span {
    background: #eff6ff;
}

.ts-price-card.ts-popular {
    background: #ffffff;
    border-color: var(--blue);
    box-shadow: 0 24px 56px rgba(37, 99, 235, .14);
}

.ts-price-card.ts-popular .ts-price,
.ts-price-card.ts-popular h3,
.ts-price-card.ts-popular .ts-duration,
.ts-price-card.ts-popular li,
.ts-price-card.ts-popular p {
    color: inherit;
}

.ts-price-card.ts-popular h3,
.ts-price,
.ts-price-card.ts-popular .ts-price {
    color: var(--navy);
}

.ts-duration,
.ts-price-card.ts-popular .ts-duration {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    min-height: 28px;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--blue);
    line-height: 1.1;
}

.ts-pill {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: var(--blue);
}

.ts-price-card li:before,
.ts-trust li:before,
.ts-check li:before {
    background: var(--blue);
}

.ts-site .ts-note {
    color: var(--muted);
}

.ts-cta {
    background: var(--navy);
}

.ts-cta h2 {
    color: #ffffff;
}

.ts-cta p {
    color: #d7e0ec;
}

.ts-footer {
    background: #08111f;
    border-top-color: rgba(255, 255, 255, .06);
}

.ts-footer h2 {
    color: #ffffff;
}

.ts-footer p,
.ts-footer-bottom {
    color: #b6c3d4;
}

.ts-footer a {
    color: #d7e0ec;
}

.ts-footer-bottom {
    border-top-color: rgba(226, 232, 240, .18);
}

.ts-form input,
.ts-form textarea,
.ts-form select {
    background: #ffffff;
    border-color: var(--border);
    color: var(--navy);
}

@media (max-width: 760px) {
    .ts-hero-image {
        background: var(--soft);
    }
}

.ts-brand img {
    width: 238px;
    max-width: 100%;
    height: auto;
    filter: none !important;
}

.ts-footer .ts-brand img {
    width: 238px;
    filter: none !important;
}

@media (max-width: 640px) {
    .ts-brand img,
    .ts-footer .ts-brand img {
        width: 210px;
    }
}

.ts-consulting-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.ts-about-band {
    grid-template-columns: minmax(360px, .86fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(48px, 6vw, 92px);
}

.ts-review-stack {
    position: relative;
    display: grid;
    gap: 0;
    padding: 34px;
    border: 1px solid #dbe6f4;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .08);
}

.ts-review-stack:before {
    content: "";
    position: absolute;
    left: 58px;
    top: 126px;
    bottom: 54px;
    width: 2px;
    background: #dbeafe;
}

.ts-review-panel-head {
    padding: 0 0 26px 0;
    border-bottom: 1px solid #e5edf7;
    margin-bottom: 6px;
}

.ts-review-panel-head span {
    display: block;
    margin-bottom: 8px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ts-review-panel-head strong {
    display: block;
    max-width: 390px;
    color: #0f172a;
    font-size: 26px;
    line-height: 1.18;
    letter-spacing: 0;
}

.ts-review-stack article,
.ts-review-stack article:nth-child(2),
.ts-review-stack article:nth-child(3) {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    margin: 0;
    padding: 24px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ts-review-stack article + article {
    border-top: 1px solid #edf2f7;
}

.ts-review-stack article > span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 850;
}

.ts-review-stack strong {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 20px;
    line-height: 1.25;
}

.ts-review-stack p {
    max-width: 430px;
    color: #526176;
    font-size: 15px;
    line-height: 1.75;
}

.ts-consulting-copy {
    max-width: 640px;
}

.ts-consulting-copy h2 {
    max-width: 620px;
    margin-bottom: 20px;
}

.ts-consulting-copy > p:not(.ts-eyebrow) {
    max-width: 590px;
    color: #526176;
    line-height: 1.8;
}

.ts-consulting-copy .ts-check {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
    padding-left: 0;
    border-left: 0;
}

.ts-consulting-copy .ts-check li {
    min-height: 70px;
    padding: 17px 18px 17px 46px;
    border: 1px solid #e1eaf6;
    border-radius: 16px;
    background: #ffffff;
    color: #334155;
    font-size: 15px;
    line-height: 1.45;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .04);
}

.ts-consulting-copy .ts-check li:before {
    left: 18px;
    top: 24px;
    width: 10px;
    height: 10px;
    background: #2563eb;
    box-shadow: 0 0 0 5px #dbeafe;
}

@media (max-width: 1040px) {
    .ts-about-band {
        grid-template-columns: 1fr;
    }

    .ts-consulting-copy {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .ts-review-stack {
        padding: 24px;
        border-radius: 20px;
    }

    .ts-review-stack:before {
        display: none;
    }

    .ts-review-panel-head strong {
        font-size: 22px;
    }

    .ts-review-stack article,
    .ts-review-stack article:nth-child(2),
    .ts-review-stack article:nth-child(3) {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ts-consulting-copy .ts-check {
        grid-template-columns: 1fr;
    }
}

.ts-pricing-section {
    background: #ffffff;
    scroll-margin-top: 110px;
}

.ts-pricing-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 40px;
    align-items: end;
    margin-bottom: 34px;
}

.ts-pricing-head h2 {
    max-width: 640px;
    margin-bottom: 14px;
}

.ts-pricing-head p:not(.ts-eyebrow) {
    max-width: 780px;
    color: #526176;
    line-height: 1.75;
}

.ts-pricing-summary {
    padding: 22px;
    border: 1px solid #dbe6f4;
    border-radius: 18px;
    background: #f8fbff;
    box-shadow: 0 16px 44px rgba(15, 23, 42, .05);
}

.ts-pricing-summary strong,
.ts-pricing-summary span {
    display: block;
}

.ts-pricing-summary strong {
    margin-bottom: 6px;
    color: #0f172a;
    font-size: 18px;
}

.ts-pricing-summary span {
    color: #526176;
    line-height: 1.55;
}

.ts-pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.ts-price-card,
.ts-price-card.ts-popular {
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    min-height: 590px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid #dbe6f4;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .06);
    transform: none;
}

.ts-price-card:before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: #dbeafe;
}

.ts-price-card.ts-popular {
    border-color: #2563eb;
    box-shadow: 0 28px 76px rgba(37, 99, 235, .14);
}

.ts-price-card.ts-popular:before {
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 65%, #ff8a3d 100%);
}

.ts-pill {
    top: 20px;
    right: 20px;
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #2563eb;
}

.ts-plan-top {
    min-height: 142px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e5edf7;
}

.ts-price-card h3 {
    margin: 0 0 14px;
    padding-right: 72px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.15;
}

.ts-plan-top p {
    margin: 0;
    color: #526176;
    font-size: 15px;
    line-height: 1.65;
}

.ts-price-row {
    padding: 22px 0;
}

.ts-price {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 44px;
    line-height: 1;
    font-weight: 850;
}

.ts-duration,
.ts-price-card.ts-popular .ts-duration {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 6px 11px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 850;
}

.ts-price-card ul {
    display: grid;
    align-content: start;
    gap: 12px;
    margin: 0 0 26px;
    padding: 0;
    border-top: 0;
}

.ts-price-card li {
    color: #334155;
    font-size: 15px;
    line-height: 1.55;
}

.ts-price-card li:before {
    top: 10px;
    background: #2563eb;
}

.ts-price-card .ts-btn {
    align-self: end;
    min-height: 48px;
}

.ts-site .ts-note {
    max-width: 900px;
    margin: 26px auto 0;
    color: #526176;
    line-height: 1.7;
}

.ts-faq-section {
    background: #f8fbff;
    scroll-margin-top: 110px;
}

.ts-faq-wrap {
    display: grid;
    grid-template-columns: minmax(300px, .48fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: start;
}

.ts-faq-intro {
    position: sticky;
    top: 104px;
}

.ts-faq-intro h2 {
    margin-bottom: 14px;
}

.ts-faq-intro > p:not(.ts-eyebrow) {
    color: #526176;
    line-height: 1.75;
}

.ts-faq-support {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid #dbe6f4;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 54px rgba(15, 23, 42, .06);
}

.ts-faq-support strong,
.ts-faq-support span {
    display: block;
}

.ts-faq-support strong {
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 20px;
}

.ts-faq-support span {
    margin-bottom: 18px;
    color: #526176;
    line-height: 1.65;
}

.ts-faq-support a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.ts-faq-list {
    display: grid;
    gap: 14px;
}

.ts-faq-list details {
    padding: 0;
    overflow: hidden;
    border: 1px solid #dbe6f4;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 44px rgba(15, 23, 42, .045);
}

.ts-faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 20px 58px 20px 24px;
    color: #0f172a;
    cursor: pointer;
    font-size: 17px;
    font-weight: 820;
    list-style: none;
}

.ts-faq-list summary::-webkit-details-marker {
    display: none;
}

.ts-faq-list summary:after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 20px;
    line-height: 1;
    transform: translateY(-50%);
}

.ts-faq-list details[open] {
    border-color: #bfdbfe;
}

.ts-faq-list details[open] summary:after {
    content: "-";
}

.ts-faq-list p {
    margin: 0;
    padding: 0 24px 24px;
    color: #526176;
    line-height: 1.75;
}

@media (max-width: 1120px) {
    .ts-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .ts-pricing-head,
    .ts-faq-wrap {
        grid-template-columns: 1fr;
    }

    .ts-faq-intro {
        position: static;
    }
}

@media (max-width: 640px) {
    .ts-pricing-grid {
        grid-template-columns: 1fr;
    }

    .ts-price-card,
    .ts-price-card.ts-popular {
        min-height: 0;
        padding: 24px;
        border-radius: 20px;
    }

    .ts-plan-top {
        min-height: 0;
    }

    .ts-price {
        font-size: 40px;
    }

    .ts-faq-list summary {
        min-height: 64px;
        padding: 18px 54px 18px 20px;
        font-size: 16px;
    }

    .ts-faq-list p {
        padding: 0 20px 22px;
    }
}

.ts-contact-hero {
    padding-bottom: 54px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.ts-contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 44px;
    align-items: end;
}

.ts-contact-hero h1 {
    max-width: 760px;
}

.ts-contact-hero p:not(.ts-eyebrow) {
    max-width: 760px;
}

.ts-contact-promise {
    padding: 24px;
    border: 1px solid #dbe6f4;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 54px rgba(15, 23, 42, .06);
}

.ts-contact-promise strong,
.ts-contact-promise span {
    display: block;
}

.ts-contact-promise strong {
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 19px;
}

.ts-contact-promise span {
    color: #526176;
    line-height: 1.65;
}

.ts-contact-section {
    background: #ffffff;
}

.ts-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 28px;
    align-items: start;
}

.ts-form {
    padding: 34px;
    border: 1px solid #dbe6f4;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .08);
}

.ts-form-head {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5edf7;
}

.ts-form-head h2 {
    margin-bottom: 10px;
    font-size: clamp(28px, 3vw, 40px);
}

.ts-form-head p:not(.ts-eyebrow) {
    max-width: 680px;
    margin-bottom: 0;
    color: #526176;
    line-height: 1.75;
}

.ts-form form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.ts-form p {
    margin: 0;
}

.ts-form .hidden-fields-container {
    display: none;
}

.ts-form form > p {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.ts-form label {
    display: grid;
    gap: 8px;
    margin: 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
}

.ts-form label:has(textarea),
.ts-form label:has(select),
.ts-form label:has(input[type="url"]),
.ts-form p:has(textarea),
.ts-form p:has(select),
.ts-form p:has(input[type="url"]),
.ts-form p:has(input[type="submit"]),
.ts-form .wpcf7-response-output {
    grid-column: 1 / -1;
}

.ts-form input,
.ts-form textarea,
.ts-form select {
    width: 100%;
    min-height: 54px;
    border: 1px solid #dbe6f4;
    border-radius: 14px;
    padding: 14px 16px;
    background: #f8fbff;
    color: #0f172a;
    font: inherit;
    box-shadow: none;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.ts-form select {
    padding-right: 42px;
    font-size: 15px;
}

.ts-form textarea {
    min-height: 190px;
    resize: vertical;
}

.ts-form input:focus,
.ts-form textarea:focus,
.ts-form select:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.ts-form input[type="submit"] {
    width: auto;
    min-width: 210px;
    min-height: 52px;
    justify-self: start;
    border-color: #2563eb;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(37, 99, 235, .18);
}

.ts-form input[type="submit"]:hover {
    background: #1d4ed8;
}

.ts-form .wpcf7-spinner {
    align-self: center;
}

.ts-contact-side {
    display: grid;
    gap: 18px;
}

.ts-business-card,
.ts-contact-steps {
    padding: 28px;
    border: 1px solid #dbe6f4;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 22px 64px rgba(15, 23, 42, .06);
}

.ts-side-label {
    display: block;
    margin-bottom: 14px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ts-business-card strong {
    display: block;
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 21px;
}

.ts-business-card p {
    margin: 0 0 18px;
    color: #526176;
    line-height: 1.7;
}

.ts-business-card p:last-child {
    margin-bottom: 0;
}

.ts-business-card a {
    display: inline;
    color: #2563eb;
    font-weight: 800;
    text-decoration: none;
}

.ts-contact-steps ol {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: contact-step;
}

.ts-contact-steps li {
    position: relative;
    min-height: 50px;
    padding-left: 58px;
    counter-increment: contact-step;
}

.ts-contact-steps li:before {
    content: counter(contact-step);
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #bfdbfe;
    border-radius: 13px;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 850;
}

.ts-contact-steps strong,
.ts-contact-steps span {
    display: block;
}

.ts-contact-steps strong {
    color: #0f172a;
    line-height: 1.2;
}

.ts-contact-steps span {
    margin-top: 4px;
    color: #526176;
    line-height: 1.55;
}

@media (max-width: 1040px) {
    .ts-contact-hero-grid,
    .ts-contact-grid {
        grid-template-columns: 1fr;
    }

    .ts-contact-promise,
    .ts-contact-side {
        max-width: 720px;
    }
}

@media (max-width: 700px) {
    .ts-form {
        padding: 24px;
        border-radius: 20px;
    }

    .ts-form form {
        grid-template-columns: 1fr;
    }

    .ts-form form > p {
        grid-template-columns: 1fr;
    }

    .ts-form input[type="submit"] {
        width: 100%;
    }
}

.ts-about-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.ts-about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: clamp(42px, 6vw, 84px);
    align-items: end;
}

.ts-about-hero h1 {
    max-width: 860px;
}

.ts-about-hero p:not(.ts-eyebrow) {
    max-width: 820px;
}

.ts-about-stats {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid #dbe6f4;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.ts-about-stats div {
    padding: 18px;
    border: 1px solid #e5edf7;
    border-radius: 16px;
    background: #f8fbff;
}

.ts-about-stats strong,
.ts-about-stats span {
    display: block;
}

.ts-about-stats strong {
    margin-bottom: 5px;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.1;
}

.ts-about-stats span {
    color: #526176;
    line-height: 1.55;
}

.ts-about-story-section,
.ts-about-business-section {
    background: #ffffff;
}

.ts-about-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: clamp(30px, 5vw, 64px);
    align-items: stretch;
}

.ts-about-card,
.ts-about-method,
.ts-principles-grid article {
    border: 1px solid #dbe6f4;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .06);
}

.ts-about-card {
    padding: clamp(30px, 4vw, 46px);
}

.ts-about-card h2 {
    max-width: 720px;
    margin-bottom: 20px;
}

.ts-about-card p {
    max-width: 780px;
    color: #526176;
    line-height: 1.85;
}

.ts-about-card p:last-child {
    margin-bottom: 0;
}

.ts-about-method {
    padding: 30px;
}

.ts-about-method ol {
    display: grid;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: about-step;
}

.ts-about-method li {
    position: relative;
    padding-left: 62px;
    counter-increment: about-step;
}

.ts-about-method li:before {
    content: counter(about-step);
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 850;
}

.ts-about-method strong,
.ts-about-method span {
    display: block;
}

.ts-about-method strong {
    margin-bottom: 6px;
    color: #0f172a;
    line-height: 1.2;
}

.ts-about-method span {
    color: #526176;
    line-height: 1.65;
}

.ts-about-principles-section {
    background: #f8fbff;
}

.ts-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ts-principles-grid article {
    min-height: 250px;
    padding: 28px;
}

.ts-principles-grid span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border: 1px solid #bfdbfe;
    border-radius: 13px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 850;
}

.ts-principles-grid h3 {
    margin-bottom: 12px;
}

.ts-principles-grid p {
    color: #526176;
    line-height: 1.75;
}

.ts-about-business {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: clamp(30px, 5vw, 64px);
    align-items: start;
}

.ts-about-business > div > p:not(.ts-eyebrow) {
    max-width: 720px;
    color: #526176;
    font-size: 19px;
    line-height: 1.8;
}

@media (max-width: 1040px) {
    .ts-about-hero-grid,
    .ts-about-story,
    .ts-about-business {
        grid-template-columns: 1fr;
    }

    .ts-about-stats,
    .ts-about-method,
    .ts-about-business .ts-business-card {
        max-width: 720px;
    }

    .ts-principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ts-about-stats,
    .ts-about-card,
    .ts-about-method,
    .ts-principles-grid article {
        border-radius: 20px;
    }

    .ts-about-stats {
        padding: 18px;
    }

    .ts-about-card,
    .ts-about-method,
    .ts-principles-grid article {
        padding: 24px;
    }

    .ts-principles-grid {
        grid-template-columns: 1fr;
    }

    .ts-principles-grid article {
        min-height: 0;
    }
}

.ts-menu-toggle {
    display: none;
}

@media (max-width: 760px) {
    body.ts-lock-scroll {
        overflow: hidden;
    }

    .ts-header {
        z-index: 100;
    }

    .ts-header.ts-menu-open:before {
        content: "";
        position: fixed;
        inset: 78px 0 0;
        z-index: 100;
        background: rgba(15, 23, 42, .18);
        backdrop-filter: blur(4px);
    }

    .ts-nav {
        position: relative;
        min-height: 78px;
        padding-top: 12px;
        padding-bottom: 12px;
        flex-wrap: nowrap;
        gap: 14px;
    }

    .ts-brand {
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
    }

    .ts-brand img {
        width: 210px;
        max-width: min(210px, 58vw);
    }

    .ts-menu-toggle {
        position: relative;
        z-index: 102;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 46px;
        height: 46px;
        border: 1px solid #dbe6f4;
        border-radius: 14px;
        background: #ffffff;
        color: #0f172a;
        box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
        cursor: pointer;
    }

    .ts-menu-toggle span:not(.ts-menu-toggle-text) {
        position: absolute;
        left: 50%;
        display: block;
        width: 21px;
        height: 2px;
        border-radius: 999px;
        background: #0f172a;
        transform: translateX(-50%);
        transform-origin: center;
        transition: top .22s ease, transform .22s ease, opacity .18s ease;
    }

    .ts-menu-toggle span:nth-child(1) {
        top: 16px;
    }

    .ts-menu-toggle span:nth-child(2) {
        top: 22px;
    }

    .ts-menu-toggle span:nth-child(3) {
        top: 28px;
    }

    .ts-menu-toggle-text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .ts-menu-open .ts-menu-toggle span:nth-child(1) {
        top: 22px;
        transform: translateX(-50%) rotate(45deg);
    }

    .ts-menu-open .ts-menu-toggle span:nth-child(2) {
        opacity: 0;
        transform: translateX(-50%) scaleX(.4);
    }

    .ts-menu-open .ts-menu-toggle span:nth-child(3) {
        top: 22px;
        transform: translateX(-50%) rotate(-45deg);
    }

    .ts-nav .ts-menu {
        position: fixed;
        left: 18px;
        right: 18px;
        top: 92px;
        z-index: 102;
        display: grid;
        width: auto;
        gap: 0;
        max-height: calc(100vh - 116px);
        overflow: auto;
        padding: 12px;
        border: 1px solid #dbe6f4;
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 28px 80px rgba(15, 23, 42, .18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        pointer-events: none;
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }

    .ts-menu-open .ts-nav .ts-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .ts-nav .ts-menu a {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 0 16px;
        border-radius: 14px;
        color: #0f172a;
        font-size: 17px;
        font-weight: 800;
        text-decoration: none;
    }

    .ts-nav .ts-menu a + a {
        margin-top: 4px;
    }

    .ts-nav .ts-menu a:hover,
    .ts-nav .ts-menu a:focus {
        background: #eff6ff;
        color: #2563eb;
    }

    .ts-nav-cta {
        display: none;
    }
}

@media (hover: hover) and (pointer: fine) {
    .home.ts-site {
        --cursor-x: 50%;
        --cursor-y: 42%;
        --cursor-shift-x: 0px;
        --cursor-shift-y: 0px;
    }

    .home.ts-site::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 4;
        pointer-events: none;
        background:
            radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(37, 99, 235, .10), transparent 22%),
            radial-gradient(circle at calc(var(--cursor-x) + 11%) calc(var(--cursor-y) + 9%), rgba(255, 138, 61, .07), transparent 20%);
        opacity: 0;
        transition: opacity .22s ease;
    }

    .home.ts-site.ts-cursor-active::before {
        opacity: 1;
    }

    .home.ts-site .ts-header,
    .home.ts-site .ts-hero,
    .home.ts-site .ts-section,
    .home.ts-site .ts-proof,
    .home.ts-site .ts-footer {
        position: relative;
    }

    .home.ts-site .ts-header {
        z-index: 50;
    }

    .home.ts-site .ts-hero,
    .home.ts-site .ts-section,
    .home.ts-site .ts-proof,
    .home.ts-site .ts-footer {
        z-index: 3;
    }

    .ts-hero {
        position: relative;
        isolation: isolate;
        overflow: hidden;
    }

    .ts-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background:
            radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(37, 99, 235, .13), transparent 30%),
            radial-gradient(circle at calc(var(--cursor-x) + 13%) calc(var(--cursor-y) + 7%), rgba(255, 138, 61, .10), transparent 25%);
        opacity: 0;
        transition: opacity .22s ease;
    }

    .home.ts-site.ts-cursor-active .ts-hero::before {
        opacity: 1;
    }

    .ts-hero > :not(.ts-shape) {
        position: relative;
        z-index: 1;
    }

    .ts-hero .ts-hero-art {
        transform: translate3d(calc(var(--cursor-shift-x) * .22), calc(var(--cursor-shift-y) * .22), 0);
        transition: transform .16s ease-out;
        will-change: transform;
    }

    .ts-hero .ts-floating-card-one {
        transform: translate3d(calc(var(--cursor-shift-x) * .48), calc(var(--cursor-shift-y) * -.42), 0);
        transition: transform .16s ease-out;
        will-change: transform;
    }

    .ts-hero .ts-floating-card-two {
        transform: translate3d(calc(var(--cursor-shift-x) * -.36), calc(var(--cursor-shift-y) * .34), 0);
        transition: transform .16s ease-out;
        will-change: transform;
    }

    .home.ts-site .ts-proof-grid,
    .home.ts-site .ts-card-grid,
    .home.ts-site .ts-about-band,
    .home.ts-site .ts-process,
    .home.ts-site .ts-pricing-grid,
    .home.ts-site .ts-faq-wrap,
    .home.ts-site .ts-cta .ts-shell {
        transform: translate3d(calc(var(--cursor-shift-x) * .09), calc(var(--cursor-shift-y) * .075), 0);
        transition: transform .16s ease-out;
        will-change: transform;
    }
}

@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) {
    .home.ts-site::before,
    .ts-hero::before {
        display: none;
    }

    .ts-hero .ts-hero-art,
    .ts-hero .ts-floating-card,
    .home.ts-site .ts-proof-grid,
    .home.ts-site .ts-card-grid,
    .home.ts-site .ts-about-band,
    .home.ts-site .ts-process,
    .home.ts-site .ts-pricing-grid,
    .home.ts-site .ts-faq-wrap,
    .home.ts-site .ts-cta .ts-shell {
        transform: none !important;
        transition: none !important;
    }
}

.home.ts-site .ts-hero {
    padding-top: clamp(42px, 4.5vw, 72px);
    padding-bottom: clamp(48px, 5vw, 70px);
}

.home.ts-site .ts-hero-grid {
    align-items: start;
}

.home.ts-site .ts-hero-art {
    margin-top: 4px;
}

@media (min-width: 1200px) {
    .home.ts-site .ts-hero {
        padding-top: 56px;
    }
}

@media (max-width: 760px) {
    .home.ts-site .ts-hero {
        padding-top: 44px;
        padding-bottom: 52px;
    }
}
