/* ── Base Reset (no framework dependency) ───────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background: transparent !important;
}

body {
    margin: 0 !important;
    padding: 0;
    overflow-x: hidden;
    background: transparent !important;
}

a {
    text-decoration: none;
}

.text-center {
    text-align: center;
}

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
    --site-font-family: 'Helvetica Neue', sans-serif;
    --site-primary-color: #2DC876;
    --site-secondary-color: #2DC876;
    --site-primary-btn-color: #2DC876;
    --site-primary-btn-hover-color: #2dc875e0;
    --site-text-color: #516478;
    --site-head-color: #000000;
    --site-text-color-alt: #9A9A9A;
    --site-background: #fff;
    --site-font-size: clamp(16px, 1.8vw, 18px);
    --site-border-radius: clamp(8px, 1vw, 10px);
    --site-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.06);
    --global-content-width: 1200px;
    --global-lg-content-width: 1400px;
    --global-content-edge-padding: 20px;
}

/* ── Base ───────────────────────────────────────────────────── */
#page-wrapper {
    font-family: var(--site-font-family);
    font-size: var(--site-font-size);
    font-weight: 500;
    background: #fff;
    line-height: 1;
    color: var(--site-text-color);
}

#page-wrapper p {
    line-height: 1.3;
    color: var(--site-text-color);
}

#page-wrapper h1,
#page-wrapper h2 {
    color: var(--site-head-color);
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.02em;
}

#mortgage-rate-quote-header {
    color: #fff !important;
}

#nav-phone-header {
    display: flex;
    gap: 15px;
}

#page-wrapper h3,
#page-wrapper h4 {
    color: var(--site-head-color);
    font-weight: 500;
    font-family: var(--site-font-family);
}

#page-wrapper h1 {
    font-size: clamp(50px, 5.7vw, 90px);
    line-height: 1.2;
    margin-block: 0 8px;
}

#page-wrapper h2 {
    font-size: clamp(32px, 5vw, 60px);
    color: #000;
    line-height: 1.2;
    margin-block: 0 0.5rem;
}

#page-wrapper h2 sup {
    font-size: 0.66em;
}

#page-wrapper h3 {
    line-height: 1.2;
    margin: 0 0 0.5em;
    font-size: clamp(22px, 2.8vw, 24px);
}

#page-wrapper h4 {
    font-size: clamp(20px, 2.5vw, 22px);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

#page-wrapper img {
    max-width: 100%;
}

#page-wrapper ul {
    list-style: none !important;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    font-size: clamp(20px, 1.5vw, 24px);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0;
    font-weight: 400;
    border: 0;
    padding: 17px clamp(20px, 2.5vw, 28px) 13px;
    border-radius: var(--site-border-radius);
    text-decoration: none !important;
    display: inline-flex;
    gap: 10px;
    line-height: 1;
    min-height: auto;
    position: relative;
    overflow: hidden;
    justify-content: center;
    cursor: pointer;
    min-width: 128px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
}

.btn:before {
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: buttonshimmer 3s infinite;
    content: "";
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: auto;
}

@keyframes buttonshimmer {
    0% {
        transform: translateX(-100%) rotate(-45deg);
        opacity: 1;
    }
    100% {
        transform: translateX(100%) rotate(-45deg);
        opacity: 0;
    }
}

.btn:hover:before {
    animation: none;
}

.btn.btn-primary {
    background: var(--site-primary-btn-color);
    border-color: var(--site-primary-btn-color);
    color: #fff;
}

.btn.btn-primary:hover {
    color: #fff !important;
    background: var(--site-primary-btn-hover-color);
    border-color: var(--site-primary-btn-hover-color);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--site-primary-btn-color);
}

.btn.btn-secondary:hover {
    background: var(--site-primary-btn-color) !important;
    color: #fff !important;
    border-color: var(--site-primary-btn-color) !important;
}

.btn.btn-tertiary {
    background: #3180F5;
    color: #fff;
    border-color: transparent;
}

.btn.btn-tertiary:before {
    background: linear-gradient(45deg, transparent, rgba(140, 140, 140, 0.3), transparent) !important;
}

.btn.btn-tertiary:hover {
    color: #fff !important;
    background: #317ff5df;
    border-color: #317ff5df;
}

/* ── Layout utilities ───────────────────────────────────────── */
.mx-container {
    max-width: calc(var(--global-content-width) + 40px);
    width: 100%;
    margin-inline: auto;
    padding-inline: 20px;
    position: relative;
}

.mx-container-lg {
    max-width: calc(var(--global-lg-content-width) + 40px);
    width: 100%;
    margin-inline: auto;
    padding-inline: 20px;
    position: relative;
}

.flex {
    display: flex;
    align-items: center;
    gap: 6px;
}

.flex-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(36px, 6vw, 52px);
}

.flex > div, .flex-col > div {
    flex: 1;
}

.grid-col {
    display: grid;
    align-items: center;
    grid-template-columns: var(--col-left-unit, 1fr) var(--col-right-unit, 1fr);
    gap: 30px;
}

.btn-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 20px;
}

.site-section {
    padding-block: clamp(2.8rem, 6.5vw, 6.4rem);
}

.highlight {
    color: var(--site-primary-color);
}

.text-sm {
    font-size: 12px;
}

.text-sm-alt {
    font-size: 14px;
    font-weight: 500;
}

.text-md {
    font-size: 16px;
}

.my {
    margin-block: 1rem;
}

.cta-my {
    color: #fff !important;
}

/* Tag */
.tag {
    background: #D8E8FF;
    padding: 10px 32px 9px;
    border-radius: 40px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    color: #545454 !important;
    line-height: 20px;
}

/* Privacy text */
.privacy-text {
    margin-top: 12px;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 100;
    padding-block: 12px;
    transition: 0.4s;
    background: transparent;
}

.site-header.sticky {
    position: fixed;
    top: 0;
    background: #000000db;
    box-shadow: 0 4px 10px 0 #00000060;
}

.site-header .mx-container-lg {
    display: flex;
    gap: 36px;
    align-items: center;
    min-height: clamp(40px, 6vw, 60px);
}

.site-header .navigation-wrapper {
    margin-inline: auto 0;
}

.site-header .navigation-wrapper ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 16px 24px;
}

.site-header .navigation-wrapper a,
.site-header .navigation-wrapper a:visited {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.site-header .navigation-wrapper a:hover {
    color: #fff !important;
    text-decoration: none;
}

.site-header .navigation-wrapper a::after {
    content: "";
    width: 1%;
    height: 1px;
    display: block;
    background: transparent;
    transition: 0.5s;
}

.site-header .navigation-wrapper a:hover::after {
    width: 100%;
    background: #fff;
}

.site-header .nav-cta-wrap {
    gap: 8px;
}

.site-header .nav-cta-wrap .btn.nav-btn {
    padding: clamp(10px, 1.4vw, 14px) clamp(12px, 1.8vw, 22px);
    font-weight: 400;
    min-width: auto;
    font-size: clamp(16px, 1.5vw, 20px);
    gap: 0;
}

.site-header .nav-cta-wrap .nav-phone {
    color: #fff !important;
    font-weight: 400;
    margin-right: 22px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(16px, 1.8vw, 24px);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    width: 16px;
    height: 16px;
    position: relative;
    border: none;
    outline: 0;
    background: 0 0;
    color: inherit;
    flex-shrink: 0;
}

.nav-toggle div {
    display: block;
    position: absolute;
    height: 2.2px;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    opacity: 1;
    left: 0;
    transform: rotate(0);
    transition: 0.25s;
}

.nav-toggle div:nth-child(1) {
    top: 0;
}

.nav-toggle div:nth-child(2) {
    top: 8px;
    width: 75%;
    left: 25%;
}

.nav-toggle div:nth-child(3) {
    top: 16px;
}

/* Mobile menu open state */
.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-open .site-header::after {
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background: rgba(13, 12, 17, 0.88);
}

.mobile-menu-open .site-header .navigation-wrapper ul a {
    font-size: 20px;
    font-weight: 500;
}

.mobile-menu-open .site-header .nav-cta-wrap {
    position: fixed;
    bottom: 28px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    left: 0;
    padding-inline: 16px;
    gap: 16px;
    max-width: 500px;
}

.mobile-menu-open .site-header .nav-cta-wrap .nav-btn {
    min-height: 56px;
    align-items: center;
    width: 100%;
    justify-content: center;
    font-size: 20px;
}

.mobile-menu-open .nav-toggle {
    margin-left: auto !important;
    width: 24px;
}

.mobile-menu-open .nav-toggle div:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.mobile-menu-open .nav-toggle div:nth-child(2) {
    opacity: 0;
    display: none;
    left: -100%;
}

.mobile-menu-open .nav-toggle div:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* ── Hero ───────────────────────────────────────────────────── */
.section--hero {
    padding: 175px 0 175px;
    --site-text-color: #fff;
    --site-head-color: #fff;
    overflow: hidden;

    /* IMPORTANT: remove the CSS background-image */
    background-color: #0b0f14; /* fallback while image loads */

    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 90%);
    position: relative;
}

.section--hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 1;
}

.section--hero .mx-container {
    position: relative;
    z-index: 2; /* content above overlay */
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.section--hero .tagline {
    font-size: clamp(18px, 1.8vw, 24px) !important;
    line-height: 149%;
    font-weight: 500;
    color: #fff;
}

.section--hero .col-left {
    padding-bottom: 40px;
    align-self: center;
}

.section--hero h1 {
    color: #fff;
}

.section--hero .hero-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.section--hero .hero-img-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 340px;
    background: #1a3a5c;
    border-radius: 50%;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 0;
}

#ssn-required-no-span {
    color: #fff !important;
}

.section--hero .hero-img-wrap img {
    /*width: 340px;          !* match the circle size *!*/
    /*height: 340px;*/
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover; /* prevents stretching */
    position: relative;
    z-index: 1;
}

.section--hero .col-right {
    align-self: flex-end;
}

.hero-cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    margin-block: 40px 24px;
    justify-content: center;
    padding: 30px 60px 30px 30px;
    background: #F4F2F2;
    border-radius: 20px;
    width: -moz-max-content;
    width: max-content;
}

.hero-cta-wrap .btn {
    min-height: clamp(45px, 6vw, 55px);
    display: inline-flex;
    align-items: center;
    min-width: 211px;
}

.hero-cta-wrap p {
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1;
    margin: 0 60px 0 0;
    font-weight: 500;
    color: #060606 !important;
}

.hero-cta-wrap .btn-wrap {
    position: relative;
    align-self: flex-start;
    gap: 11px;
}

/* ── Tools & Resources ──────────────────────────────────────── */
.section--tools-resources {
    background: #F3F3F3;
    padding: 150px 0;
    margin-top: -90px;
    clip-path: polygon(0 0, 100% 8.7%, 100% 90%, 0% 100%);
    text-align: center;
}

.sub-title {
    --site-text-color: #000;
    font-size: clamp(20px, 2vw, 22px);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: 0.22px;
    margin-bottom: 12px;
}

.block-wrap {
    gap: 30px;
    align-items: stretch;
    margin-top: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.block-wrap .block {
    border-radius: 10px;
    background: #fff;
    padding: 50px clamp(32px, 4vw, 48px);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex: 1;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s;
}

.block-wrap .block:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.block-wrap .block h3 {
    margin: 0;
}

.block-wrap .block img {
    align-self: center;
    -o-object-fit: contain;
       object-fit: contain;
}

.block-wrap .block p {
    font-size: 16px;
}

.section--tools-resources .privacy-text {
    justify-content: center;
}

/* ── Double Take / HELOC ────────────────────────────────────── */
.section--heloc .head-wrap {
    max-width: 800px;
    margin: 0 auto clamp(2.8rem, 3.8vw, 3.8rem);
}

.section--heloc .btn-wrap {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
}

.brick-wrap {
    -moz-column-gap: clamp(2.8rem, 3.6vw, 3.6rem);
         column-gap: clamp(2.8rem, 3.6vw, 3.6rem);
    align-items: flex-start;
}

.brick-wrap .brick {
    display: flex;
    text-align: left;
    gap: clamp(20px, 2vw, 20px);
    margin-bottom: 2.4rem;
    flex-direction: column;
    align-items: flex-start;
}

.brick-wrap .brick h3 {
    margin: 0;
}

.brick-wrap .brick-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Products ───────────────────────────────────────────────── */
.section--products {
    position: relative;
    padding-top: 16%;
}

.section--products h2 {
    margin-bottom: 8px;
}

.section--products .tag {
    padding: 10px 20px 9px;
}

.section--products .product-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
}

.section--products .inner-container {
    border-radius: 10px;
    background: #F3F3F3;
    padding: 60px 40px;
    position: relative;
}

.section--products .product-grid {
    display: grid;
    gap: 19px clamp(19px, 2.8vw, 28px);
    margin-top: 2.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.section--products .product-grid li {
    position: relative;
    display: grid;
}

.section--products .product-grid li:after {
    content: "";
    position: absolute;
    width: 22px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    opacity: 0;
    transition: opacity 0.1s ease-in 0.4s;
    z-index: 1;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='12' viewBox='0 0 22 12' fill='none'><path d='M1.03205 6.12713L20.5782 5.72108M15.982 1.03179L20.5226 5.57237M15.6321 10.7356L20.2947 6.07302' stroke='white' stroke-width='2.0632' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
}

.section--products .product-grid li a {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    transition: 0.3s;
    padding: 19px 24px;
    gap: 10px;
    text-align: left;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    line-height: 1.3;
    min-height: 92px;
    border-radius: var(--site-border-radius);
    background: #fff;
}

.section--products .product-grid li a:before {
    content: "";
    position: absolute;
    height: 100%;
    background: #2DC876;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--products .product-grid li .product-text-wrap {
    display: flex;
    flex: 1;
    justify-content: space-between;
    flex-direction: column;
}

.section--products .product-grid li img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.4s;
    max-width: 54px;
    opacity: 1;
    visibility: visible;
    flex-shrink: 0;
}

.section--products .product-grid li a:before {
    z-index: 1;
}

.section--products .product-grid li .product-text-wrap,
.section--products .product-grid li img {
    position: relative;
    z-index: 2;
}

.section--products .product-grid li .secondary-text {
    font-size: 15px;
    transform: translateY(40px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: block;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    line-height: 1.4;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: -0.15px;
}

.section--products .product-grid li .product-text {
    --site-text-color: #3180F5;
    color: #3180F5;
}

/* Hover state */
.section--products .product-grid.has-hover-state li:hover a:before {
    width: 100%;
}

.section--products .product-grid.has-hover-state li:hover .product-text {
    --site-text-color: #fff;
    color: #fff;
}

.section--products .product-grid.has-hover-state li:hover .secondary-text {
    max-height: 26px;
    opacity: 1;
    transition-delay: 0.4s;
    transform: translateY(0);
}

.section--products .product-grid.has-hover-state li:hover a {
    grid-template-columns: 0 1fr;
    color: #fff !important;
    gap: 0;
    align-items: flex-start;
    padding-right: 56px;
    --site-text-color: #fff;
    box-shadow: 0 3.631px 3.631px 0 rgba(0, 0, 0, 0.1);
}

.section--products .product-grid.has-hover-state li:hover img {
    max-width: 0 !important;
    opacity: 0;
    visibility: hidden;
    margin-right: 0;
}

.section--products .product-grid.has-hover-state li:hover:after {
    animation: bounce 2s;
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(0, -50%);
    }
    40% {
        transform: translate(20px, -50%);
    }
    60% {
        transform: translate(10px, -50%);
    }
}

/* ── About / Showcase ───────────────────────────────────────── */
.section--showcase {
    padding-bottom: 80px;
}

.section--showcase .mx-container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.section--showcase h2 {
    font-family: var(--site-font-family) !important;
    font-size: clamp(26px, 2.4vw, 34px) !important;
}

.section--showcase p {
    margin: 20px 0 !important;
}

.section--showcase .col-left,
.section--showcase .col-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.section--showcase .col-right {
    width: 48%;
}

.section--showcase .col-left {
    width: 45%;
}

.extra-copy {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease;
}

.extra-copy.open {
    max-height: 1500px;
    opacity: 1;
    padding-top: 15px;
}

.showcase-img {
    width: 100%;
    border-radius: var(--site-border-radius);
}

/* ── Buying Power ───────────────────────────────────────────── */
.section--buying-power {
    background: #F3F3F3;
    padding-block: clamp(5rem, 8vw, 8rem);
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.section--buying-power .mx-container {
    gap: clamp(40px, 6vw, 100px);
}

.section--buying-power .mx-container h2 {
    font-size: clamp(32px, 3.5vw, 50px);
}

.section-img {
    width: 100%;
    border-radius: var(--site-border-radius);
}

/* ── Reviews ────────────────────────────────────────────────── */
.section--reviews {
    background: #fff;
}

/* ── CTA Section ────────────────────────────────────────────── */
.section--cta .mx-container {
    background-image: url('/images/crush-demo/cta-bg.webp');
    background-size: cover;
    padding: 50px;
    border-radius: 10px;
    margin-bottom: 80px;
}

.section--cta .mx-container h2 {
    font-size: clamp(32px, 3.5vw, 50px);
    color: #fff;
}

.section--cta .cta-box {
    max-width: 580px;
    background: white;
    padding: 45px;
    border-radius: 10px;
}

.section--cta p {
    line-height: 1.4;
}

/* ── Bottom CTA ─────────────────────────────────────────────── */
.section--bottom-cta {
    background-image: url('/images/crush-demo/cta-pattern.png');
    background-color: #397ef4;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: luminosity;
    padding-block: clamp(6rem, 12vw, 12rem);
    clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 90%);
    text-align: center;
}

.section--bottom-cta h2,
.section--bottom-cta p {
    color: white;
}

.section--bottom-cta p {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site--footer {
    background-color: #00161f;
    --site-text-color: #76797e;
    --site-head-color: #fff;
    padding-block: 145px 40px;
    line-height: 1.5;
    font-weight: 500;
    font-size: 16px;
    clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 100%);
    margin-top: -65px;
}

.footer-logo {
    max-height: 40px;
}

.site--footer hr {
    border-color: #434343;
    margin-block: 30px;
    border-style: solid;
    border-width: 1px 0 0;
}

.site--footer li {
    padding-bottom: 10px;
    position: relative;
}

.site--footer ul {
    padding-left: 30px;
}

.site--footer li a,
.site--footer li a:visited {
    color: #76797e;
    font-size: 14px;
}

.site--footer li a:hover {
    color: var(--site-primary-color) !important;
}

.site--footer .footer-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.site--footer .footer-col .inner-col:first-child {
    width: 30%;
}

.site--footer .footer-col .inner-col:nth-child(2),
.site--footer .footer-col .inner-col:nth-child(3),
.site--footer .footer-col .inner-col:last-child {
    width: 15%;
}

.site--footer .footer-desc {
    line-height: 1.5;
    font-size: 14px;
    color: #76797e;
}

.site--footer .footer-head {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    margin-block: 0 20px;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
}

.footer__contact-list a:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: -30px;
    top: 3px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer__contact-list li.address a:before {
    background-image: url('/images/crush-demo/location.png');
}

.footer__contact-list li.mail a:before {
    background-image: url('/images/crush-demo/mail.png');
}

.footer__contact-list li.call a:before {
    background-image: url('/images/crush-demo/phone.png');
}

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

.footer-site-info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-site-info__image {
    opacity: .35;
    position: relative;
    width: 66px;
}

.footer-site-info__description {
    padding: 0 0 0 32px;
}

.footer-site-info .policy-list {
    padding: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    text-transform: uppercase;
    margin: 0;
}

.footer-site-info .policy-list li {
    padding-bottom: 4px;
}

.footer-site-info .policy-list a {
    color: #76797e;
    font-size: 12px;
}

.footer-site-info .copyright {
    font-size: 12px;
    line-height: 16px;
    max-width: 360px;
}

.footer-site-info .copyright p {
    color: #76797e;
    line-height: 1.5;
}

.social-networks {
    padding: 0 !important;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}

.social-networks li {
    padding: 0 !important;
}

.social-networks img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
       object-fit: contain;
    margin: 0;
    filter: invert(1);
}

.footer__key-logo-area {
    text-align: center;
}

.footer__key-logo-area img {
    margin: 0 auto !important;
    max-height: 40px;
}

/* ── Modal / Popup ──────────────────────────────────────────── */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    z-index: 999999;
    animation: fadeIn 0.3s;
    overflow: hidden;
}

.popup.has-active {
    display: block;
}

.popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.popup-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 24px;
    line-height: 36px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #fff;
    background: rgba(14, 14, 14, 0.99);
    border-radius: 500px;
    cursor: pointer;
    opacity: 1;
    font-weight: 500;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    color: #fff;
}

.popup iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

.popup iframe.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (min-width: 1025px) {
    .section--showcase .showcase-img {
        width: 100%;
        margin: 0;
    }

    .section--hero .col-right {
        align-self: flex-end;
    }
}

@media (max-width: 1024px) {
    .fr-wrapper {
        padding: 0 !important;
    }

    header.site-header .mx-container-lg {
        gap: 16px;
    }

    header.site-header .nav-cta-wrap {
        margin-left: auto;
    }

    .site-header {
        padding-block: 16px;
    }

    .navigation-wrapper {
        position: fixed;
        top: 112px;
        width: 100%;
        left: 0;
        padding-inline: 16px;
        visibility: hidden;
        opacity: 0;
    }

    .mobile-menu-open .navigation-wrapper {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-open .site-header .navigation-wrapper ul {
        flex-direction: column;
        row-gap: 20px;
    }

    .mobile-menu-open .navigation-wrapper ul a {
        display: inline-block;
    }

    .mobile-menu-open .site-header .nav-phone-wrap {
        background: #fff;
        border-radius: var(--site-border-radius);
        width: 100%;
        min-height: 56px;
        text-align: center;
        justify-content: center;
    }

    .mobile-menu-open .site-header .nav-cta-wrap .nav-phone {
        color: #000 !important;
        font-size: 18px;
    }

    .nav-toggle {
        display: block;
    }

    .section--hero {
        padding-top: 112px;
    }

    .block-wrap {
        flex-direction: column;
    }

    .section--showcase {
        padding: 50px 0;
    }

    .section--showcase .mx-container {
        flex-direction: column-reverse;
        gap: 25px;
    }

    .section--showcase .col-left, .section--showcase .col-right {
        padding: 0;
    }

    .section--showcase .showcase-img {
        position: static;
        width: 100%;
    }
}

@media (max-width: 999px) {
    .section--hero .mx-container {
        display: block;
    }

    .section--hero .col-right {
        justify-self: center;
    }
}

@media (max-width: 767px) {
    .section--hero {
        padding: 175px 0 80px;
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 95%);
    }

    .hero-cta-wrap {
        width: auto;
    }

    .section--tools-resources {
        padding: 100px 0;
        margin-top: -60px;
        clip-path: polygon(0 0, 100% 3%, 100% 97%, 0% 100%);
    }

    .section--showcase .col-right, .section--showcase .col-left {
        width: 100%;
    }

    .section--buying-power {
        clip-path: polygon(0 0, 100% 3%, 100% 97%, 0 100%);
        gap: 50px;
    }

    .section--cta .mx-container {
        padding: 25px;
        margin-bottom: 50px;
        background-position: right;
    }

    .section--cta .cta-box {
        padding: 25px;
    }

    .site--footer {
        margin-top: -75px;
        padding-block: 100px 40px;
        clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
    }

    .site--footer .footer-col .inner-col:first-child {
        width: 60%;
    }

    .site--footer .footer-col .inner-col:nth-child(2) {
        width: 25%;
    }

    .site--footer .footer-col .inner-col:nth-child(3),
    .site--footer .footer-col .inner-col:last-child {
        width: 42%;
    }

    .footer-site-info__description {
        padding: 20px 0;
    }

    .flex-col {
        flex-direction: column;
        align-items: flex-start;
    }

    .flex-col.reverse-reponsive {
        flex-direction: column-reverse;
    }

    .section--buying-power .mx-container {
        flex-direction: column;
    }

    .popup-close {
        right: 16px;
        top: 16px;
    }
}

@media (max-width: 768px) {
    .site-header .nav-cta-wrap .btn.nav-btn {
        --site-border-radius: 6px;
    }
}

