:root {
    --trhi-font-primary: 'Urbanist', sans-serif;
    --trhi-purple-dark: #4A0D66;
    --trhi-purple-medium: #611F69;
    --trhi-purple-light: #8253C2;
    --trhi-orange: #F45346;
    --trhi-text-dark: #1D1D1F;
    --trhi-text-medium: #4A4A4A;
    --trhi-text-light: #6E6E73;
    --trhi-bg-light-gray: #F8F6FE;
    --trhi-bg-white: #FFFFFF;
    --trhi-bg-dark-purple: #6A1B9A;
    --trhi-green: #22C55E;
    --trhi-border-color: #EAEAEA;
    --trhi-gradient-text: linear-gradient(87deg, var(--trhi-purple-light) 18.3%, var(--trhi-orange) 80.97%);
    --trhi-gradient-box: linear-gradient(105deg, rgba(245, 231, 247, 0.6) 0%, rgba(233, 230, 255, 0.6) 100%);
    --trhi-gradient-cta: linear-gradient(105deg, rgba(243, 237, 255, 0.5) 0%, rgba(255, 235, 238, 0.5) 100%);
}

body {
    font-family: var(--trhi-font-primary);
    margin: 0;
    background-color: var(--trhi-bg-white);
    color: var(--trhi-text-medium);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.trhi-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.trhi-hero-section .trhi-container,
.trhi-cta-section .trhi-container {
    max-width: 1350px;
}

.trhi-section {
    padding: 5rem 0;
}

.trhi-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.trhi-heading-primary,
.trhi-heading-secondary {
    font-weight: 600;
    line-height: 1.2;
    background: var(--trhi-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.trhi-heading-primary {
    font-size: 2.75rem;
    max-width: 500px;
}

.trhi-no-wrap {
    white-space: nowrap;
}

.trhi-heading-secondary {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trhi-paragraph {
    font-size: 1.125rem;
    color: var(--trhi-text-light);
    line-height: 1.7;
    max-width: 550px;
}

.trhi-text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.trhi-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.trhi-hero-box a{
 width: fit-content;
}

.trhi-btn-primary {
    background-color: var(--trhi-purple-medium);
    color: var(--trhi-bg-white);
}

.trhi-btn-primary:hover {
    opacity: 0.9;
}

.trhi-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.trhi-text-below{
    margin-top: 1.5rem;
}

.trhi-list-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.trhi-list li {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-weight: 600;
}

.trhi-list img {
    width: 24px;
    height: 24px;
}

.trhi-list-description {
    font-weight: 400;
    opacity: 0.8;
    font-size: 0.9em;
    margin-left: 2.25rem;
    display: block;
    margin-top: 0.5rem;
}

.trhi-hero-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.trhi-hero-box {
    background: var(--trhi-gradient-box);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: stretch;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.trhi-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding: 4rem;
    position: relative;
    z-index: 3;
}

.trhi-hero-image-area{
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    position: relative;
    z-index: 2;
}

.trhi-hero-image-area img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.trhi-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.trhi-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.trhi-stat-item:not(:first-child) {
    padding-left: 2rem;
}

.trhi-stat-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background-color: var(--trhi-purple-medium);
}

.trhi-stat-item img {
    width: 32px;
    height: 32px;
}

.trhi-stat-item div {
    display: flex;
    flex-direction: column;
}

.trhi-stat-item strong {
    font-weight: 800;
    color: var(--trhi-text-dark);
}

.trhi-stat-item span {
    font-size: 0.9rem;
    color: var(--trhi-text-light);
}

.trhi-why-section {
    background-color: var(--trhi-bg-light-gray);
}
.trhi-why-image-area {
    justify-self: center;
}

.trhi-steps-container {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.trhi-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}
.trhi-step:nth-child(even) .trhi-step-image {
    order: 1;
}
.trhi-step-image {
    position: relative;
    justify-self: center;
}
.trhi-step-image img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.trhi-step-number {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    top: -2rem;
    left: -2rem;
    border-radius: 16px;
    background: var(--trhi-bg-white);
    font-weight: 700;
    font-size: 1rem;
    color: #A484D3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 0.25rem;
}
.trhi-step-number span {
    font-size: 1rem;
    letter-spacing: 1px;
}
.trhi-step-content h3 {
    font-size: 1.8rem;
    color: var(--trhi-purple-medium);
    margin-bottom: 0.5rem;
}
.trhi-step-content h4 {
    font-size: 1.1rem;
    color: var(--trhi-purple-medium);
    font-weight: 600;
    margin: 0.5rem 0 1.5rem;
}

.trhi-corporates-love-section {
    background-color: var(--trhi-bg-light-gray);
}
.trhi-love-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    background-color: var(--trhi-bg-white);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.trhi-love-item {
    padding: 2rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.trhi-love-item img {
    width: 64px;
    height: 64px;
}
.trhi-love-item p {
    font-weight: 600;
    color: var(--trhi-text-medium);
    max-width: 200px;
}

.trhi-ai-platform {
    background: var(--trhi-bg-dark-purple);
    color: var(--trhi-bg-white);
}

.trhi-ai-platform .trhi-heading-secondary,
.trhi-ai-platform .trhi-paragraph {
    color: var(--trhi-bg-white);
    background: none;
    -webkit-text-fill-color: initial;
}

.trhi-platform-stats {
    background: var(--trhi-bg-white);
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 3rem auto 0;
    color: var(--trhi-text-dark);
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#stats-section p{
  max-width:1375px;
 }

.trhi-platform-stat {
    position: relative;
    padding: 1rem 1rem;
    text-align: center;
}
.trhi-platform-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: var(--trhi-border-color);
}
.trhi-platform-stat strong {
    font-size: 3rem;
    font-weight: 700;
    color: var(--trhi-green);
}
.trhi-platform-stat span {
    display: block;
    margin-top: 0.5rem;
    color: var(--trhi-text-light);
    font-weight: 500;
}

.trhi-cta-section {
    padding-bottom: 5rem;
}
.trhi-cta-box {
    background: var(--trhi-gradient-cta);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
}
.trhi-cta-box .trhi-heading-secondary {
    font-size: 2.8rem;
}
.trhi-cta-box .trhi-paragraph {
    margin: 1.5rem auto 2.5rem auto;
    max-width: 600px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .trhi-section {
        padding: 3rem 0;
    }
    .trhi-grid-2col,
    .trhi-hero-box,
    .trhi-step {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .trhi-heading-primary,
    .trhi-heading-secondary {
        text-align: center;
        max-width: 100%;
        font-size: 2.2rem;
    }
    .trhi-paragraph {
        text-align: justify;
        max-width: 100%;
    }
    .trhi-step-content p,
    .trhi-what-is-content p,
    .trhi-why-content p,
    .trhi-cta-box p {
        text-align: justify;
    }
    .trhi-step-content h4 {
        text-align: center;
    }
    .trhi-hero-box {
        padding: 2rem;
        display: flex;
        flex-direction: column;
    }
    .trhi-hero-box .trhi-paragraph {
        text-align: justify;
    }
    .trhi-hero-box .trhi-heading-primary {
        text-align: center;
    }
    .trhi-hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
        order: 1;
        width: 100%;
        padding: 0;
    }
    .trhi-heading-primary {
        order: 1;
    }
    .trhi-paragraph {
        order: 2;
    }
    .trhi-btn-primary {
        order: 3;
    }
    .trhi-hero-stats {
        order: 4;
        justify-content: center;
        display: flex;
        flex-direction: row;
    }
    .trhi-hero-image-area {
        order: 5;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .trhi-hero-image-area img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
    }
    .trhi-grid-2col {
        display: flex;
        flex-direction: column;
    }
    .trhi-what-is-content,
    .trhi-why-content {
        display: flex;
        flex-direction: column;
    }
    .trhi-heading-secondary {
        order: 1;
    }
    .trhi-paragraph {
        order: 2;
    }
    .trhi-what-is-image-area,
    .trhi-why-image-area {
        order: 3;
    }
    .trhi-list {
        order: 4;
        align-items: flex-start;
        margin-left: auto;
        margin-right: auto;
        max-width: 350px; }
    .trhi-step:nth-child(even) .trhi-step-image {
        order: -1; }
    .trhi-step-image {
        order: -1;
    }
    .trhi-step-number {
        top: -1rem;
        left: 10%;
        transform: translateX(-50%);
    }
    .trhi-love-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trhi-platform-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .trhi-platform-stat {
        padding: 2rem 1rem;
    }
    .trhi-platform-stat:not(:last-child)::after {
        width: 80%;
        height: 1px;
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .trhi-cta-box {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .trhi-heading-primary,
    .trhi-heading-secondary {
        font-size: 2rem;
        text-align: center;
    }
    .trhi-paragraph {
        text-align: justify;
    }
    .trhi-step-content p,
    .trhi-what-is-content p,
    .trhi-why-content p,
    .trhi-cta-box p {
        text-align: justify;
    }
    .trhi-step-content h4,
    .trhi-hero-box h1,
    .trhi-hero-box h2 {
        text-align: center;
    }
    .trhi-hero-box {
        padding: 2rem 1.5rem;
    }
    .trhi-hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
    }
    .trhi-love-grid {
        grid-template-columns: 1fr;
    }
}