/* ──────────────────────────────────────────────────────────
   Section: Font Faces
────────────────────────────────────────────────────────── */
@font-face {
    font-family: 'Chaney';
    src: url('fonts/chaney-regular-webfont.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chaney';
    src: url('fonts/chaney-extended-webfont.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'n27';
    src: url('fonts/n27-regular-webfont.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* ──────────────────────────────────────────────────────────
   Section: CSS Variables
────────────────────────────────────────────────────────── */
:root {
    --primary-color:   #3373DB;
    --secondary-color: #2B2B38;
    --text-color:      #000000;
    --border-radius:   20px;
}


/* ──────────────────────────────────────────────────────────
   Section: Reset & Base Styles
────────────────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "n27", sans-serif;
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-color);
    background: white url('images/background.svg') no-repeat top center;
    background-size: contain;
}


/* ──────────────────────────────────────────────────────────
   Section: Layout Utilities
────────────────────────────────────────────────────────── */
.innerwidth {
    max-width: 1400px;
    margin: 0 auto;
}

.two-columns {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}


/* ──────────────────────────────────────────────────────────
   Section: Typography
────────────────────────────────────────────────────────── */
.topline {
    display: block;
    font-family: "Chaney", sans-serif;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
}

h1,
h2 {
    font-family: "Chaney", sans-serif;
    font-size: 2em;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

p {
    font-size: 1em;
    line-height: 1.5;
}


/* ──────────────────────────────────────────────────────────
   Section: Logo Placeholder
────────────────────────────────────────────────────────── */
.logo {
    width: 298px;
    height: 146px;
    margin-bottom: 80px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* ──────────────────────────────────────────────────────────
   Section: Hero
────────────────────────────────────────────────────────── */
/* .abovethefold {
  background: red;
  min-height: 100vh;
} */

.hero {
    padding: 70px 20px;
}

.hero .hero-content {
    max-width: 900px;
}


/* ──────────────────────────────────────────────────────────
   Section: Banner
────────────────────────────────────────────────────────── */
.banner {
    padding: 60px 20px;
    width: calc(100% - 40px);
    margin: 0 auto 20px auto;
    text-align: center;
    border-radius: var(--border-radius);
}

.banner.white {
    background: #ffffff;
    color: var(--text-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.banner.blue {
    background: var(--primary-color);
    color: #ffffff;
}


/* ──────────────────────────────────────────────────────────
   Section: Buttons
────────────────────────────────────────────────────────── */
a.btn {
    margin-top: 1rem;
    padding: 0.75rem 4.5rem;
    border: none;
    border-radius: 1000px;
    background: var(--primary-color);
    color: #ffffff;
    cursor: pointer;
    font-family: "Chaney", sans-serif;
    font-size: 1.2em;
    text-decoration: none;
}

.banner.blue a.btn {
    background: #ffffff;
    color: var(--text-color);
}

a.btn:hover,
.banner.blue a.btn:hover {
    background: var(--secondary-color);
    color: #ffffff;
}

#ctctwrp3 a.btn {
    margin-top: initial;
    padding: initial;
    border: initial;
    border-radius: initial;
    background: initial;
    color: initial;
    font-family: initial;
    font-size: inherit;
    text-decoration: initial;
}


/* ──────────────────────────────────────────────────────────
   Section: Features
────────────────────────────────────────────────────────── */
.features {
    background: var(--secondary-color);
    color: #ffffff;
    padding: 100px 20px;
    width: calc(100% - 40px);
    margin: 0 auto 20px auto;
    border-radius: var(--border-radius);
}

.features .topline {
    color: #ffffff;
}

.features h2,
.features p {
    max-width: 900px;
}

.features .icons {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 3em 0 2em;
}

.features .icon-item {
    position: relative;
    margin: 0.5rem;
    text-align: center;
}

.features .icon-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.features .icon-item::after {
    content: "";
    position: absolute;
    top: -10px;
    left: calc(50% - 40px);
    width: 120px;
    height: 120px;
    background: url('images/blob-small.svg') no-repeat center center;
    background-size: contain;
    z-index: 1;
}

.features .icon-item span {
    display: block;
    font-family: "Chaney", sans-serif;
    margin-top: 0.5rem;
}


/* ──────────────────────────────────────────────────────────
   Section: Logo Bar
────────────────────────────────────────────────────────── */
.logo-bar {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}


/* ──────────────────────────────────────────────────────────
   Section: Logo Slider
────────────────────────────────────────────────────────── */
.customer-logos-wrap {
    background: white;
    position: relative;
}

.customer-logos-wrap .logo-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.customer-logos-wrap .logo-slider-wrap {
    display: flex;
    gap: 50px;
    overflow-x: scroll;
    flex-wrap: nowrap;
    width: auto;
    scrollbar-width: none;
}

.customer-logos-wrap .logo-slider-wrap::-webkit-scrollbar {
    display: none;
}

.logo-item {
    flex: 0 0 auto;
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    transition: 0.3s;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    mix-blend-mode: multiply;
    transition: mix-blend-mode 0s, opacity 0.3s ease;
}

.customer-logos-wrap .gradient-left,
.customer-logos-wrap .gradient-right {
    position: absolute;
    top: 0;
    width: calc(4vw * 1.5 * 1.5);
    height: 100%;
    z-index: 9;
    box-sizing: border-box;
}

.customer-logos-wrap .gradient-left {
    left: calc(50% - 50vw);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 20%,
        rgba(255, 255, 255, 0) 100%
    );
}

.customer-logos-wrap .gradient-right {
    right: calc(50% - 50vw);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 80%,
        rgba(255, 255, 255, 1) 100%
    );
}


/* ──────────────────────────────────────────────────────────
   Section: Quote
────────────────────────────────────────────────────────── */
.quote-section {
    padding: 80px 20px;
    background: #fff;
}

.quote-section .topline,
.quote-section h2 {
    text-align: center;
    margin: 0 auto;
}

.quote-section .photo {
    width: 50%;
    text-align: center;
}

.quote-section .photo img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 8px;
}

.quote-section .quote {
    width: 50%;
}

.quote blockquote {
    position: relative;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.quote blockquote::before {
    content: "";
    display: block;
    width: 46px;
    height: 47px;
    background: url('images/quote.svg') no-repeat center center;
    background-size: contain;
    margin: 0 0 5px 3px;
}

.quote .author {
    position: relative;
    padding-left: 50px;
    font-family: "Chaney", sans-serif;
    font-size: 0.8em;
    font-weight: 400;
    line-height: 1.2;
}

.quote .author::before {
    content: "";
    position: absolute;
    top: 0;
    left: 3px;
    width: 31px;
    height: 23px;
    border-left: 3px solid #000;
    border-bottom: 3px solid #000;
}


/* ──────────────────────────────────────────────────────────
   Section: Footer
────────────────────────────────────────────────────────── */
.footer {
    padding: 70px 20px 50px;
    width: calc(100% - 40px);
    margin: 0 auto 20px auto;
    background: var(--secondary-color);
    color: #ffffff;
    border-radius: var(--border-radius);
}

.footer img {
    width: 175px;
    height: auto;
    margin-bottom: 1em;
}

.footer .description {
    max-width: 900px;
    margin-bottom: 2em;
    font-family: "Chaney", sans-serif;
    font-size: 1.2em;
    line-height: 1.2;
}

.footer .two-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer nav {
    display: flex;
    gap: 1em;
}

.footer nav a,
.footer .copyright {
    font-size: 0.8em;
    color: #fff;
    text-decoration: none;
}

.footer nav a:hover {
    text-decoration: underline;
}


/* ──────────────────────────────────────────────────────────
   Section: Responsive Overrides (max-width: 1100px)
────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  /* Features Icons Layout */
    .features .icons {
        margin: 2em 0;
        flex-wrap: wrap;
        gap: 10px;
        row-gap: 30px;
    }

    .features .icon-item {
        margin: 0;
        width: calc(33% - 6px);
    }
}

/* ──────────────────────────────────────────────────────────
   Section: Responsive Overrides (max-width: 768px)
────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Body */
    body {
        background: #ffffff url('images/background-mobile.svg') no-repeat top center;
        background-size: contain;
        font-size: 18px;
        line-height: 1.5;
    }

    /* Section: Hero */
    .hero {
        padding: 50px 20px;
    }

    /* Logo Placeholder */
    .logo {
        width: 147px;
        height: 73px;
        margin-bottom: 45px;
    }

    /* Typography */
    h1,
    h2 {
        font-size: 1.4em;
    }

    /* Banner & Features Padding */
    .banner,
    .features {
        padding: 50px 20px;
    }

    .features .icon-item img {
        width: 46px;
        height: 52px;
    }

    .features .icon-item::after {
        left: calc(50% - 32px);
        width: 66px;
        height: 70px;
        top: -6px;
    }

    .features .icon-item span {
        font-size: 0.7em;
    }

    /* Logo Bar */
    .logo-bar {
        padding: 50px 0;
    }

    a.btn {
    padding: 0.75rem 2.5rem;
    }

    /* Logo Slider */
    .customer-logos-wrap .logo-slider {
        margin-top: 0;
    }

    .customer-logos-wrap .logo-slider-wrap {
        gap: 10px;
    }

    .logo-item {
        width: 150px;
        height: 60px;
    }

    /* Quote Section */
    .quote-section {
        padding: 50px 20px;
    }

    .two-columns {
        flex-direction: column;
    }

    .quote-section .photo {
        width: 100%;
    }

    .quote-section .photo img {
        max-width: 240px;
    }

    .quote-section .quote {
        width: 100%;
    }

    .quote blockquote {
        font-size: 1.5em;
    }

    /* Footer */
    .footer {
        padding: 40px 20px 30px 20px;
    }

    .footer .two-columns {
        align-items: flex-start;
    }
}
