@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body,
main,
section,
.brz-container,
.flex-row {
    overflow-x: clip;
}

body {
    font-family: "Open Sans", system-ui, -apple-system, sans-serif;
    background-color: #fff;
    color: #1C1C1C;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

.brz-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-50 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-100 {
    flex: 0 0 100%;
    max-width: 100%;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

input[type="email"] {
    width: 100%;
    max-width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

input[type="submit"] {
    width: 100%;
    max-width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    background-color: #ff8000;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
}

input[type="submit"]:hover {
    background-color: #e67300;
}

.section {
    padding: 60px 0;
    position: relative;
}

.section-dark {
    background-color: #2f2f2f;
    color: #fff;
}

.section-pdf-report {
    background-color: #fff;
}

.bg-light-gray {
    background-color: #f8f8f8;
}

.bg-white-smoke {
    background-color: #f5f5f5;
}

.section-cta-light {
    background-color: #eef2f5;
    padding: 50px 0;
}

.section-hero {
    padding-top: 20px;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.3;
}

.heading-oswald {
    font-family: "Montserrat", "Open Sans", system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.color-primary {
    color: #7ab3d5;
}

.color-dark {
    color: #1C1C1C;
}

.color-white {
    color: #fff;
}

.fs-60 { font-size: 60px; }
.fs-47 { font-size: 47px; }
.fs-45 { font-size: 45px; }
.fs-40 { font-size: 40px; }
.fs-35 { font-size: 35px; }
.fs-28 { font-size: 28px; }
.fs-25 { font-size: 25px; }
.fs-23 { font-size: 23px; }
.fs-22 { font-size: 22px; }
.fs-21 { font-size: 21px; }
.fs-20 { font-size: 20px; }
.fs-18 { font-size: 18px; }
.fs-16 { font-size: 16px; }
.fs-14 { font-size: 14px; }

.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.fw-400 { font-weight: 400; }
.fw-300 { font-weight: 300; }

.lh-13 { line-height: 1.3; }
.lh-15 { line-height: 1.5; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.pt-30 { padding-top: 30px; }

.card-box {
    background: linear-gradient(90deg, rgba(49, 49, 49, 1) 0%, rgba(4, 6, 4, 0.48) 100%);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 20px 30px -9px rgba(28, 28, 28, 0.6);
    margin: 20px 0;
}

.card-box-light {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-box-cta {
    background: rgba(49, 49, 49, 0.9);
    color: white;
    max-width: 800px;
    margin: 20px auto;
}

.list-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.list-icon-mark {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(180deg, #0073b7 0%, #4db3f0 89%);
    padding: 6px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cta-benefits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.cta-benefit-icon {
    color: #228b22;
}

.cta-form-panel {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
}

.story-heading {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.35;
    color: #7ab3d5;
}

.cta-download-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.35;
    color: #1c1c1c;
}

.header-ad-badge {
    flex-shrink: 0;
    margin: 0;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
    background-color: #e0e0e0;
    border-radius: 3px;
    white-space: nowrap;
}

.cta-note-muted {
    color: #666;
    margin-top: 10px;
}

.cta-note-dark {
    color: #444;
}

.cta-list {
    list-style: none;
    margin-bottom: 20px;
}

.cta-list li {
    margin-bottom: 8px;
}

.cta-list-icon {
    color: #4db3f0;
    margin-right: 6px;
}

.footer-link {
    color: #bebebe;
    text-decoration: none;
    font-size: 14px;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    background-color: #292929;
    padding: 15px;
    text-align: center;
    font-size: 13px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.footer-bottom-inner {
    color: #bebebe;
}

.footer-sep {
    color: #bebebe;
}

.footer-copy {
    margin-top: 10px;
    color: #bebebe;
    font-size: 13px;
}

.site-footer {
    background-color: #2f2f2f;
    padding: 30px 0;
    color: #bebebe;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.site-footer .flex-row,
.footer-bottom .flex-row {
    margin-left: 0;
    margin-right: 0;
}

.site-footer .col-50 {
    padding-left: 0;
    padding-right: 0;
}

.footer-heading {
    color: #bebebe;
}

.site-logo-section {
    padding: 20px 0;
    background: #f0f0f0;
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.site-logo-wrap {
    display: flex;
    justify-content: flex-start;
    flex: 1;
    min-width: 0;
}

.site-logo-img {
    max-width: min(260px, 55vw);
    height: auto;
    display: block;
}

.hero-intro {
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.hero-form-row {
    margin-top: 30px;
    align-items: center;
}

.align-center-row {
    align-items: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.img-cover-main {
    max-width: 280px;
}

.img-cover-cta {
    max-width: 260px;
}

.img-cover-small {
    max-width: 180px;
}

.img-author {
    border-radius: 54px;
    max-width: 260px;
    width: 100%;
}

.divider {
    width: 11%;
    height: 2px;
    background-color: #79b1dd;
    margin: 15px 0 25px 0;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.author-box {
    border-radius: 10px;
    background: #fff;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

html {
    height: 100%;
}

body.legal-page {
    font-size: 17px;
    line-height: 1.6;
    min-height: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

body.legal-page .legal-main {
    flex: 1 0 auto;
}

body.legal-page .site-footer,
body.legal-page .footer-bottom {
    flex-shrink: 0;
}

.legal-main {
    padding: 50px 0 60px;
    background: #fff;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    word-break: break-word;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1c1c1c;
}

.legal-content p {
    margin-bottom: 18px;
}

.legal-content b {
    font-weight: 700;
}

.legal-content a {
    color: #1c1c1c;
}

@media (max-width: 992px) {
    .flex-row {
        margin-left: 0;
        margin-right: 0;
    }

    .col-50 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .fs-60 {
        font-size: 45px;
    }

    .fs-47 {
        font-size: 38px;
    }

    .fs-45 {
        font-size: 36px;
    }

    .section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .fs-60 {
        font-size: 36px;
    }

    .fs-47 {
        font-size: 32px;
    }

    .site-footer .brz-container,
    .footer-bottom .brz-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 640px) {
    .site-logo-img,
    .footer-bottom-inner {
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    .brz-container {
        padding: 0 12px;
    }

    .section {
        padding: 32px 0;
    }

    .section-cta-light {
        padding: 32px 0;
    }

    .story-heading {
        font-size: 20px;
    }

    .cta-download-title {
        font-size: 20px;
    }

    .site-footer .brz-container,
    .footer-bottom .brz-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .footer-bottom {
        padding-left: 12px;
        padding-right: 12px;
    }

    .card-box {
        padding: 20px 16px;
    }

    .legal-main {
        padding: 32px 0;
    }

    .legal-content h1 {
        font-size: 28px;
    }

    .site-footer {
        padding: 24px 0;
    }

    input[type="email"],
    input[type="submit"] {
        font-size: 15px;
        padding: 11px 14px;
    }
}
