﻿:root {
    --ts-navy: #0f172a;
    --ts-blue: #2563eb;
    --ts-cyan: #06b6d4;
    --ts-violet: #4f46e5;
    --ts-ink: #172033;
    --ts-muted: #64748b;
    --ts-line: rgba(148, 163, 184, .24);
    --ts-card: rgba(255, 255, 255, .86);
    --ts-soft: #f8fafc;
    --ts-radius: 28px;
    --ts-shadow: 0 22px 70px rgba(15, 23, 42, .12);
}

.tech-support-page {
    position: relative;
    z-index: 10;
    overflow: hidden;
    color: var(--ts-ink);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 45%, #eef5ff 100%);
}

    /* =========================================================
   Hero
   - Background image is rendered only by ::before.
   - The base .ts-hero background is kept plain to avoid double backgrounds.
========================================================= */

    .tech-support-page .ts-hero {
        position: relative;
        min-height: 720px;
        padding: 6.4rem 0 5.4rem;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: #ffffff;
    }

        .tech-support-page .ts-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0;
            transform: none;
            filter: none;
            will-change: opacity;
            background: linear-gradient( 90deg, rgba(255, 255, 255, .96) 0%, rgba(246, 250, 255, .88) 36%, rgba(238, 245, 255, .40) 58%, rgba(15, 23, 42, .20) 100% ), url("/img/technology/ai-agent-hero-bg.png") calc(100% + 160px) center / cover no-repeat;
            animation: techHeroBgFadeIn 5.0s ease-out forwards;
        }

        .tech-support-page .ts-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            opacity: 0;
            background-image: linear-gradient(rgba(37, 99, 235, .10) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, .10) 1px, transparent 1px);
            background-size: 42px 42px;
            mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .65) 45%, transparent 78%);
            animation: techHeroGridFadeIn 4.6s ease-out .4s forwards;
        }

        .tech-support-page .ts-hero > .container {
            position: relative;
            z-index: 2;
        }

    .tech-support-page .ts-hero-panel {
        position: relative;
        overflow: visible;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .tech-support-page .ts-hero-inner {
        position: relative;
        z-index: 1;
        padding: 0;
    }

    .tech-support-page .ts-hero .row {
        justify-content: flex-start;
    }

    .tech-support-page .ts-hero .col-xl-10 {
        max-width: 840px;
    }

.ts-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 999px;
    color: #1d4ed8;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ts-eyebrow-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 7px rgba(34, 197, 94, .12);
}

.tech-support-page .ts-hero-title {
    max-width: 820px;
    color: #020617;
    font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.6rem, 5.4vw, 5.25rem);
    font-weight: 950;
    letter-spacing: -0.045em;
    line-height: 1.16;
    margin-bottom: 2rem;
    text-wrap: balance;
}

    .tech-support-page .ts-hero-title span {
        display: inline-block;
        color: #1d4ed8;
    }

    .tech-support-page .ts-hero-title .ts-hero-title-en {
        font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: .96em;
        font-weight: 950;
        letter-spacing: -0.055em;
    }

.tech-support-page .ts-hero-lead {
    max-width: 760px;
    color: #334155;
    font-size: clamp(1.02rem, 1.25vw, 1.18rem);
    line-height: 2.05;
    margin-top: .25rem;
}

/* =========================================================
   Buttons
========================================================= */

.ts-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ts-btn,
.ts-action-primary,
.ts-action-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.ts-btn {
    min-height: 56px;
    padding: 14px 22px;
}

    .ts-btn:hover,
    .ts-action-primary:hover,
    .ts-action-outline:hover {
        transform: translateY(-2px);
    }

.ts-btn-primary,
.ts-action-primary {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    box-shadow: 0 18px 40px rgba(37, 99, 235, .25);
}

    .ts-btn-primary:hover,
    .ts-action-primary:hover {
        color: #ffffff;
        box-shadow: 0 22px 46px rgba(37, 99, 235, .32);
    }

.ts-btn-ghost,
.ts-action-outline {
    color: #1d4ed8;
    border: 1px solid rgba(37, 99, 235, .18);
    background: rgba(255, 255, 255, .78);
}

    .ts-btn-ghost:hover,
    .ts-action-outline:hover {
        color: #1e40af;
        background: #ffffff;
    }

.ts-action-primary,
.ts-action-outline {
    min-height: 54px;
    padding: 13px 20px;
}

/* =========================================================
   Hero trust cards
========================================================= */

.tech-support-page .ts-trust-row {
    display: grid;
    max-width: 860px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.tech-support-page .ts-trust-item {
    min-height: 96px;
    padding: 18px;
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 22px;
    background: radial-gradient(circle at 100% 0%, rgba(37, 99, 235, .08), transparent 30%), rgba(255, 255, 255, .84);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

    .tech-support-page .ts-trust-item strong {
        display: block;
        color: #0f172a;
        font-size: 1.22rem;
        line-height: 1.25;
    }

    .tech-support-page .ts-trust-item small {
        display: block;
        margin-top: 7px;
        color: #64748b;
        line-height: 1.6;
    }

/* =========================================================
   Sections
========================================================= */

.ts-section {
    padding: 88px 0;
    background: transparent;
}

.ts-stack-section,
.ts-consult-selector {
    position: relative;
    background: transparent;
}

.ts-section-head {
    max-width: 880px;
    margin-bottom: 34px;
}

.ts-consult-selector .ts-section-head.text-center {
    max-width: 920px;
}

.ts-section-label,
.ts-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ts-blue);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ts-section-label {
    margin-bottom: 14px;
}

.ts-kicker {
    margin-bottom: 12px;
    font-size: .76rem;
}

.ts-section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.ts-section-title {
    margin: 0;
    color: var(--ts-ink);
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.25;
}

.ts-section-lead {
    margin-top: 16px;
    color: var(--ts-muted);
    font-size: 1.02rem;
    line-height: 2;
}

/* =========================================================
   Common cards
========================================================= */

.ts-problem-card,
.ts-stack-card,
.ts-step-card,
.ts-summary-card,
.ts-process-wrap,
.ts-process-step {
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ts-problem-card {
    height: 100%;
    padding: 28px;
    border-radius: var(--ts-radius);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

    .ts-problem-card:hover,
    .ts-stack-card:hover,
    .ts-plan-option:hover,
    .ts-feature-option:hover {
        transform: translateY(-4px);
        border-color: rgba(37, 99, 235, .24);
        box-shadow: var(--ts-shadow);
    }

.ts-problem-icon,
.ts-stack-icon,
.ts-process-number,
.ts-step-title > span {
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.ts-problem-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 18px;
    font-size: 1.35rem;
    box-shadow: 0 14px 30px rgba(37, 99, 235, .22);
}

.ts-problem-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -.02em;
}

.ts-problem-card p {
    margin: 0;
    color: var(--ts-muted);
    line-height: 1.9;
}

/* =========================================================
   Stack cards
========================================================= */

.ts-stack-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 30px;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

    .ts-stack-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 5px;
        background: linear-gradient(90deg, #2563eb, #4f46e5, #7c3aed);
    }

.ts-stack-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.ts-stack-icon {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 20px;
    font-size: 1.5rem;
    box-shadow: 0 16px 34px rgba(37, 99, 235, .18);
}

.ts-stack-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.03em;
}

.ts-stack-subtitle {
    margin-top: 7px;
    color: var(--ts-muted);
    font-size: .94rem;
    line-height: 1.7;
}

.ts-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 18px 0 20px;
}

.ts-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 11px;
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 999px;
    color: #1e3a8a;
    font-size: .82rem;
    font-weight: 800;
    background: #eff6ff;
}

.ts-stack-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .ts-stack-list li {
        display: flex;
        gap: 10px;
        color: #475569;
        line-height: 1.85;
    }

        .ts-stack-list li i {
            flex: 0 0 auto;
            margin-top: 6px;
            color: #2563eb;
        }

/* =========================================================
   Process
========================================================= */

.ts-process-wrap {
    position: relative;
    padding: 34px;
    border-radius: 34px;
}

.ts-process-step {
    position: relative;
    height: 100%;
    padding: 24px;
    border-radius: 24px;
}

.ts-process-number {
    width: 42px;
    height: 42px;
    margin-bottom: 15px;
    border-radius: 999px;
    font-weight: 900;
}

.ts-process-step h3 {
    margin-bottom: 10px;
    font-size: 1.14rem;
    font-weight: 900;
}

.ts-process-step p {
    margin: 0;
    color: var(--ts-muted);
    line-height: 1.85;
}

/* =========================================================
   Dark CTA
========================================================= */

.ts-dark-cta {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    padding: clamp(34px, 5vw, 64px);
    color: #ffffff;
    background: radial-gradient(circle at 80% 0%, rgba(168, 85, 247, .28), transparent 34%), radial-gradient(circle at 10% 100%, rgba(96, 165, 250, .22), transparent 36%), linear-gradient(135deg, #020617, #172554 54%, #4c1d95);
    box-shadow: 0 28px 80px rgba(15, 23, 42, .24);
}

    .ts-dark-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .16;
        background-image: linear-gradient(rgba(255, 255, 255, .24) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .24) 1px, transparent 1px);
        background-size: 38px 38px;
    }

    .ts-dark-cta > * {
        position: relative;
        z-index: 1;
    }

    .ts-dark-cta,
    .ts-dark-cta h2,
    .ts-dark-cta p,
    .ts-dark-cta .ts-cta-badge,
    .ts-dark-cta .ts-mini-check span {
        color: #ffffff !important;
    }

        .ts-dark-cta p {
            opacity: .78;
            line-height: 2;
        }

        .ts-dark-cta h2 {
            font-size: clamp(1.8rem, 3.4vw, 3.4rem);
            font-weight: 900;
            letter-spacing: -.04em;
            line-height: 1.22;
        }

.ts-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    color: rgba(255, 255, 255, .86);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    background: rgba(255, 255, 255, .08);
}

.ts-mini-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.ts-mini-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
}

    .ts-mini-check i {
        color: #67e8f9;
        margin-top: 2px;
    }

    .ts-mini-check span {
        color: rgba(255, 255, 255, .82);
        font-weight: 700;
        line-height: 1.55;
    }

/* =========================================================
   Selectable consultation UI
========================================================= */

.ts-step-card,
.ts-summary-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.ts-step-card {
    padding: clamp(24px, 3vw, 34px);
}

.ts-summary-card {
    padding: 28px;
}

.ts-sticky-summary {
    position: sticky;
    top: 96px;
}

.ts-step-title {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

    .ts-step-title > span {
        flex: 0 0 auto;
        min-width: 52px;
        height: 34px;
        padding: 0 12px;
        border-radius: 999px;
        font-size: .78rem;
        font-weight: 900;
        box-shadow: 0 12px 26px rgba(37, 99, 235, .2);
    }

    .ts-step-title h2,
    .ts-step-title h3,
    .ts-summary-card h3 {
        margin: 0;
        color: var(--ts-ink);
        font-weight: 900;
        letter-spacing: -.03em;
    }

    .ts-step-title p {
        margin: 6px 0 0;
        color: var(--ts-muted);
        line-height: 1.75;
    }

.ts-plan-grid,
.ts-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ts-plan-option,
.ts-feature-option {
    position: relative;
    min-height: 100%;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, .28);
    border-radius: 22px;
    background: #ffffff;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.ts-plan-option {
    display: grid;
    grid-template-columns: 26px auto minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    row-gap: 0;
    min-height: 124px;
}

.ts-feature-option {
    display: flex;
    gap: 13px;
}

    .ts-plan-option.is-active,
    .ts-feature-option:has(input:checked) {
        border-color: rgba(37, 99, 235, .36);
        background: linear-gradient(180deg, rgba(239, 246, 255, .98), rgba(255, 255, 255, .98));
        box-shadow: 0 20px 48px rgba(37, 99, 235, .12);
    }

    .ts-plan-option input,
    .ts-feature-option input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .ts-plan-option::before,
    .ts-feature-option::before {
        content: "";
        flex: 0 0 auto;
        width: 24px;
        height: 24px;
        margin-top: 2px;
        border: 2px solid rgba(37, 99, 235, .28);
        border-radius: 999px;
        background: #ffffff;
        transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

.ts-plan-option::before {
    grid-column: 1;
    grid-row: 1;
    margin-top: 0;
}

.ts-feature-option::before {
    border-radius: 8px;
}

.ts-plan-option.is-active::before,
.ts-feature-option:has(input:checked)::before {
    border-color: transparent;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    box-shadow: inset 0 0 0 6px #ffffff, 0 0 0 4px rgba(37, 99, 235, .11);
}

.ts-feature-option:has(input:checked)::before {
    box-shadow: none;
}

.ts-feature-option:has(input:checked)::after {
    content: "✓";
    position: absolute;
    left: 24px;
    top: 19px;
    color: #ffffff;
    font-size: .92rem;
    font-weight: 900;
}

.ts-plan-option strong,
.ts-feature-option strong {
    display: block;
    color: var(--ts-ink);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.35;
}

.ts-plan-option small,
.ts-feature-option small {
    display: block;
    margin-top: 7px;
    color: var(--ts-muted);
    line-height: 1.7;
}

.ts-plan-tag {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    margin: 0;
    padding: 4px 9px;
    border-radius: 999px;
    color: #1d4ed8;
    font-size: .72rem;
    font-weight: 900;
    white-space: nowrap;
    background: rgba(37, 99, 235, .08);
}

.ts-plan-text {
    grid-column: 3;
    grid-row: 1;
    display: block;
    min-width: 0;
}

.ts-plan-option .ts-plan-text strong {
    margin: 0;
}

.ts-plan-option .ts-plan-text small {
    margin-top: 8px;
}

.ts-summary-box {
    display: grid;
    gap: 16px;
    margin: 18px 0;
}

    .ts-summary-box > div {
        padding: 17px;
        border-radius: 20px;
        border: 1px solid rgba(148, 163, 184, .2);
        background: rgba(248, 250, 252, .88);
    }

    .ts-summary-box small {
        display: block;
        margin-bottom: 6px;
        color: var(--ts-muted);
        font-weight: 800;
    }

    .ts-summary-box strong {
        display: block;
        color: var(--ts-blue);
        font-size: 1.08rem;
        font-weight: 900;
    }

    .ts-summary-box ul {
        display: grid;
        gap: 8px;
        margin: 0;
        padding-left: 1.1rem;
        color: #334155;
        line-height: 1.65;
    }

.ts-summary-note {
    margin: 0 0 20px;
    color: var(--ts-muted);
    line-height: 1.85;
}

/* =========================================================
   Confirm / Form / Complete pages
========================================================= */

.ts-confirm-hero,
.ts-complete-hero {
    padding: 72px 0 92px;
}

.ts-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: var(--ts-blue);
    font-weight: 900;
    text-decoration: none;
}

    .ts-back-link:hover {
        color: #1d4ed8;
    }

.ts-consult-form .ts-form-label {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--ts-ink);
    font-size: .92rem;
    font-weight: 900;
}

.ts-form-control {
    width: 100%;
    min-height: 52px;
    padding: 12px 15px;
    border: 1px solid rgba(148, 163, 184, .34);
    border-radius: 16px;
    color: var(--ts-ink);
    background: rgba(255, 255, 255, .96);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

    .ts-form-control:focus {
        border-color: rgba(37, 99, 235, .55);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, .1);
        background: #ffffff;
    }

.ts-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.ts-form-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, .2);
}

    .ts-form-footer p {
        flex: 1 1 320px;
        margin: 0;
        color: var(--ts-muted);
        line-height: 1.75;
    }

.ts-complete-card {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 62px);
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 36px;
    text-align: center;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--ts-shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.ts-complete-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 28px;
    color: #ffffff;
    font-size: 2.4rem;
    background: linear-gradient(135deg, #16a34a, var(--ts-cyan));
    box-shadow: 0 18px 42px rgba(22, 163, 74, .22);
}

.ts-complete-card h1 {
    margin: 0 0 16px;
    color: var(--ts-ink);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -.04em;
}

.ts-complete-card p {
    max-width: 720px;
    margin: 0 auto 26px;
    color: var(--ts-muted);
    line-height: 2;
}

.ts-complete-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin: 30px 0;
}

    .ts-complete-flow > div {
        padding: 17px;
        border-radius: 20px;
        border: 1px solid rgba(148, 163, 184, .22);
        background: rgba(248, 250, 252, .9);
    }

    .ts-complete-flow strong {
        display: block;
        color: var(--ts-blue);
        font-weight: 900;
    }

    .ts-complete-flow span {
        display: block;
        margin-top: 6px;
        color: #334155;
        font-weight: 800;
        line-height: 1.55;
    }

.ts-complete-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* =========================================================
   Animations
========================================================= */

@keyframes techHeroBgFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes techHeroGridFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: .28;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tech-support-page .ts-hero::before,
    .tech-support-page .ts-hero::after {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1199.98px) {
    .tech-support-page .ts-hero {
        background: #ffffff;
    }
}

@media (max-width: 991.98px) {
    .ts-section {
        padding: 66px 0;
    }

    .tech-support-page .ts-hero {
        min-height: auto;
        padding: 4.8rem 0 4rem;
    }

    .tech-support-page .ts-trust-row,
    .ts-mini-checks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ts-sticky-summary {
        position: static;
    }

    .ts-plan-grid,
    .ts-feature-grid,
    .ts-complete-flow {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .tech-support-page .ts-hero {
        padding: 3.8rem 0 3.4rem;
    }

        .tech-support-page .ts-hero::before {
            background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(246, 250, 255, .96) 100%), linear-gradient(135deg, #ffffff 0%, #f4f8ff 45%, #eef5ff 100%);
        }

    .tech-support-page .ts-hero-title {
        font-size: 2.45rem;
        line-height: 1.18;
        margin-bottom: 1.5rem;
    }

    .tech-support-page .ts-trust-row,
    .ts-mini-checks {
        grid-template-columns: 1fr;
    }

    .ts-hero-actions .ts-btn,
    .ts-form-footer .ts-action-primary,
    .ts-complete-actions .ts-action-primary,
    .ts-complete-actions .ts-action-outline {
        width: 100%;
    }

    .ts-step-title {
        display: block;
    }

        .ts-step-title > span {
            margin-bottom: 12px;
        }

    .ts-step-card,
    .ts-summary-card {
        border-radius: 24px;
        padding: 22px;
    }

    .ts-plan-option {
        grid-template-columns: 26px minmax(0, 1fr);
        min-height: auto;
    }

        .ts-plan-option .ts-plan-tag {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 8px;
        }

    .ts-plan-text {
        grid-column: 1 / -1;
        grid-row: 2;
        padding-left: 38px;
    }
}

/* =========================================================
   Hero background position adjustment
   - Move robot image slightly further right on desktop
   - Reduce shift on tablet
========================================================= */

@media (max-width: 1199.98px) {
    .tech-support-page .ts-hero::before {
        background: linear-gradient( 90deg, rgba(255, 255, 255, .96) 0%, rgba(246, 250, 255, .88) 36%, rgba(238, 245, 255, .40) 58%, rgba(15, 23, 42, .20) 100% ), url("/img/technology/ai-agent-hero-bg.png") calc(100% + 90px) center / cover no-repeat;
    }
}