:root {
    --purple-bg: #7B4FD8;
    --purple-mid: #8B5CF6;
    --purple-light: #A78BFA;
    --purple-dark: #5B21B6;
    --white: #ffffff;
    --card-bg: #ffffff;
    --text-area-bg: #F5F4FA;
    --border: #E5E2F0;
    --dark: #1A1523;
    --muted: rgba(255,255,255,0.75);
    --tag-bg: rgba(255,255,255,0.15);
    --tag-border: rgba(255,255,255,0.35);
    --bg-dark: #1A1B32;
    --bg-light: #E7E7F6;
    --bg-badge: #F7F5FF;
    --bg-row-highlight: #34314c;
    --text-dark: #0f1c3f;
    --text-light: #ffffff;
    --text-muted: #8b8da9;
}

html {
  scroll-behavior: smooth;
}

/*-----Hero-----*/
.hero-wrapper{
    background-image: url(https://www.paperhelp.org/redesign_2022/img/theme-violet/landings/hero.png);
    background-size: cover;
    margin-bottom: 140px;
}

.hero-ai-checker {
    display: grid;
    grid-template-columns: 1fr 694px;
    gap: 67px;
    margin: 0 auto;
    max-width: 1353px;
}

.hero-ai-checker h1{
    color: var(--white);
    margin: 0 0 14px 0;
    font-weight: 400;
    font-size: 84px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

/* Left column */
.hero-ai-checker .left {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.hero-ai-checker .left-top {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hero-ai-checker .badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    background: var(--dark);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
}
.hero-ai-checker .badge svg {
    color: var(--white);
    flex-shrink: 0;
}

.hero-ai-checker .subtitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #FFFFFF;
    opacity: 0.8;
    margin-bottom: 36px;
}

.hero-ai-checker .detects-row {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.18);
    margin-bottom: 10px;
}
.hero-ai-checker .detects-label {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #FFFFFF;
    margin-right: 4px;
}
.hero-ai-checker .tag {
    background: var(--tag-bg);
    border: 1px solid var(--tag-border);
    color: var(--white);
    padding: 2px 12px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #FFFFFF;
}

.hero-ai-checker .note {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #FFC107;
    margin: 0;
}

.hero-ai-checker .card {
    background: var(--white);
    border: 1px solid #EDE9FE;
    box-shadow: 0px 20px 60px -30px rgba(91, 33, 182, 0.35);
    border-radius: 16px;
    position: relative;
    z-index: 1;
    height: max-content;
}

.hero-ai-checker .card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 13px 24px
}
.hero-ai-checker .card-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--bg-dark);
    margin-bottom: 0;
}
.hero-ai-checker .word-count {
    font-size: 14px;
    line-height: 140%;
    color: var(--bg-dark);
}
.hero-ai-checker .word-count span{
    color: rgba(26, 27, 50, 0.5);
}
.hero-ai-checker .textarea-wrap {
    padding: 0;
    background: rgba(231, 231, 246, 0.4);
    border: 1px dashed #DDD6FF;
    border-radius: 14px;
    margin: 0 24px 17px 24px;
}
.hero-ai-checker textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    font-size: 14px;
    color: var(--bg-dark);
    line-height: 140%;
    height: 255px;
    overflow: auto;
    padding: 20px;
}
.hero-ai-checker textarea::placeholder {
    color: #B0AEC0;
}

.hero-ai-checker .upload-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    border-top: 1px solid #EDE9FE;
    background: #EFEFF8;
    cursor: pointer;
    transition: color 0.2s;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--bg-dark);
    border-radius: 0px 0px 14px 14px;
}
.hero-ai-checker .upload-row:hover {
    color: var(--purple-mid);
}
.hero-ai-checker .upload-row svg {
    flex-shrink: 0;
}

.hero-ai-checker .card-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 24px 16px 24px;
    background: transparent;
    border: none;
}

.hero-ai-checker .trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-ai-checker .trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: #6B7280;
}
.hero-ai-checker .trust-item svg {
    color: #9CA3AF;
}

.btn-detect {
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 500;
    height: 52px;
}

@media(min-width: 992px){
    .hero-wrapper-ai-checker{
        padding: 72px 40px 74px 60px;
    }
}
@media (max-width: 1199px) {
    .hero-ai-checker {
        gap: 40px;
        grid-template-columns: 1fr;
        padding: 40px 16px 0 16px;
    }
}
@media (max-width: 991px) {
    .hero-ai-checker .card-footer .btn-detect{
        margin: 0 auto;
    }
    .hero-ai-checker .badge{
        margin: 0 auto 8px auto;
    }
    .hero-ai-checker h1{
        margin: 0 0 16px 0;
        font-size: 56px;
        text-align: center;
    }
    .hero-ai-checker .subtitle{
        text-align: center;
        margin-bottom: 24px;
    }    
    .hero-ai-checker .textarea-wrap{
        margin: 0 8px 12px 8px;
    }
    .hero-ai-checker .card{
        border-radius: 32px;
        margin: 0 -17px;
    }
    .hero-ai-checker .upload-row{
        padding: 13px 16px;
    }
    .hero-ai-checker .trust-badges{
        gap: 0 10px;
        margin-top: 0;
    }
    .hero-ai-checker .trust-item{
        font-size: 12px;
    }
    .hero-ai-checker .card-footer{
        padding: 0 12px 24px 12px;
    }
    .btn-detect.disabled{
        margin: 0 auto;
    }
    .hero-ai-checker .trust-item{
        gap: 0;
    }
    .hero-ai-checker .trust-item svg{
        scale: 0.7;
    }
}
@media(max-width: 767px){
    .hero-ai-checker .trust-badges{
        
    }
}
/*-----END Hero-----*/

/*-----Benefits-----*/
.benefits-container {
    margin-bottom: 140px;
    font-family: inherit;
}
.benefits-block h2 {
    font-weight: 400;
    font-size: 51px;
    line-height: 110%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #0F172B;
    margin-bottom: 40px;
}
.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}
.benefit-card {
    background: #E7E7F6;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.benefit-icon {
    margin-bottom: 80px;
}
.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.benefit-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: var(--bg-dark);
    margin: 0;

}
.benefit-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: rgba(26, 27, 50, 0.7);
}
@media(max-width: 991px){
    .benefits-block h2 {
        font-size: 40px;
    }
    .benefit-icon {
        margin-bottom: 48px;
    }
    .benefit-card {
        padding: 16px;
    }
}
/*-----END Benefits-----*/

/*-----How to check-----*/
.how-to-check .writer-cat{
    display: flex;
    flex-direction: column;
    background: var(--bg-dark) url(../img/ai-checker/how-to-check-bg.png) no-repeat top 0 right 0;
    border-radius: 40px;
}
.how-to-check .writer-cat h2 {
    font-weight: 400;
    color: #fff;
    padding: 64px 40px;
    max-width: 814px;
    letter-spacing: -0.02em;
    text-align: left;
    margin: 0;
}

@media (min-width: 992px) {
    .how-to-check .writer-cat h2 {
        font-size:72px;
    }
}

.how-to-check .writer-cat .hiw-reasons-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 118px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 64px 32px;
    position: relative;
    overflow: hidden;
    background-color: #FFF !important;
    margin: 8px;
}

@media (max-width: 991px) {
    .how-to-check .writer-cat .hiw-reasons-container {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 57px 38px;
        gap: 104px;
        border-radius: 32px;
    }
}

.how-to-check .writer-cat .hiw-reasons-container .hiw-element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 240px;
    position: relative
}

@media (max-width: 991px) {
    .how-to-check .writer-cat .hiw-reasons-container .hiw-element {
        width:100%
    }
}

.how-to-check .writer-cat .hiw-reasons-container .hiw-element:not(:last-of-type):after {
    content: "";
    position: absolute;
    width: 77px;
    height: 14px;
    background: url(../img/ai-checker/arrow.png) no-repeat;
    right: -82px;
    top: calc(50% - 45px);
}

@media (max-width: 991px) {
    .how-to-check .writer-cat .hiw-reasons-container .hiw-element:not(:last-of-type):after {
        right:auto;
        top: auto;
        bottom: -63px;
        background-size: contain;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        width: 72px;
        height: 11px;
    }
}

.how-to-check .writer-cat .hiw-reasons-container .hiw-element .tiers {
    color: var(--bg-dark);
    font-size: 12px;
    font-weight: 400;
    line-height: 110%;
    text-transform: uppercase;
    border-radius: 24px;
    padding: 2px 8px;
    border: 1px solid rgba(26,27,50,.4);
    margin-bottom: 24px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .how-to-check .writer-cat .hiw-reasons-container .hiw-element .tiers {
        margin-bottom:16px
    }
}

.how-to-check .writer-cat .hiw-reasons-container .hiw-element .hiw-title {
    color: var(--bg-dark);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -.48px;
    margin-bottom: 32px
}

@media (max-width: 991px) {
    .how-to-check .writer-cat .hiw-reasons-container .hiw-element .hiw-title {
        margin-bottom:16px
    }
}

.how-to-check .writer-cat .hiw-reasons-container .hiw-element .hiw-text {
    max-width: 240px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: rgba(26, 27, 50, 0.5);

}
@media(max-width: 991px){
    .how-to-check .writer-cat h2{
        padding: 40px 28px;
    }
    .how-to-check .writer-cat{
        background: var(--bg-dark) url(../img/ai-checker/how-to-check-bg-mob.png) no-repeat top 133px right 0;
    }
}
/*-----How to check-----*/

/*-----Why US-----*/
.why-us.pseudo-section{
    margin-bottom: 140px;
}
.why-us h2{
    margin-bottom: 24px;
    margin-top: 42px;
}
.why-us .subtitle{
    max-width: 672px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #F7F5FF;
    margin: 0 auto 110px auto;
}
.why-us-hint{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #45556C;
    margin: 40px auto;
}
@media(max-width: 991px){
    .why-us h2{
        margin-right: 30px;
        margin-left: 30px;
    }
    .why-us .subtitle{
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 40px;
        padding-right: 13px;
        padding-left: 13px;
    }
    .why-us-hint{
        margin: 16px auto;
        padding: 0 24px;
    }
}
/*-----END Why US-----*/

/*-----Results-----*/
.results{
    margin-bottom: 140px;
}
.results h2{
    margin: 0 auto 40px auto;
    font-weight: 400;
    font-size: 49px;
    line-height: 110%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #0F172B;
}

.results .subtitle{
    max-width: 816px;
    margin: 0 auto 40px auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(26, 27, 50, 0.7);
}

.results-demo {
    //pointer-events: none;
    cursor: default;
    background: #E7E7F6;
    border-radius: 40px;
    padding: 16px;
    display: grid;
    grid-template-columns: 597px 1fr;
    gap: 16px;
    max-width: 1353px;
    margin: 0 auto;
}

.demo-left {
    background: #fff;
    border-radius: 32px;
    padding: 24px 32px 16px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.demo-left-text {
    background: rgba(231, 231, 246, 0.4);
    border: 1px dashed #DDD6FF;
    border-radius: 14px;
    padding: 16px;
    justify-content: space-between;
    min-height: 380px;
    flex: 1;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: var(--bg-dark);
    margin-bottom: 17px;
    max-height: 750px;
    overflow: auto;
}

.results-demo .highlight-ai {
    background: #FD4644;
    border-radius: 2px;
    padding: 1px 0;
}

.demo-left-footer {
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: var(--bg-dark);
    display: flex;
    gap: 16px;
}

.demo-left-footer span b {
    color: #333;
    font-weight: 500;
}

.demo-right {
    display: flex;
    padding: 24px 32px;
    flex-direction: column;
    background: #F7F5FF;
    border-radius: 32px;
}

.demo-right-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.results h2.risk-label {
    text-align: left;
    margin: 0 0 8px;
}

.risk-sub {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: rgba(26, 27, 50, 0.7);
}

.ai-prob-badge {
    background: #E6E6FF;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 248px;
}
.donut {
    width: 70px;
    height: 70px;
    position: relative;
}

.donut svg {
    transform: rotate(-90deg);
}

.donut-pct {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: var(--bg-dark) !important;
    white-space: nowrap;
}

.ai-prob-label {
    font-weight: 400;
    font-size: 22px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: var(--bg-dark);
}

.gradient-bar-wrap {
    margin: 15px 0 0;
}

.gradient-bar {
    height: 8px;
    background: linear-gradient(90deg, #FE4444 0%, #E5D843 53.08%, #4ADF65 100%);
    border-radius: 50px;
    margin-bottom: 8px;
}

.gradient-bar-labels {
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #000000;
    margin-bottom: 19px
}

.scores-list-wrap{
    display: grid;
    grid-template-columns: 1fr 284px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.scores-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 22px;
    margin-right: 16px;
    border-right: 1px solid #E6E6FF;

}

.score-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.score-dot {
    width: 18px;
    height: 18px;
    border-radius: 2px;
    flex-shrink: 0;
}

.score-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #000000;
    width: 110px;
    flex-shrink: 0;
}

.score-bar-track {
    flex: 1;
    height: 5px;
    background: #e5e5e8;
    border-radius: 4px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    border-radius: 4px;
}

.score-pct {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #000000;
    width: 30px;
    text-align: right;
    flex-shrink: 0;
}

.score-note {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: rgba(26, 27, 50, 0.7);
    margin-bottom: 0;
}

.whats-next-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0 0 16px;
}

.next-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.next-card {
    background: rgba(197, 184, 239, 0.2);
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.next-card-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #000000;
    margin: 0;
}

.next-card-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: rgba(26, 27, 50, 0.7);
    flex: 1;
    margin: 0 0 7px 0;
}

.next-card-btn {
    background: #8267DA;
    font-size: 14px;
    height: 44px;
    padding: 12px 24px;
    border: none;
    width: max-content;
}

.demo-right-footer {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: flex-end;
}

.demo-right-footer .btn-detect{
    padding: 14px 15px;
}

.check-btn {
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.check-btn:hover {
    background: #2d2d4e;
}
@media(max-width: 1199px){
    .results-demo {
        grid-template-columns: 1fr;
        padding: 8px;
    }
}
@media (max-width: 991px) {
    .demo-left-footer{
        font-size: 12px;
        justify-content: center;
    }
    .demo-left{
        border-radius: 24px;
        padding: 8px 8px 16px 8px;
    }
    .demo-right{
        border-radius: 24px;
        padding: 16px;
    }
    .scores-list-wrap{
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .results{
        margin-bottom: 103px;
        padding: 0;
    }

    .next-cards {
        grid-template-columns: 1fr;
    }

    .demo-right-top {
        
    }
    .ai-prob-label{
        display: none;
    }
    .ai-prob-badge {
        min-width: unset;
        width: max-content;
        padding: 8px;
    }
    .results h2{
        margin: 0 auto 40px auto;
        padding: 0 30px;
        font-size: 36px;
    }
    .results h2.risk-label{
        text-align: left;
        padding: 0;
    }
    .risk-sub{
        font-size: 13px;
        margin-bottom: 13px;
    }
    .scores-list{
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        border-bottom: 1px solid #E6E6FF;
        padding-bottom: 16px;    
    }
    .score-note{
        margin-bottom: 0;
    }
    .demo-right-footer{
        justify-content: center;
    }
}
@media(max-width: 767px){
    .demo-left-text {
        max-height: 300px;
    }
}
/*-----END Results-----*/

/*-----Secure-----*/
.secure-container{
    margin: 0 0 140px 0;
    position: relative;
}
.secure-container:before{
    content: "";
    position: absolute;
    left: 0;
    top: -32px;
    width: 179px;
    height: 249px;
    background: url(../img/ai-checker/secure-left.svg) 50% 50%;
    background-size: cover
}
.secure-container:after{
    content: "";
    position: absolute;
    right: 0;
    top: -66px;
    width: 204px;
    height: 249px;
    background: url(../img/ai-checker/secure-right.svg) 50% 50%;
    background-size: cover
}
.secure-container .secure-block{
    padding: 32px 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 32px;
    border: 1px solid #1a1b32;
    width: 920px;
    max-width: 100%;
    background: #f8f8ff;
}
.secure-container .secure-block .title{
    margin: 0 auto 8px auto;
}
.secure-container .secure-block p{
    font-size: 14px;
    max-width: 100%;
}
@media (max-width: 991px) {
    .secure-container .secure-block{
        padding: 24px 16px;
    }
    .secure-container{
        margin: 0 0 96px 0;
    }
    .secure-container:before{
        top: -102px;
        width: 58px;
        height: 124px;
        background: url(../img/ai-checker/secure-left-mob.svg) 50% 50%;
        background-size: cover
    }
    .secure-container:after{
        top: -126px;
        width: 74px;
        height: 156px;
        background: url(../img/ai-checker/secure-right-mob.svg) 50% 50%;
        background-size: cover
    }
}
/*-----END Secure-----*/

/*-----Flagged-----*/
.flagged{
    position: relative;
    justify-content: center;
    margin-bottom: 140px;
}

.flagged h2{
    margin-bottom: 24px;
}
.flagged .subtitle{
    max-width: 816px;
    margin: 0 auto 40px auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(26, 27, 50, 0.7);
}
.flagged-wrap{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(338px, 1fr));
    gap: 24px;
    max-width: 1062px;
    margin: 0 auto;
}
.flagged-wrap .btn-detect{
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    height: 60px;
}
.flagged-item{
    display: flex;
    flex-direction: column;
    background: #8267DA;
    border-radius: 32px;
    padding: 16px 24px;
    min-height: 336px;
}
.flagged-item:first-child .title{
    max-width: 243px;
}
.flagged-item .title{
    font-weight: 400;
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 16px;

}
.flagged-item .description{
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #FFFFFF;
}
.flagged-item-footer{
    display: flex;
    align-items: end;
    flex-grow: 1;
}
@media(min-width: 992px){
    .flagged:before{
        content: "";
        position: absolute;
        left: 0;
        bottom: -300px;
        width: 302px;
        height: 643px;
        background: url(../img/ai-checker/flagged-left.svg) 50% 50%;
        background-size: cover;
        z-index: -1;
    }
    .flagged:after{
        content: "";
        position: absolute;
        right: 0;
        bottom: -300px;
        width: 187px;
        height: 705px;
        background: url(../img/ai-checker/flagged-right.svg) 50% 50%;
        background-size: cover;
        z-index: -1;
    }
}
@media(max-width: 991px){
    .flagged-item .btn-detect{
        margin: 0 auto;
    }
    .flagged{
        margin-bottom: 96px;
    }
    .flagged-item:first-child .title{
        max-width: 100%;
    }
    .flagged:before{
        content: "";
        position: absolute;
        left: 0;
        bottom: 195px;
        width: 302px;
        height: 643px;
        background: url(../img/ai-checker/flagged-left.svg) 50% 50%;
        background-size: cover;
        z-index: -1;
    }
    .flagged:after{
        content: "";
        position: absolute;
        right: 0;
        top: -152px;
        bottom: initial;
        width: 253px;
        height: 1196px;
        background: url(../img/ai-checker/flagged-right-mob.svg) 50% 50%;
        background-size: cover;
        z-index: -1;
    }
}
/*-----END Flagged-----*/

/*-----Table-----*/
.comparison-section {
    width: 100%;
    text-align: center;
    margin: 0 0 140px 0;
}

.comparison-section .section-title{
    font-weight: 400;
}

.section-title {
    margin-bottom: 40px;
}

.comparison-container {
    display: grid;
    grid-template-columns: 222px 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 1060px;
    margin: 0 auto;
}

.features-column{
    border-radius: 32px;
}
.features-column, .data-column {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.features-column {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 8px 24px 24px 24px;
}

.features-column .column-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #E7E7F6;
}

.data-column .column-header {
    border-bottom: 1px solid rgba(26, 27, 50, 0.1);
}

.data-column {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 8px 0 24px 0;
    position: relative;
}

.data-column.id-paperhelp::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 15%;
    height: 80%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.05);
}

.column-header {
    font-size: 16px;
    font-weight: 500;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-column .row-cell{
    color:#E7E7F6;
}
.row-cell {
    min-height: 42px;
    word-break: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #1A1B32;
    text-align: center;
}

.features-column .row-cell.highlight {
    background-color: var(--bg-row-highlight);
    margin: 0 12px;
    border-radius: 16px;
    color: #fff;
}

.data-column .row-cell.highlight .badge {
    background-color: var(--bg-badge);
    width: 100%;
    height: 42px;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1B32;
    white-space: normal;
}
.mobile-tabs {
    display: none;
    background-color: var(--bg-light);
    padding: 6px;
    border-radius: 30px;
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 24px;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background-color: var(--bg-badge);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media(min-width: 992px){
    .data-column.id-paperhelp{
        padding-left: 24px;
    }
    .data-column.id-paperhelp .row-cell{
        border-right: 1px solid rgba(26, 27, 50, 0.1);
    }
    .data-column.id-typical{
        padding-right: 24px;
    }
    .data-column.id-paperhelp{
        border-radius: 32px 0 0 32px;
        margin-left: 8px;
    }
    .data-column.id-paperhelp .row-cell.highlight .badge{
        border-radius: 32px 0 0 32px;
    }
    .data-column:last-child{
        border-radius: 0 32px 32px 0;
    }
    .data-column:last-child .row-cell.highlight .badge{
        border-radius: 0 32px 32px 0;
    }
}

@media (max-width: 991px) {
    .comparison-section {
        margin: 0 0 96px 0;
    }

    .mobile-tabs {
        display: flex;
    }

    .comparison-container {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        background-color: var(--bg-dark);
        border-radius: 32px;
        padding: 8px 12px;
    }

    .features-column {
        background-color: transparent;
        padding: 0;
        color: red !important;
        border-radius: 0;
    }

    .features-column .column-header {
        color: var(--text-light);
        font-size: 16px;
        opacity: 0.8;
    }

    .features-column .row-cell {
        color: #a5a4b5 !important;
        font-size: 14px;
        justify-content: center;
        padding-left: 0;
        border-right: 1px solid rgba(231, 231, 246, 0.2);
    }

    .features-column .row-cell.highlight {
        margin: 0;
        background-color: var(--bg-row-highlight);
        border-radius: 16px 0 0 16px;
    }

    .data-column {
        background-color: transparent;
        color: #FFF !important;
        padding: 0;
        display: none;
    }

    .data-column.active {
        display: flex;
    }

    .data-column.id-paperhelp::after {
        display: none;
    }

    .data-column .column-header {
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .data-column .row-cell {
        font-size: 14px;
        font-weight: 500;
        color: #FFF !important;
    }

    .data-column .row-cell.highlight {
        background-color: var(--bg-row-highlight);
        border-radius: 0 16px 16px 0;
        width: 100%;
    }

    .data-column .row-cell.highlight .badge {
        background-color: transparent;
        color: var(--text-light);
        padding: 0;
        height: auto;
        word-break: break-word;
    }
}
/*END Table*/

/*-----Banner-----*/

.banner-ai {
    position: relative;
    margin-top: 40px;
    margin-bottom: 96px
}

.banner-ai-inner {
    padding: 96px 24px 112px 24px;
    text-align: center;
    color: var(--color-light-medium);
    position: relative;
    overflow: hidden;
    background: url(../img/ai-checker/banner-ai-bg.png) bottom right no-repeat var(--bg-dark);
    background-size: cover
}


.banner-ai-inner:before {
    content: "";
    background: url(../img/ai-checker/banner-ai-pic.png) bottom center no-repeat;
    background-size: contain;
    height: 100%;
    min-width: 400px;
    position: absolute;
    left: 0;
    bottom: 0
}

.banner-ai .inquiry-title {
    font-size: 51px;
    line-height: 56px;
    letter-spacing: -1.02px;
    padding-bottom: 16px;
    max-width: 824px;
    margin: 0 auto
}

.banner-ai p{
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #EDE9FE;
    padding-bottom: 32px;
    margin: 0 auto;
    max-width: 672px;
}

.banner-ai .inquiry-wrap{
    color: #1a1b32;
    padding-top: 8px;
    font-size: 14px;
    line-height: 140%
}

.banner-ai .inquiry-block {
    position: relative;
    z-index: 1
}

.banner-ai .btn{
    height: 60px;
}

@media (min-width: 992px) {
    .hero-wrapper {
        min-height: 612px
    }
    .banner-ai {
        margin:0 0 140px 0;
    }
}

@media (max-width: 991px) {
    .banner-ai {
        margin:0 0 96px 0;
    }
    .banner-ai-inner {
        padding:48px 40px 240px
    }
    .banner-ai-inner:before {
        background-size:auto 290px;
        background-position: center bottom -30px
    }
    .banner-ai .inquiry-wrap {
        padding-top:16px;
        max-width: 250px;
        margin: 0 auto
    }
    .banner-ai .inquiry-title {
        font-size:32px;
        line-height: 110%;
        letter-spacing: -.02em
    }
    .banner-ai p{
        padding-bottom: 22px;
    }
}

/*-----END Banner-----*/

/*-----How much-----*/
.writers-about .bg-bright-medium{
    background: #E7E7F6;
}
.how-much-cost .writers-about__list{
    padding: 32px 24px 24px 24px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #F7F5FF;
    border-radius: 32px;

}

.how-much-cost .writers-about__list .ol-numbered-list li {
    color: rgba(26,27,50,.5);
    font-size: 16px;
    padding-top: 14px
}

@media (max-width: 767px) {
    .how-much-cost .writers-about__list .ol-numbered-list li {
        position:relative;
        padding-left: 26px
    }
}

.how-much-cost .writers-about__list .ol-numbered-list li:not(:last-of-type) {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(26,27,50,.1)
}

.how-much-cost .writers-about__list .ol-numbered-list li:before {
    color: #1a1b32
}

@media (max-width: 767px) {
    .how-much-cost .writers-about__list .ol-numbered-list li:before {
        position:absolute;
        left: 0
    }
}

.how-much-cost .writers-about__list .colored-dark {
    color: #1a1b32
}

.how-much-cost .writers-about h3 {
    font-size: 48px;
    letter-spacing: -.02em;
    text-align: left
}

@media (min-width: 992px) {
    .how-much-cost .writers-about__img {
        padding-right:8px!important
    }
}

@media (max-width: 991px) {
    .how-much-cost .writers-about__img {
        padding-bottom:6px
    }
}

.how-much-cost .writers-about__img img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 32px
}

.how-much-cost__content h2 {
    color: #1a1b32;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -.96px;
    text-align: left;
    margin-bottom: 32px;
    max-width: 567px;
}

@media (max-width: 991px) {
    .how-much-cost__content h2 {
        font-size:40px;
        max-width: 100%;
    }
}

.how-much-cost__content p {
    color: rgba(26,27,50,.7);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 0
}

@media (max-width: 991px) {
    .how-much-cost__content p {
        margin-bottom:24px
    }
}

.how-much-cost__content p.hmc-subtitle {
    max-width: 590px;
    margin-bottom: 55px
}

@media (max-width: 991px) {
    .how-much-cost__content p.hmc-subtitle {
        margin-bottom:48px
    }
}

.how-much-cost__content .hmc-content-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.how-much-cost__content .how-much-accordion h3 {
    color: #1a1b32;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 15px;
    text-align: left;
    position: relative
}

.how-much-cost__content .how-much-accordion .accordion-hmc {
    border-radius: 16px;
    background: rgba(197,184,239,.2);
    margin-bottom: 8px;
    padding: 16px;
}

.how-much-cost__content .how-much-accordion .accordion-hmc .accordion-content {
    color: rgba(26,27,50,.5);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

/*-----END How much-----*/

/*-----Error Messages-----*/
.error-message, .file-error  {
    display: none;
    animation: slideDown 0.3s ease-out;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #FD4A44;
    position: absolute;
    top: -10px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 767px){
    .error-message, .file-error{
        position: relative;
        top: initial;
    }
}

/*-----Button States-----*/
.btn-detect {
    transition: all 0.3s ease;
}

.btn-detect.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-detect.loading-btn {
    position: relative;
    pointer-events: none;
}

.btn-detect.loading-btn::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 15px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*-----Upload Area States-----*/
.hero-ai-checker .upload-row.dragover {
    background: #EDE9FE;
    border-top: 1px solid #D8D3F7;
    color: var(--purple-mid);
}

.hero-ai-checker .upload-row.dragover svg {
    color: var(--purple-mid);
}

/*-----Results Display-----*/
#ai-results{
    pointer-events: initial;
}
.result-text-display {
    color: var(--bg-dark);
    font-size: 14px;
    line-height: 140%;
    word-break: break-word;
    white-space: pre-wrap;
}

/*-----FAQ-----*/
.faq-title{
    color: rgba(247, 245, 255, .6) !important;
    max-width: 765px;
}

@media(max-width: 991px){
    .hero-wrapper,
    .benefits-container,
    .why-us.pseudo-section{
        margin-bottom: 96px;
    }
    #ai-results.results {
        margin-bottom: 0;
        margin-top: -35px;
    }
}
