.nav-header {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}
.mouse {
    width: 50px;
    height: 90px;
    border: 3px solid #333;
    border-radius: 60px;
    position: relative;
}
.mouse::before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
}

@keyframes wheel {
    to {
        opacity: 0;
        top: 60px;
    }
}
@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 60px;
    }
}

.form-input-minimal {
    border: none;
    border-bottom: 1px solid #d1ccc9;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
}

.form-input-minimal:focus {
    ring: 0;
    border-bottom-color: #c9481d;
    box-shadow: none;
    outline: none;
}

@media only screen and (max-width: 1024px) {
    .nav-header {
        position: static;

        transform: none;
    }
    .nav-menu > li > a {
        color: #231f20;
    }
    .nav-brand img {
        height: 30px;
    }
}

.offer-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.offer-title {
    margin: 0;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #0f172a;
}

.offer-title span {
    color: #c9481d;
}

.offer-grid {
    margin-top: 2.75rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.offer-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.offer-card:hover {
    transform: translateY(-3px);
    border-color: #fdba74;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.09);
}

.offer-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-icon i {
    font-size: 1.35rem;
    color: #c9481d;
}

.offer-content {
    flex: 1;
    padding-top: 2px;
}

.offer-content h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 600;
    color: #0f172a;
}

.offer-content p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.65;
    color: #64748b;
}

@media only screen and (min-width: 768px) {
    .offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.partner-why-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.partner-why-title {
    margin: 0;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #0f172a;
}

.partner-why-title span {
    color: #c9481d;
}

.partner-why-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.partner-why-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.3rem 1.1rem;
    text-align: center;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.partner-why-card:hover {
    transform: translateY(-4px);
    border-color: #fdba74;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.11);
}

.partner-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin: 0 auto 0.9rem;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #fff7ed 0%, #ffe8d6 100%);
    border: 1px solid #fed7aa;
}

.partner-why-icon i {
    font-size: 1.35rem;
    color: #c9481d;
}

.partner-why-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 600;
    color: #0f172a;
}

.partner-why-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #64748b;
}

@media only screen and (min-width: 640px) {
    .partner-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (min-width: 1024px) {
    .partner-why-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 1.15rem;
    }
    .show-in-mobile {
        display: none !important;
    }
}
