body{
    background: #E7FAFE;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.logo {
    left: 20px; 
    height: 70px;
    width: 70px;
    flex-shrink: 0;
}

.header-center {
    margin: 0 auto; 
    display: flex;
    gap: 20px;
}

header a { 
    color:  #464646;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 21px;
    line-height: 25px;
    border-radius: 4px;
}


.header-center a:hover {
    transform: translateY(-4px);
}

.herotext{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.herotext h1{
    font-size: 52px;
    color: #464646;
}

.herotext p{
    margin-top: -20px;
    font-size: 21px;
    color: #464646;
}

.card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 100px;
}

.card input{
    border: 1px solid #e9e9e9;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    width: 500px;
    max-width: 100%;
    margin: 20px;
    padding: 15px;
    box-sizing: border-box;
}

.card p{
    color: #2a2a2a9f;
}

.card button{
    border: 2px solid #464646;
    margin-top: 10px;
    border-radius: 30px;
    padding: 10px 40px;
    font-size: 21px;
    background: #464646;
    color: #fff;
}

.card button:hover{
    transform: translateY(-1px);
}

.cardA{
    display: flex;
    justify-content: center;
    align-items: center;
}

.box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    margin: 20px 100px;   
    color: #464646;
    font-size: 21px;
}

.box img{
    width: 60px;
    height: 60px;
}

.sectionA{
    background-color: #afcfdc;
}

.result-section {
    padding:  16px 46px;
    margin-top: -50px;
    margin-bottom: 50px;
}

.result-wrap {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.result-card {
    --result-accent: #d29316;
    --result-soft: #fff7e8;
    --result-track: #ececec;

    background: #fff;
    color: #1f1f1f;
    border-radius: 18px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid #e9e9e9;
    padding: 22px;
    width: 100%;
    box-sizing: border-box;
}

.result-card.is-safe {
    --result-accent: #1f8d4d;
    --result-soft: #edf9f1;
}

.result-card.is-warning {
    --result-accent: #d29316;
    --result-soft: #fff7e8;
}

.result-card.is-danger {
    --result-accent: #cb2f2f;
    --result-soft: #fff0f0;
}

.result-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--result-soft);
    color: var(--result-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.result-score {
    margin: 0;
    color: #2a2a2a;
    font-size: 15px;
}

.result-score strong {
    font-size: 23px;
    line-height: 1;
}

.result-score span {
    color: #666;
    margin-left: 2px;
}

.result-title {
    margin: 0 0 6px;
    font-size: 30px;
    color: #2a2a2a;
}

.result-url {
    margin: 0 0 16px;
    color: #444;
    font-size: 14px;
}

.result-url code {
    background: #f6f6f6;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 2px 8px;
    font-family: Consolas, "Courier New", monospace;
    word-break: break-all;
}

.result-progress-block {
    margin-bottom: 12px;
}

.result-progress {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: var(--result-track);
    overflow: hidden;
}

.result-progress-fill {
    display: block;
    width: calc(var(--score, 0) * 1%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--result-accent), color-mix(in srgb, var(--result-accent), #ffffff 20%));
    transition: width 0.25s ease;
}

.result-summary {
    margin: 0 0 16px;
    color: #444;
    line-height: 1.45;
}

.result-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

.result-check {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    color: #303030;
}

.result-check + .result-check {
    border-top: 1px solid #f2f2f2;
}

.result-check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--result-soft);
    color: var(--result-accent);
    font-weight: 700;
    font-size: 13px;
}

.result-check-label {
    font-size: 15px;
    min-width: 0;
}

.result-check-status {
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
    padding: 3px 10px;
}

.result-check-status.is-pass {
    background: #ecf7ef;
    color: #1f8d4d;
}

.result-check-status.is-fail {
    background: #fff1f1;
    color: #cb2f2f;
}

.result-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.result-btn {
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 15px;
    border: 2px solid #464646;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.result-btn:hover {
    transform: translateY(-1px);
}

.result-btn-primary {
    background: #464646;
    color: #fff;
}

.result-btn-primary:hover {
    background: #2d2d2d;
}

.result-btn-secondary {
    background: #fff;
    color: #464646;
}

.result-btn-secondary:hover {
    background: #f1f1f1;
}

.result-btn:focus-visible {
    outline: 3px solid #464646;
    outline-offset: 2px;
}

.hide{
    display: none;
}
.How-Works-section{
    padding:  16px 46px;
    margin-top: -50px;
    margin-bottom: 50px;
}

.how-works-card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
}


.How-Works-section-title{
    font-size: 52px;
    margin-bottom: 25px;
    color: #464646;
}

.how-works-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 20px;
    margin-left: 50px;
    border: 1px solid #ececec;
    transition: all 0.25s ease;
    height: 200px;
    width: 300px;
}

.how-works-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.how-works-nocolumn{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-works-box p{
    margin-top: 20px ;
    font-style: italic;
}
.how-works-box h3{
    color:#464646;
    font-size: 21px;
}

.footer-basic {
    box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.2);
    padding:20px 0;
    color:#4b4c4d;
}

.footer-basic ul {
    padding:0;
    list-style:none;
    display: flex;
    justify-content: center;
    text-align:center;
    font-size:18px;
    line-height:1.6;
    margin-bottom:0;
}

.footer-basic li {
    padding:0 10px;
}

.footer-basic ul a {
    color:inherit;
    text-decoration:none;
    opacity:0.8;
}

.footer-basic ul a:hover {
    opacity:1;
}

.footer-basic .copyright {
    margin-top:15px;
    text-align:center;
    font-size:13px;
    color:#aaa;
    margin-bottom:0;
}

.about-us-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4b4c4d;
    font-size: 51px;
}

.about-us-box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    box-shadow: 0px 2px 3px black;
    border-radius: 30px;
    margin-bottom: 30px;
}

@media (max-width: 1023px) {
    .header {
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 8px;
        padding: 8px 12px;
    }

    .header-center {
        flex: 1 1 100%;
        margin: 0;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    header a {
        font-size: 19px;
        line-height: 1.25;
        padding: 10px 8px;
    }


    .herotext {
        text-align: center;
        padding: 0 20px;
    }

    .herotext h1 {
        font-size: clamp(36px, 6vw, 52px);
        line-height: 1.1;
        margin-bottom: 14px;
    }

    .herotext p {
        margin-top: 0;
        max-width: 760px;
        line-height: 1.45;
    }

    .card {
        padding: 0 20px;
    }

    .card input {
        width: 100%;
        margin: 14px 0;
    }

    .card button {
        margin-top: 12px;
    }

    .result-section,
    .How-Works-section {
        margin-top: 0;
        padding: 16px 24px;
    }

    .cardA,
    .how-works-nocolumn {
        flex-wrap: wrap;
        gap: 16px;
    }

    .box {
        margin: 14px 24px;
    }

    .how-works-box {
        margin-left: 0;
        width: calc(50% - 8px);
        min-width: 260px;
        height: auto;
        min-height: 190px;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 60px;
        width: 60px;
    }

    .header-center {
        gap: 8px;
    }

    header a {
        font-size: 17px;
        padding: 8px 6px;
    }

    .herotext {
        padding: 0 16px;
    }

    .herotext h1 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .herotext p {
        font-size: 18px;
    }

    .card {
        margin-bottom: 70px;
        padding: 0 16px;
    }

    .card p {
        text-align: center;
        font-size: 16px;
    }

    .card button {
        width: 100%;
        max-width: 360px;
        padding: 12px 24px;
    }

    .result-section,
    .How-Works-section {
        padding: 14px 18px;
        margin-bottom: 36px;
    }

    .result-top {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .result-title {
        font-size: 26px;
    }

    .result-check {
        grid-template-columns: 24px 1fr;
        align-items: start;
    }

    .result-check-status {
        justify-self: start;
        margin-top: 4px;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-btn {
        width: 100%;
    }

    .cardA {
        flex-direction: column;
    }

    .box {
        width: 100%;
        max-width: 360px;
        margin: 8px 0;
    }

    .How-Works-section-title {
        font-size: 42px;
        text-align: center;
    }

    .how-works-box {
        width: 100%;
        max-width: 420px;
        min-height: 180px;
    }

    .footer-basic ul {
        flex-wrap: wrap;
    }

    .about-us-title {
        font-size: 42px;
        text-align: center;
    }

    .about-us-box {
        margin: 0 20px 24px;
    }
}

@media (max-width: 640px) {
    .header {
        justify-content: center;
    }

    .logo {
        height: 56px;
        width: 56px;
    }

    .header-center {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    header a {
        width: 100%;
        font-size: 16px;
        line-height: 1.25;
    }

    .header select,
    .header .language-picker,
    .header [class*="lang"],
    .header [id*="lang"] {
        width: 100%;
        max-width: 260px;
    }

    .herotext {
        padding: 0 14px;
    }

    .herotext h1 {
        font-size: clamp(26px, 10vw, 34px);
    }

    .herotext p {
        font-size: 16px;
    }

    .result-card {
        padding: 18px;
        border-radius: 14px;
    }

    .result-title {
        font-size: 24px;
    }

    .result-check {
        grid-template-columns: 22px 1fr;
    }

    .result-check-status {
        justify-self: start;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-btn {
        width: 100%;
    }

    .How-Works-section-title {
        font-size: 34px;
    }

    .how-works-box {
        padding: 24px 18px;
    }
}

.about-section{
    padding: 80px 20px;
}

.about-container{
    max-width: 1280px;        
    margin: 0 auto;   
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.about-image,
.about-content{
    flex: 1;                  
}

.about-image img{
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
}

.about-content h1{
    color: #4b4c4d;
    font-size: 42px;
    margin-bottom: 20px;
    text-align: left;
}

.about-content p{
    font-style: italic;
    color: #4b4c4d;
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    text-align: left;
    text-align: justify;
}

.scam-guide{
    padding: 40px 20px;
}

.scam-guide__container{
    max-width: 900px;
    margin: 0 auto;
}

.scam-guide__header{
    text-align: center;
    margin-bottom: 18px;
    color: #464646;
}

.scam-guide__title{
    margin: 0 0 6px;
    font-size: clamp(30px, 5vw, 52px);
}

.scam-guide__subtitle{
    margin: 0;
    font-size: 18px;
    color: #2a2a2a9f;
}

.scam-guide__card{
    background: #ffffff;
    border: 1px solid #e9e9e9;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 22px 20px;
    margin: 16px 0;
    color: #464646;
}

.scam-guide__h2{
    margin: 0 0 10px;
    font-size: 22px;
    color: #464646;
}

.scam-guide__list{
    margin: 0;
    padding-left: 20px;
    color: #2a2a2a;
    line-height: 1.65;
}

.scam-guide__list li{
    margin: 6px 0;
}

@media (max-width: 768px){
    .scam-guide{
        padding: 26px 16px;
    }
    .scam-guide__card{
        padding: 18px 16px;
        border-radius: 16px;
    }
    .scam-guide__h2{
        font-size: 20px;
    }
}

.scam-guide__card{
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.scam-guide__card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #dcdcdc;
}

.scam-guide__list li{
    transition: transform 0.12s ease, color 0.12s ease;
}

.scam-guide__list li:hover{
    transform: translateX(4px);
    color: #2d2d2d;
}