/* ============================================================
   Mimti — Modern Professional (indigo SaaS, elevated)
   Same idea/layout as the original, refined craft:
   Plus Jakarta Sans, cool-slate neutrals, indigo accent,
   crisp cards, layered soft shadows, subtle gradients.
   Covers every ts- class + JS states. No HTML changes.
   ============================================================ */

/* ---------- Reset & tokens ---------- */
.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; }
body.ts-lock-scroll { overflow: hidden; }
.ts-site img { max-width: 100%; display: block; }

.ts-site {
    --white:    #ffffff;
    --bg:       #ffffff;
    --soft:     #f7f8fc;
    --ink:      #0e1626;
    --ink-2:    #1f2a3d;
    --text:     #4a5568;
    --muted:    #6b7488;
    --line:     #e9edf4;
    --line-2:   #dde3ee;
    --accent:   #4f46e5;
    --accent-2: #6366f1;
    --accent-deep: #4338ca;
    --accent-tint: #eef2ff;
    --accent-soft: #e0e7ff;

    --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

    --r-sm: 10px;
    --r:    14px;
    --r-lg: 20px;
    --r-xl: 28px;

    --sh-1: 0 1px 2px rgba(15,23,42,.05);
    --sh-2: 0 2px 4px rgba(15,23,42,.04), 0 12px 28px -14px rgba(15,23,42,.14);
    --sh-3: 0 4px 10px rgba(15,23,42,.05), 0 26px 50px -20px rgba(15,23,42,.22);
    --sh-accent: 0 10px 26px -10px rgba(79,70,229,.55);

    --shell: 1200px;
    --header-h: 76px;

    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: -.005em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.ts-site ::selection { background: var(--accent-soft); color: var(--ink); }

/* ---------- Typography ---------- */
.ts-site h1, .ts-site h2, .ts-site h3, .ts-site h4 {
    color: var(--ink); font-family: var(--font); font-weight: 800;
    line-height: 1.08; letter-spacing: -.025em; margin: 0 0 18px;
}
.ts-site h1 { font-size: clamp(40px, 5vw, 66px); letter-spacing: -.035em; }
.ts-site h2 { font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -.03em; }
.ts-site h3 { font-size: 20px; font-weight: 700; letter-spacing: -.02em; line-height: 1.25; }
.ts-site p  { margin: 0 0 18px; }
.ts-site a:where(:not(.ts-btn)) { color: var(--accent); text-decoration: none; }
.ts-site strong { color: var(--ink); }

.ts-shell { max-width: var(--shell); margin: 0 auto; padding: 0 28px; }
.ts-section { padding: clamp(64px, 8vw, 112px) 0; }
.ts-soft { background: var(--soft); }
.ts-section:has(.ts-process) { background: var(--white); } /* "How it works" -> white */

.ts-section-head { max-width: 660px; margin: 0 auto clamp(44px, 5vw, 64px); text-align: center; }
.ts-section-head h2 { margin-bottom: 16px; }
.ts-section-head p { color: var(--muted); font-size: 17px; margin: 0; }

/* Eyebrow pill */
.ts-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
    color: var(--accent); background: var(--accent-tint);
    padding: 10px 18px; border-radius: 999px; margin: 0 0 28px;
}
.ts-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.ts-side-label {
    display: block; font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: .1em; color: var(--accent); margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.ts-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    min-height: 52px; padding: 0 26px;
    font-family: var(--font); font-size: 15px; font-weight: 700; letter-spacing: -.01em;
    text-decoration: none; cursor: pointer; white-space: nowrap;
    color: #fff; background: linear-gradient(180deg, var(--accent-2), var(--accent));
    border: 1px solid transparent; border-radius: 12px;
    box-shadow: var(--sh-accent);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
}
.ts-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(79,70,229,.62); filter: saturate(1.05); }
.ts-btn-secondary { background: var(--white); color: var(--ink); border-color: var(--line-2); box-shadow: var(--sh-1); }
.ts-btn-secondary:hover { background: var(--white); color: var(--accent); border-color: var(--accent-soft); box-shadow: var(--sh-2); }
.ts-btn-small { min-height: 44px; padding: 0 18px; font-size: 14px; border-radius: 10px; }
.ts-btn-wide { width: 100%; }
.ts-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.ts-actions.ts-center { justify-content: center; }

.ts-site a:focus-visible, .ts-site button:focus-visible,
.ts-form input:focus-visible, .ts-form select:focus-visible, .ts-form textarea:focus-visible {
    outline: none; box-shadow: 0 0 0 4px var(--accent-soft); border-radius: 8px;
}

/* ---------- Header / nav ---------- */
.ts-header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(255,255,255,.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.ts-nav { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.ts-brand { display: inline-flex; align-items: center; text-decoration: none; }
.ts-brand img { width: 172px; height: auto; }
.ts-menu { display: flex; align-items: center; gap: 6px; }
.ts-menu a {
    position: relative; color: var(--text); text-decoration: none; font-weight: 600; font-size: 15px;
    padding: 8px 14px; border-radius: 10px; transition: color .2s ease, background .2s ease;
}
.ts-menu a:hover { color: var(--ink); background: var(--soft); }

/* Hamburger */
.ts-menu-toggle {
    display: none; position: relative; align-items: center; gap: 8px;
    height: 42px; padding: 0 6px 0 30px; background: none; border: 0; cursor: pointer; color: var(--ink);
}
.ts-menu-toggle span:not(.ts-menu-toggle-text) {
    position: absolute; left: 0; width: 22px; height: 2px; border-radius: 2px; background: var(--ink);
    transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.ts-menu-toggle span:nth-child(1) { top: 14px; }
.ts-menu-toggle span:nth-child(2) { top: 20px; }
.ts-menu-toggle span:nth-child(3) { top: 26px; }
.ts-menu-toggle-text { font-weight: 700; font-size: 14px; }
.ts-header.ts-menu-open .ts-menu-toggle span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.ts-header.ts-menu-open .ts-menu-toggle span:nth-child(2) { opacity: 0; }
.ts-header.ts-menu-open .ts-menu-toggle span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.ts-hero {
    position: relative; overflow: hidden; padding: clamp(56px, 6.5vw, 104px) 0 clamp(60px, 6.5vw, 108px);
    background:
        radial-gradient(60% 55% at 88% 4%, rgba(99,102,241,.12), transparent 60%),
        radial-gradient(46% 50% at 2% 26%, rgba(79,70,229,.07), transparent 62%);
}
.ts-site .ts-shape { display: none; }
.ts-hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .5s ease;
    background: radial-gradient(420px circle at var(--cursor-x,50%) var(--cursor-y,50%), rgba(99,102,241,.10), transparent 60%);
}
.ts-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.ts-hero h1 { margin-bottom: 22px; }
.ts-hero-text { font-size: 18px; color: var(--text); max-width: 42ch; }
.ts-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 12px; padding: 0; margin: 30px 0 0; }
.ts-trust li {
    display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-2);
    background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; box-shadow: var(--sh-1);
}
.ts-trust li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.ts-hero-art { position: relative; }
.ts-hero-image img { width: 100%; border-radius: var(--r-xl); border: 1px solid var(--line); box-shadow: var(--sh-3); }
.ts-floating-card {
    position: absolute; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
    border: 1px solid var(--line); border-radius: var(--r); padding: 14px 18px; box-shadow: var(--sh-2);
}
.ts-floating-card strong { display: block; font-size: 18px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.ts-floating-card span { font-size: 12.5px; color: var(--muted); }
.ts-floating-card-one { top: 24px; left: -18px; animation: ts-float 6.5s ease-in-out infinite; }
.ts-floating-card-two { bottom: 28px; right: -14px; animation: ts-float 7.5s ease-in-out infinite .8s; }

/* ---------- Proof bar ---------- */
.ts-proof { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ts-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ts-proof-grid > div { padding: 30px 28px; border-left: 1px solid var(--line); }
.ts-proof-grid > div:first-child { border-left: 0; padding-left: 0; }
.ts-proof-grid strong { display: block; font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 3px; letter-spacing: -.02em; }
.ts-proof-grid span { color: var(--muted); font-size: 14px; }

/* ---------- Cards / services ---------- */
.ts-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ts-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px;
    box-shadow: var(--sh-1); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ts-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--accent-soft); }
.ts-card-icon { width: 52px; height: 52px; border-radius: var(--r-sm); background: var(--accent-tint); display: grid; place-items: center; margin-bottom: 20px; }
.ts-card-icon img { width: 26px; height: 26px; }
.ts-card h3 { font-size: 18px; margin-bottom: 10px; }
.ts-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- Consulting / review framework ---------- */
.ts-about-band { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.ts-review-stack {
    background: linear-gradient(160deg, #1a2340, #0e1626 60%); color: #e7eaf3;
    border-radius: var(--r-lg); padding: clamp(26px, 3vw, 38px); box-shadow: var(--sh-3);
    position: relative; overflow: hidden;
}
.ts-review-stack::after { content: ""; position: absolute; top: -40%; right: -20%; width: 60%; height: 80%; background: radial-gradient(circle, rgba(99,102,241,.35), transparent 65%); pointer-events: none; }
.ts-review-panel-head { padding-bottom: 12px; position: relative; }
.ts-review-panel-head span { display: block; font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #9aa3ff; margin-bottom: 10px; }
.ts-review-panel-head strong { display: block; font-size: 23px; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -.02em; }
.ts-review-stack article { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); position: relative; }
.ts-review-stack article span { font-size: 14px; font-weight: 800; color: #fff; background: rgba(99,102,241,.22); border: 1px solid rgba(154,163,255,.35); width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.ts-review-stack article strong { display: block; color: #fff; font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.ts-review-stack article p { color: rgba(231,234,243,.72); font-size: 14px; margin: 0; }

.ts-consulting-copy h2 { margin-bottom: 14px; }
.ts-consulting-copy > p { color: var(--text); }
.ts-check { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.ts-check li { position: relative; padding-left: 32px; color: var(--ink-2); font-weight: 500; }
.ts-check li::before { content: ""; position: absolute; left: 0; top: 2px; width: 21px; height: 21px; border-radius: 50%; background: var(--accent-tint); }
.ts-check li::after { content: ""; position: absolute; left: 7px; top: 6px; width: 6px; height: 10px; border: 2px solid var(--accent); border-top: 0; border-left: 0; transform: rotate(43deg); }

/* ---------- Process ---------- */
.ts-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 36px); }
.ts-process article { position: relative; padding-top: 14px; }
.ts-process article span {
    display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
    background: linear-gradient(180deg, var(--accent-2), var(--accent)); color: #fff; font-size: 18px; font-weight: 800;
    margin-bottom: 18px; box-shadow: var(--sh-accent);
}
.ts-process article h3 { font-size: 19px; margin-bottom: 8px; }
.ts-process article p { color: var(--muted); margin: 0; }

/* ---------- Pricing ---------- */
.ts-pricing-section { background: var(--soft); }
.ts-pricing-head { display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: end; margin-bottom: clamp(38px, 4vw, 56px); }
.ts-pricing-head h2 { margin-bottom: 12px; }
.ts-pricing-head > div:first-child p { color: var(--muted); margin: 0; max-width: 46ch; }
.ts-pricing-summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 22px; box-shadow: var(--sh-1); }
.ts-pricing-summary strong { display: block; font-size: 18px; font-weight: 800; color: var(--ink); }
.ts-pricing-summary span { color: var(--muted); font-size: 14px; }

.ts-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.ts-price-card {
    position: relative; display: flex; flex-direction: column; background: var(--white);
    border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px;
    box-shadow: var(--sh-1); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ts-price-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.ts-price-card.ts-popular { border-color: transparent; box-shadow: var(--sh-3); background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(160deg, var(--accent-2), var(--accent)) border-box; border: 2px solid transparent; }
.ts-pill { position: absolute; top: -13px; left: 26px; background: linear-gradient(180deg, var(--accent-2), var(--accent)); color: #fff; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 6px 14px; border-radius: 999px; box-shadow: var(--sh-accent); }
.ts-plan-top h3 { font-size: 20px; margin-bottom: 8px; }
.ts-plan-top p { color: var(--muted); font-size: 14px; margin: 0; }
.ts-price-row { margin: 22px 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ts-price { font-size: 42px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.ts-duration { color: var(--muted); font-size: 14px; margin: 6px 0 0; }
.ts-price-card ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; }
.ts-price-card li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--text); }
.ts-price-card li::before { content: ""; position: absolute; left: 4px; top: 6px; width: 6px; height: 10px; border: 2px solid var(--accent); border-top: 0; border-left: 0; transform: rotate(43deg); }
.ts-price-card .ts-btn { margin-top: auto; }
.ts-site .ts-note { display: block; max-width: 620px; margin: 40px auto 0; text-align: center; color: var(--text); font-size: 15px; line-height: 1.7; }

/* ---------- FAQ ---------- */
.ts-faq-wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.ts-faq-intro h2 { margin-bottom: 14px; }
.ts-faq-intro > p { color: var(--muted); }
.ts-faq-support { margin-top: 28px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-1); }
.ts-faq-support strong { display: block; font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.ts-faq-support span { display: block; color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.ts-faq-support a { display: inline-flex; align-items: center; font-weight: 700; font-size: 14px; text-decoration: none; color: var(--accent); }
.ts-faq-support a::after { content: "\2192"; margin-left: 8px; transition: transform .2s ease; }
.ts-faq-support a:hover::after { transform: translateX(4px); }
.ts-faq-list { display: grid; gap: 12px; }
.ts-faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-1); transition: border-color .2s ease, box-shadow .2s ease; }
.ts-faq-list details[open] { border-color: var(--accent-soft); box-shadow: var(--sh-2); }
.ts-faq-list summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.ts-faq-list summary::-webkit-details-marker { display: none; }
.ts-faq-list summary::after { content: "+"; flex: none; font-weight: 500; font-size: 24px; color: var(--accent); transition: transform .25s ease; line-height: 1; }
.ts-faq-list details[open] summary::after { transform: rotate(45deg); }
.ts-faq-list details p { color: var(--muted); margin: 0; padding: 0 22px 22px; max-width: 64ch; }

/* ---------- CTA band ---------- */
.ts-cta { background: linear-gradient(135deg, var(--accent-deep), var(--accent-2)); text-align: center; position: relative; overflow: hidden; }
.ts-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% -10%, rgba(255,255,255,.18), transparent 60%); pointer-events: none; }
.ts-cta .ts-shell { position: relative; }
.ts-cta h2 { color: #fff; }
.ts-cta p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 6px; }
.ts-cta .ts-btn { background: #fff; color: var(--accent-deep); border-color: #fff; box-shadow: 0 12px 28px -12px rgba(0,0,0,.4); }
.ts-cta .ts-btn:hover { background: #fff; color: var(--accent-deep); filter: none; }
.ts-cta .ts-btn-secondary { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); box-shadow: none; }
.ts-cta .ts-btn-secondary:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.7); }

/* ---------- Page hero (inner pages) ---------- */
.ts-page-hero { padding: clamp(56px, 6vw, 92px) 0 clamp(40px, 4vw, 56px); border-bottom: 1px solid var(--line); background: radial-gradient(60% 80% at 92% 0%, rgba(99,102,241,.10), transparent 60%), var(--white); }
.ts-page-hero h1 { margin-bottom: 16px; }
.ts-page-hero > .ts-shell > p { color: var(--muted); font-size: 18px; max-width: 680px; margin: 0; }

/* About hero */
.ts-about-hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(32px, 4vw, 56px); align-items: center; }
.ts-about-stats { display: grid; gap: 14px; }
.ts-about-stats > div { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 22px; box-shadow: var(--sh-1); }
.ts-about-stats strong { display: block; font-size: 18px; font-weight: 800; color: var(--ink); }
.ts-about-stats span { color: var(--muted); font-size: 14px; }

/* About story / method */
.ts-about-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); }
.ts-about-card h2 { margin-bottom: 16px; }
.ts-about-card p { color: var(--text); }
.ts-about-method ol, .ts-contact-steps ol { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 20px; }
.ts-about-method li, .ts-contact-steps li { position: relative; padding-left: 52px; counter-increment: step; }
.ts-about-method li::before, .ts-contact-steps li::before {
    content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: -2px;
    width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
    background: var(--accent-tint); color: var(--accent); font-weight: 800; font-size: 14px;
}
.ts-about-method li strong, .ts-contact-steps li strong { display: block; color: var(--ink); margin-bottom: 3px; }
.ts-about-method li span, .ts-contact-steps li span { color: var(--muted); font-size: 14.5px; }

/* About principles */
.ts-principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ts-principles-grid article { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh-1); transition: transform .25s ease, box-shadow .25s ease; }
.ts-principles-grid article:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.ts-principles-grid article span { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--accent-tint); color: var(--accent); font-size: 15px; font-weight: 800; margin-bottom: 16px; }
.ts-principles-grid article h3 { font-size: 17px; margin-bottom: 8px; }
.ts-principles-grid article p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* About business */
.ts-about-business { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 4vw, 56px); align-items: center; }
.ts-about-business h2 { margin-bottom: 12px; }
.ts-about-business > div p { color: var(--text); }

/* Business / info card */
.ts-business-card, .ts-info { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-1); }
.ts-business-card strong { display: block; font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 8px; letter-spacing: -.02em; }
.ts-business-card p { font-size: 14.5px; color: var(--text); margin: 0 0 10px; }
.ts-business-card p:last-child { margin-bottom: 0; }
.ts-business-card a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent-soft); }
.ts-business-card a:hover { border-bottom-color: var(--accent); }

/* ---------- Contact ---------- */
.ts-contact-hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(28px, 4vw, 44px); align-items: end; }
.ts-contact-promise { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; box-shadow: var(--sh-1); }
.ts-contact-promise strong { display: block; font-size: 18px; font-weight: 800; color: var(--ink); }
.ts-contact-promise span { color: var(--muted); font-size: 14.5px; }
.ts-contact-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: clamp(36px, 5vw, 60px); align-items: start; }
.ts-form-head { margin-bottom: 24px; }
.ts-form-head h2 { margin-bottom: 12px; }
.ts-form-head p { color: var(--muted); margin: 0; }
.ts-contact-side { display: grid; gap: 24px; }
.ts-contact-steps { background: var(--soft); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }

/* Form fields */
.ts-form input[type="text"], .ts-form input[type="email"], .ts-form input[type="tel"],
.ts-form input[type="url"], .ts-form input[type="number"], .ts-form input[type="date"],
.ts-form select, .ts-form textarea,
.ts-form .wpcf7-form-control:not(.wpcf7-submit):not([type="checkbox"]):not([type="radio"]) {
    width: 100%; font: 500 15px/1.5 var(--font); color: var(--ink);
    background: var(--white); border: 1px solid var(--line-2); border-radius: 11px;
    padding: 13px 15px; transition: border-color .2s ease, box-shadow .2s ease;
}
.ts-form textarea { min-height: 150px; resize: vertical; }
.ts-form input:focus, .ts-form select:focus, .ts-form textarea:focus,
.ts-form .wpcf7-form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.ts-form label { display: block; font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 6px; }
.ts-form .wpcf7 form > p, .ts-form form p { margin: 0 0 18px; }
.ts-form .wpcf7-submit {
    width: auto; min-height: 52px; padding: 0 28px; cursor: pointer;
    font: 700 15px var(--font); color: #fff;
    background: linear-gradient(180deg, var(--accent-2), var(--accent)); border: 0; border-radius: 12px; box-shadow: var(--sh-accent);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.ts-form .wpcf7-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(79,70,229,.62); filter: saturate(1.05); }
.ts-form .wpcf7-response-output { margin: 16px 0 0 !important; border-radius: 10px; border-width: 1px; font-size: 14px; }
.ts-form .wpcf7-not-valid-tip { color: #e11d48; font-size: 13px; }
.ts-form .wpcf7-spinner { margin: 0 0 0 12px; }

/* ---------- Policy pages ---------- */
.ts-policy, .ts-policy-content { max-width: 768px; }
.ts-policy h2 { font-size: 25px; margin: 40px 0 14px; }
.ts-policy h2:first-child { margin-top: 0; }
.ts-policy p, .ts-policy li { color: var(--text); }
.ts-policy ul, .ts-policy ol { padding-left: 22px; margin: 0 0 18px; }
.ts-policy li { margin-bottom: 8px; }
.ts-policy a { color: var(--accent); }

/* ---------- Footer ---------- */
.ts-footer { background: var(--ink); color: #aab2c5; padding: clamp(52px, 6vw, 78px) 0 0; }
.ts-footer-grid { display: grid; grid-template-columns: 1.5fr .8fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; }
.ts-footer-brand { margin-bottom: 18px; }
.ts-footer-brand img { width: 156px; }
.ts-footer-grid > div:first-child p { color: #8a93a8; font-size: 14px; max-width: 36ch; margin: 0; line-height: 1.7; }
.ts-footer h2 { font-family: var(--mono); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #fff; margin: 0 0 16px; }
.ts-footer a { display: block; color: #aab2c5; text-decoration: none; font-weight: 500; font-size: 14px; padding: 6px 0; transition: color .2s ease; }
.ts-footer a:hover { color: #fff; }
.ts-footer-grid > div:last-child p { color: #8a93a8; font-size: 14px; line-height: 1.9; margin: 0; }
.ts-footer-grid > div:last-child p a { display: inline; padding: 0; color: #c2c9d8; border-bottom: 1px solid rgba(255,255,255,.18); }
.ts-footer-grid > div:last-child p a:hover { color: #fff; }
.ts-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; color: #79829a; font-size: 13px; }

/* ---------- Motion ---------- */
@keyframes ts-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes ts-reveal { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (hover: hover) and (pointer: fine) {
    body.ts-cursor-active .ts-hero::before { opacity: 1; }
}
@supports (animation-timeline: view()) {
    @media (prefers-reduced-motion: no-preference) {
        .ts-section-head, .ts-card, .ts-price-card, .ts-process article, .ts-principles-grid article,
        .ts-proof-grid > div, .ts-review-stack, .ts-consulting-copy, .ts-about-card, .ts-about-method,
        .ts-about-stats > div, .ts-business-card, .ts-contact-promise, .ts-faq-list details {
            animation: ts-reveal both linear; animation-timeline: view(); animation-range: entry 2% entry 54%;
        }
    }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .ts-site *, .ts-site *::before, .ts-site *::after { animation: none !important; transition: none !important; }
    .ts-floating-card { transform: none !important; }
}

/* ============================================================ Responsive ============================================================ */
@media (max-width: 1040px) {
    .ts-hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .ts-hero-text { max-width: none; }
    .ts-hero-art { max-width: 560px; }
    .ts-about-band, .ts-about-hero-grid, .ts-about-story, .ts-about-business,
    .ts-contact-grid, .ts-faq-wrap, .ts-contact-hero-grid { grid-template-columns: 1fr; align-items: start; }
    .ts-pricing-head { grid-template-columns: 1fr; align-items: start; }
    .ts-pricing-grid, .ts-card-grid, .ts-principles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .ts-menu-toggle { display: inline-flex; }
    .ts-menu {
        position: fixed; left: 0; right: 0; top: var(--header-h);
        flex-direction: column; align-items: stretch; gap: 4px; padding: 14px 28px 24px;
        background: rgba(255,255,255,.98); backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--line); box-shadow: var(--sh-2);
        max-height: calc(100dvh - var(--header-h)); overflow: auto;
        transform: translateY(-12px); opacity: 0; visibility: hidden;
        transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
    }
    .ts-header.ts-menu-open .ts-menu { transform: none; opacity: 1; visibility: visible; }
    .ts-menu a { padding: 14px 16px; font-size: 16px; }
}
@media (max-width: 760px) {
    .ts-nav-cta { display: none; }
    .ts-proof-grid { grid-template-columns: repeat(2, 1fr); }
    .ts-proof-grid > div { padding: 22px; border-left: 1px solid var(--line); }
    .ts-proof-grid > div:nth-child(odd) { border-left: 0; padding-left: 0; }
    .ts-card-grid, .ts-pricing-grid, .ts-principles-grid, .ts-process { grid-template-columns: 1fr; }
    .ts-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .ts-floating-card-one { left: 0; }
    .ts-floating-card-two { right: 0; }
}
@media (max-width: 560px) {
    .ts-shell { padding: 0 20px; }
    .ts-proof-grid { grid-template-columns: 1fr; }
    .ts-proof-grid > div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
    .ts-proof-grid > div:first-child { border-top: 0; }
    .ts-footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .ts-actions .ts-btn { width: 100%; }
    .ts-floating-card { display: none; }
}
