.tpmp-wrap,
.tpmp-wrap * {
    box-sizing: border-box;
}

.tpmp-wrap {
    --tpmp-accent: #f97316;
    --tpmp-dark: #111827;
    --tpmp-muted: #64748b;
    --tpmp-border: rgba(15, 23, 42, 0.1);
    --tpmp-soft: #f8fafc;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 18px;
    color: var(--tpmp-dark);
    font-family: inherit;
}

.tpmp-wrap svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: block;
}

.tpmp-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 24px;
    align-items: stretch;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--tpmp-accent) 30%, transparent), transparent 34%),
        linear-gradient(135deg, #111827 0%, #1f2937 48%, #0f172a 100%);
    overflow: hidden;
    isolation: isolate;
}

.tpmp-hero::before {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--tpmp-accent) 40%, transparent);
    filter: blur(18px);
    opacity: 0.65;
    z-index: -1;
}

.tpmp-hero-content {
    color: #fff;
    padding: 18px 0;
}

.tpmp-eyebrow,
.tpmp-section-head span,
.tpmp-mini-title,
.tpmp-cta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tpmp-accent);
}

.tpmp-eyebrow {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fed7aa;
}

.tpmp-hero h1 {
    max-width: 780px;
    margin: 18px 0 16px;
    color: #fff;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.tpmp-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.75;
}

.tpmp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.tpmp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tpmp-btn:hover,
.tpmp-btn:focus {
    transform: translateY(-2px);
}

.tpmp-btn-primary {
    color: #111827 !important;
    background: var(--tpmp-accent);
    box-shadow: 0 16px 36px color-mix(in srgb, var(--tpmp-accent) 38%, transparent);
}

.tpmp-btn-soft {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.tpmp-btn-light {
    color: var(--tpmp-dark) !important;
    background: #fff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

.tpmp-hero-card {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.tpmp-shirt-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--tpmp-accent);
    background: color-mix(in srgb, var(--tpmp-accent) 14%, #fff);
    margin-bottom: 18px;
}

.tpmp-shirt-icon svg {
    width: 34px;
    height: 34px;
}

.tpmp-hero-card h2,
.tpmp-panel h2,
.tpmp-section-head h2,
.tpmp-cta h2 {
    margin: 0;
    color: var(--tpmp-dark);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.tpmp-hero-card h2 {
    font-size: 26px;
}

.tpmp-hero-card ul,
.tpmp-checklist ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.tpmp-hero-card li,
.tpmp-checklist li {
    position: relative;
    padding: 10px 0 10px 28px;
    color: #334155;
    line-height: 1.55;
    border-bottom: 1px solid var(--tpmp-border);
}

.tpmp-hero-card li:last-child,
.tpmp-checklist li:last-child {
    border-bottom: 0;
}

.tpmp-hero-card li::before,
.tpmp-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--tpmp-accent);
    font-size: 12px;
    font-weight: 900;
}

.tpmp-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.tpmp-stats div {
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--tpmp-border);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.tpmp-stats strong {
    display: block;
    color: var(--tpmp-dark);
    font-size: 30px;
    line-height: 1;
    font-weight: 950;
}

.tpmp-stats span {
    display: block;
    margin-top: 8px;
    color: var(--tpmp-muted);
    font-size: 14px;
}

.tpmp-section-head {
    max-width: 820px;
    margin: 70px auto 30px;
    text-align: center;
}

.tpmp-section-head-tight {
    margin-top: 46px;
}

.tpmp-section-head h2 {
    margin-top: 10px;
    font-size: clamp(28px, 4vw, 46px);
}

.tpmp-section-head p {
    margin: 14px auto 0;
    max-width: 740px;
    color: var(--tpmp-muted);
    font-size: 16px;
    line-height: 1.75;
}

.tpmp-timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    counter-reset: tpmp-counter;
}

.tpmp-step {
    position: relative;
    display: grid;
    grid-template-columns: 58px 54px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--tpmp-border);
    background: #fff;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.tpmp-step::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--tpmp-accent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.tpmp-step:hover::after {
    opacity: 1;
}

.tpmp-step-number {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--tpmp-soft);
    color: var(--tpmp-dark);
    font-size: 18px;
    font-weight: 950;
}

.tpmp-step-icon,
.tpmp-feature-icon,
.tpmp-material-item > div:first-child {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 18px;
    color: var(--tpmp-accent);
    background: color-mix(in srgb, var(--tpmp-accent) 12%, #fff);
}

.tpmp-step h3,
.tpmp-feature-card h3,
.tpmp-material-item h3 {
    margin: 0;
    color: var(--tpmp-dark);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.tpmp-step p,
.tpmp-feature-card p,
.tpmp-material-item p,
.tpmp-faq-item p,
.tpmp-cta p {
    margin: 8px 0 0;
    color: var(--tpmp-muted);
    line-height: 1.7;
    font-size: 15px;
}

.tpmp-grid-two {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.tpmp-panel {
    padding: 28px;
    border-radius: 28px;
    background: var(--tpmp-soft);
    border: 1px solid var(--tpmp-border);
}

.tpmp-panel h2 {
    margin-top: 10px;
    font-size: 32px;
}

.tpmp-material-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.tpmp-material-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--tpmp-border);
}

.tpmp-checklist {
    background:
        radial-gradient(circle at bottom right, color-mix(in srgb, var(--tpmp-accent) 18%, transparent), transparent 34%),
        #fff;
}

.tpmp-checklist li {
    background: rgba(255, 255, 255, 0.7);
}

.tpmp-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.tpmp-feature-card {
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--tpmp-border);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.tpmp-feature-icon {
    margin-bottom: 16px;
}

.tpmp-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.tpmp-faq-item {
    border: 1px solid var(--tpmp-border);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.tpmp-faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 900;
    color: var(--tpmp-dark);
    list-style: none;
}

.tpmp-faq-item summary::-webkit-details-marker {
    display: none;
}

.tpmp-faq-item summary::after {
    content: "+";
    float: right;
    color: var(--tpmp-accent);
    font-weight: 900;
}

.tpmp-faq-item[open] summary::after {
    content: "–";
}

.tpmp-faq-item p {
    padding: 0 20px 18px;
}

.tpmp-cta {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    margin-top: 50px;
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--tpmp-accent) 34%, transparent), transparent 40%),
        linear-gradient(135deg, var(--tpmp-dark), #020617);
    color: #fff;
}

.tpmp-cta h2 {
    color: #fff;
    margin-top: 8px;
    font-size: clamp(26px, 4vw, 42px);
}

.tpmp-cta p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
}

.tpmp-cta .tpmp-btn {
    flex: 0 0 auto;
}

.tpmp-step,
.tpmp-feature-card,
.tpmp-panel,
.tpmp-stats div,
.tpmp-hero-card,
.tpmp-cta {
    animation: tpmpFadeUp 0.5s ease both;
}

@keyframes tpmpFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .tpmp-hero,
    .tpmp-grid-two {
        grid-template-columns: 1fr;
    }

    .tpmp-stats,
    .tpmp-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tpmp-timeline {
        grid-template-columns: 1fr;
    }

    .tpmp-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .tpmp-wrap {
        padding: 30px 14px;
    }

    .tpmp-hero,
    .tpmp-panel,
    .tpmp-cta {
        padding: 22px;
        border-radius: 22px;
    }

    .tpmp-step {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .tpmp-stats,
    .tpmp-features {
        grid-template-columns: 1fr;
    }

    .tpmp-actions,
    .tpmp-btn {
        width: 100%;
    }

    .tpmp-section-head {
        margin-top: 46px;
    }
}
