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

:root {
    /* Colors from Figma */
    --primary-blue: #0B5CA7;
    --dark-blue: #002677;
    --light-blue: #2573BB;
    --dark-text: #06173E;
    --light-text: #8C919C;
    --white: #FFFFFF;
    --orange: #FBAA1F;
    --yellow: #FFE293;
    --green: #CBF2D2;
    --purple: #C5CCF7;
    --light-bg: #F6F7FB;
    --border-color: #DDE0EA;
    --light-blue-bg: #EEF4FC;
    --light-blue-border: #A1C7E1;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    /* Spacing */
    --container-padding: 148px;
    --section-gap: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background-color: #FFFFFF;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 32px;
    width: auto;
}

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

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background-color: #000;
    border-radius: 50%;
    overflow: hidden;
}

.nav-toggle-line {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nav-open .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 23, 62, 0.45);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.visible {
    display: block;
}

body.nav-open .nav-overlay {
    display: block;
    opacity: 1;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-link.active,
.nav-link:hover {
    color: var(--dark-text);
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 694px;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/bg-1.png') no-repeat center center/cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 133px 0 100px;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 98.4px;
    color: var(--white);
    margin-bottom: 12px;
    max-width: 996px;
}

.hero-title>span {
    background-color: #0B5CA7;
    padding: 0 8px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 32.8px;
    color: var(--white);
    margin-bottom: 113px;
    max-width: 1144px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
}

.btn {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
    height: 58px;
    padding: 0 20px;
}

.btn-primary>img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-left: 8px;
}

.btn-primary:hover {
    background-color: #0B5CA7;
}

/* About Us Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 65.6px;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.about-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.96px;
    color: var(--dark-text);
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-item-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 26.24px;
    color: var(--dark-text);
}

.about-item-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.96px;
    color: var(--light-text);
}

.license-box {
    background-color: var(--light-blue-bg);
    border: 1px solid var(--light-blue-border);
    padding: 28px;
    margin-top: 8px;
    display: flex;
    gap: 160px;
}

.license-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.license-icon {
    width: 75px;
    height: 56px;
    object-fit: contain;
}

.license-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.license-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 26.24px;
    color: var(--dark-text);
}

.license-value {
    font-size: 20px;
    font-weight: 400;
    line-height: 32.8px;
    color: var(--primary-blue);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--light-bg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-icon {
    position: relative;
    width: 68px;
    height: 68px;
}

.icon-circle {
    width: 68px;
    height: 68px;
    background-color: var(--primary-blue);
    border-radius: 50%;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 26.24px;
    color: var(--dark-text);
}

.feature-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.96px;
    color: var(--light-text);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.products-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.products-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 26.24px;
    color: var(--light-text);
}

.products-disclaimer {
    font-size: 16px;
    font-weight: 400;
    line-height: 26.24px;
    color: var(--light-text);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    flex: 1;
    background-color: var(--white);
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-badge {
    padding: 4px 16px;
    font-size: 20px;
    font-weight: 600;
    line-height: 32.8px;
    color: #000000;
    width: fit-content;
    margin-bottom: 16px;
    max-width: 100%;
    width: fit-content;
    position: relative;
    left: -40px;
    white-space: nowrap;
}

.product-badge.personal-loan {
    background-color: var(--yellow);
}

.product-badge.business-loan {
    background-color: var(--green);
}

.product-badge.digital-loan {
    background-color: var(--purple);
}

.product-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.96px;
    min-height: 140px;
    color: var(--light-text);
    padding-bottom: 20px;
    border-bottom: solid 2px #F5F5F5;
}

.product-divider {
    height: 2px;
    background-color: #F5F5F5;
    margin: 0 -40px;
}

.product-features {
    padding: 18px 0;
    min-height: 260px;
    border-bottom: solid 2px #F5F5F5;
}

.features-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 26.24px;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.features-list li {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.96px;
    color: var(--dark-text);
    padding-left: 16px;
    position: relative;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
}

.features-list li::before {
    content: '■';
    font-size: 5.66px;
    color: var(--dark-text);
}

.product-footer {
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 22.96px;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.product-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.personal-loan-accent {
    background-color: var(--yellow);
}

.business-loan-accent {
    background-color: var(--green);
}

.digital-loan-accent {
    background-color: var(--purple);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--white);
}

.how-it-works-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.how-it-works-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 26.24px;
    color: var(--light-text);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
    position: relative;
    max-width: 1145px;
}

.step-card {
    width: calc(33% - 70px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-connector {
    width: 2px;
    height: 24px;
    background-color: var(--orange);
    margin-left: 9px;
    margin: 0 0 24px 9px;
    position: absolute;
}

.step-connector::before,
.step-connector::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--orange);
    border-radius: 50%;
    left: -5px;
}

.step-connector::before {
    top: -6px;
}

.step-connector::after {
    bottom: -6px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    position: relative;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-number {
    width: 20px;
    height: 20px;
    background-color: var(--dark-text);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    position: relative;
    top: 6px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 32.8px;
    color: var(--dark-text);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.step-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.96px;
    color: var(--light-text);
}


/* Trust Badge Section */
.trust-badge {
    padding: 60px 0;
    background: url('./assets/bg-2.png') no-repeat center center/cover;
}

.trust-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.trust-image {
    width: 155px;
    height: 168px;
    object-fit: contain;
}

.trust-text {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 400;
    line-height: 14.06px;
    color: var(--white);
    text-align: center;
}

/* FAQs Section */
.faqs {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    background-color: var(--white);
    box-shadow: 0px 4px 64px 0px rgba(216, 221, 232, 1);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-number {
    width: 20px;
    height: 20px;
    background-color: var(--dark-text);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-question {
    font-size: 14px;
    font-weight: 500;
    line-height: 22.96px;
    color: var(--dark-text);
}

.faq-answer {
    font-size: 12px;
    font-weight: 400;
    line-height: 19.68px;
    color: var(--light-text);
    padding-left: 32px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    max-width: 328px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.location-icon {
    background: url('./assets/address.png') no-repeat center center/44px 44px;
}

.time-icon {
    background: url('./assets/time.png') no-repeat center center/44px 44px;
}

.phone-icon {
    background: url('./assets/phone.png') no-repeat center center/44px 44px;
}

.email-icon {
    background: url('./assets/mail.png') no-repeat center center/44px 44px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Google Map container styling */
.google-map {
    width: 280px;
    height: 120px;
    /* default height; adjust as needed */
    overflow: hidden;
    position: relative;
    left: -60px;
    background: url('./assets/map-img.png') no-repeat center center/cover;
}

/* Modal styles for footer link popups */
.modal {
    display: none;
    /* hidden by default */
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal-dialog {
    position: relative;
    background: #ffffff;
    max-width: 880px;
    width: calc(100% - 40px);
    max-height: 80vh;
    overflow-y: auto;
    margin: 16px;
    padding: 20px 32px;
    box-shadow: 0 8px 32px rgba(13, 27, 48, 0.12);
    z-index: 2001;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.modal-body {
    font-size: 14px;
    color: var(--dark-text);
    line-height: 1.6;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: var(--light-text);
}

.modal-close:focus {
    outline: 2px solid var(--light-blue);
}

#modalContent h5 {
    margin-top: 20px;
    font-size: 14px;
}

#modalContent p {
    margin-top: 10px;
    font-size: 12px;
}

#modalContent li {
    margin-top: 10px;
    font-size: 12px;
}

.contact-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 26.24px;
    color: var(--dark-text);
}

.contact-value {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.96px;
    color: #133B91;
}

.contact-form-wrapper {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 28px;
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 32.8px;
    color: var(--dark-text);
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.96px;
    color: var(--dark-text);
}

.required {
    color: #F32F2F;
}

.form-input,
.form-textarea {
    padding: 8px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 22.96px;
    font-family: var(--font-primary);
    color: var(--dark-text);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--light-text);
}

.form-textarea {
    min-height: 79px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background-color: var(--orange);
    color: var(--white);
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.btn-submit:hover {
    background-color: #0B5CA7;
}

/* Disabled / loading button styles */
.btn[disabled],
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Spinner shown inside button when loading */
.btn-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Footer */
.footer {
    background-color: var(--dark-text);
    padding: 40px 0;
    color: #D1D6E2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    width: 90px;
    height: 31px;
    object-fit: contain;
}

.footer-text {
    font-size: 10px;
    font-weight: 400;
    line-height: 16.4px;
}

.footer-license {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-biupa {
    width: 28px;
    height: 21px;
    object-fit: contain;
}

.footer-license-text {
    font-size: 10px;
    font-weight: 400;
    line-height: 16.4px;
    color: var(--white);
}

.footer-heading {
    font-size: 12px;
    font-weight: 500;
    line-height: 19.68px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-list a {
    font-size: 10px;
    font-weight: 400;
    line-height: 16.4px;
    color: #D1D6E2;
    text-decoration: none;
}

.footer-list a:hover {
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 400;
    line-height: 16.4px;
}

.footer-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.address-icon-footer {
    background: url('./assets/address-icon.png') no-repeat center center/12px 12px;
}

.phone-icon-footer {
    background: url('./assets/phone-icon.png') no-repeat center center/12px 12px;
}

.email-icon-footer {
    background: url('./assets/email-icon.png') no-repeat center center/12px 12px;
}

.footer-hours p {
    font-size: 10px;
    font-weight: 400;
    line-height: 16.4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 10px;
    font-weight: 400;
    line-height: 16.4px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-link {
    font-size: 10px;
    font-weight: 400;
    line-height: 16.4px;
    color: #D1D6E2;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--white);
}

.xieyi {
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1200px) {
    :root {
        --container-padding: 60px;
    }

    .steps-container {
        gap: 60px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 1.3;
    }
}

@media (max-width: 1024px) {
    body {
        padding-top: 58px;
    }

    .header {
        position: fixed;
        top: 0;
        background-color: var(--white);
        box-shadow: 0 12px 32px rgba(6, 23, 62, 0.08);
    }

    .header-content {
        gap: 16px;
    }

    .nav-toggle {
        display: flex;
        z-index: 110;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 70vw);
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 32px 40px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -12px 0 32px rgba(6, 23, 62, 0.12);
        z-index: 105;
    }

    body.nav-open .nav {
        transform: translateX(0);
    }

    .hero {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-content {
        padding: 0;
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .steps-container {
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 24px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.25;
    }

    .hero-title>span {
        padding: 0;
        background-color: unset;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .about {
        padding: 60px 0;
    }

    .about-card {
        padding: 32px 24px;
    }

    .license-box {
        flex-direction: column;
        gap: 24px;
        padding: 20px;
    }

    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 24px;
    }

    .product-card {
        padding: 24px;
    }

    .product-badge {
        position: static;
        font-size: 16px;
        line-height: 24px;
    }

    .product-description,
    .product-features {
        min-height: auto;
    }

    .steps-container {
        flex-direction: column;
        max-width: 100%;
    }

    .step-card {
        width: 100%;
    }

    .contact-info {
        max-width: 100%;
    }

    .google-map {
        width: 100%;
        left: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    :root {
        --container-padding: 28px;
    }

    body {
        background-color: var(--white);
        font-size: 14px;
    }

    section {
        padding: 48px 0;
    }

    .header {
        padding: 12px 0;
    }

    .logo-img {
        height: 28px;
    }

    .container {
        padding: 0 var(--container-padding);
    }

    .section-title {
        font-size: 28px;
        line-height: 1.4;
    }

    .hero {
        min-height: 560px;
        padding: 96px 0 48px;
    }

    .hero-content {
        padding: 0;
        margin: 0;
        text-align: left;
    }

    .hero-title {
        font-size: 32px;
        line-height: 2;
        letter-spacing: -0.4px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 12px;
        line-height: 1.65;
        max-width: 280px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        width: 100%;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-buttons .btn {
        width: max-content;
        height: 48px;
        border-radius: 0;
        padding: 0 20px;
    }

    .hero-buttons .btn img {
        width: 24px;
        height: 24px;
    }

    .about-card,
    .feature-card,
    .product-card,
    .contact-form-wrapper {
        border-radius: 20px;
        /* box-shadow: 0 20px 60px rgba(6, 23, 62, 0.08); */
    }

    .about-card {
        padding: 28px 24px;
        gap: 24px;
        border-radius: 0;
    }

    .license-box {
        padding: 20px;
    }

    .features-grid,
    .products-grid {
        gap: 24px;
    }

    .feature-card {
        background-color: #f6f7fb;
        padding: 24px;
        gap: 20px;
        border-radius: 0;
    }

    .feature-icon,
    .icon-circle {
        width: 48px;
        height: 48px;
    }

    .products {
        padding-bottom: 28px;
    }

    .products-header {
        gap: 8px;
        margin-bottom: 32px;
    }

    .product-card {
        padding: 24px 20px 28px;
        gap: 16px;
        border-radius: 0;
    }

    .product-badge {
        position: relative;
        left: -30px;
        font-size: 16px;
        line-height: 24px;
        border-radius: 0px;
    }

    .product-description {
        font-size: 13px;
        line-height: 1.7;
        min-height: unset;
        padding-bottom: 16px;
    }

    .product-features {
        padding: 16px 0;
        min-height: unset;
    }

    .product-footer {
        padding-top: 0;
        justify-content: space-between;
    }

    .license-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .license-label,
    .license-value {
        font-size: 14px;
    }

    .why-choose-us {
        padding-top: 0;
    }

    .steps-container {
        gap: 20px;
    }

    .step-card {
        padding: 20px;
        border: unset;
        border-radius: 16px;
        background-color: var(--white);
    }

    .how-it-works {
        padding-bottom: 28px;
    }

    .step-number {
        top: 2px;
    }

    .step-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .step-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-header {
        align-items: flex-start;
    }

    .faq-number {
        position: relative;
        top: 2px;
    }

    .faq-answer {
        padding-left: 0;
    }

    .contact-content {
        gap: 32px;
    }

    .contact-info {
        gap: 24px;
        max-width: 100%;
    }

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

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer {
        padding: 32px 0 40px;
    }

    .footer-bottom {
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 12px 0 48px;
    }

    .hero-buttons {
        gap: 20px;
    }

    .feature-card,
    .product-card,
    .about-card {
        padding: 20px;
    }

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

    .trust-content {
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}