:root {
    --hitr-font-primary: 'Urbanist', sans-serif;
    --hitr-purple-dark: #4A0D66;
    --hitr-purple-medium: #611F69;
    --hitr-purple-light: #8253C2;
    --hitr-orange: #F45346;
    --hitr-text-dark: #1D1D1F;
    --hitr-text-medium: #4A4A4A;
    --hitr-text-light: #6E6E73;
    --hitr-bg-light: #F8F6FE;
    --hitr-bg-white: #FFFFFF;
    --hitr-bg-dark-purple: #5B1F76;
    --hitr-green: #22C55E;
    --hitr-border-color: #D4D2E3;
    --hitr-gradient-text: linear-gradient(87deg, var(--hitr-purple-light) 18.3%, var(--hitr-orange) 80.97%);
    --hitr-gradient-box: linear-gradient(105deg, #F5E7F7 0%, #E9E6FF 100%);
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

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

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

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

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

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

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

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

.hitr-heading-primary {
    font-size: 2.5rem;
}

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

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

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

.hitr-heading-secondary {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.hitr-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

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

.hitr-hero-box {
    background: var(--hitr-gradient-box);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

main .hitr-hero-section .hitr-container .hitr-hero-box .hitr-hero-content a{
 width:43% !important;
}

.hitr-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

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

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

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

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

.hitr-hero-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hitr-hero-bg-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hitr-hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--hitr-purple-light);
    top: 300px;
    left: 390px;
    transform: translate(-50%, -50%);
}

.hitr-circle-1 {
    width: 800px;
    height: 800px;
    background: rgba(248, 242, 250, 0.74);
}
.hitr-circle-2 {
    width: 550px;
    height: 550px;
    opacity: 0.9;
    animation-delay: 2s;
    background: var(--hitr-gradient-box);
}

.hitr-main-hero-image {
    position: relative;
    z-index: 1;
    top: 5rem;
    left: 2rem;
}

.hitr-floating-image {
    position: absolute;
    border-radius: 16px;
    animation: floatAnimation 5s ease-in-out infinite;
    z-index: 2;
}

.hitr-img-1 {
    top: -5rem;
    right: 0;
    width: 200px;
    animation-delay: 0.5s;
}

.hitr-img-2 {
    top: 40%;
    left: 1%;
    width: 120px;
    animation-delay: 1s;
}

.hitr-img-3 {
    top: -5rem;
    right: 40%;
    width: 130px;
    animation-delay: 1.5s;
}


.hitr-discovery-image-area {
    position: relative;
}
.hitr-discovery-main-image {
    position: relative;
    border-radius: 24px;
    left: 34px;
}
.hitr-discovery-float-1 {
    position: absolute;
    top: 60%;
    left: -5%;
    animation: floatAnimation 5s ease-in-out infinite;
}
.hitr-discovery-float-2 {
    position: absolute;
    top: 10%;
    right: 30%;
    animation: floatAnimation 5s ease-in-out infinite 0.5s;
}

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

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

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

.hitr-why-grid {
    gap: 6rem;
}

.hitr-why-content p {
    margin-bottom: 1.5rem;
}

.hitr-why-section,
.hitr-excellence-section {
    background: var(--hitr-bg-light);
}

.hitr-excellence-content {
    max-width: 100%;
    text-align: center;
}

.hitr-excellence-content .hitr-paragraph {
    max-width: 100%;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.7;
}


.hitr-steps-container {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hitr-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hitr-step p{
    line-height: 1.5rem;
}


.hitr-step:nth-child(2) .hitr-step-image {
    order: 1;
    transform: scale(1.1) translateX(10%);
    padding-left: 2rem;
}

.hitr-step-image {
    position: relative;
}

.hitr-step-image img {
    border-radius: 24px;
    box-shadow: 0 18.656px 55.108px 0 rgba(33, 34, 55, 0.10), 0 -11.477px 32.792px 0 rgba(135, 143, 171, 0.31) inset;
}

.hitr-step-number {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    top: -1.5rem;
    left: 2rem;
    border-radius: 12px;
    background: var(--hitr-bg-white);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #8F65C8;
    gap: 0.5rem;
    box-shadow: 0 18.656px 55.108px 0 rgba(33, 34, 55, 0.10), 0 -11.477px 32.792px 0 rgba(135, 143, 171, 0.31) inset;
}

.hitr-step-number span{
    font-size: 1.2rem;
}

.hitr-step:nth-child(1) .hitr-step-number {
    left: auto;
    right: 7rem;
}

.hitr-step:nth-child(2) .hitr-step-number {
    left: -2rem;
    right: auto;
}

.hitr-step:nth-child(3) .hitr-step-number {
    left: auto;
    right: 6rem;
}

.hitr-step-content h3 {
    font-size: 1.5rem;
    color: var(--hitr-purple-medium);
}

.hitr-step-content h4 {
    font-size: 1.1rem;
    color: var(--hitr-purple-medium);
    margin: 0.5rem 0 1rem;
}

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

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

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

.hitr-platform-stat {
    position: relative;
    padding: 1rem;
}

.hitr-platform-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: var(--hitr-border-color);
}

.hitr-platform-stat strong {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hitr-green);
}

.hitr-platform-stat span {
    display: block;
    color: var(--hitr-text-light);
}

.hitr-cta-box {
    background: var(--12, linear-gradient(35deg, rgba(225, 244, 255, 0.60) 12%, rgba(249, 225, 255, 0.80) 27%, rgba(255, 230, 233, 0.60) 100%));;
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}
.hitr-cta-box .hitr-paragraph {
    margin: 2rem auto;
}
.hitr-cta-box p:last-of-type {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    main .hitr-hero-section .hitr-container .hitr-hero-box .hitr-hero-content a{
        width:263px !important;
    }
    .hitr-heading-primary{
        font-size: 2rem;
        text-align:center;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }
    .hitr-heading-primary .hitr-no-wrap {
        white-space: normal;
    }
    
    .hitr-heading-secondary {
        text-align: center;
        font-size: 2rem;
    }
    .hitr-paragraph {
        text-align: justify;
    }
    .hitr-step-content p,
    .hitr-discovery-content p,
    .hitr-why-content p,
    .hitr-hero-box p,
    .hitr-cta-box p {
        text-align: justify;
    }
    .hitr-step-content h4 {
        text-align: center;
    }
    
    .hitr-grid-2col, .hitr-hero-box, .hitr-step {
        grid-template-columns: 1fr;
    }
    .hitr-hero-image-area{
        width: 100%;
    }

    .hitr-hero-bg-circles{
        width: 200px;
        height: 200px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .hitr-hero-bg-circle{
        width: 100px;
        height: 100px;
    }
    .hitr-circle-1{
        background: rgba(248, 242, 250, 0.74);
    }
    .hitr-circle-2{
        background: var(--hitr-gradient-box);
    }
    .hitr-hero-box .hitr-hero-image-area .hitr-main-hero-image{
        top:0px;
        left:12px;
    }
    .hitr-floating-image{
        width: 200px;
        height: 200px;
        position: absolute;
        transform: translate(-50%, -50%);
    }
    .hitr-img-1{
        width: 100px;
        top: -3rem;
        right: 0rem;
    }
    .hitr-img-2{
        top: 0;
        width: 80px;
    }
    .hitr-img-3{
        display: none;
    }
    

    .hitr-hero-box {
        width: 100%;
        padding: 2rem 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .hitr-hero-content {
        align-items: center;
        width: 100%;
        max-width: 100%;
        order: 1;
        padding: 0;
        margin: 0;
    }
    .hitr-hero-image-area {
        order: 2;
        width: 100%;
        max-width: 100%;
    }
    .hitr-hero-stats {
        justify-content: center;
    }
    .hitr-why-grid .hitr-why-image-area {
        order: -1;
    }
    .hitr-step:nth-child(2) .hitr-step-image {
        order: -1;
    }
    .hitr-platform-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hitr-platform-stat:not(:last-child)::after {
        display: none;
    }

    .hitr-discovery-section .hitr-discovery-content {
        display: contents;
    }
    .hitr-discovery-section .hitr-heading-secondary {
        order: 1;
        text-align: center;
    }
    .hitr-discovery-section .hitr-paragraph {
        order: 2;
        text-align: justify;
    }
    .hitr-discovery-section .hitr-discovery-image-area {
        order: 3;
    }
    .hitr-discovery-section .hitr-list {
        order: 4;
    }

    .hitr-why-section .hitr-why-content {
        display: contents;
    }
    .hitr-why-section .hitr-heading-secondary {
        order: 1;
        text-align: center;
    }
    .hitr-why-section .hitr-why-image-area {
        order: 2;
    }
    .hitr-why-section .hitr-paragraph {
        order: 3;
        text-align: justify;
        margin-bottom: 0.5rem; }

    .hitr-why-section .hitr-why-grid {
        gap: 1rem; }

    .hitr-step .hitr-step-image {
        order: -1;
    }
    
    .hitr-step:nth-child(2) .hitr-step-image {
        transform: none;
        padding-left: 0;
    }

    .hitr-how-it-works .hitr-step .hitr-step-number{
        left:-16px;
        right:auto !important;
        top:-30px;
        bottom:auto !important;
    }
}