:root {
    --th01-primary: #1f6db7;
    --th01-primary-dark: #123f78;
    --th01-primary-deep: #0d2a52;
    --th01-accent: #f9652b;
    --th01-accent-strong: #ff7a1a;
    --th01-accent-soft: rgba(249, 101, 43, 0.14);
    --th01-ink: #132238;
    --th01-muted: #64748b;
    --th01-soft: #f4f8fc;
    --th01-surface: #ffffff;
    --th01-border: #dbe7f4;
    --th01-shadow: 0 22px 60px rgba(15, 42, 82, 0.16);
    --th01-shadow-soft: 0 14px 36px rgba(15, 42, 82, 0.08);
}

html {
    scroll-behavior: smooth;
}

body.th01-body {
    color: var(--th01-ink);
    background:
        radial-gradient(circle at top left, rgba(249, 101, 43, 0.08), transparent 22%),
        linear-gradient(180deg, #f7fbff 0%, #f2f7fc 100%);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: -0.01em;
}

.th01-announcement-bar {
    background: linear-gradient(90deg, var(--th01-primary-deep) 0%, var(--th01-primary-dark) 60%, #174f93 100%);
    color: #fff;
    font-size: 13px;
    letter-spacing: .01em;
}

.th01-link-light,
.th01-link,
.th01-footer a {
    color: inherit;
    text-decoration: none;
}

.th01-link {
    color: var(--th01-primary-dark);
    font-weight: 700;
}

.th01-link-arrow::after {
    content: "->";
    margin-left: .45rem;
    color: var(--th01-accent);
}

.th01-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.th01-main {
    overflow-x: hidden;
}

.th01-section {
    position: relative;
}

.th01-section + .th01-section {
    border-top: 1px solid rgba(219, 231, 244, 0.55);
}

.th01-hero {

.th01-hero .th01-section-heading .th01-heading {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.04;
}
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(249, 101, 43, 0.2), transparent 25%),
        radial-gradient(circle at 82% 14%, rgba(31, 109, 183, 0.28), transparent 22%),
        linear-gradient(135deg, #0d2a52 0%, #154b8d 52%, #1f6db7 100%);
    color: #fff;
}

.th01-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
    pointer-events: none;
}

.py-lg-6 {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}

.container {
    max-width: 1180px;
}

.navbar {
    --bs-navbar-padding-y: .45rem;
}

.th01-header .navbar {
    backdrop-filter: blur(12px);
    background: rgba(13, 42, 82, 0.88) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 34px rgba(15, 42, 82, 0.18);
}

.navbar-brand {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: #fff !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-size: .95rem;
    font-weight: 600;
}

.nav-link:hover {
    color: #fff;
}

.th01-header .navbar-nav {
    gap: .2rem;
}

.th01-nav-item {
    position: relative;
}

.th01-nav-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .82rem .95rem !important;
    border-radius: 14px;
    transition: background-color .2s ease, color .2s ease;
}

.th01-nav-link:hover,
.th01-nav-item.is-active > .th01-nav-link,
.th01-nav-item.show > .th01-nav-link {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.th01-nav-item .dropdown-toggle::after {
    width: .48rem;
    height: .48rem;
    margin-left: .15rem;
    border: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.th01-nav-item.show .dropdown-toggle::after {
    transform: rotate(-135deg) translateY(-1px);
}

.th01-dropdown-menu {
    min-width: 260px;
    margin-top: .12rem;
    padding: .55rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(219, 231, 244, 0.9) !important;
    box-shadow: 0 22px 56px rgba(15, 42, 82, 0.16);
}

.th01-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

.th01-dropdown-item {
    display: block;
    padding: .78rem .9rem;
    border-radius: 12px;
    color: var(--th01-ink);
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.35;
    white-space: normal;
}

.th01-dropdown-item:hover,
.th01-dropdown-item:focus {
    color: var(--th01-primary-deep);
    background: linear-gradient(135deg, rgba(31, 109, 183, 0.12), rgba(249, 101, 43, 0.1));
}

@media (min-width: 992px) {
    .th01-nav-item.dropdown:hover > .th01-dropdown-menu {
        display: block;
    }
}

.th01-kicker-row {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.th01-kicker-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .5rem .85rem;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.th01-kicker-pill--soft {
    background: rgba(249, 101, 43, 0.18);
    border-color: rgba(249, 101, 43, 0.28);
}

.th01-eyebrow {
    color: var(--th01-accent);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .73rem;
    font-weight: 800;
    margin-bottom: .9rem;
}

.th01-heading {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: clamp(0.7rem, 1.25vw, 1.65rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 100%;
    color: inherit;
    text-transform: uppercase;
}

.th01-heading--balanced {
    font-size: clamp(1.45rem, 1.05vw, 1.2rem);
    font-weight: 700;
    letter-spacing: -0.022em;
    line-height: 1.14;
}

.th01-hero .th01-section-heading .th01-heading {
    max-width: 12ch;
}

.th01-subheading,
.text-secondary {
    color: var(--th01-muted) !important;
    font-size: 1rem;
}

.th01-hero .th01-subheading,
.th01-hero .text-secondary {
    color: rgba(255, 255, 255, 0.74) !important;
}

.th01-section-heading {
    max-width: 100%;
}

.th01-hero .th01-section-heading {
    max-width: 760px;
}

.th01-hero-banner {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(8, 28, 56, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 70px rgba(8, 27, 54, 0.28);
}

.th01-hero-banner__viewport {
    position: relative;
    height: 100%;
}

.th01-hero-banner__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease, transform .45s ease;
    transform: scale(1.02);
}

.th01-hero-banner__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.th01-hero-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.th01-hero-banner__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 19, 39, 0.12) 0%, rgba(5, 19, 39, 0.7) 100%),
        linear-gradient(90deg, rgba(6, 25, 50, 0.82) 0%, rgba(6, 25, 50, 0.18) 60%, rgba(6, 25, 50, 0.1) 100%);
}

.th01-hero-banner__content {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    max-width: 78%;
    z-index: 1;
}

.th01-hero-banner__tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: .9rem;
    padding: .42rem .9rem;
    border-radius: 999px;
    background: rgba(249, 101, 43, 0.18);
    border: 1px solid rgba(249, 101, 43, 0.4);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.th01-hero-banner__title {
    margin: 0 0 .8rem;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.95rem, 3vw, 3.1rem);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.th01-hero-banner__summary {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    max-width: 60ch;
}

.th01-hero-banner__controls {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .5rem .65rem;
    border-radius: 999px;
    background: rgba(7, 22, 45, 0.54);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.th01-hero-banner__arrow {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1rem;
}

.th01-hero-banner__dots {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.th01-hero-banner__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
}

.th01-hero-banner__dot.is-active {
    background: var(--th01-accent);
    box-shadow: 0 0 0 4px rgba(249, 101, 43, 0.16);
}

@media (max-width: 991.98px) {
    .th01-hero-banner,
    .th01-hero-banner__viewport,
    .th01-hero-banner__image {
        min-height: 360px;
    }

    .th01-hero-banner__content {
        left: 1.2rem;
        right: 1.2rem;
        bottom: 4.6rem;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .th01-hero-banner,
    .th01-hero-banner__viewport,
    .th01-hero-banner__image {
        min-height: 300px;
    }

    .th01-hero-banner__title {
        font-size: 1.65rem;
    }

    .th01-hero-banner__summary {
        font-size: .92rem;
    }

    .th01-hero-banner__controls {
        left: 1rem;
        right: 1rem;
        justify-content: space-between;
    }
}

.th01-section-heading + .th01-inline-badges {
    margin-top: -.25rem;
}

@media (min-width: 1200px) {
    .th01-hero .th01-section-heading .th01-heading {
        font-size: clamp(3.5rem, 5vw, 5.35rem);
        line-height: 0.98;
        letter-spacing: -0.055em;
    }
}

.th01-btn-primary,
.btn-primary.th01-btn-primary {
    background: linear-gradient(135deg, var(--th01-accent) 0%, var(--th01-accent-strong) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 16px 34px rgba(249, 101, 43, 0.3);
}

.btn {
    border-radius: 999px;
    padding: .78rem 1.2rem;
    font-size: .94rem;
    font-weight: 700;
    letter-spacing: -.01em;
}

.btn-outline-dark {
    border-color: rgba(19, 34, 56, 0.14);
    color: var(--th01-primary-dark);
    background: #fff;
}

.th01-btn-primary:hover,
.btn-primary.th01-btn-primary:hover {
    background: linear-gradient(135deg, #ff7a1a 0%, #ff8f3a 100%);
    border-color: transparent;
    color: #fff;
}

.btn-outline-dark:hover {
    color: var(--th01-primary-dark);
    background: #f5f9ff;
    border-color: rgba(31, 109, 183, 0.22);
}

.th01-hero .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.th01-hero .btn-outline-dark:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.th01-card,
.th01-solution-card,
.th01-feature-panel,
.th01-testimonial-card,
.th01-hero-panel,
.th01-footer-panel,
.th01-logo-box,
.th01-metric-card {
    border-radius: 20px;
}

.th01-card,
.th01-solution-card,
.th01-feature-panel,
.th01-testimonial-card,
.th01-hero-panel,
.th01-footer-panel {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--th01-border);
    box-shadow: var(--th01-shadow-soft);
    padding: 1.6rem;
}

.th01-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.th01-card .h5,
.th01-solution-card .h5 {
    font-size: 1.08rem;
    line-height: 1.35;
    letter-spacing: -0.015em;
}

.th01-card:hover,
.th01-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(15, 42, 82, 0.12);
    border-color: rgba(31, 109, 183, 0.18);
}

.th01-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.th01-trust-strip__item {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-height: 62px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid var(--th01-border);
    box-shadow: var(--th01-shadow-soft);
    color: var(--th01-primary-dark);
    font-size: .92rem;
    font-weight: 700;
}

.th01-trust-strip__item::before {
    content: "";
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--th01-accent) 0%, var(--th01-accent-strong) 100%);
    box-shadow: 0 0 0 6px rgba(249, 101, 43, 0.12);
}

.th01-hero-panel {
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(246, 250, 255, 0.98) 100%);
    border-color: rgba(31, 109, 183, 0.18);
    box-shadow: 0 26px 60px rgba(9, 37, 73, 0.26);
}

.th01-hero-panel::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -50px;
    top: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 101, 43, 0.24) 0%, transparent 70%);
}

.th01-hero-console {
    position: relative;
    width: 100%;
}

.th01-hero-console__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .9rem 1rem;
    border-radius: 22px 22px 0 0;
    background: rgba(5, 18, 38, 0.46);
    backdrop-filter: blur(10px);
}

.th01-hero-console__dots {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.th01-hero-console__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
}

.th01-hero-console__dots span:first-child {
    background: var(--th01-accent);
}

.th01-hero-console__dots span:nth-child(2) {
    background: #f8b84f;
}

.th01-hero-console__dots span:nth-child(3) {
    background: #5fd18b;
}

.th01-hero-console__label {
    flex: 1;
    min-width: 0;
    margin-left: .35rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.th01-hero-console__status {
    display: inline-flex;
    align-items: center;
    padding: .28rem .7rem;
    border-radius: 999px;
    background: rgba(95, 209, 139, 0.16);
    border: 1px solid rgba(95, 209, 139, 0.38);
    color: #d7ffe7;
    font-size: .74rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.th01-hero-panel__metrics {
    display: grid;
    gap: .75rem;
}

.th01-hero-panel__title {
    color: var(--th01-primary-deep);
    line-height: 1.18;
    margin-bottom: 1rem;
    max-width: 100%;
    width: 100%;
}

.th01-hero-panel__summary {
    color: #52657f !important;
    font-size: 1rem;
    line-height: 1.75;
    max-width: 40ch;
}

.th01-hero .th01-hero-panel .th01-hero-panel__summary,
.th01-hero .th01-hero-panel p.th01-hero-panel__summary.text-secondary {
    color: #52657f !important;
}

.th01-mini-metric {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding: .9rem 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(31, 109, 183, 0.06) 0%, rgba(249, 101, 43, 0.06) 100%);
    border: 1px solid rgba(31, 109, 183, 0.12);
}

.th01-mini-metric strong {
    font-size: .92rem;
    color: var(--th01-primary-deep);
}

.th01-mini-metric span {
    color: var(--th01-muted);
    font-size: .88rem;
}

.th01-inline-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.th01-inline-badges span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .85rem;
    border-radius: 999px;
    background: #f3f8ff;
    border: 1px solid rgba(31, 109, 183, 0.12);
    color: var(--th01-primary-dark);
    font-size: .82rem;
    font-weight: 700;
}

.th01-inline-badges span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--th01-accent);
}

.th01-hero-panel__eyebrow,
.th01-badge {
    display: inline-flex;
    align-items: center;
    padding: .35rem .7rem;
    background: rgba(31, 109, 183, .08);
    color: var(--th01-primary-dark);
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.th01-hero-panel__eyebrow {
    padding: .42rem .9rem;
    background: linear-gradient(135deg, rgba(249, 101, 43, 0.18) 0%, rgba(255, 122, 26, 0.28) 100%);
    border: 1px solid rgba(249, 101, 43, 0.32);
    color: #a5481f;
    box-shadow: 0 10px 24px rgba(249, 101, 43, 0.18);
    font-size: .78rem;
    letter-spacing: .04em;
}

.th01-hero-panel__footer {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.th01-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .85rem;
    border-radius: 999px;
    background: #f3f8ff;
    border: 1px solid rgba(31, 109, 183, 0.14);
    color: var(--th01-primary-dark);
    font-size: .8rem;
    font-weight: 700;
}

.th01-hero-chip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    color: var(--th01-accent);
    flex: 0 0 auto;
}

.th01-hero-chip__icon svg {
    width: 100%;
    height: 100%;
}

.th01-check-list {
    list-style: none;
    padding-left: 0;
}

.th01-check-list li {
    position: relative;
    padding-left: 1.65rem;
    margin-bottom: .85rem;
    color: #334155;
    font-size: .96rem;
}

.th01-hero-check-list li {
    color: rgba(255, 255, 255, 0.88);
}

.th01-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .56rem;
    width: .62rem;
    height: .62rem;
    border-radius: 50%;
    background: var(--th01-accent);
    box-shadow: 0 0 0 6px rgba(249, 101, 43, 0.15);
}

.th01-section-soft,
.th01-footer {
    background: var(--th01-soft);
}

.th01-metrics {
    margin-top: -2rem;
}

.th01-metrics-shell {
    position: relative;
    z-index: 2;
    padding: 1.15rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(18, 63, 120, 0.98) 0%, rgba(31, 109, 183, 0.98) 100%);
    box-shadow: 0 24px 60px rgba(15, 42, 82, 0.18);
}

.th01-metric-value {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 800;
    color: #fff;
}

.th01-metric-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    padding: 1.2rem 1rem;
}

.th01-metric-feature__head {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .65rem;
}

.th01-metric-feature__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    color: #ff7a1a;
    line-height: 1;
}

.th01-metric-feature__icon svg {
    width: 100%;
    height: 100%;
}

.th01-metric-feature__title {
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 0;
}

.th01-metric-feature__summary {
    color: rgba(255, 255, 255, 0.8);
    font-size: .92rem;
    line-height: 1.45;
}

.th01-metric-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: .9rem;
}

.th01-form .form-control,
.th01-form .form-select {
    min-height: 52px;
    border-radius: 14px;
    border-color: var(--th01-border);
    background: #fff;
    padding-left: 1rem;
    font-size: .95rem;
}

.th01-form .form-control:focus,
.th01-form .form-select:focus {
    border-color: rgba(13, 92, 99, 0.42);
    box-shadow: 0 0 0 .2rem rgba(13, 92, 99, 0.08);
}

.th01-form textarea.form-control {
    min-height: 120px;
    padding-top: .9rem;
}

.th01-logo-box {
    background: rgba(255, 255, 255, 0.92);
    border: 1px dashed var(--th01-border);
    padding: 1rem .8rem;
    text-align: center;
    font-weight: 700;
    color: #475569;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    min-height: 128px;
    justify-content: center;
}

.th01-logo-box__mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(31, 109, 183, 0.12) 0%, rgba(249, 101, 43, 0.12) 100%);
    color: var(--th01-primary-dark);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
}

.th01-footer-list li + li {
    margin-top: .6rem;
}

.th01-footer {
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(249, 101, 43, 0.2), transparent 25%),
        radial-gradient(circle at 82% 14%, rgba(31, 109, 183, 0.28), transparent 22%),
        linear-gradient(135deg, #0d2a52 0%, #154b8d 52%, #1f6db7 100%);
}

.th01-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 100%);
    pointer-events: none;
}

.th01-footer > .container {
    position: relative;
    z-index: 1;
}

.th01-footer-panel {
    background: linear-gradient(135deg, rgba(249, 101, 43, 0.94) 0%, rgba(255, 122, 26, 0.94) 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.th01-footer-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    background: #fff;
    border-radius: 14px;
    padding: .4rem;
}

.th01-footer-tag {
    color: rgba(255, 255, 255, 0.62);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.th01-footer a,
.th01-footer h5,
.th01-footer h6 {
    color: #fff;
}

.th01-footer-panel .btn-light {
    color: var(--th01-primary-dark);
    font-weight: 800;
}

.th01-service-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.th01-service-card__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(31, 109, 183, 0.12) 0%, rgba(249, 101, 43, 0.12) 100%);
    color: var(--th01-primary-dark);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .95rem;
    font-weight: 800;
}

.th01-solution-card {
    position: relative;
    overflow: hidden;
}

.th01-solution-card::after {
    content: "";
    position: absolute;
    right: -22px;
    bottom: -22px;
    width: 92px;
    height: 92px;
    border-radius: 24px;
    background: radial-gradient(circle, rgba(249, 101, 43, 0.16) 0%, rgba(249, 101, 43, 0) 72%);
}

.th01-solution-card__index {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: .3rem .62rem;
    border-radius: 999px;
    background: rgba(31, 109, 183, .08);
    color: var(--th01-primary-dark);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.th01-feature-panel--platform {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.th01-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

.th01-platform-grid__item {
    padding: .8rem .7rem;
    border-radius: 14px;
    text-align: center;
    background: #f3f8ff;
    border: 1px solid rgba(31, 109, 183, 0.1);
    color: var(--th01-primary-dark);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.th01-hosting-plan {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: .95rem;
    padding: 1.25rem;
    border-radius: 24px;
    border: 1px solid rgba(19, 34, 56, 0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,248,252,0.96) 100%);
    box-shadow: 0 16px 36px rgba(15, 42, 82, 0.08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.th01-hosting-plan::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, rgba(255,255,255,0) 28%);
    pointer-events: none;
}

.th01-hosting-plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(15, 42, 82, 0.14);
    border-color: rgba(31, 109, 183, 0.14);
}

.th01-hosting-plan__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .75rem;
}

.th01-hosting-plan__ribbon {
    position: relative;
    z-index: 2;
    min-width: auto;
    padding: .36rem .6rem;
    text-align: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb21f 0%, #ffe45e 100%);
    color: #202020;
    font-size: .76rem;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(255, 178, 31, 0.24);
}

.th01-hosting-plan__head-wrap {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-width: 0;
}

.th01-hosting-plan__eyebrow {
    display: inline-flex;
    margin-bottom: .45rem;
    padding: .26rem .62rem;
    border-radius: 999px;
    background: rgba(31, 109, 183, 0.08);
    color: var(--th01-primary-dark);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.th01-hosting-plan__head {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 1.2rem;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.015em;
    color: var(--th01-primary-deep);
}

.th01-hosting-plan__pricing {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: .75rem;
    padding: 1rem 1rem 1rem 1.05rem;
    border-radius: 20px;
    color: #fff;
}

.th01-hosting-plan--primary .th01-hosting-plan__pricing {
    background: linear-gradient(135deg, #2368ad 0%, #3f82c6 100%);
}

.th01-hosting-plan--neutral .th01-hosting-plan__pricing {
    background: linear-gradient(135deg, #727278 0%, #8a8a90 100%);
}

.th01-hosting-plan__pricing::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 12%, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 48%);
}

.th01-hosting-plan__price-wrap {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.th01-hosting-plan__price-label {
    display: block;
    margin-bottom: .2rem;
    color: rgba(255,255,255,0.86);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.th01-hosting-plan__price {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: #ffec17;
    font-size: clamp(1.55rem, 1.75vw, 1.95rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.th01-hosting-plan__cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 0;
    padding: .78rem 1rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.82);
    background: linear-gradient(135deg, #ff8d12 0%, #ff9d1b 100%);
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255,255,255,0.32);
}

.th01-hosting-plan--neutral .th01-hosting-plan__cta {
    background: linear-gradient(135deg, #2d73b9 0%, #4385c7 100%);
}

.th01-hosting-plan__body {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
    padding: 0;
}

.th01-hosting-plan__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    min-height: 84px;
    padding: .8rem .55rem;
    border: 1px solid rgba(19, 34, 56, 0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.8);
    color: #1d2430;
    text-align: center;
}

.th01-hosting-plan__feature strong {
    font-weight: 800;
    font-size: 1rem;
    color: var(--th01-primary-deep);
}

.th01-hosting-plan__feature span {
    color: #5f6f84;
    font-size: .78rem;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.th01-hosting-plan__foot {
    margin-top: auto;
    padding-top: .15rem;
    text-align: right;
    background: none;
}

.th01-hosting-plan__more {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    color: var(--th01-primary);
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
}

.th01-hosting-plan__more::after {
    content: "→";
}

.th01-template-library__categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px dashed rgba(249, 101, 43, 0.42);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.th01-template-library__category {
    min-height: 98px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    padding: 1rem .85rem;
    text-align: center;
    color: #1f2b3d;
    font-size: .95rem;
    font-weight: 700;
    border-right: 1px dashed rgba(249, 101, 43, 0.42);
    border-bottom: 1px dashed rgba(249, 101, 43, 0.42);
    background: #fff;
}

.th01-template-library__category:nth-child(2n) {
    border-right: none;
}

.th01-template-library__category:nth-last-child(-n + 2) {
    border-bottom: none;
}

.th01-template-library__category.is-active {
    color: var(--th01-accent);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,245,238,0.88) 100%);
}

.th01-template-library__icon {
    width: 28px;
    height: 28px;
    position: relative;
    display: inline-block;
}

.th01-template-library__icon::before,
.th01-template-library__icon::after {
    content: "";
    position: absolute;
}

.th01-template-library__icon--star::before {
    inset: 2px;
    background: var(--th01-accent);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.th01-template-library__icon--grid::before {
    inset: 1px;
    border: 4px solid var(--th01-primary);
    border-radius: 6px;
}

.th01-template-library__icon--grid::after {
    inset: 8px;
    box-shadow: -8px -8px 0 0 var(--th01-primary), 8px -8px 0 0 var(--th01-primary), -8px 8px 0 0 var(--th01-primary), 8px 8px 0 0 var(--th01-primary);
    width: 4px;
    height: 4px;
    background: var(--th01-primary);
    border-radius: 2px;
}

.th01-template-library__icon--spark::before,
.th01-template-library__icon--pen::before,
.th01-template-library__icon--build::before,
.th01-template-library__icon--device::before,
.th01-template-library__icon--cap::before,
.th01-template-library__icon--shop::before,
.th01-template-library__icon--food::before,
.th01-template-library__icon--home::before {
    inset: 3px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(31,109,183,0.18) 0%, rgba(249,101,43,0.18) 100%);
    border: 2px solid var(--th01-primary);
}

.th01-template-library__icon--spark::after {
    left: 8px;
    top: 4px;
    width: 12px;
    height: 20px;
    background: var(--th01-primary);
    clip-path: polygon(50% 0, 60% 38%, 100% 50%, 60% 62%, 50% 100%, 40% 62%, 0 50%, 40% 38%);
}

.th01-template-library__icon--pen::after {
    width: 15px;
    height: 4px;
    left: 7px;
    top: 12px;
    background: var(--th01-primary);
    transform: rotate(-35deg);
    border-radius: 4px;
}

.th01-template-library__icon--build::after {
    width: 14px;
    height: 14px;
    left: 7px;
    top: 7px;
    border: 3px solid var(--th01-primary);
    border-top-color: transparent;
    border-right-color: transparent;
    transform: rotate(-45deg);
    border-radius: 4px;
}

.th01-template-library__icon--device::after {
    left: 7px;
    top: 6px;
    width: 14px;
    height: 16px;
    border: 3px solid var(--th01-primary);
    border-radius: 3px;
}

.th01-template-library__icon--cap::after {
    left: 5px;
    top: 9px;
    width: 18px;
    height: 8px;
    background: var(--th01-primary);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.th01-template-library__icon--shop::after {
    left: 6px;
    top: 8px;
    width: 16px;
    height: 12px;
    border: 3px solid var(--th01-primary);
    border-radius: 3px;
}

.th01-template-library__icon--food::after {
    left: 11px;
    top: 5px;
    width: 3px;
    height: 18px;
    background: var(--th01-primary);
    box-shadow: -5px 0 0 0 var(--th01-primary), 5px 0 0 0 var(--th01-primary);
}

.th01-template-library__icon--home::after {
    left: 7px;
    top: 8px;
    width: 14px;
    height: 12px;
    background: var(--th01-primary);
    clip-path: polygon(50% 0, 100% 35%, 100% 100%, 0 100%, 0 35%);
}

.th01-template-showcase {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(19, 34, 56, 0.08);
    box-shadow: var(--th01-shadow-soft);
    height: 100%;
}

.th01-template-slider {
    position: relative;
}

.th01-template-slider__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0;
}

.th01-template-slider__caption {
    color: var(--th01-primary-dark);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: .95rem;
    font-weight: 700;
}

.th01-template-slider__controls {
    position: absolute;
    inset: 50% -23px auto -23px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.th01-template-slider__control {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(31, 109, 183, 0.16);
    background: #fff;
    color: var(--th01-primary-dark);
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 42, 82, 0.08);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
    pointer-events: auto;
}

.th01-template-slider__control:hover:not(:disabled) {
    background: var(--th01-primary);
    border-color: var(--th01-primary);
    color: #fff;
    box-shadow: 0 14px 28px rgba(15, 42, 82, 0.14);
}

.th01-template-slider__control:disabled {
    opacity: .45;
    cursor: not-allowed;
    box-shadow: none;
}

.th01-template-slider__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: .35rem;
    cursor: grab;
    user-select: none;
}

.th01-template-slider__viewport::-webkit-scrollbar {
    display: none;
}

.th01-template-slider__viewport.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.th01-template-slider__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
}

.th01-template-slider__slide {
    flex: 0 0 calc((100% - 2rem) / 3);
    min-width: 0;
    scroll-snap-align: start;
}

.th01-template-showcase__preview {
    padding: 0 1rem 1rem;
    background: linear-gradient(180deg, #eef4fb 0%, #ffffff 100%);
}

.th01-template-showcase__chrome {
    height: 18px;
    width: 100%;
    border-radius: 18px 18px 0 0;
    margin: 0 auto;
}

.th01-template-showcase__preview--violet .th01-template-showcase__chrome { background: linear-gradient(90deg, #5237ae 0%, #7858dd 100%); }
.th01-template-showcase__preview--green .th01-template-showcase__chrome { background: linear-gradient(90deg, #14844d 0%, #28a15f 100%); }
.th01-template-showcase__preview--olive .th01-template-showcase__chrome { background: linear-gradient(90deg, #5f8f16 0%, #7cad27 100%); }

.th01-template-showcase__canvas {
    min-height: 380px;
    padding: .95rem;
    background: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: inset 0 0 0 1px rgba(19, 34, 56, 0.06);
}

.th01-template-showcase__hero {
    height: 84px;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(31, 109, 183, 0.14) 0%, rgba(249, 101, 43, 0.1) 100%);
}

.th01-template-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .55rem;
    margin-bottom: 1rem;
}

.th01-template-showcase__grid span {
    display: block;
    height: 54px;
    border-radius: 10px;
    background: #f0f5fb;
}

.th01-template-showcase__rows {
    display: grid;
    gap: .6rem;
}

.th01-template-showcase__rows span {
    display: block;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(90deg, #f3f7fc 0%, #edf3fb 100%);
}

.th01-template-showcase__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.th01-template-showcase__action {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: .88rem;
}

.th01-template-showcase__action--detail {
    background: #f56625;
}

.th01-template-showcase__action--cta {
    background: #2d73b9;
}

.th01-template-showcase__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem 1.2rem;
}

.th01-template-showcase__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.th01-template-showcase__industry {
    color: var(--th01-muted);
    font-size: .86rem;
}

.th01-template-showcase__price {
    color: #e0385f;
    font-size: 1.05rem;
    font-weight: 800;
    white-space: nowrap;
}

.th01-featured-products {
    background:
        radial-gradient(circle at top left, rgba(249, 101, 43, 0.08) 0%, rgba(249, 101, 43, 0) 32%),
        linear-gradient(180deg, #fffdfa 0%, #fff7ef 100%);
}

.th01-product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.th01-product-card {
    position: relative;
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    min-height: 100%;
    padding: 1.35rem 1.4rem 1.4rem;
    border-radius: 24px;
    border: 1px solid rgba(249, 101, 43, 0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,1) 100%);
    box-shadow: 0 16px 36px rgba(15, 42, 82, 0.08);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.th01-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 42, 82, 0.12);
    border-color: rgba(249, 101, 43, 0.22);
}

.th01-product-card--wide {
    grid-column: span 3;
}

.th01-product-card__flag {
    position: absolute;
    top: 0;
    right: 1.25rem;
    z-index: 1;
    padding: .45rem .6rem .5rem;
    border-radius: 0 0 12px 12px;
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(255, 79, 43, 0.2);
}

.th01-product-card__flag--hot {
    background: linear-gradient(180deg, #ff5838 0%, #ff3023 100%);
}

.th01-product-card__flag--new {
    background: linear-gradient(180deg, #7ed957 0%, #59bb37 100%);
    box-shadow: 0 12px 24px rgba(89, 187, 55, 0.24);
}

.th01-product-card__category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: .42rem .75rem;
    border-radius: 999px;
    background: rgba(19, 34, 56, 0.05);
    color: rgba(19, 34, 56, 0.72);
    font-size: .76rem;
    font-weight: 700;
}

.th01-product-card__main {
    display: flex;
    gap: .95rem;
    align-items: flex-start;
}

.th01-product-card__icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249,101,43,0.14) 0%, rgba(249,101,43,0.06) 100%);
    color: var(--th01-accent);
    border: 1px solid rgba(249, 101, 43, 0.18);
}

.th01-product-card--blue .th01-product-card__icon {
    background: linear-gradient(135deg, rgba(31,109,183,0.14) 0%, rgba(31,109,183,0.06) 100%);
    color: var(--th01-primary);
    border-color: rgba(31, 109, 183, 0.18);
}

.th01-product-card__icon svg {
    width: 26px;
    height: 26px;
}

.th01-product-card__content {
    flex: 1 1 auto;
}

.th01-product-card__title {
    margin: .1rem 0 .35rem;
    color: var(--th01-primary-deep);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 1.34rem;
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.th01-product-card__summary {
    margin: 0;
    color: #4f5d72;
    font-size: .92rem;
    line-height: 1.55;
}

.th01-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: .2rem;
}

.th01-product-card__pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .35rem;
    color: var(--th01-primary-deep);
    font-size: .96rem;
    font-weight: 800;
}

.th01-product-card__pricing span {
    color: #ff6b2c;
    font-size: 1.48rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.th01-product-card__price-badge {
    display: inline-flex;
    align-items: center;
    padding: .28rem .5rem;
    border-radius: 10px;
    background: #ff6b2c;
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    line-height: 1;
}

.th01-product-card__link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--th01-primary);
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.th01-product-card__link::after {
    content: "→";
}

.th01-case-result {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem .8rem;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid rgba(31, 109, 183, 0.1);
    color: var(--th01-primary-dark);
    font-size: .82rem;
    font-weight: 700;
}

.th01-case-result::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--th01-accent);
}

.th01-testimonial-card {
    position: relative;
    overflow: hidden;
}

.th01-testimonial-card::after {
    content: "";
    position: absolute;
    inset: auto -50px -50px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 109, 183, 0.08) 0%, transparent 70%);
}

.th01-testimonial-card__quote-mark {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--th01-accent);
    margin-bottom: .6rem;
}

.th01-testimonial-card__avatar {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(31, 109, 183, 0.14) 0%, rgba(249, 101, 43, 0.14) 100%);
    color: var(--th01-primary-dark);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .95rem;
    font-weight: 800;
}

.th01-lead-points {
    display: grid;
    gap: .8rem;
}

.th01-lead-points > div {
    padding: .9rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--th01-border);
    box-shadow: var(--th01-shadow-soft);
    color: var(--th01-ink);
    font-weight: 600;
}

.table {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--th01-shadow-soft);
}

.table > :not(caption) > * > * {
    padding: 1rem 1.1rem;
    border-bottom-color: rgba(219, 227, 232, 0.85);
}

.accordion-item {
    border: 1px solid var(--th01-border);
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: var(--th01-shadow-soft);
}

.accordion-item + .accordion-item {
    margin-top: .85rem;
}

.accordion-button {
    font-weight: 700;
    font-size: .98rem;
    padding: 1rem 1.15rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(31, 109, 183, 0.06);
    color: var(--th01-primary-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.th01-mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--th01-border);
    z-index: 1030;
    box-shadow: 0 -10px 30px rgba(17, 24, 39, 0.08);
}

.th01-mobile-sticky__item {
    padding: .9rem .5rem;
    text-align: center;
    text-decoration: none;
    color: var(--th01-ink);
    font-weight: 700;
    font-size: .88rem;
}