/* Theme Name: Trust On LP1 Version: 1.0 */


/* ========= Tokens ========= */
:root {
    --max: 1387px;
    --radius-full: 50px;
    --radius-card: 8px;
    /* Padding */
    --padding-x-mob-container: 18px;
    --padding-card-x: 16px;
    --padding-card-y: clamp(12px, 2.5vw, 24px);
    --padding-btn-x: clamp(12px, 2.5vw, 18px);
    --padding-btn-y: clamp(14px, 2.5vw, 16px);
    --padding-section-y: clamp(35px, 2.5vw, 60px);
    --padding-list-y: clamp(18px, 2.5vw, 32px);
    --padding-list-left: clamp(18px, 2.5vw, 32px);
    --padding-list-right: 18px;
    /* Spacing */
    --gap-section: clamp(18px, 2.5vw, 24px);
    --gap-hero: clamp(12px, 2.5vw, 16px);
    --gap-card: clamp(6px, 2.5vw, 12px);
    --gap-list: 10px;
    /* Colors */
    --color-dark-blue: #1A0477;
    --color-blue: #03A5FF;
    --color-light-blue: #CCEDFF;
    --color-white: #FFFFFF;
    --color-dark-grey: #161616;
    --color-grey: #666666;
    --color-red: #D20000;
    /* Typography */
    --h1: clamp(32px, 4vw, 60px);
    --h2: clamp(28px, 3vw, 48px);
    --h3: clamp(24px, 3vw, 36px);
    --h4: clamp(18px, 3vw, 28px);
    --subtitle: clamp(20px, 3vw, 36px);
    --text-lg: clamp(12px, 3vw, 18px);
    --text-md: clamp(12px, 3vw, 16px);
    --text-sm: 12px;
    --text-numeric: clamp(24px, 3vw, 36px);
    --font-semibold: 600;
    --font-inter: "Inter", sans-serif;
    --line-height: 110%;
    /* Borders & Shadows */
    --border-blue: 1px solid var(--color-blue);
    --border-red: 1px solid var(--color-red);
    --box-shadow: 0 4px 80px 0 rgba(3, 165, 255, 0.10);
    /* Gradients */
    --gradient-blue: linear-gradient(90deg, rgba(212, 218, 255, 0.50) -0.21%, rgba(220, 235, 255, 0.50) 50.05%, rgba(141, 214, 255, 0.50) 100.31%);
}

/* ========= Base ========= */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
    margin: 0;
    background: var(--color-white);
    font-family: var(--font-inter);
    color: var(--color-grey);
}

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

a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: none;
    outline-offset: 0;
}

h1 {
    margin: 0;
    font-size: var(--h1);
    font-weight: var(--font-semibold);
    color: var(--color-dark-grey);
    font-family: var(--font-inter);
    line-height: var(--line-height);
}

h2 {
    margin: 0;
    font-size: var(--h2);
    font-weight: var(--font-semibold);
    color: var(--color-dark-grey);
    font-family: var(--font-inter);
    line-height: var(--line-height);
}

.subtitle {
    margin: 0;
    font-size: var(--subtitle);
    font-weight: var(--font-semibold);
    color: var(--color-dark-grey);
    font-family: var(--font-inter);
    line-height: var(--line-height);
}

p {
    margin: 0;
    font-size: var(--text-lg);
    font-family: var(--font-inter);
    color: var(--color-grey);
    line-height: var(--line-height);
}

h1 span,
h2 span,
h3 span,
h4 span {
    color: var(--color-blue);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    font-size: var(--text-lg);
    font-family: var(--font-inter);
    color: var(--color-dark-grey);
    line-height: var(--line-height);
}

section {
    padding: var(--padding-section-y) 0;
    position: relative;
    z-index: 2;
}

section:first-of-type {
    padding-top: 0;
}

/* ========= Layout ========= */
.container {
    max-width: var(--max);
    margin-inline: auto;
    padding: 0 var(--padding-x-mob-container);
}

/* ========= Header ========= */
.header {
    width: 100%;
    background-color: var(--color-white);
    padding: 25px 0;
}

.header .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.header .logo img {
    width: 150px;
}

/* ========= Card ========= */

.cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(339px, 454px));
    place-content: center;
    gap: var(--gap-card);
}

.card {
    font-family: var(--font-inter);
    font-size: var(--text-md);
    background: var(--color-white);
    padding: var(--padding-card-y) var(--padding-card-x);
    display: flex;
    align-items: center;
    gap: 16px;
    border: var(--border-blue);
    border-radius: var(--radius-card);
    -webkit-border-radius: var(--radius-card);
    -moz-border-radius: var(--radius-card);
    -ms-border-radius: var(--radius-card);
    -o-border-radius: var(--radius-card);
}

.card img {
    width: 60px;
    aspect-ratio: 1/1;
}

.card p {
    font-family: var(--font-inter);
    font-size: var(--text-md);
}

/* ========= Hero Section ========= */

.hero .container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
}

.hero .description {
    margin: var(--gap-hero) 0;
}

.hero img {
    width:100%;
    max-width: 616px;
    height: auto;
}

/* ========= Benefits & How It Works ========= */
.how-it-works {
    padding-top: 0px;
    padding-bottom: 70px;
}

.benefits .container,
.how-it-works .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--gap-section);
}

.benefits h2>span {
    color: inherit;
    white-space: nowrap;
}

/* ======== business-losses & solutions ======== */
.solutions {
    position: relative;
    padding: 0;
    margin: 35px 0;
    background: var(--color-white);
    filter: drop-shadow(0 4px 80px rgba(3, 165, 255, 0.10));
    position: relative;
    z-index: 2;
}

.business-losses .container,
.solutions .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.solutions .container {
    padding: 50px 0;
}

.solutions-right .accent {
    margin-top: 18px;
}

.solutions-background {
    position: relative;
    width: 100%;
    overflow: visible;
    z-index: 0;
}

.solutions-background .bg-left,
.solutions-background .bg-right {
    position: absolute;
    pointer-events: none;
    user-select: none;
    height: auto;
    max-width: 40vw;
}

.solutions-background .bg-left {
    left: 0;
    bottom: -60px;
    transform: translate(-8%, 8%);
    z-index: 0;
}

.solutions-background .bg-right {
    right: 0;
    top: -60px;
    transform: translate(8%, -8%);
    z-index: 0;
}

/* ========= List Success & List Danger ========= */
.list-rows {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.list-rows.danger {
    margin-top: 18px;
    border: var(--border-red);
    padding: var(--padding-list-y) var(--padding-list-left) var(--padding-list-right);
    border-radius: var(--radius-card);
    -webkit-border-radius: var(--radius-card);
    -moz-border-radius: var(--radius-card);
    -ms-border-radius: var(--radius-card);
    -o-border-radius: var(--radius-card);
}

.list-rows.success {
    margin-top: 24px;
}

.list-rows li {
    display: inline-flex;
    text-align: start;
    gap: 16px;
}

/* ========= Final CTA ========= */
.final-cta {
    background: var(--gradient-blue);
    padding: 50px 0;
}

.final-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.final-cta p {
    padding: 12px 0 24px;
}

/* ========= Footer ========= */
.footer .container {
    padding-top: 36px;
    padding-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer__top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
}

.footer__left {
    order: 1;
    flex: 0 0 100%;
    width: 100%;
}

.footer__bottom {
    display: flex;
    align-items: start;
    text-align: start;
}

.footer__copyright {
    font-size: var(--text-sm);
}

.footer__right a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    white-space: nowrap;
}

/* ========= Buttons ========= */
.accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-md);
    font-weight: var(--font-semibold);
    color: var(--color-white);
    font-family: var(--font-inter);
    padding: 14px 60px;
    border-radius: var(--radius-full);
    background: var(--color-blue);
    -webkit-border-radius: var(--radius-full);
    -moz-border-radius: var(--radius-full);
    -ms-border-radius: var(--radius-full);
    -o-border-radius: var(--radius-full);
}

.accent:hover {
    background: var(--color-dark-blue);
}

/* ========= Responsive ========= */

.mobile {
    display: block;
}

.desktop {
    display: none;
}

@media (min-width: 768px) {
    .hero {
        margin-top: -50px;
    }
   

    .container {
        padding: 0 0;
    }

    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .accent {
        width: auto;
    }

    .header .logo img {
        width: 200px;
    }

    .hero .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 60px;
    }

    .solutions {
        margin: 70px 0;
    }

    .business-losses .container,
    .solutions .container {
        flex-direction: row;
    }

    .solutions .container {
        padding: 60px 0;
    }

    .solutions-background .bg-left {
        bottom: -120px;
    }

    .solutions-background .bg-right {
        top: -120px;
    }

    .list-rows.danger {
        margin-top: 0;
    }

    .list-rows.success {
        margin-top: 0;
    }

    .how-it-works {
        padding-top: 0px;
        padding-bottom: 120px;
    }

    .final-cta {
        padding: 120px 0;
    }

    .footer__socials {
        margin-top: 20px;
    }

    .footer__left,
    .footer__center,
    .footer__right {
        flex: 1;
    }

    .accent {
        padding: 16px 60px;
    }

    .desktop {
        display: block;
    }

    .mobile {
        display: none;
    }

    h4 {
        font-weight: var(--font-semibold);
    }

}

@media (min-width: 1024px) {
    .hero img {
    width: initial;
       }
}