* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background: #fff9ed;
    color: #08263a;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.site-header {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 4%;
}

.navbar {
    width: min(1260px, 100%);
    min-height: 82px;
    margin: 0 auto;
    padding: 8px 16px 8px 24px;
    display: flex;
    align-items: center;
    gap: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    background: rgb(216 224 229 / 88%);
    box-shadow: 0 16px 45px rgba(3, 25, 39, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: 0.35s ease;
}

.navbar.scrolled {
    background: rgba(5, 35, 53, 0.97);
    box-shadow: 0 12px 35px rgba(3, 25, 39, 0.35);
}

.brand {
    width: 235px;
    height: 62px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.brand img {
    width: 210px;
    max-width: none;
    height: 72px;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.nav-links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.nav-link {
    padding: 13px 16px;
    border-radius: 50px;
    color: rgba(3, 19, 39, 0.78);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #f0b52f;
    color: #e2e2df;
}

.nav-cta {
    min-height: 52px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, #e5a928, #f5c95d);
    color: #08263a;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(229, 169, 40, 0.2);
    transition: 0.3s ease;
}

.nav-cta:hover {
    color: #08263a;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(229, 169, 40, 0.3);
}

.nav-cta span {
    font-size: 17px;
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 720px;
    max-height: 900px;
    overflow: hidden;
    background: #08263a;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-image {
    position: absolute;
    inset: -2%;
    width: 104%;
    height: 104%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
}

.hero-slide.active .hero-image {
    animation: heroImageZoom 5.5s ease forwards;
}

@keyframes heroImageZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(4, 28, 43, 0.97) 0%,
        rgba(5, 34, 51, 0.92) 27%,
        rgba(5, 38, 57, 0.72) 48%,
        rgba(5, 38, 57, 0.32) 72%,
        rgba(5, 38, 57, 0.12) 100%
    );
}

.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(3, 25, 39, 0.3),
        transparent 35%,
        rgba(3, 25, 39, 0.32)
    );
}

.hero-container {
    position: relative;
    z-index: 5;
    width: min(1260px, 100%);
    height: 100%;
    margin: 0 auto;
    padding: 150px 40px 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}

.hero-content {
    width: min(680px, 62%);
    color: #fff;
}

.hero-eyebrow {
    width: fit-content;
    margin-bottom: 20px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(245, 201, 93, 0.4);
    border-radius: 50px;
    background: rgba(8, 38, 58, 0.42);
    color: #f5c95d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #18a6a6;
    box-shadow: 0 0 0 5px rgba(24, 166, 166, 0.18);
}

.hero-content h1,
.hero-content h2 {
    max-width: 720px;
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -3px;
    animation: heroTextIn 0.75s ease both;
}

.hero-content h1 span,
.hero-content h2 span {
    display: block;
    background: linear-gradient(90deg, #f5c95d, #e5a928, #f4775c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    max-width: 600px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.primary-btn {
    min-height: 55px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    background: linear-gradient(135deg, #e5a928, #f5c95d);
    color: #08263a;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.primary-btn:hover {
    color: #08263a;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(229, 169, 40, 0.3);
}

.primary-btn span {
    font-size: 18px;
    transition: 0.3s ease;
}

.primary-btn:hover span {
    transform: translateX(4px);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.secondary-btn:hover {
    color: #f5c95d;
}

.secondary-btn span {
    transition: 0.3s ease;
}

.secondary-btn:hover span {
    transform: translate(3px, -3px);
}

.hero-benefits {
    margin-top: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.hero-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    font-weight: 600;
}

.hero-benefits b {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(24, 166, 166, 0.2);
    color: #6bd3c9;
    font-size: 9px;
}

.finance-card {
    position: relative;
    width: 290px;
    min-height: 340px;
    flex-shrink: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 27px;
    background: rgba(6, 32, 49, 0.65);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: cardFloat 4s ease-in-out infinite;
}

.finance-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(229, 169, 40, 0.13);
}

.finance-card::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -90px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(24, 166, 166, 0.13);
}

@keyframes cardFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.finance-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.finance-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff1c9;
    color: #b77c00;
    font-size: 19px;
    font-weight: 800;
}

.finance-icon.teal {
    background: #d8f3ef;
    color: #168383;
}

.finance-icon.gold {
    background: #fff1c9;
    color: #b77c00;
}

.finance-card-top > span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.finance-card small {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    color: #f5c95d;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.finance-card h2 {
    position: relative;
    z-index: 2;
    margin-top: 7px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.finance-card h2 strong {
    display: block;
    color: #fff;
    font-weight: 800;
}

.finance-line {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 1px;
    margin: 17px 0;
    background: rgba(255, 255, 255, 0.13);
}

.finance-points {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 8px;
}

.finance-points span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
}

.finance-points i {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(24, 166, 166, 0.2);
    color: #6bd3c9;
    font-size: 8px;
    font-style: normal;
}

.finance-link {
    position: relative;
    z-index: 2;
    min-height: 48px;
    margin: 18px -25px -25px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(229, 169, 40, 0.88);
    color: #08263a;
    font-size: 10px;
    font-weight: 800;
    transition: 0.3s ease;
}

.finance-link:hover {
    background: #f5c95d;
}

.finance-link span {
    font-size: 17px;
}

.hero-controls {
    position: absolute;
    right: max(4vw, calc((100vw - 1260px) / 2));
    bottom: 32px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 9px;
}

.slider-arrow {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(5, 35, 53, 0.5);
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    border-color: #e5a928;
    background: #e5a928;
    color: #08263a;
}

.slider-dots {
    height: 43px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(5, 35, 53, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.slider-dot {
    width: 19px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: 0.35s ease;
}

.slider-dot.active {
    width: 43px;
    background: #e5a928;
}

.hero-scroll {
    position: absolute;
    left: max(4vw, calc((100vw - 1260px) / 2));
    bottom: 37px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-scroll i {
    position: relative;
    width: 20px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
}

.hero-scroll i::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 6px;
    border-radius: 5px;
    background: #18a6a6;
    transform: translateX(-50%);
    animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 12px);
    }
}

@media (max-width: 1050px) {
    .navbar {
        gap: 12px;
    }

    .brand {
        width: 170px;
    }

    .nav-link {
        padding: 12px 10px;
        font-size: 12px;
    }

    .nav-cta {
        padding: 0 17px;
    }

    .hero-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-content {
        width: 60%;
    }

    .finance-card {
        width: 255px;
    }
}

@media (max-width: 850px) {
    .site-header {
        top: 10px;
        padding: 0 18px;
    }

    .navbar {
        min-height: 62px;
        padding: 6px 8px 6px 15px;
    }

    .brand {
        width: auto;
        flex: 1;
    }

    .brand img {
        max-width: 145px;
        height: 46px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        width: 45px;
        height: 45px;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 0;
        border-radius: 50%;
        background: #f0b52f;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 5px;
        background: #08263a;
        transition: 0.3s ease;
    }

    .menu-toggle.active span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
        position: absolute;
        top: 78px;
        left: 18px;
        right: 18px;
        padding: 15px;
        display: none;
        flex-direction: column;
        gap: 5px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 22px;
        background: rgba(5, 35, 53, 0.97);
        box-shadow: 0 20px 50px rgba(3, 25, 39, 0.3);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        padding: 13px 15px;
        border-radius: 12px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 13px;
        font-weight: 700;
    }

    .mobile-menu a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #f5c95d;
    }

    .mobile-menu .mobile-cta {
        margin-top: 5px;
        background: #f0b52f;
        color: #08263a;
        text-align: center;
    }

    .hero {
        height: 780px;
        min-height: 780px;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(4, 28, 43, 0.18) 0%,
            rgba(4, 28, 43, 0.48) 32%,
            rgba(4, 28, 43, 0.88) 65%,
            rgba(4, 28, 43, 0.98) 100%
        );
    }

    .hero-container {
        padding: 135px 25px 100px;
        align-items: flex-end;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: clamp(42px, 8vw, 60px);
    }

    .hero-content p {
        font-size: 14px;
    }

    .finance-card {
        position: absolute;
        top: 29%;
        right: 25px;
        width: 230px;
        min-height: 200px;
        padding: 18px;
    }

    .finance-card h2 {
        font-size: 20px;
    }

    .finance-link {
        margin: 15px -18px -18px;
        padding: 0 18px;
        min-height: 42px;
    }

    .hero-controls {
        right: 20px;
        bottom: 20px;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 760px;
        min-height: 760px;
    }

    .hero-container {
        padding: 125px 18px 85px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .hero-content p {
        margin-bottom: 20px;
        font-size: 13px;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .primary-btn {
        min-height: 50px;
        padding: 0 20px;
    }

    .secondary-btn {
        min-height: 38px;
    }

    .hero-benefits {
        gap: 8px 12px;
    }

    .hero-benefits span {
        font-size: 9px;
    }

    .finance-card {
        display: none;
    }

    .hero-controls {
        right: 15px;
        bottom: 15px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
    }

    .slider-dots {
        height: 38px;
        padding: 0 10px;
    }

    .slider-dot {
        width: 16px;
    }

    .slider-dot.active {
        width: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-image,
    .hero-content,
    .finance-card,
    .hero-scroll i::after {
        animation: none;
        transition: none;
    }
}

/* About Us Section */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 120px 5%;
    background: #fff9ed;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(24, 166, 166, 0.07);
}

.about-section::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(229, 169, 40, 0.08);
}

.about-container {
    position: relative;
    z-index: 2;
    width: min(1260px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 90px;
}

.about-visual {
    position: relative;
    min-height: 620px;
}

.about-image-wrap {
    position: absolute;
    top: 20px;
    left: 0;
    width: 82%;
    height: 540px;
    overflow: hidden;
    border-radius: 32px;
    background: #08263a;
    box-shadow: 0 30px 70px rgba(8, 38, 58, 0.18);
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-wrap:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 38, 58, 0.02) 30%,
        rgba(8, 38, 58, 0.72) 100%
    );
}

.about-image-label {
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-image-label span {
    color: #f5c95d;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-image-label strong {
    color: #ffffff;
    font-size: 23px;
    font-weight: 800;
}

.about-floating-card {
    position: absolute;
    right: 0;
    top: 150px;
    z-index: 3;
    width: 245px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(8, 38, 58, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 50px rgba(8, 38, 58, 0.13);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: aboutCardFloat 4s ease-in-out infinite;
}

.about-card-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #dff5f1;
    color: #168383;
    font-size: 17px;
    font-weight: 800;
}

.about-floating-card strong {
    display: block;
    margin-bottom: 3px;
    color: #08263a;
    font-size: 12px;
    font-weight: 800;
}

.about-floating-card span {
    color: #71808a;
    font-size: 9px;
    font-weight: 600;
}

@keyframes aboutCardFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.about-circle {
    position: absolute;
    right: 18px;
    bottom: 5px;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(229, 169, 40, 0.35);
    border-radius: 50%;
    background: #08263a;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(8, 38, 58, 0.2);
}

.about-circle::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(245, 201, 93, 0.35);
    border-radius: 50%;
}

.about-circle span {
    position: relative;
    color: #f5c95d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-circle strong {
    position: relative;
    margin-top: 3px;
    color: #ffffff;
    font-size: 29px;
    font-weight: 800;
}

.about-content {
    max-width: 620px;
}

.section-eyebrow {
    width: fit-content;
    margin-bottom: 20px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(24, 166, 166, 0.22);
    border-radius: 50px;
    background: #e7f7f4;
    color: #168383;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.section-eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #18a6a6;
    box-shadow: 0 0 0 5px rgba(24, 166, 166, 0.12);
}

.about-content h2 {
    max-width: 600px;
    margin-bottom: 22px;
    color: #08263a;
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2.5px;
}

.about-content h2 span {
    display: block;
    background: linear-gradient(90deg, #d99617, #e5a928, #ef765b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-intro {
    max-width: 560px;
    margin-bottom: 13px;
    color: #34566b;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
}

.about-description {
    max-width: 580px;
    margin-bottom: 30px;
    color: #71808a;
    font-size: 13px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.about-feature {
    min-height: 145px;
    padding: 17px;
    border: 1px solid rgba(8, 38, 58, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    transition: 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 169, 40, 0.35);
    box-shadow: 0 15px 35px rgba(8, 38, 58, 0.08);
}

.feature-icon {
    width: 31px;
    height: 31px;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #fff0c9;
    color: #b77c00;
    font-size: 9px;
    font-weight: 800;
}

.about-feature:nth-child(2) .feature-icon {
    background: #def4f1;
    color: #168383;
}

.about-feature:nth-child(3) .feature-icon {
    background: #fce8df;
    color: #d96542;
}

.about-feature h3 {
    margin-bottom: 6px;
    color: #08263a;
    font-size: 12px;
    font-weight: 800;
}

.about-feature p {
    color: #7a8991;
    font-size: 9px;
    line-height: 1.6;
}

.about-bottom {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.about-btn {
    min-height: 51px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    background: #08263a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #e5a928;
    color: #08263a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(229, 169, 40, 0.2);
}

.about-btn span {
    font-size: 17px;
    transition: 0.3s ease;
}

.about-btn:hover span {
    transform: translateX(4px);
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-stat strong {
    color: #e5a928;
    font-size: 25px;
    font-weight: 800;
}

.about-stat span {
    color: #71808a;
    font-size: 8px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1050px) {
    .about-section {
        padding: 100px 4%;
    }

    .about-container {
        gap: 55px;
    }

    .about-visual {
        min-height: 550px;
    }

    .about-image-wrap {
        height: 480px;
    }

    .about-floating-card {
        width: 220px;
    }

    .about-circle {
        width: 125px;
        height: 125px;
    }

    .about-circle strong {
        font-size: 25px;
    }

    .about-features {
        gap: 7px;
    }

    .about-feature {
        padding: 14px;
    }
}

@media (max-width: 850px) {
    .about-section {
        padding: 85px 25px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-visual {
        width: min(650px, 100%);
        min-height: 500px;
        margin: 0 auto;
    }

    .about-image-wrap {
        width: 82%;
        height: 450px;
    }

    .about-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .about-content h2 {
        font-size: clamp(42px, 7vw, 58px);
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 70px 18px;
    }

    .about-container {
        gap: 40px;
    }

    .about-visual {
        min-height: 390px;
    }

    .about-image-wrap {
        top: 10px;
        width: 88%;
        height: 350px;
        border-radius: 24px;
    }

    .about-image-label {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .about-image-label strong {
        font-size: 19px;
    }

    .about-floating-card {
        top: 90px;
        right: 0;
        width: 195px;
        padding: 13px;
        border-radius: 16px;
    }

    .about-card-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .about-floating-card strong {
        font-size: 10px;
    }

    .about-floating-card span {
        font-size: 8px;
    }

    .about-circle {
        right: 5px;
        bottom: 0;
        width: 105px;
        height: 105px;
    }

    .about-circle strong {
        font-size: 21px;
    }

    .about-circle span {
        font-size: 7px;
    }

    .section-eyebrow {
        margin-bottom: 15px;
        font-size: 8px;
    }

    .about-content h2 {
        margin-bottom: 18px;
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .about-intro {
        font-size: 14px;
    }

    .about-description {
        font-size: 12px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-feature {
        min-height: auto;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
    }

    .feature-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .about-feature h3 {
        margin-bottom: 3px;
    }

    .about-bottom {
        margin-top: 24px;
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
}
/* How We Work */
.how-section {
    position: relative;
    overflow: hidden;
    padding: 115px 5%;
    background: #08263a;
    color: #ffffff;
}

.how-section::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(24, 166, 166, 0.09);
}

.how-section::after {
    content: "";
    position: absolute;
    bottom: -250px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(229, 169, 40, 0.07);
}

.how-container {
    position: relative;
    z-index: 2;
    width: min(1260px, 100%);
    margin: 0 auto;
}

.how-heading {
    margin-bottom: 70px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.how-eyebrow {
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(245, 201, 93, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    color: #f5c95d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.how-eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #18a6a6;
    box-shadow: 0 0 0 5px rgba(24, 166, 166, 0.15);
}

.how-heading h2 {
    max-width: 700px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(43px, 5vw, 64px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2.5px;
}

.how-heading h2 span {
    display: block;
    background: linear-gradient(90deg, #f5c95d, #e5a928, #ef765b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.how-heading > p {
    max-width: 390px;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.8;
}

.how-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 90px;
    align-items: center;
}

.how-steps {
    position: relative;
}

.how-line {
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: 31px;
    width: 1px;
    background: linear-gradient(
        180deg,
        #e5a928 0%,
        rgba(24, 166, 166, 0.7) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
}

.how-line span {
    position: absolute;
    top: 0;
    left: -2px;
    width: 5px;
    height: 80px;
    border-radius: 10px;
    background: #f5c95d;
    box-shadow: 0 0 20px rgba(245, 201, 93, 0.5);
    animation: howLineMove 4s ease-in-out infinite;
}

@keyframes howLineMove {
    0% {
        top: 0;
    }

    50% {
        top: calc(100% - 80px);
    }

    100% {
        top: 0;
    }
}

.how-step {
    position: relative;
    min-height: 130px;
    padding: 18px 20px 18px 0;
    display: grid;
    grid-template-columns: 64px 1fr 42px;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s ease;
}

.how-step:last-child {
    border-bottom: 0;
}

.how-step:hover,
.how-step.active {
    padding-left: 10px;
}

.step-number {
    position: relative;
    z-index: 2;
    width: 63px;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: #0d334a;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    font-weight: 800;
    transition: 0.35s ease;
}

.how-step:hover .step-number,
.how-step.active .step-number {
    border-color: #e5a928;
    background: #e5a928;
    color: #08263a;
    box-shadow: 0 0 0 8px rgba(229, 169, 40, 0.08);
}

.step-content {
    padding-right: 20px;
}

.step-label {
    display: block;
    margin-bottom: 6px;
    color: #18a6a6;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.step-content h3 {
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.step-content p {
    max-width: 470px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    line-height: 1.65;
}

.step-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    transition: 0.35s ease;
}

.how-step:hover .step-arrow,
.how-step.active .step-arrow {
    border-color: #e5a928;
    background: #e5a928;
    color: #08263a;
    transform: rotate(45deg);
}

.how-visual {
    position: relative;
    min-height: 490px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(24, 166, 166, 0.18),
        rgba(24, 166, 166, 0.03) 55%,
        transparent 70%
    );
}

.visual-card {
    position: relative;
    z-index: 3;
    width: 350px;
    min-height: 390px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    background: linear-gradient(
        145deg,
        rgba(18, 58, 78, 0.96),
        rgba(5, 30, 47, 0.96)
    );
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
    transform: rotate(2deg);
    transition: 0.5s ease;
}

.visual-card:hover {
    transform: rotate(0deg) translateY(-8px);
}

.visual-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(229, 169, 40, 0.1);
}

.visual-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.visual-card-header span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.visual-card-header i {
    color: #18a6a6;
    font-size: 12px;
}

.visual-amount {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.visual-amount small {
    margin-bottom: 8px;
    color: #f5c95d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.visual-amount strong {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 201, 93, 0.3);
    border-radius: 50%;
    background: rgba(229, 169, 40, 0.1);
    color: #f5c95d;
    font-size: 42px;
    font-weight: 800;
}

.visual-progress {
    position: relative;
    z-index: 2;
}

.progress-top {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.progress-top span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
}

.progress-top b {
    color: #f5c95d;
    font-size: 10px;
}

.progress-bar {
    width: 100%;
    height: 5px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-bar span {
    display: block;
    width: 75%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #18a6a6, #f5c95d);
    animation: progressMove 3s ease-in-out infinite alternate;
}

@keyframes progressMove {
    from {
        width: 55%;
    }

    to {
        width: 85%;
    }
}

.visual-status {
    position: relative;
    z-index: 2;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.04);
}

.status-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #d9f3ef;
    color: #168383;
    font-size: 13px;
    font-weight: 800;
}

.visual-status strong {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 10px;
}

.visual-status span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 8px;
}

.visual-badge {
    position: absolute;
    z-index: 5;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    background: rgba(8, 38, 58, 0.9);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.75);
    font-size: 9px;
    font-weight: 700;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.visual-badge span {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e5a928;
    color: #08263a;
    font-size: 8px;
    font-weight: 800;
}

.badge-one {
    top: 70px;
    left: 0;
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-two {
    right: 0;
    bottom: 70px;
    animation: badgeFloat 4s 1s ease-in-out infinite;
}

.badge-two span {
    background: #d9f3ef;
    color: #168383;
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

.visual-orbit {
    position: absolute;
    border: 1px dashed rgba(245, 201, 93, 0.2);
    border-radius: 50%;
}

.orbit-one {
    width: 430px;
    height: 430px;
}

.orbit-two {
    width: 520px;
    height: 520px;
    border-color: rgba(24, 166, 166, 0.12);
}

@media (max-width: 1050px) {
    .how-section {
        padding: 100px 4%;
    }

    .how-layout {
        gap: 50px;
    }

    .visual-card {
        width: 310px;
        min-height: 360px;
    }

    .orbit-one {
        width: 380px;
        height: 380px;
    }

    .orbit-two {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 850px) {
    .how-section {
        padding: 85px 25px;
    }

    .how-heading {
        margin-bottom: 55px;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .how-heading > p {
        max-width: 600px;
    }

    .how-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .how-visual {
        min-height: 430px;
        order: -1;
    }

    .how-steps {
        max-width: 700px;
    }

    .badge-one {
        left: 8%;
    }

    .badge-two {
        right: 8%;
    }
}

@media (max-width: 600px) {
    .how-section {
        padding: 70px 18px;
    }

    .how-heading {
        margin-bottom: 40px;
    }

    .how-heading h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .how-heading > p {
        font-size: 12px;
    }

    .how-eyebrow {
        font-size: 8px;
    }

    .how-line {
        left: 24px;
    }

    .how-step {
        min-height: 115px;
        padding: 14px 0;
        grid-template-columns: 50px 1fr 34px;
        gap: 13px;
    }

    .how-step:hover,
    .how-step.active {
        padding-left: 5px;
    }

    .step-number {
        width: 49px;
        height: 49px;
        font-size: 9px;
    }

    .step-label {
        font-size: 7px;
    }

    .step-content h3 {
        font-size: 14px;
    }

    .step-content p {
        font-size: 9px;
    }

    .step-arrow {
        width: 33px;
        height: 33px;
        font-size: 11px;
    }

    .how-visual {
        min-height: 370px;
    }

    .visual-card {
        width: 280px;
        min-height: 340px;
        padding: 22px;
    }

    .visual-amount strong {
        width: 75px;
        height: 75px;
        font-size: 34px;
    }

    .visual-badge {
        padding: 8px 10px;
        font-size: 8px;
    }

    .badge-one {
        top: 45px;
        left: 0;
    }

    .badge-two {
        right: 0;
        bottom: 45px;
    }

    .orbit-one {
        width: 320px;
        height: 320px;
    }

    .orbit-two {
        width: 380px;
        height: 380px;
    }
}
/* Why Choose us? */
.why-section {
    position: relative;
    overflow: hidden;
    padding: 120px 5%;
    background: #fff9ed;
}

.why-section::before {
    content: "";
    position: absolute;
    top: -220px;
    left: -180px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(24, 166, 166, 0.07);
}

.why-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -230px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(229, 169, 40, 0.08);
}

.why-container {
    position: relative;
    z-index: 2;
    width: min(1260px, 100%);
    margin: 0 auto;
}

.why-heading {
    max-width: 720px;
    margin-bottom: 60px;
}

.why-eyebrow {
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(24, 166, 166, 0.22);
    border-radius: 50px;
    background: #e7f7f4;
    color: #168383;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.why-eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #18a6a6;
    box-shadow: 0 0 0 5px rgba(24, 166, 166, 0.12);
}

.why-heading h2 {
    margin-bottom: 18px;
    color: #08263a;
    font-size: clamp(43px, 5vw, 64px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2.5px;
}

.why-heading h2 span {
    display: block;
    background: linear-gradient(90deg, #d99617, #e5a928, #ef765b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.why-heading p {
    max-width: 650px;
    color: #71808a;
    font-size: 13px;
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 30px;
    align-items: stretch;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.why-item {
    position: relative;
    width: 100%;
    min-height: 104px;
    padding: 15px 18px;
    display: grid;
    grid-template-columns: 48px 1fr 38px;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(8, 38, 58, 0.08);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.72);
    text-align: left;
    cursor: pointer;
    transition: 0.35s ease;
}

.why-item::before {
    content: "";
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 0;
    width: 3px;
    border-radius: 5px;
    background: transparent;
    transition: 0.35s ease;
}

.why-item:hover,
.why-item.active {
    border-color: rgba(229, 169, 40, 0.35);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(8, 38, 58, 0.08);
    transform: translateX(5px);
}

.why-item.active::before {
    background: #e5a928;
}

.why-number {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fdf0cf;
    color: #b77c00;
    font-size: 10px;
    font-weight: 800;
    transition: 0.35s ease;
}

.why-item:nth-child(2) .why-number {
    background: #def4f1;
    color: #168383;
}

.why-item:nth-child(3) .why-number {
    background: #fce8df;
    color: #d96542;
}

.why-item:nth-child(4) .why-number {
    background: #e8edf1;
    color: #34566b;
}

.why-item.active .why-number {
    background: #e5a928;
    color: #08263a;
}

.why-item-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.why-item-content strong {
    color: #08263a;
    font-size: 13px;
    font-weight: 800;
}

.why-item-content small {
    color: #849198;
    font-size: 9px;
    line-height: 1.5;
}

.why-item-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(8, 38, 58, 0.08);
    border-radius: 50%;
    color: #8a969c;
    font-size: 13px;
    transition: 0.35s ease;
}

.why-item:hover .why-item-arrow,
.why-item.active .why-item-arrow {
    border-color: #e5a928;
    background: #e5a928;
    color: #08263a;
    transform: rotate(45deg);
}

.why-feature {
    position: relative;
    min-height: 460px;
    padding: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 30px;
    background: #08263a;
    box-shadow: 0 25px 60px rgba(8, 38, 58, 0.16);
}

.why-feature-bg {
    position: absolute;
    top: -160px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(24, 166, 166, 0.3),
        rgba(24, 166, 166, 0.04) 60%,
        transparent 72%
    );
    transition: 0.6s ease;
}

.why-feature::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -150px;
    width: 350px;
    height: 350px;
    border: 1px dashed rgba(245, 201, 93, 0.18);
    border-radius: 50%;
}

.why-feature-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.why-feature-top > span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.why-feature-dots {
    display: flex;
    gap: 5px;
}

.why-feature-dots i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.why-feature-dots i:first-child {
    background: #f5c95d;
}

.why-feature-icon {
    position: absolute;
    top: 100px;
    right: 55px;
    width: 105px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-symbol {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 21px;
    background: #f5c95d;
    color: #08263a;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(229, 169, 40, 0.25);
    transition: 0.4s ease;
}

.feature-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(245, 201, 93, 0.4);
    border-radius: 50%;
    animation: featureRing 8s linear infinite;
}

@keyframes featureRing {
    to {
        transform: rotate(360deg);
    }
}

.why-feature-content {
    position: relative;
    z-index: 2;
    max-width: 450px;
    margin-top: 85px;
}

.feature-tag {
    display: block;
    margin-bottom: 12px;
    color: #18a6a6;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.why-feature-content h3 {
    max-width: 450px;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: clamp(35px, 4vw, 52px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
}

.why-feature-content h3 span {
    display: block;
    background: linear-gradient(90deg, #f5c95d, #ef765b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.why-feature-content p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.8;
}

.why-feature-bottom {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-feature-bottom div {
    padding: 18px 15px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.why-feature-bottom div:not(:first-child) {
    padding-left: 15px;
}

.why-feature-bottom div:last-child {
    border-right: 0;
}

.why-feature-bottom strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.why-feature-bottom span {
    color: rgba(255, 255, 255, 0.38);
    font-size: 8px;
}

.why-trust {
    margin-top: 35px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(8, 38, 58, 0.07);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #fff0c9;
    color: #b77c00;
    font-size: 13px;
    font-weight: 800;
}

.trust-icon.teal {
    background: #def4f1;
    color: #168383;
}

.trust-item strong {
    display: block;
    margin-bottom: 3px;
    color: #08263a;
    font-size: 10px;
    font-weight: 800;
}

.trust-item small {
    color: #8a969c;
    font-size: 8px;
}

.trust-divider {
    width: 1px;
    height: 35px;
    background: rgba(8, 38, 58, 0.08);
}

.why-cta {
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 50px;
    background: #08263a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    transition: 0.3s ease;
}

.why-cta:hover {
    background: #e5a928;
    color: #08263a;
    transform: translateY(-2px);
}

.why-cta span {
    font-size: 16px;
}

@media (max-width: 1050px) {
    .why-section {
        padding: 100px 4%;
    }

    .why-grid {
        gap: 20px;
    }

    .why-feature {
        min-height: 440px;
        padding: 25px;
    }

    .why-feature-icon {
        right: 35px;
    }

    .why-trust {
        gap: 12px;
    }

    .why-cta {
        padding: 0 14px;
    }
}

@media (max-width: 850px) {
    .why-section {
        padding: 85px 25px;
    }

    .why-heading {
        margin-bottom: 45px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-feature {
        min-height: 420px;
        order: -1;
    }

    .why-trust {
        flex-wrap: wrap;
    }

    .trust-item {
        min-width: calc(50% - 20px);
    }

    .trust-divider {
        display: none;
    }

    .why-cta {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .why-section {
        padding: 70px 18px;
    }

    .why-heading {
        margin-bottom: 35px;
    }

    .why-eyebrow {
        font-size: 8px;
    }

    .why-heading h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .why-heading p {
        font-size: 12px;
    }

    .why-item {
        min-height: 90px;
        padding: 12px;
        grid-template-columns: 42px 1fr 32px;
        gap: 11px;
    }

    .why-number {
        width: 41px;
        height: 41px;
        border-radius: 12px;
        font-size: 9px;
    }

    .why-item-content strong {
        font-size: 11px;
    }

    .why-item-content small {
        font-size: 8px;
    }

    .why-item-arrow {
        width: 31px;
        height: 31px;
        font-size: 11px;
    }

    .why-feature {
        min-height: 400px;
        padding: 22px;
        border-radius: 24px;
    }

    .why-feature-icon {
        top: 75px;
        right: 20px;
        width: 80px;
        height: 80px;
    }

    .feature-symbol {
        width: 51px;
        height: 51px;
        border-radius: 16px;
        font-size: 19px;
    }

    .why-feature-content {
        margin-top: 85px;
    }

    .why-feature-content h3 {
        font-size: 35px;
    }

    .why-feature-content p {
        font-size: 10px;
    }

    .why-feature-bottom {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-feature-bottom div {
        padding-top: 13px;
    }

    .why-feature-bottom strong {
        font-size: 10px;
    }

    .why-feature-bottom span {
        font-size: 7px;
    }

    .why-trust {
        padding: 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .trust-item {
        min-width: 100%;
    }
}
/* Testimonials section */
.voices-section {
    position: relative;
    overflow: hidden;
    padding: 115px 5%;
    background: #08263a;
    color: #ffffff;
}

.voices-section::before {
    content: "";
    position: absolute;
    top: -280px;
    right: -180px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(24, 166, 166, 0.16),
        rgba(24, 166, 166, 0.02) 65%,
        transparent 72%
    );
}

.voices-section::after {
    content: "";
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(229, 169, 40, 0.12),
        transparent 68%
    );
}

.voices-container {
    position: relative;
    z-index: 2;
    width: min(1260px, 100%);
    margin: 0 auto;
}

.voices-header {
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.voices-eyebrow {
    width: fit-content;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(245, 201, 93, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    color: #f5c95d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.voices-eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #18a6a6;
    box-shadow: 0 0 0 5px rgba(24, 166, 166, 0.13);
}

.voices-label {
    color: rgba(255, 255, 255, 0.28);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.voices-main {
    min-height: 480px;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.voices-intro h2 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(42px, 4.7vw, 62px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -2.5px;
}

.voices-intro h2 span {
    display: block;
    background: linear-gradient(90deg, #f5c95d, #e5a928, #ef765b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.voices-intro p {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    line-height: 1.8;
}

.voices-count {
    margin-top: 55px;
    color: rgba(255, 255, 255, 0.25);
}

.voices-count strong {
    color: #f5c95d;
    font-size: 34px;
    font-weight: 800;
}

.voices-count span {
    font-size: 12px;
    font-weight: 700;
}

.voices-content {
    position: relative;
    min-height: 400px;
    padding: 55px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.voices-quote-mark {
    position: absolute;
    top: -35px;
    left: -5px;
    color: rgba(245, 201, 93, 0.12);
    font-family: Georgia, serif;
    font-size: 130px;
    line-height: 1;
}

.voices-rating {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
    display: flex;
    gap: 5px;
    color: #f5c95d;
    font-size: 14px;
}

.voice-text {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 0 35px;
    color: #ffffff;
    font-size: clamp(23px, 2.5vw, 34px);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.7px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.voice-author {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
}

.voice-avatar {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5c95d;
    color: #08263a;
    font-size: 13px;
    font-weight: 800;
}

.voice-name {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.voice-role {
    color: rgba(255, 255, 255, 0.38);
    font-size: 8px;
}

.voices-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.voice-selector {
    width: 100%;
    min-height: 82px;
    padding: 13px 14px;
    display: grid;
    grid-template-columns: 35px 1fr 32px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    transition: 0.35s ease;
}

.voice-selector:hover,
.voice-selector.active {
    border-color: rgba(245, 201, 93, 0.35);
    background: rgba(245, 201, 93, 0.08);
    transform: translateX(-5px);
}

.voice-selector-number {
    color: rgba(255, 255, 255, 0.3);
    font-size: 9px;
    font-weight: 800;
}

.voice-selector.active .voice-selector-number {
    color: #f5c95d;
}

.voice-selector-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.voice-selector-info strong {
    color: rgba(255, 255, 255, 0.88);
    font-size: 10px;
    font-weight: 800;
}

.voice-selector-info small {
    color: rgba(255, 255, 255, 0.32);
    font-size: 7px;
}

.voice-selector-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    transition: 0.35s ease;
}

.voice-selector.active .voice-selector-arrow {
    border-color: #f5c95d;
    background: #f5c95d;
    color: #08263a;
    transform: rotate(45deg);
}

.voices-bottom {
    margin-top: 45px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 35px;
}

.voices-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.voices-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.voice-prev,
.voice-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s ease;
}

.voice-prev:hover,
.voice-next:hover {
    border-color: #f5c95d;
    background: #f5c95d;
    color: #08263a;
}

.voice-progress {
    width: 80px;
    height: 3px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
}

.voice-progress-fill {
    display: block;
    width: 33.33%;
    height: 100%;
    border-radius: 10px;
    background: #f5c95d;
    transition: width 0.4s ease;
}

.voices-cta {
    min-height: 48px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    background: #f5c95d;
    color: #08263a;
    font-size: 10px;
    font-weight: 800;
    transition: 0.3s ease;
}

.voices-cta:hover {
    background: #ffffff;
    color: #08263a;
    transform: translateY(-2px);
}

.voices-cta span {
    font-size: 15px;
}

@media (max-width: 1050px) {
    .voices-section {
        padding: 100px 4%;
    }

    .voices-main {
        gap: 35px;
    }

    .voice-text {
        font-size: 27px;
    }
}

@media (max-width: 850px) {
    .voices-section {
        padding: 85px 25px;
    }

    .voices-header {
        margin-bottom: 50px;
    }

    .voices-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .voices-intro {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 25px;
        align-items: end;
    }

    .voices-intro p {
        grid-column: 1;
    }

    .voices-count {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
    }

    .voices-content {
        min-height: 350px;
    }

    .voices-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .voice-selector {
        min-height: 90px;
    }

    .voices-bottom {
        grid-template-columns: 1fr auto;
    }

    .voices-line {
        display: none;
    }
}

@media (max-width: 600px) {
    .voices-section {
        padding: 70px 18px;
    }

    .voices-header {
        margin-bottom: 40px;
    }

    .voices-label {
        display: none;
    }

    .voices-eyebrow {
        font-size: 8px;
    }

    .voices-main {
        gap: 30px;
    }

    .voices-intro {
        display: block;
    }

    .voices-intro h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .voices-intro p {
        max-width: 100%;
        margin-top: 15px;
        font-size: 10px;
    }

    .voices-count {
        margin-top: 20px;
    }

    .voices-count strong {
        font-size: 27px;
    }

    .voices-content {
        min-height: 360px;
        padding: 45px 0 35px;
    }

    .voice-text {
        font-size: 22px;
        line-height: 1.4;
    }

    .voices-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .voice-selector {
        min-height: 68px;
    }

    .voice-selector.active {
        transform: none;
    }

    .voices-bottom {
        margin-top: 30px;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
    }

    .voices-cta {
        width: 100%;
    }
}
/* FAQ Section */
.faq-section {
    position: relative;
    overflow: hidden;
    padding: 120px 5%;
    background: #fff9ed;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(24, 166, 166, 0.06);
}

.faq-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -220px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(229, 169, 40, 0.07);
}

.faq-container {
    position: relative;
    z-index: 2;
    width: min(1260px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 90px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-eyebrow {
    width: fit-content;
    margin-bottom: 20px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(24, 166, 166, 0.22);
    border-radius: 50px;
    background: #e7f7f4;
    color: #168383;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.faq-eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #18a6a6;
    box-shadow: 0 0 0 5px rgba(24, 166, 166, 0.12);
}

.faq-intro h2 {
    margin-bottom: 20px;
    color: #08263a;
    font-size: clamp(43px, 4.8vw, 62px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2.5px;
}

.faq-intro h2 span {
    display: block;
    background: linear-gradient(90deg, #d99617, #e5a928, #ef765b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-intro > p {
    max-width: 390px;
    margin-bottom: 32px;
    color: #71808a;
    font-size: 12px;
    line-height: 1.8;
}

.faq-help-card {
    max-width: 370px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(8, 38, 58, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(8, 38, 58, 0.07);
}

.faq-help-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #08263a;
    color: #f5c95d;
    font-size: 17px;
    font-weight: 800;
}

.faq-help-card div:nth-child(2) {
    flex: 1;
}

.faq-help-card strong {
    display: block;
    margin-bottom: 3px;
    color: #08263a;
    font-size: 10px;
    font-weight: 800;
}

.faq-help-card span {
    color: #8a969c;
    font-size: 8px;
}

.faq-help-card a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5c95d;
    color: #08263a;
    font-size: 15px;
    font-weight: 800;
    transition: 0.3s ease;
}

.faq-help-card a:hover {
    transform: rotate(45deg);
    background: #18a6a6;
    color: #ffffff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(8, 38, 58, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    transition: 0.35s ease;
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(229, 169, 40, 0.35);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(8, 38, 58, 0.07);
}

.faq-question {
    position: relative;
    width: 100%;
    min-height: 76px;
    padding: 12px 18px;
    display: grid;
    grid-template-columns: 40px 1fr 38px;
    align-items: center;
    gap: 14px;
    border: 0;
    background: transparent;
    color: #08263a;
    text-align: left;
    cursor: pointer;
}

.faq-number {
    color: #9ba6ab;
    font-size: 9px;
    font-weight: 800;
}

.faq-item.active .faq-number {
    color: #e5a928;
}

.faq-question-text {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
}

.faq-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(8, 38, 58, 0.1);
    border-radius: 50%;
    color: #08263a;
    font-size: 18px;
    font-weight: 400;
    transition: 0.35s ease;
}

.faq-item.active .faq-icon {
    border-color: #e5a928;
    background: #e5a928;
    color: #08263a;
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer > div {
    overflow: hidden;
}

.faq-answer p {
    max-width: 720px;
    padding: 0 70px 22px 72px;
    color: #71808a;
    font-size: 10px;
    line-height: 1.8;
}

@media (max-width: 1050px) {
    .faq-section {
        padding: 100px 4%;
    }

    .faq-container {
        gap: 55px;
    }

    .faq-intro h2 {
        font-size: 50px;
    }
}

@media (max-width: 850px) {
    .faq-section {
        padding: 85px 25px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-intro {
        position: static;
    }

    .faq-intro > p {
        max-width: 600px;
    }

    .faq-help-card {
        max-width: 420px;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 70px 18px;
    }

    .faq-eyebrow {
        font-size: 8px;
    }

    .faq-intro h2 {
        margin-bottom: 17px;
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .faq-intro > p {
        font-size: 11px;
    }

    .faq-question {
        min-height: 68px;
        padding: 10px 12px;
        grid-template-columns: 30px 1fr 34px;
        gap: 9px;
    }

    .faq-number {
        font-size: 8px;
    }

    .faq-question-text {
        font-size: 10px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 18px 20px 51px;
        font-size: 9px;
    }

    .faq-help-card {
        padding: 13px;
    }
}
/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 85px 5%;
    background: #fff9ed;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -150px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(24, 166, 166, 0.06);
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -230px;
    left: -180px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(229, 169, 40, 0.07);
}

.cta-container {
    position: relative;
    z-index: 2;
    width: min(1260px, 100%);
    margin: 0 auto;
    padding: 48px 52px 25px;
    overflow: hidden;
    border: 1px solid rgba(8, 38, 58, 0.08);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 25px 70px rgba(8, 38, 58, 0.08);
}

.cta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(8, 38, 58, 0.08);
}

.cta-eyebrow {
    width: fit-content;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(24, 166, 166, 0.2);
    border-radius: 50px;
    background: #e7f7f4;
    color: #168383;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.cta-eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #18a6a6;
    box-shadow: 0 0 0 5px rgba(24, 166, 166, 0.11);
}

.cta-number {
    color: #a2adb2;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.cta-main {
    padding: 55px 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.cta-copy {
    max-width: 650px;
}

.cta-copy h2 {
    margin-bottom: 20px;
    color: #08263a;
    font-size: clamp(45px, 5vw, 67px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -3px;
}

.cta-copy h2 span {
    display: block;
    background: linear-gradient(
        90deg,
        #d99617,
        #e5a928,
        #ef765b
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-copy p {
    max-width: 520px;
    margin-bottom: 28px;
    color: #71808a;
    font-size: 12px;
    line-height: 1.8;
}

.cta-benefits {
    display: flex;
    align-items: center;
    gap: 22px;
}

.cta-benefits div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.cta-benefits span {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e7f7f4;
    color: #168383;
    font-size: 8px;
    font-weight: 800;
}

.cta-benefits strong {
    color: #34566b;
    font-size: 9px;
    font-weight: 800;
}

.cta-action {
    position: relative;
    min-height: 265px;
    padding: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background: #08263a;
}

.cta-action::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(24, 166, 166, 0.14);
}

.cta-action::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -100px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(229, 169, 40, 0.1);
}

.cta-action-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-action-label {
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.cta-apply {
    min-height: 58px;
    padding: 0 8px 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 22px;
    border-radius: 50px;
    background: #f5c95d;
    color: #08263a;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(229, 169, 40, 0.18);
    transition: 0.35s ease;
}

.cta-apply i {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #08263a;
    color: #f5c95d;
    font-size: 16px;
    font-style: normal;
    transition: 0.35s ease;
}

.cta-apply:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(255, 255, 255, 0.12);
}

.cta-apply:hover i {
    transform: rotate(45deg);
}

.cta-action-note {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.32);
    font-size: 8px;
}

.cta-action-decoration {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    gap: 5px;
}

.cta-action-decoration span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(245, 201, 93, 0.45);
}

.cta-action-decoration span:nth-child(2) {
    background: rgba(24, 166, 166, 0.55);
}

.cta-action-decoration span:nth-child(3) {
    background: rgba(255, 255, 255, 0.2);
}

.cta-bottom {
    position: relative;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-top: 1px solid rgba(8, 38, 58, 0.07);
}

.cta-bottom > span {
    color: #9aa5aa;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.cta-bottom > i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #18a6a6;
}

.cta-bottom-line {
    flex: 1;
    height: 1px;
    margin-left: 10px;
    background: linear-gradient(
        90deg,
        rgba(8, 38, 58, 0.08),
        transparent
    );
}

@media (max-width: 1050px) {
    .cta-section {
        padding: 75px 4%;
    }

    .cta-container {
        padding: 42px 38px 22px;
    }

    .cta-main {
        gap: 45px;
    }

    .cta-copy h2 {
        font-size: 54px;
    }
}

@media (max-width: 850px) {
    .cta-section {
        padding: 70px 25px;
    }

    .cta-container {
        padding: 38px 30px 20px;
    }

    .cta-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cta-copy {
        max-width: 700px;
    }

    .cta-action {
        min-height: 220px;
    }
}

@media (max-width: 600px) {
    .cta-section {
        padding: 55px 18px;
    }

    .cta-container {
        padding: 28px 20px 18px;
        border-radius: 23px;
    }

    .cta-top {
        padding-bottom: 18px;
    }

    .cta-eyebrow {
        font-size: 7px;
    }

    .cta-number {
        display: none;
    }

    .cta-main {
        padding: 38px 0;
        gap: 28px;
    }

    .cta-copy h2 {
        margin-bottom: 17px;
        font-size: 40px;
        letter-spacing: -1.7px;
    }

    .cta-copy p {
        font-size: 10px;
    }

    .cta-benefits {
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .cta-benefits strong {
        font-size: 8px;
    }

    .cta-action {
        min-height: 200px;
        padding: 20px;
        border-radius: 20px;
    }

    .cta-apply {
        width: 100%;
        justify-content: space-between;
    }

    .cta-bottom {
        flex-wrap: wrap;
        gap: 8px;
    }

    .cta-bottom-line {
        display: none;
    }
}
/* Footer  */
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 100px 5% 25px;
    background: #071f31;
    color: #ffffff;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.footer-glow-top {
    top: -350px;
    right: -180px;
    width: 650px;
    height: 650px;
    background: radial-gradient(
        circle,
        rgba(24, 166, 166, 0.14),
        transparent 68%
    );
}

.footer-glow-bottom {
    bottom: -400px;
    left: -220px;
    width: 650px;
    height: 650px;
    background: radial-gradient(
        circle,
        rgba(229, 169, 40, 0.1),
        transparent 68%
    );
}

.footer-container {
    position: relative;
    z-index: 2;
    width: min(1280px, 100%);
    margin: 0 auto;
}

.footer-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -4px;
}

.footer-logo span {
    color: #f5c95d;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
}

.footer-brand p strong {
    color: #ffffff;
    font-weight: 700;
}

.footer-start-btn {
    min-height: 58px;
    padding: 0 8px 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border-radius: 50px;
    background: #f5c95d;
    color: #071f31;
    font-size: 14px;
    font-weight: 800;
    transition: 0.35s ease;
}

.footer-start-btn i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #071f31;
    color: #f5c95d;
    font-size: 18px;
    font-style: normal;
    transition: 0.35s ease;
}

.footer-start-btn:hover {
    background: #ffffff;
    transform: translateY(-4px);
}

.footer-start-btn:hover i {
    transform: rotate(45deg);
}

.footer-divider {
    width: 100%;
    height: 1px;
    margin: 75px 0 60px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.25fr;
    gap: 70px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-title {
    margin-bottom: 24px;
    color: #f5c95d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.footer-column a {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.3;
    transition: 0.25s ease;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

.footer-contact > p {
    margin: 3px 0 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-socials {
    display: flex;
    gap: 9px;
    margin-top: 5px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    font-weight: 800;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    border-color: #f5c95d;
    background: #f5c95d;
    color: #071f31;
    transform: translateY(-4px);
}

.footer-cta {
    margin-top: 85px;
    padding: 45px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035);
}

.footer-cta-label {
    display: block;
    margin-bottom: 14px;
    color: #18a6a6;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.footer-cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 55px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
}

.footer-cta h2 span {
    color: #f5c95d;
}

.footer-cta-button {
    min-height: 62px;
    padding: 0 9px 0 27px;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
    border-radius: 50px;
    background: #f5c95d;
    color: #071f31;
    font-size: 14px;
    font-weight: 800;
    transition: 0.35s ease;
}

.footer-cta-button span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #071f31;
    color: #f5c95d;
    font-size: 18px;
    transition: 0.35s ease;
}

.footer-cta-button:hover {
    background: #ffffff;
    transform: translateY(-4px);
}

.footer-cta-button:hover span {
    transform: rotate(45deg);
}

.footer-disclaimer {
    margin-top: 55px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-disclaimer strong {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.footer-disclaimer p {
    max-width: 1050px;
    margin: 0;
    color: rgba(255, 255, 255, 0.28);
    font-size: 10px;
    line-height: 1.8;
}

.footer-bottom {
    min-height: 75px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 30px;
}

.footer-bottom > span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    transition: 0.25s ease;
}

.footer-bottom-links a:hover {
    color: #f5c95d;
}

.footer-top {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.footer-top:hover {
    border-color: #f5c95d;
    background: #f5c95d;
    color: #071f31;
    transform: translateY(-3px);
}

@media (max-width: 1050px) {
    .site-footer {
        padding: 85px 4% 20px;
    }

    .footer-links {
        gap: 45px;
    }

    .footer-cta {
        padding: 40px;
    }
}

@media (max-width: 850px) {
    .site-footer {
        padding: 75px 25px 20px;
    }

    .footer-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .footer-divider {
        margin: 55px 0 45px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 30px;
    }

    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        grid-template-columns: 1fr auto;
    }

    .footer-bottom-links {
        grid-column: span 2;
        grid-row: 1;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 60px 18px 18px;
    }

    .footer-logo {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .footer-brand p {
        font-size: 21px;
    }

    .footer-start-btn {
        width: 100%;
        justify-content: space-between;
    }

    .footer-divider {
        margin: 45px 0 38px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 38px 20px;
    }

    .footer-title {
        margin-bottom: 18px;
        font-size: 9px;
    }

    .footer-column a {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-contact a {
        font-size: 14px;
    }

    .footer-cta {
        margin-top: 60px;
        padding: 30px 22px;
        border-radius: 22px;
    }

    .footer-cta h2 {
        font-size: 37px;
    }

    .footer-cta-button {
        width: 100%;
        justify-content: space-between;
    }

    .footer-disclaimer {
        margin-top: 40px;
    }

    .footer-disclaimer p {
        font-size: 8px;
        line-height: 1.7;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 18px;
        padding-top: 20px;
    }

    .footer-bottom-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .footer-bottom > span {
        font-size: 8px;
    }
}
.section-visible {
    animation: sectionReveal 0.7s ease both;
}

@keyframes sectionReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.button-ripple {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: buttonRipple 0.6s ease-out forwards;
}

.cta-apply,
.footer-start-btn,
.footer-cta-button,
.footer-top,
.cta-main-btn {
    position: relative;
    overflow: hidden;
}

@keyframes buttonRipple {
    from {
        width: 10px;
        height: 10px;
        opacity: 0.8;
    }

    to {
        width: 250px;
        height: 250px;
        opacity: 0;
    }
}

.header-hidden {
    transform: translateY(-100%);
}

header {
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

header.scrolled {
    box-shadow: 0 8px 30px rgba(8, 38, 58, 0.08);
}

.reduced-motion *,
.reduced-motion *::before,
.reduced-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
}

/* =========================================================
   LOANVEDI PRODUCTS SECTION
   ========================================================= */

.lv-products {
    position: relative;
    overflow: hidden;
    padding: 110px 5%;
    background: #fff9ed;
}

.lv-products-container {
    width: min(1280px, 100%);
    margin: 0 auto;
}

.lv-products-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.lv-products-hero-content {
    max-width: 780px;
}

.lv-section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #168383;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.lv-products-hero h1 {
    margin: 0 0 22px;
    color: #08263a;
    font-size: clamp(45px, 5.5vw, 72px);
    font-weight: 800;
    line-height: .94;
    letter-spacing: -3.5px;
}

.lv-products-hero h1 span {
    display: block;
    color: #e5a928;
}

.lv-products-hero p {
    max-width: 680px;
    margin: 0;
    color: #71808a;
    font-size: 13px;
    line-height: 1.85;
}

.lv-products-hero-badge {
    width: 130px;
    height: 130px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    border-radius: 25px;
    background: #08263a;
    box-shadow: 0 20px 45px rgba(8,38,58,.12);
}

.lv-products-hero-badge span {
    color: #f5c95d;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.lv-products-hero-badge small {
    color: rgba(255,255,255,.4);
    font-size: 7px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 1px;
}

/* PRODUCT BLOCK */

.lv-product-block {
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
    padding: 40px;
    border: 1px solid rgba(8,38,58,.08);
    border-radius: 28px;
    background: #ffffff;
    transition: .35s ease;
}

.lv-product-block:hover {
    box-shadow: 0 20px 55px rgba(8,38,58,.07);
}

.lv-product-dark {
    border-color: transparent;
    background: #08263a;
}

.lv-product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.lv-product-title-area {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.lv-product-number {
    padding-top: 5px;
    color: #e5a928;
    font-size: 11px;
    font-weight: 800;
}

.lv-product-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: #e7f7f4;
    color: #168383;
    font-size: 23px;
    font-weight: 800;
}

.lv-product-dark .lv-product-icon {
    background: rgba(245,201,93,.1);
    color: #f5c95d;
}

.lv-product-title > span {
    display: block;
    margin-bottom: 7px;
    color: #168383;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.lv-product-dark .lv-product-title > span {
    color: #18a6a6;
}

.lv-product-title h2 {
    margin: 0 0 9px;
    color: #08263a;
    font-size: 31px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.lv-product-dark .lv-product-title h2 {
    color: #ffffff;
}

.lv-product-title p {
    max-width: 680px;
    margin: 0;
    color: #71808a;
    font-size: 11px;
    line-height: 1.75;
}

.lv-product-dark .lv-product-title p {
    color: rgba(255,255,255,.42);
}

.lv-product-count {
    min-width: 75px;
    padding-top: 2px;
    text-align: right;
}

.lv-product-count strong {
    display: block;
    color: #e5a928;
    font-size: 36px;
    font-weight: 800;
    line-height: .9;
    letter-spacing: -2px;
}

.lv-product-count span {
    display: block;
    margin-top: 6px;
    color: #9ca8ac;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.lv-product-dark .lv-product-count span {
    color: rgba(255,255,255,.3);
}

/* LENDER GRID */

.lv-lender-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}

.lv-lender-card {
    min-height: 62px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(8,38,58,.07);
    border-radius: 13px;
    background: #fff9ed;
    transition: .3s ease;
}

.lv-lender-card:hover {
    border-color: rgba(229,169,40,.5);
    background: #ffffff;
    box-shadow: 0 9px 22px rgba(8,38,58,.07);
    transform: translateY(-3px);
}

.lv-product-dark .lv-lender-card {
    border-color: rgba(255,255,255,.08);
    background: rgba(255,255,255,.045);
}

.lv-product-dark .lv-lender-card:hover {
    border-color: rgba(245,201,93,.45);
    background: rgba(255,255,255,.08);
}

.lv-lender-card > span {
    color: #a4afb3;
    font-size: 8px;
    font-weight: 800;
}

.lv-lender-card strong {
    color: #3c5868;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.lv-product-dark .lv-lender-card strong {
    color: rgba(255,255,255,.7);
}

/* ACTION */

.lv-product-action {
    min-height: 48px;
    margin-top: 30px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(8,38,58,.08);
}

.lv-product-dark .lv-product-action {
    border-color: rgba(255,255,255,.08);
}

.lv-product-action p {
    margin: 0;
    color: #89969c;
    font-size: 9px;
    line-height: 1.5;
}

.lv-product-dark .lv-product-action p {
    color: rgba(255,255,255,.3);
}

.lv-product-action a {
    min-height: 44px;
    padding: 0 7px 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    border-radius: 50px;
    background: #08263a;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    transition: .3s ease;
}

.lv-product-action a span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5c95d;
    color: #08263a;
    font-size: 13px;
}

.lv-product-action a:hover {
    background: #18a6a6;
    transform: translateY(-2px);
}

.lv-product-dark .lv-product-action a {
    background: #f5c95d;
    color: #08263a;
}

.lv-product-dark .lv-product-action a span {
    background: #08263a;
    color: #f5c95d;
}

.lv-product-dark .lv-product-action a:hover {
    background: #ffffff;
}

/* INFORMATION NOTE */

.lv-products-note {
    margin-top: 30px;
    padding: 25px 28px;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    border: 1px solid rgba(8,38,58,.08);
    border-radius: 18px;
    background: #ffffff;
}

.lv-products-note-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #e7f7f4;
    color: #168383;
    font-size: 12px;
    font-weight: 800;
}

.lv-products-note strong {
    display: block;
    margin-bottom: 7px;
    color: #08263a;
    font-size: 10px;
    font-weight: 800;
}

.lv-products-note p {
    max-width: 1050px;
    margin: 0;
    color: #89969c;
    font-size: 9px;
    line-height: 1.8;
}

/* TABLET */

@media (max-width: 1050px) {
    .lv-products {
        padding: 90px 4%;
    }

    .lv-products-hero {
        gap: 35px;
    }

    .lv-lender-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */

@media (max-width: 700px) {
    .lv-products {
        padding: 75px 20px;
    }

    .lv-products-hero {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 45px;
    }

    .lv-products-hero h1 {
        font-size: 45px;
        letter-spacing: -2.5px;
    }

    .lv-products-hero p {
        font-size: 11px;
    }

    .lv-products-hero-badge {
        width: 105px;
        height: 105px;
        padding: 17px;
    }

    .lv-products-hero-badge span {
        font-size: 30px;
    }

    .lv-product-block {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .lv-product-header {
        flex-direction: column;
        gap: 20px;
    }

    .lv-product-title-area {
        gap: 13px;
    }

    .lv-product-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .lv-product-title h2 {
        font-size: 26px;
    }

    .lv-product-title p {
        font-size: 10px;
    }

    .lv-product-count {
        text-align: left;
    }

    .lv-lender-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lv-product-action {
        align-items: flex-start;
        flex-direction: column;
    }

    .lv-product-action a {
        width: 100%;
        justify-content: space-between;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .lv-products {
        padding: 60px 15px;
    }

    .lv-products-hero h1 {
        font-size: 38px;
    }

    .lv-product-block {
        padding: 25px 18px;
    }

    .lv-product-title h2 {
        font-size: 24px;
    }

    .lv-lender-grid {
        grid-template-columns: 1fr;
    }

    .lv-lender-card {
        min-height: 57px;
    }

    .lv-products-note {
        padding: 20px;
    }

    .lv-products-note p {
        font-size: 8px;
    }
}
.lv-products-hero{
    position:relative;
    overflow:hidden;
    background:#fff;
    padding:125px 5% 75px;
}
.lv-products-hero-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr .85fr;
    align-items:center;
    gap:70px;
}
.lv-products-hero-content{
    position:relative;
    z-index:2;
}
.lv-products-hero-tag{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:#168383;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:20px;
}
.lv-products-hero-tag:before{
    content:"";
    width:28px;
    height:2px;
    background:#e5a928;
}
.lv-products-hero h1{
    margin:0;
    max-width:650px;
    color:#08263a;
    font-size:clamp(45px,5vw,72px);
    line-height:1.03;
    font-weight:800;
    letter-spacing:-2.5px;
}
.lv-products-hero h1 span{
    color:#168383;
}
.lv-products-hero p{
    max-width:590px;
    margin:25px 0 30px;
    color:#71808a;
    font-size:17px;
    line-height:1.75;
}
.lv-products-hero-buttons{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}
.lv-btn-primary,
.lv-btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:52px;
    padding:0 25px;
    border-radius:8px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.3s ease;
}
.lv-btn-primary{
    background:#08263a;
    color:#fff;
}
.lv-btn-primary span{
    font-size:20px;
    color:#f5c95d;
    transition:.3s ease;
}
.lv-btn-primary:hover{
    background:#168383;
    color:#fff;
    transform:translateY(-2px);
}
.lv-btn-primary:hover span{
    transform:translateX(4px);
}
.lv-btn-secondary{
    border:1px solid #d9e1e4;
    color:#08263a;
    background:#fff;
}
.lv-btn-secondary:hover{
    border-color:#168383;
    color:#168383;
    transform:translateY(-2px);
}
.lv-products-hero-trust{
    display:flex;
    gap:35px;
    margin-top:48px;
    padding-top:25px;
    border-top:1px solid #edf0f1;
}
.lv-products-hero-trust div{
    display:flex;
    flex-direction:column;
    gap:4px;
}
.lv-products-hero-trust strong{
    color:#08263a;
    font-size:23px;
    font-weight:800;
}
.lv-products-hero-trust span{
    color:#7c898f;
    font-size:11px;
    letter-spacing:.5px;
}
.lv-products-hero-visual{
    position:relative;
    min-height:470px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.lv-hero-glow{
    position:absolute;
    width:390px;
    height:390px;
    border-radius:50%;
    background:rgba(22,131,131,.08);
    filter:blur(2px);
}
.lv-hero-card-main{
    position:relative;
    z-index:2;
    width:370px;
    height:245px;
    padding:28px;
    border-radius:22px;
    background:linear-gradient(135deg,#08263a,#10435a);
    box-shadow:0 25px 60px rgba(8,38,58,.2);
    transform:rotate(-5deg);
}
.lv-card-top,
.lv-card-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.lv-card-top{
    color:#8fd3d0;
    font-size:10px;
    font-weight:800;
    letter-spacing:1.5px;
}
.lv-card-content{
    margin-top:43px;
}
.lv-card-content small{
    display:block;
    margin-bottom:5px;
    color:#e5a928;
    font-size:10px;
    font-weight:800;
    letter-spacing:2px;
}
.lv-card-content strong{
    display:block;
    color:#fff;
    font-size:30px;
    line-height:1.05;
    letter-spacing:-1px;
}
.lv-card-content p{
    margin:8px 0 0;
    color:#b9cbd2;
    font-size:12px;
}
.lv-card-bottom{
    position:absolute;
    left:28px;
    right:28px;
    bottom:25px;
    color:#d9e8ec;
    font-size:11px;
}
.lv-floating-info{
    position:absolute;
    z-index:3;
    display:flex;
    align-items:center;
    gap:12px;
    min-width:185px;
    padding:14px 17px;
    background:#fff;
    border:1px solid #edf0f1;
    border-radius:12px;
    box-shadow:0 12px 35px rgba(8,38,58,.1);
}
.lv-floating-info>span{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:9px;
    background:#fff7df;
    color:#d69611;
    font-size:16px;
    font-weight:800;
}
.lv-floating-info div{
    display:flex;
    flex-direction:column;
    gap:3px;
}
.lv-floating-info strong{
    color:#08263a;
    font-size:12px;
}
.lv-floating-info small{
    color:#87939a;
    font-size:10px;
}
.lv-info-one{
    top:65px;
    right:0;
}
.lv-info-two{
    bottom:55px;
    left:0;
}
@media(max-width:991px){
    .lv-products-hero{
        padding:105px 6% 60px;
    }
    .lv-products-hero-container{
        grid-template-columns:1fr;
        gap:40px;
    }
    .lv-products-hero-content{
        text-align:center;
    }
    .lv-products-hero-tag{
        justify-content:center;
    }
    .lv-products-hero h1,
    .lv-products-hero p{
        margin-left:auto;
        margin-right:auto;
    }
    .lv-products-hero-buttons{
        justify-content:center;
    }
    .lv-products-hero-trust{
        justify-content:center;
    }
    .lv-products-hero-visual{
        min-height:400px;
    }
}
@media(max-width:576px){
    .lv-products-hero{
        padding:95px 5% 45px;
    }
    .lv-products-hero h1{
        font-size:43px;
        letter-spacing:-1.8px;
    }
    .lv-products-hero p{
        font-size:15px;
        line-height:1.65;
    }
    .lv-products-hero-trust{
        gap:18px;
        margin-top:35px;
    }
    .lv-products-hero-trust strong{
        font-size:19px;
    }
    .lv-products-hero-trust span{
        font-size:9px;
    }
    .lv-products-hero-visual{
        min-height:350px;
    }
    .lv-hero-card-main{
        width:290px;
        height:200px;
        padding:22px;
    }
    .lv-card-content{
        margin-top:32px;
    }
    .lv-card-content strong{
        font-size:24px;
    }
    .lv-card-bottom{
        left:22px;
        right:22px;
        bottom:18px;
    }
    .lv-floating-info{
        min-width:150px;
        padding:10px 12px;
    }
    .lv-info-one{
        top:20px;
        right:-5px;
    }
    .lv-info-two{
        bottom:15px;
        left:-5px;
    }
}
.lv-home-products{
    padding:90px 5%;
    background:#fff;
}
.lv-home-products-container{
    max-width:1250px;
    margin:auto;
}
.lv-home-products-heading{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:50px;
    margin-bottom:45px;
}
.lv-section-tag{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:#168383;
    font-size:11px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:14px;
}
.lv-section-tag:before{
    content:"";
    width:25px;
    height:2px;
    background:#e5a928;
}
.lv-home-products-heading h2{
    margin:0;
    color:#08263a;
    font-size:clamp(35px,4vw,52px);
    line-height:1.08;
    letter-spacing:-1.5px;
}
.lv-home-products-heading h2 span{
    color:#168383;
}
.lv-home-products-intro{
    max-width:420px;
}
.lv-home-products-intro p{
    margin:0 0 18px;
    color:#71808a;
    font-size:15px;
    line-height:1.7;
}
.lv-products-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#08263a;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
    transition:.3s ease;
}
.lv-products-link span{
    color:#e5a928;
    font-size:18px;
    transition:.3s ease;
}
.lv-products-link:hover{
    color:#168383;
}
.lv-products-link:hover span{
    transform:translateX(5px);
}
.lv-home-products-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    border-top:1px solid #e8edef;
    border-bottom:1px solid #e8edef;
}
.lv-home-product-card{
    position:relative;
    min-height:280px;
    padding:28px 22px;
    text-decoration:none;
    border-right:1px solid #e8edef;
    transition:.35s ease;
}
.lv-home-product-card:last-child{
    border-right:0;
}
.lv-home-product-card:hover{
    background:#08263a;
    transform:translateY(-6px);
}
.lv-product-icon{
    width:43px;
    height:43px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:35px;
    border-radius:10px;
    background:#fff8e7;
    color:#d99b19;
    font-size:18px;
    font-weight:800;
}
.lv-home-product-card>span{
    position:absolute;
    top:30px;
    right:20px;
    color:#a9b4b9;
    font-size:10px;
    font-weight:700;
}
.lv-home-product-card h3{
    margin:0 0 12px;
    color:#08263a;
    font-size:18px;
    transition:.3s ease;
}
.lv-home-product-card p{
    margin:0;
    color:#7b888e;
    font-size:12px;
    line-height:1.7;
    transition:.3s ease;
}
.lv-home-product-card strong{
    position:absolute;
    left:22px;
    bottom:25px;
    color:#168383;
    font-size:11px;
    transition:.3s ease;
}
.lv-home-product-card:hover h3,
.lv-home-product-card:hover p,
.lv-home-product-card:hover>span{
    color:#fff;
}
.lv-home-product-card:hover p{
    color:#b8c9cf;
}
.lv-home-product-card:hover strong{
    color:#f5c95d;
}
@media(max-width:1000px){
    .lv-home-products-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .lv-home-product-card:nth-child(2){
        border-right:0;
    }
    .lv-home-product-card:nth-child(1),
    .lv-home-product-card:nth-child(2){
        border-bottom:1px solid #e8edef;
    }
    .lv-home-product-card:nth-child(3),
    .lv-home-product-card:nth-child(4){
        border-bottom:1px solid #e8edef;
    }
    .lv-home-product-card:nth-child(4){
        border-right:0;
    }
    .lv-home-product-card:last-child{
        grid-column:1/-1;
        border-right:0;
    }
}
@media(max-width:650px){
    .lv-home-products{
        padding:65px 5%;
    }
    .lv-home-products-heading{
        display:block;
        margin-bottom:30px;
    }
    .lv-home-products-intro{
        margin-top:20px;
    }
    .lv-home-products-grid{
        grid-template-columns:1fr;
    }
    .lv-home-product-card,
    .lv-home-product-card:nth-child(1),
    .lv-home-product-card:nth-child(2),
    .lv-home-product-card:nth-child(3),
    .lv-home-product-card:nth-child(4){
        min-height:235px;
        border-right:0;
        border-bottom:1px solid #e8edef;
    }
    .lv-home-product-card:last-child{
        grid-column:auto;
        border-bottom:0;
    }
}

.lv-contact-hero{
    padding:125px 5% 80px;
    background:#f8fbfb;
    overflow:hidden;
}
.lv-contact-hero-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    align-items:center;
    gap:80px;
}
.lv-contact-hero-content{
    max-width:540px;
}
.lv-contact-tag{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:20px;
    color:#168383;
    font-size:11px;
    font-weight:800;
    letter-spacing:2px;
}
.lv-contact-tag:before{
    content:"";
    width:26px;
    height:2px;
    background:#e5a928;
}
.lv-contact-hero-content h1{
    margin:0;
    color:#08263a;
    font-size:clamp(44px,5vw,67px);
    line-height:1.05;
    letter-spacing:-2.5px;
    font-weight:800;
}
.lv-contact-hero-content h1 span{
    display:block;
    color:#168383;
}
.lv-contact-hero-content>p{
    max-width:500px;
    margin:25px 0 38px;
    color:#71808a;
    font-size:16px;
    line-height:1.75;
}
.lv-contact-details{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.lv-contact-detail{
    display:flex;
    align-items:center;
    gap:15px;
}
.lv-contact-detail-icon{
    width:45px;
    height:45px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#fff;
    color:#168383;
    border:1px solid #e6eeee;
    font-size:17px;
    box-shadow:0 5px 18px rgba(8,38,58,.05);
}
.lv-contact-detail div:last-child{
    display:flex;
    flex-direction:column;
    gap:4px;
}
.lv-contact-detail small{
    color:#9aa5aa;
    font-size:9px;
    font-weight:800;
    letter-spacing:1.5px;
}
.lv-contact-detail strong{
    color:#08263a;
    font-size:13px;
    font-weight:700;
}
.lv-contact-form-wrapper{
    background:#fff;
    padding:38px;
    border-radius:18px;
    border:1px solid #e5ecee;
    box-shadow:0 20px 60px rgba(8,38,58,.08);
}
.lv-contact-form-header{
    margin-bottom:25px;
}
.lv-contact-form-header span{
    color:#e5a928;
    font-size:10px;
    font-weight:800;
    letter-spacing:1.7px;
}
.lv-contact-form-header h2{
    margin:7px 0 5px;
    color:#08263a;
    font-size:28px;
    line-height:1.2;
    font-weight:800;
}
.lv-contact-form-header p{
    margin:0;
    color:#829097;
    font-size:13px;
}
.lv-contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.lv-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}
.lv-form-group{
    display:flex;
    flex-direction:column;
    gap:7px;
}
.lv-form-group label{
    color:#08263a;
    font-size:11px;
    font-weight:700;
}
.lv-form-group input,
.lv-form-group select,
.lv-form-group textarea{
    width:100%;
    box-sizing:border-box;
    padding:13px 14px;
    border:1px solid #dfe7e9;
    border-radius:7px;
    outline:none;
    background:#fff;
    color:#08263a;
    font-family:inherit;
    font-size:13px;
    transition:.25s ease;
}
.lv-form-group input,
.lv-form-group select{
    height:46px;
}
.lv-form-group textarea{
    min-height:105px;
    resize:vertical;
}
.lv-form-group input::placeholder,
.lv-form-group textarea::placeholder{
    color:#aab3b7;
}
.lv-form-group input:focus,
.lv-form-group select:focus,
.lv-form-group textarea:focus{
    border-color:#168383;
    box-shadow:0 0 0 3px rgba(22,131,131,.08);
}
.lv-contact-consent{
    display:flex;
    align-items:flex-start;
    gap:9px;
    color:#7d898f;
    font-size:10px;
    line-height:1.5;
    cursor:pointer;
}
.lv-contact-consent input{
    margin-top:2px;
    accent-color:#168383;
}
.lv-contact-submit{
    width:100%;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    border:0;
    border-radius:7px;
    background:#08263a;
    color:#fff;
    font-family:inherit;
    font-size:13px;
    font-weight:800;
    cursor:pointer;
    transition:.3s ease;
}
.lv-contact-submit span{
    color:#f5c95d;
    font-size:19px;
    transition:.3s ease;
}
.lv-contact-submit:hover{
    background:#168383;
}
.lv-contact-submit:hover span{
    transform:translateX(4px);
}
@media(max-width:991px){
    .lv-contact-hero{
        padding:105px 6% 65px;
    }
    .lv-contact-hero-container{
        grid-template-columns:1fr;
        gap:50px;
    }
    .lv-contact-hero-content{
        max-width:700px;
    }
}
@media(max-width:600px){
    .lv-contact-hero{
        padding:95px 5% 50px;
    }
    .lv-contact-hero-content h1{
        font-size:42px;
        letter-spacing:-1.8px;
    }
    .lv-contact-hero-content>p{
        font-size:14px;
        line-height:1.7;
    }
    .lv-contact-form-wrapper{
        padding:25px 20px;
        border-radius:14px;
    }
    .lv-contact-form-header h2{
        font-size:24px;
    }
    .lv-form-row{
        grid-template-columns:1fr;
        gap:18px;
    }
    .lv-contact-detail strong{
        font-size:12px;
    }
}
.lv-help-section{
    padding:90px 5%;
    background:#fff;
}
.lv-help-container{
    max-width:1250px;
    margin:auto;
}
.lv-help-heading{
    max-width:650px;
    margin-bottom:45px;
}
.lv-help-heading .lv-section-tag{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:15px;
    color:#168383;
    font-size:11px;
    font-weight:800;
    letter-spacing:2px;
}
.lv-help-heading .lv-section-tag:before{
    content:"";
    width:26px;
    height:2px;
    background:#e5a928;
}
.lv-help-heading h2{
    margin:0 0 18px;
    color:#08263a;
    font-size:clamp(36px,4vw,52px);
    line-height:1.08;
    letter-spacing:-1.5px;
}
.lv-help-heading h2 span{
    color:#168383;
}
.lv-help-heading p{
    max-width:600px;
    margin:0;
    color:#71808a;
    font-size:15px;
    line-height:1.75;
}
.lv-help-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid #e7edef;
    border-bottom:1px solid #e7edef;
}
.lv-help-card{
    position:relative;
    min-height:285px;
    padding:30px;
    border-right:1px solid #e7edef;
    transition:.3s ease;
}
.lv-help-card:last-child{
    border-right:0;
}
.lv-help-card:hover{
    background:#08263a;
}
.lv-help-card>span{
    position:absolute;
    top:32px;
    right:30px;
    color:#a9b4b9;
    font-size:10px;
    font-weight:800;
}
.lv-help-icon{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:32px;
    border-radius:10px;
    background:#fff7df;
    color:#d99b19;
    font-size:18px;
    font-weight:800;
}
.lv-help-card h3{
    margin:0 0 12px;
    color:#08263a;
    font-size:19px;
    transition:.3s ease;
}
.lv-help-card p{
    max-width:300px;
    margin:0;
    color:#7b888e;
    font-size:12px;
    line-height:1.7;
    transition:.3s ease;
}
.lv-help-card a{
    position:absolute;
    bottom:27px;
    left:30px;
    color:#168383;
    text-decoration:none;
    font-size:11px;
    font-weight:800;
    transition:.3s ease;
}
.lv-help-card a b{
    margin-left:6px;
    font-size:16px;
    transition:.3s ease;
}
.lv-help-card:hover h3{
    color:#fff;
}
.lv-help-card:hover p{
    color:#b8c9cf;
}
.lv-help-card:hover a{
    color:#f5c95d;
}
.lv-help-card:hover a b{
    margin-left:10px;
}
@media(max-width:800px){
    .lv-help-grid{
        grid-template-columns:1fr;
    }
    .lv-help-card{
        min-height:245px;
        border-right:0;
        border-bottom:1px solid #e7edef;
    }
    .lv-help-card:last-child{
        border-bottom:0;
    }
}
@media(max-width:600px){
    .lv-help-section{
        padding:65px 5%;
    }
    .lv-help-heading h2{
        font-size:38px;
    }
    .lv-help-heading p{
        font-size:14px;
    }
    .lv-help-card{
        padding:25px;
    }
    .lv-help-card a{
        left:25px;
    }
}

.lv-privacy-hero{
    padding:125px 5% 75px;
    background:#f8fbfb;
    overflow:hidden;
}
.lv-privacy-hero-container{
    max-width:1250px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}
.lv-privacy-hero-content{
    max-width:760px;
}
.lv-privacy-tag{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:20px;
    color:#168383;
    font-size:11px;
    font-weight:800;
    letter-spacing:2px;
}
.lv-privacy-tag:before{
    content:"";
    width:27px;
    height:2px;
    background:#e5a928;
}
.lv-privacy-hero h1{
    margin:0;
    color:#08263a;
    font-size:clamp(48px,5vw,70px);
    line-height:1.02;
    letter-spacing:-2.5px;
    font-weight:800;
}
.lv-privacy-hero h1 span{
    color:#168383;
}
.lv-privacy-hero-content>p{
    max-width:700px;
    margin:25px 0 25px;
    color:#71808a;
    font-size:16px;
    line-height:1.75;
}
.lv-privacy-meta{
    display:flex;
    align-items:center;
    gap:10px;
    color:#8a969b;
    font-size:11px;
    font-weight:600;
}
.lv-privacy-hero-mark{
    width:210px;
    height:210px;
    flex-shrink:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background:#fff;
    border:1px solid #e4ebed;
    border-radius:50%;
    box-shadow:0 20px 50px rgba(8,38,58,.08);
}
.lv-privacy-shield{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:13px;
    border-radius:50%;
    background:#eaf7f6;
    color:#168383;
    font-size:22px;
    font-weight:800;
}
.lv-privacy-hero-mark strong{
    color:#08263a;
    font-size:15px;
}
.lv-privacy-hero-mark span{
    margin-top:5px;
    color:#89959a;
    font-size:10px;
}
@media(max-width:700px){
    .lv-privacy-hero{
        padding:100px 5% 55px;
    }
    .lv-privacy-hero-container{
        display:block;
    }
    .lv-privacy-hero h1{
        font-size:48px;
    }
    .lv-privacy-hero-content>p{
        font-size:14px;
    }
    .lv-privacy-meta{
        flex-wrap:wrap;
    }
    .lv-privacy-hero-mark{
        width:150px;
        height:150px;
        margin:40px auto 0;
    }
    .lv-privacy-shield{
        width:42px;
        height:42px;
        font-size:17px;
        margin-bottom:8px;
    }
    .lv-privacy-hero-mark strong{
        font-size:13px;
    }
}
.lv-privacy-content{
    padding:80px 5% 100px;
    background:#fff;
}
.lv-privacy-container{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:230px 1fr;
    gap:70px;
    align-items:start;
}
.lv-privacy-sidebar{
    position:sticky;
    top:110px;
}
.lv-privacy-sidebar-box{
    display:flex;
    flex-direction:column;
    border-left:2px solid #edf1f2;
}
.lv-privacy-sidebar-box>span{
    padding:0 0 15px 18px;
    color:#168383;
    font-size:9px;
    font-weight:800;
    letter-spacing:1.5px;
}
.lv-privacy-sidebar-box a{
    padding:8px 12px 8px 18px;
    color:#7c898f;
    text-decoration:none;
    font-size:11px;
    line-height:1.4;
    transition:.25s ease;
}
.lv-privacy-sidebar-box a:hover{
    color:#168383;
    transform:translateX(3px);
}
.lv-privacy-article{
    max-width:800px;
}
.lv-privacy-article section,
.lv-policy-intro{
    padding:0 0 48px;
    margin-bottom:48px;
    border-bottom:1px solid #edf1f2;
}
.lv-policy-label{
    display:block;
    margin-bottom:13px;
    color:#168383;
    font-size:9px;
    font-weight:800;
    letter-spacing:1.7px;
}
.lv-privacy-article h2{
    margin:0 0 18px;
    color:#08263a;
    font-size:30px;
    line-height:1.2;
    letter-spacing:-.7px;
    font-weight:800;
}
.lv-privacy-article h3{
    margin:28px 0 10px;
    color:#08263a;
    font-size:17px;
    font-weight:800;
}
.lv-privacy-article p{
    margin:0 0 17px;
    color:#697980;
    font-size:14px;
    line-height:1.85;
}
.lv-privacy-article p:last-child{
    margin-bottom:0;
}
.lv-privacy-article ul{
    margin:10px 0 20px;
    padding-left:20px;
}
.lv-privacy-article li{
    margin-bottom:9px;
    padding-left:5px;
    color:#697980;
    font-size:14px;
    line-height:1.7;
}
.lv-policy-contact{
    padding:35px !important;
    margin-bottom:35px !important;
    border:1px solid #e4ebed !important;
    border-radius:14px;
    background:#f8fbfb;
}
.lv-policy-contact-box{
    display:flex;
    gap:45px;
    margin-top:28px;
    padding-top:22px;
    border-top:1px solid #e1e9ea;
}
.lv-policy-contact-box div{
    display:flex;
    flex-direction:column;
    gap:5px;
}
.lv-policy-contact-box small{
    color:#168383;
    font-size:9px;
    font-weight:800;
    letter-spacing:1.3px;
}
.lv-policy-contact-box strong{
    color:#08263a;
    font-size:13px;
}
.lv-policy-disclaimer{
    padding:20px 22px;
    border-left:3px solid #e5a928;
    background:#fffaf0;
    color:#777f82;
    font-size:11px;
    line-height:1.7;
}
.lv-policy-disclaimer strong{
    color:#08263a;
}
@media(max-width:900px){
    .lv-privacy-container{
        grid-template-columns:1fr;
        gap:40px;
    }
    .lv-privacy-sidebar{
        position:relative;
        top:auto;
    }
    .lv-privacy-sidebar-box{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        border-left:0;
        border-bottom:1px solid #e7edef;
        padding-bottom:12px;
    }
    .lv-privacy-sidebar-box>span{
        grid-column:1/-1;
        padding-left:0;
    }
    .lv-privacy-sidebar-box a{
        padding-left:0;
    }
}
@media(max-width:600px){
    .lv-privacy-content{
        padding:55px 5% 70px;
    }
    .lv-privacy-article h2{
        font-size:26px;
    }
    .lv-privacy-article p,
    .lv-privacy-article li{
        font-size:13px;
    }
    .lv-policy-contact{
        padding:25px !important;
    }
    .lv-policy-contact-box{
        flex-direction:column;
        gap:20px;
    }
}
.lv-terms-hero{
    padding:125px 5% 75px;
    background:#f8fbfb;
    overflow:hidden;
}
.lv-terms-hero-container{
    max-width:1250px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}
.lv-terms-hero-content{
    max-width:760px;
}
.lv-terms-tag{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:20px;
    color:#168383;
    font-size:11px;
    font-weight:800;
    letter-spacing:2px;
}
.lv-terms-tag:before{
    content:"";
    width:27px;
    height:2px;
    background:#e5a928;
}
.lv-terms-hero h1{
    margin:0;
    color:#08263a;
    font-size:clamp(48px,5vw,70px);
    line-height:1.02;
    letter-spacing:-2.5px;
    font-weight:800;
}
.lv-terms-hero h1 span{
    color:#168383;
}
.lv-terms-hero-content>p{
    max-width:700px;
    margin:25px 0;
    color:#71808a;
    font-size:16px;
    line-height:1.75;
}
.lv-terms-meta{
    display:flex;
    align-items:center;
    gap:10px;
    color:#8a969b;
    font-size:11px;
    font-weight:600;
}
.lv-terms-hero-mark{
    width:210px;
    height:210px;
    flex-shrink:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background:#fff;
    border:1px solid #e4ebed;
    border-radius:50%;
    box-shadow:0 20px 50px rgba(8,38,58,.08);
}
.lv-terms-doc{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:13px;
    border-radius:50%;
    background:#fff7df;
    color:#d99b19;
    font-size:25px;
    font-weight:800;
}
.lv-terms-hero-mark strong{
    color:#08263a;
    font-size:15px;
}
.lv-terms-hero-mark span{
    margin-top:5px;
    color:#89959a;
    font-size:10px;
}
@media(max-width:700px){
    .lv-terms-hero{
        padding:100px 5% 55px;
    }
    .lv-terms-hero-container{
        display:block;
    }
    .lv-terms-hero h1{
        font-size:48px;
    }
    .lv-terms-hero-content>p{
        font-size:14px;
    }
    .lv-terms-meta{
        flex-wrap:wrap;
    }
    .lv-terms-hero-mark{
        width:150px;
        height:150px;
        margin:40px auto 0;
    }
    .lv-terms-doc{
        width:42px;
        height:42px;
        font-size:19px;
        margin-bottom:8px;
    }
    .lv-terms-hero-mark strong{
        font-size:13px;
    }
}

.lv-terms-content{
    padding:80px 5% 100px;
    background:#fff;
}
.lv-terms-container{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:230px 1fr;
    gap:70px;
    align-items:start;
}
.lv-terms-sidebar{
    position:sticky;
    top:110px;
}
.lv-terms-sidebar-box{
    display:flex;
    flex-direction:column;
    border-left:2px solid #edf1f2;
}
.lv-terms-sidebar-box>span{
    padding:0 0 15px 18px;
    color:#168383;
    font-size:9px;
    font-weight:800;
    letter-spacing:1.5px;
}
.lv-terms-sidebar-box a{
    padding:8px 12px 8px 18px;
    color:#7c898f;
    text-decoration:none;
    font-size:11px;
    line-height:1.4;
    transition:.25s ease;
}
.lv-terms-sidebar-box a:hover{
    color:#168383;
    transform:translateX(3px);
}
.lv-terms-article{
    max-width:800px;
}
.lv-terms-article section,
.lv-terms-intro{
    padding:0 0 48px;
    margin-bottom:48px;
    border-bottom:1px solid #edf1f2;
}
.lv-terms-label{
    display:block;
    margin-bottom:13px;
    color:#168383;
    font-size:9px;
    font-weight:800;
    letter-spacing:1.7px;
}
.lv-terms-article h2{
    margin:0 0 18px;
    color:#08263a;
    font-size:30px;
    line-height:1.2;
    letter-spacing:-.7px;
    font-weight:800;
}
.lv-terms-article h3{
    margin:28px 0 10px;
    color:#08263a;
    font-size:17px;
    font-weight:800;
}
.lv-terms-article p{
    margin:0 0 17px;
    color:#697980;
    font-size:14px;
    line-height:1.85;
}
.lv-terms-article p:last-child{
    margin-bottom:0;
}
.lv-terms-article ul{
    margin:10px 0 20px;
    padding-left:20px;
}
.lv-terms-article li{
    margin-bottom:9px;
    padding-left:5px;
    color:#697980;
    font-size:14px;
    line-height:1.7;
}
.lv-terms-contact{
    padding:35px !important;
    margin-bottom:35px !important;
    border:1px solid #e4ebed !important;
    border-radius:14px;
    background:#f8fbfb;
}
.lv-terms-contact-box{
    display:flex;
    gap:45px;
    margin-top:28px;
    padding-top:22px;
    border-top:1px solid #e1e9ea;
}
.lv-terms-contact-box div{
    display:flex;
    flex-direction:column;
    gap:5px;
}
.lv-terms-contact-box small{
    color:#168383;
    font-size:9px;
    font-weight:800;
    letter-spacing:1.3px;
}
.lv-terms-contact-box strong{
    color:#08263a;
    font-size:13px;
}
.lv-terms-notice{
    padding:20px 22px;
    border-left:3px solid #e5a928;
    background:#fffaf0;
    color:#777f82;
    font-size:11px;
    line-height:1.7;
}
.lv-terms-notice strong{
    color:#08263a;
}
@media(max-width:900px){
    .lv-terms-container{
        grid-template-columns:1fr;
        gap:40px;
    }
    .lv-terms-sidebar{
        position:relative;
        top:auto;
    }
    .lv-terms-sidebar-box{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        border-left:0;
        border-bottom:1px solid #e7edef;
        padding-bottom:12px;
    }
    .lv-terms-sidebar-box>span{
        grid-column:1/-1;
        padding-left:0;
    }
    .lv-terms-sidebar-box a{
        padding-left:0;
    }
}
@media(max-width:600px){
    .lv-terms-content{
        padding:55px 5% 70px;
    }
    .lv-terms-article h2{
        font-size:26px;
    }
    .lv-terms-article p,
    .lv-terms-article li{
        font-size:13px;
    }
    .lv-terms-contact{
        padding:25px !important;
    }
    .lv-terms-contact-box{
        flex-direction:column;
        gap:20px;
    }
}