@import url('https://fonts.googleapis.com/css2?family=Mozilla+Text:wght@200..700&display=swap');

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


h1,h2,h3 {
    text-wrap:balance;
}


p {
    max-width:65ch;
}


/* ================= VARIABLES ================= */
:root {
    --black: #000000;
    --navy: #14213d;
    --orange: #fca311;
    --light: #e5e5e5;
    --white: #ffffff;
    --red: #FF6961;
}

/* ================= BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Mozilla Text", sans-serif;
}

body {
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
}

/* ================= BREADCRUMB ================= */

.breadcrumb {
    padding: 15px 60px;
    font-size: 14px;
    color: #667;
}

.breadcrumb a {
    color: var(--navy);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--orange);
}

/* ================= NAV ================= */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:
        clamp(10px,3vw,20px)
        clamp(15px,5vw,60px);
    gap: 10px;
    border-bottom: 1px solid var(--light);
    position: sticky;
    top: 0;
    background-color: var(--navy);
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

.nav nav {
    flex-wrap: wrap;
    display: flex;
    align-items:center;
    justify-content:center;
    flex:1;
    gap:
    clamp(8px,2vw,25px);
}

.nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: 0.2s ease;
    display: inline-block;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--orange);
    transform: scale(1.025);
}

.logo-container {
    flex-shrink: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    color: var(--white);
    font-weight: 650;
    font-size: 20px;
}

.nav img {
    max-height: 30px;
    max-width: 30px;
}

.nav .btn-primary {
    flex-shrink:0;
    white-space:nowrap;
}

/* ================= BUTTONS ================= */
.btn-primary {
    background: var(--orange);
    color: var(--black);
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-width: 0px;
    transition: 0.2s ease;
}

.btn-secondary {
    border: 1px solid var(--black);
    border-radius: 6px;
    text-decoration: none;
    color: var(--black);
    transition: 0.2s ease;
}

#btn-black-font {color: var(--black); font-weight: bold;}

.btn-primary,
.btn-secondary {

    padding:
    clamp(8px,1vw,10px)
    clamp(12px,2vw,15px);

    font-size:
    clamp(.85rem,1.5vw,1rem);

}

.btn-primary:hover {
  transform: translateY(-3px);
}
.btn-secondary:hover {
  transform: scale(1.03);
}

/* ================= HERO ================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1200px;
    margin:auto;

    padding: clamp(50px, 8vw, 100px)
             clamp(20px, 6vw, 80px);

    gap: clamp(30px, 6vw, 80px);
}

.hero-left {
    flex: 1;
    min-width: 0;
}

.hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #111;
}

.hero-left p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-right {
    flex:1;
    max-width:550px;
    border-radius:12px;
}

.hero-right img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover; 
    display: block;
    /*  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);  */
    
}

.hero-left img {
    background-color: black;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

#banner {
    display: block;
    width: 100%;
    height: auto;
}

/* ================= PARAGRAPH TEXT ALIGNING ================= */

.section-header p,
.section-header2 p,
.trust-bar p,
.cta p,
footer p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ================= TRUST BAR ================= */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

.trust-bar p {
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: center;
}
/* ================= FEATURES ================= */
.features { 
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    padding:
    clamp(40px,6vw,80px)
    clamp(20px,5vw,60px);

    gap:
    clamp(15px,3vw,25px);
}

.feature {
    padding: 25px;
    border: 1px solid var(--light);
    border-radius: 10px;
    background: var(--light);
    transition: 0.2s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
}

.featureLink {
    text-decoration: none;
    color: inherit;
    display: flex;
}

.feature:hover {
    background-color: white;
    transform: scale(1.03);
}

.feature h3 {
    text-decoration: none;
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    background-color: var(--navy);
    color: white;
    padding: 12px;
}

.section-header2 {
    text-align: center;
    background-color: var(--orange);
    color: var(--white);
    padding: 12px;
}
/* ================= SCAM RESULTS ================= */

.scam-result {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.result-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 22px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--light);
}

.result-eyebrow,
.result-label {
    color: #667;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.result-top h2 {
    color: var(--navy);
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    line-height: 1.2;
}

#risk-score {
    color: var(--red);
}

.risk-badge {
    min-width: 120px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.risk-badge span {
    display: block;
    font-size: .72rem;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.risk-badge strong {
    color: var(--orange);
    font-size: 1.1rem;
}

.result-summary {
    padding: 22px;
    margin-bottom: 24px;
    border-radius: 12px;
    border-left: 5px solid var(--orange);
    background: var(--light);
}

.result-summary h3 {
    margin: 4px 0 18px;
    color: var(--navy);
    font-size: 1.35rem;
}

.result-summary p:last-child {
    margin-top: 5px;
    color: #333;
}

.result-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.result-section {
    padding: 22px;
    border: 1px solid var(--light);
    border-radius: 12px;
    background: var(--white);
}

.result-section h3 {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 1.1rem;
}

.result-section ul {
    padding-left: 20px;
}

.result-section li {
    margin-bottom: 9px;
    color: #333;
}

.result-section--warning {
    border-top: 5px solid var(--red);
}

.result-section--warning h3 {
    color: #b9403b;
}

.result-section--action {
    border-top: 5px solid var(--orange);
}

@media (max-width: 650px) {
    .result-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .result-details {
        grid-template-columns: 1fr;
    }

    .risk-badge {
        width: 100%;
    }
}
/* ================= SCAM ANALYZER ================= */

.analyzer-page {
    max-width: 95%;
    margin: auto;
    padding: 40px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.analyzer-header {
    background: var(--navy);
    border-radius: 2rem;
    padding: 15px 30px;
    margin: 30px auto;
    text-align: center;
}

.analyzer-header p {
    margin-left: auto;
    margin-right: auto;
}

#red-disclaimer-small {
    color: var(--red);
    font-size: 0.6rem;
}

.analyzer-page h2 {
    color: var(--orange);
    font-size: 2rem;
}

.analyzer-page p {
    color: var(--white);
    font-size: .9rem;
}

.input-card {
    display: grid;
}

.input-card textarea {
    height: 230px;
    margin-bottom: 30px;
    padding: 20px;

    border: none;
    border-radius: 10px;

    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, .3);
}

.input-card textarea:focus {
    outline: 2px dashed var(--orange);
    box-shadow: none;
}

.input-card h4 {
    color: var(--red);
}

.results-card {
    margin: 30px auto;
}

.results-card p {
    color: var(--black);
}

#scam-output {
    margin: 20px auto;
    padding: 20px 30px;

    background: var(--white);
    color: var(--black);

    border-radius: 10px;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, .3);
}

.results-card button {
    width: 100px;
    height: 30px;
    margin: 20px auto;

    border: none;
    border-radius: 6px;

    background: var(--orange);
    color: var(--black);

    font-size: clamp(.85rem, 1.5vw, 1rem);
    font-weight: bold;

    transition: .2s ease;
}

.results-card button:hover {
    transform: translateY(-3px);
}

.analyzer-page {
    width: 100%;
    max-width: 1200px;
}

.analyzer-header,
.input-card,
.results-card {
    width: min(100%, 900px);
}

.input-card textarea {
    width: 100%;
}

.input-card {
    width: min(100%, 900px);
    margin-left: auto;
    margin-right: auto;
}

#disclaimer {
    color: #333;
    text-align: center;
    margin: 0 auto;
    font-size: 0.7rem;
}
/* ================= SCAM LIBRARY ================= */
.library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 65px;
    padding: 20px;
}

.library-card {
    display: flex;
    flex-direction: column;
    min-height: 255px;
    padding: 28px;
    border: 1px solid var(--light);
    border-radius: 14px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .07);
    transition: .25s ease;
}

.library-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 14px 24px rgba(0, 0, 0, .13);
}

.library-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 10px;
    background: var(--light);
    font-size: 1.5rem;
}

.library-card h2 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.12rem;
    line-height: 1.3;
}

.library-card p {
    color: #444;
    font-size: .94rem;
    line-height: 1.65;
}

.library-link {
    margin-top: auto;
    padding-top: 18px;
    color: var(--navy);
    font-size: .9rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .library-intro {
        margin: 25px 15px 10px;
    }

    .library-grid {
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }
}
/* ================= HIDDEN ================= */

.hidden {
    display: none;
}

/* ================= STAT-LINE ================= */

.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 15px 4vw;
    gap: clamp(12px, 4vw, 80px);
    background: var(--navy);
    color: white;
    text-align: center;
}

.stat {
    flex: 1 1 180px;
    min-width: 0; /* Allows shrinking */
}

.stat h2 {
    color: var(--orange);
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    white-space: normal;
    overflow-wrap: break-word;
}

.stat p {
    font-size: clamp(0.75rem, 2vw, 1rem);
    white-space: normal;
    overflow-wrap: break-word;
}
/* ================= INFORMATION ================= */

.info1 {
    background-color: var(--navy);
    color: var(--white);

    border-radius: 30px;

    margin: 30px auto 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    max-width: 1000px;
    width: 90%;

    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);

    transition: 0.3s ease;
}

.info2 {
    background-color: var(--navy);
    color: var(--white);


    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    transition: 0.3s ease;
}

.info3 {
    background-color: var(--orange);
    color: var(--white);


    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    transition: 0.3s ease;
}

.info1,
.info2,
.info3 {

    padding:
        clamp(30px,5vw,60px)
        clamp(20px,4vw,40px);

    gap:
        clamp(20px,4vw,40px);

}

.info2-text,
.info1-text {
    display: flex;
    flex-direction: column;
    margin: auto;
}

.info2 h2,
.info1 h2 {
    color: var(--orange);
    font-size: 1.8rem;
    margin-bottom: 20px;
    max-width: 100%;
}

.info2 p,
.info1 p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 100%;
}

.info2 img,
.info1 img {
    width:
    clamp(180px,25vw,300px);
    height: auto;
    flex-shrink: 0;
    border-radius: 30px;
    transition: 0.3s ease;
}

.info2 img:hover,
.info1 img:hover {
    transform: scale(1.03);
}

.greyBackground {
    background-color: var(--white);
    padding: 3px;
}

/* ================= FEATURES SECTION ================= */


.features-section {
    padding:
    clamp(50px,8vw,100px)
    clamp(20px,5vw,60px);
}


.section-title {
    text-align:center;
    max-width:700px;
    margin: 0 auto 50px;
}


.section-title h2 {
    font-size:
    clamp(1.8rem,4vw,2.5rem);
    color:var(--navy);
    margin-bottom:15px;
}


.section-title p {
    color:#555;
    margin:auto;
}


.features-grid {

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

    max-width:1100px;

    margin:auto;

}



.feature-card {

    background:var(--light);

    padding:35px;

    border-radius:15px;

    text-align:center;

    transition:.25s ease;

}


.feature-card:hover {

    transform:translateY(-3px);

    background:white;

    box-shadow: 0 15px 25px rgba(0,0,0,.12);

}



.feature-icon {

    font-size:45px;

    margin-bottom:20px;

}


.feature-card h3 {

    color:var(--navy);

    margin-bottom:15px;

}


.feature-card p {

    color:#444;

    margin-bottom:20px;

}


.feature-card a {

    color:var(--navy);

    font-weight:bold;

    text-decoration:none;

}


.feature-card a:hover {

    color:var(--orange);

}

/* ================= PROCESS ================= */


.process {
    background:var(--light);
    color: white;
    padding:
    clamp(30px,8vw,50px)
    clamp(10px,5vw,30px);

}


.process .section-title h2 {
    color:var(--navy);
}


.process .section-title p {
   color: var(--black);
}


.steps {

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    max-width:1000px;

    margin:auto;

    background-color: var(--navy);
    border-radius: 30px;
    padding:
    clamp(10px,5vw,30px);

}


.step {

    text-align:center;

}


.step span {

    display:flex;

    align-items:center;

    justify-content:center;


    width:55px;

    height:55px;

    margin:
    0 auto 20px;


    border-radius:50%;


    background:var(--orange);

    color:black;

    font-size:24px;

    font-weight:bold;

}


.step h3 {

    margin-bottom:10px;

}


.step p {

    color:#ddd;

    margin:auto;

}

/* ================= SIGN-UP-FORM ================= */

.newsletter{
    padding:80px 20px;
    background: white;
}

.newsletter-form{
    max-width:900px;
    margin:40px auto 0;
    background:white;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.19);
}

.newsletter iframe{
    border:none;
    border-radius:12px;
}

/* ================= TRIPLE-BANNER ================= */

.triple-banner {
    margin-top: 20px;
    padding: 40px 60px;
    text-align: center;
    background-color: var(--navy);
}

.triple-banner h2 {
    color: var(--orange);
    font-size: 1.8rem;
    margin: 12px auto;
}
.banner-grid {
    display: grid;
    grid-template-columns:
    repeat(auto-fit,minmax(240px,1fr));

    gap:
    clamp(15px,3vw,25px);

    max-width: 90%;
    margin: 0 auto;
}

.banner-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    transition: .25s ease;
    border: 3px solid var(--orange);
    border-top: 7px solid var(--orange);
}

.banner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0,0,0,.15);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.banner-card h3 {
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 15px;
}

.banner-card p {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
}

/* ================= DETAIL-BAR ================= */
details {
    border: 1px solid var(--black);
    border-radius: 12px;
    padding: 18px 24px;
    margin: 20px auto;
    background-color: var(--navy);
    color: var(--white);
    max-width: 95%;
}

summary {
    font-size: 1.5rem;
    font-weight: 600;
    list-style: none;
    text-align: center;
    cursor: pointer;
}

summary::after {
    content: " +";
    font-size: 28px;
}

details[open] summary::after {
    content: " −";
}

.content {
    margin-top: 20px;
    border-top: 1px solid var(--black);
    padding-top: 20px;
}
/* ================= BODY-CONTENT ================= */

.bodyContentBox {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.text-box,
.content-box {
    flex: 1;
    border-radius: 12px;

    padding:
        clamp(25px,5vw,60px)
        clamp(20px,4vw,40px);

    margin:
        clamp(10px,3vw,50px);

    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    background: var(--light);
    transition: 0.3s ease;
}

.text-box:hover,
.content-box:hover {
    transform: scale(1.03);
}

.text-box {
    color: #FF0000;
    border-left: 4px solid var(--red);
    font-size: 18px;
    line-height: 1.8;
    max-width: 100%;
}

.text-box h2 {
    margin-bottom: 30px;
    text-align: center;
}

.content-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box img {
    max-width: 100%;
    border-radius: 8px;
}

/* ================= ADVERTISEMENT ================= */

.advert {
    background-color: var(--light);
    color: var(--black);

    padding: 100px 60px;
    margin: 30px auto;

    text-align: center;

    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

.advert p {
    margin: 15px auto;
    line-height: 30px;
}

.advert button {
    background: var(--orange);
    color: var(--black);
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-width: 0px;
    transition: 0.2s ease;
}

.advert button:hover {
  transform: scale(1.03);
}

.form {
    background-color: var(--light);
}

/* ================= ALERTS ================= */

.alerts-preview {

    padding:
    clamp(50px,8vw,100px)
    clamp(20px,5vw,60px);

}

.alert-grid {

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    max-width:1000px;

    margin:auto;

}

.alert-card {
    background:var(--navy);
    color:white;

    padding:35px;
    border-radius:15px;
    transition: 0.25s ease;
}

.alert-card:hover {
    transform: scale(1.025);
}

.alert-card h3 {
    color:var(--orange);

    margin-bottom:15px;
}

.alert-card p {
    color:white;

    margin-bottom:20px;
}

.alert-card a {
    color:white;

    font-weight:bold;

    text-decoration:none;
}

.alert-card a:hover {
    color:var(--orange);
}

/* ================= CTA ================= */
.cta {
    text-align: center;
    padding: 100px 40px;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* ================= FOOTER ================= */
footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid var(--light);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .features {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .nav nav {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .info1 {
        flex-direction: column;
        padding: 40px 20px;
    }

    .info1 h2 {
        font-size: 1.8rem;
        max-width: 100%;
    }
    .info1 p {
        font-size: 1rem;
        max-width: 100%;
    }

    .info1 img {
        max-width: 80%;
        margin-top: 20px;
    }
}

html, body {
    overflow-x: hidden;
}

@media (max-width: 768px) {

    .bodyContentBox {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .text-box,
    .content-box {
        margin: 20px 10px;
        padding: 35px 25px;
        width: auto;
    }

    .text-box h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .text-box li {
        font-size: 16px;
        line-height: 1.5;
    }

    .content-box {
        min-height: auto;
    }

    .content-box img {
        max-width: 100%;
        height: auto;
    }

    .text-box:hover,
    .content-box:hover {
        transform: none;
    }
}

@media (max-width: 768px) {

    .stats {
        gap: 25px;
        padding: 25px 15px;
    }

    .stat h2 {
        font-size: 1.8rem;
    }

    .stat p {
        font-size: 0.9rem;
    }
}

@media (max-width:768px){

    .hero {

        flex-direction:column;

        align-items:center;

        text-align:center;

        padding:
        50px 20px;

        gap:35px;

    }


    .hero-left {

        width:100%;

        max-width:500px;

    }


    .hero-left h1 {

        font-size:
        clamp(2rem,8vw,3rem);

        margin-bottom:20px;

    }


    .hero-left p {

        font-size:1rem;

        margin:
        0 auto 30px;

    }


    .hero-actions {

        justify-content:center;

        flex-wrap:wrap;

        gap:12px;

    }


    .hero-right {
        flex:1;
        max-width:550px;
        border-radius:12px;
    }


    .hero-right img {

        width:100%;

        height:auto;

        border-radius:25px;

    }

}