* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #1A202C;
    background: #F8F9FA;
    overflow-x: hidden;
}

.button, .city-btn, button, a {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

header {
    background: #1D3557;
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 24px;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 11;
}

.nav-toggle .dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.nav-toggle .dot-top { top: 6px; }
.nav-toggle .dot-middle { top: 14px; }
.nav-toggle .dot-bottom { top: 22px; }

.nav-toggle.active .dot-top {
    top: 14px;
    transform: translateX(-50%) rotate(45deg);
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: white;
}

.nav-toggle.active .dot-middle { opacity: 0; }

.nav-toggle.active .dot-bottom {
    top: 14px;
    transform: translateX(-50%) rotate(-45deg);
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: white;
}

nav {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover { color: #2ECC71; }
nav a:focus { outline: 2px solid #2ECC71; outline-offset: 2px; }

.phone-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.phone-link i {
    margin-right: 8px;
    color: #2ECC71;
    font-size: 20px;
}

.phone-link:hover {
    color: #2ECC71;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1D3557;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    nav.active { display: flex; }
    nav a { margin: 10px 0; font-size: 18px; text-align: center; }
    header { padding: 10px 15px; }
    header h1 { font-size: 20px; }
    .phone-link { font-size: 16px; }
    .phone-link i { font-size: 18px; }
}

@media (min-width: 769px) {
    .nav-toggle { display: none; }
}

section {
    padding: 60px 15px;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 70px;
}

@media (max-width: 768px) {
    section { padding: 40px 10px; scroll-margin-top: 60px; }
}

.section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 40px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    overflow: hidden;
}

.section.visible { opacity: 1; transform: translateY(0); }
.section:hover { box-shadow: 0 6px 15px rgba(0,0,0,0.1); }

.section h2 {
    font-size: 28px;
    color: #1D3557;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 5px;
}

.section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #34D399, #457B9D);
}

.section h3 {
    font-size: 20px;
    color: #1D3557;
    margin: 15px 0;
}

.section p {
    font-size: 16px;
    color: #1A202C;
    margin-bottom: 20px;
}

.section-img {
    max-width: 40%;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .section { padding: 25px; }
    .section h2 { font-size: 24px; }
    .section h3 { font-size: 18px; }
    .section p { font-size: 18px; }
    .section-img { max-width: 80%; width: 100%; height: auto; }
    .docs-container { flex-direction: column; padding: 0; }
    .docs-img { max-width: 80%; width: 100%; height: auto; margin: 0 auto 20px; }
}

.hero {
    background: linear-gradient(45deg, #F8F9FA, #E6F3F5);
    text-align: center;
    padding: 40px 15px;
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero h1 { font-size: 40px; color: #1D3557; margin-bottom: 20px; animation: none; }
.hero p { font-size: 20px; color: #1A202C; margin-bottom: 20px; animation: none; }
.hero-img { max-width: 40%; height: auto; object-fit: contain; margin-bottom: 20px; position: relative; }

@media (min-width: 769px) {
    .hero { padding: 60px 0; background: linear-gradient(45deg, #F8F9FA, #E6F3F5); position: relative; }
    .hero::before, .hero::after {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        background: rgba(52, 211, 153, 0.1);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
        z-index: -1;
    }
    .hero::before { top: 20%; left: 10%; animation-delay: 0s; }
    .hero::after { bottom: 20%; right: 10%; animation-delay: 2s; }
    .hero-img { max-width: 50%; animation: slideIn 2s ease-out forwards; }
    .hero h1 { animation: fadeInDown 1.5s ease-out forwards; }
    .hero p { animation: fadeInUp 1.5s ease-out 0.5s forwards; }
    .hero-button { animation: bounceIn 1.5s ease-out 1s forwards; }
    @keyframes float {
        0% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(20px, 20px) scale(1.1); }
        100% { transform: translate(0, 0) scale(1); }
    }
    @keyframes slideIn {
        from { transform: translateX(-20px) scale(0.9); opacity: 0; }
        to { transform: translateX(0) scale(1); opacity: 1; }
    }
    @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes bounceIn {
        0% { opacity: 0; transform: scale(0.8); }
        50% { transform: scale(1.1); }
        100% { opacity: 1; transform: scale(1); }
    }
}

@media (max-width: 768px) {
    .hero { padding: 20px 10px; min-height: calc(100vh - 60px); background: #F8F9FA; }
    .hero-img { max-width: 70%; animation: none; }
    .hero h1 { font-size: 32px; animation: none; }
    .hero p { font-size: 18px; animation: none; }
    .hero-button { animation: none; padding: 14px 28px; font-size: 16px; }
    .hero::before, .hero::after { display: none; }
    .animate__animated { animation: none !important; }
}

.button {
    position: relative;
    padding: 12px 25px;
    font-size: 16px;
    color: #fff;
    background: #1D3557;
    border: none;
    border-radius: 35px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    z-index: 1;
    min-width: 48px;
    min-height: 48px;
}

.button::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #34D399, #A7F3D0, #1D3557, #34D399);
    background-size: 400%;
    z-index: -1;
    border-radius: 35px;
    animation: gradient 8s ease infinite;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.button:focus { outline: 2px solid #2ECC71; outline-offset: 2px; }
.hero-button { padding: 12px 25px; }
.button-wrapper { text-align: center; margin-top: 10px; }

@media (max-width: 768px) {
    .button { padding: 14px 28px; font-size: 16px; }
}

.check-link {
    color: #0077B6;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.check-link:hover { color: #2ECC71; }

@media (max-width: 768px) {
    .check-link { font-size: 16px; }
}

#benefits { padding: 20px; text-align: center; position: relative; }
.benefit-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.benefit-animation {
    display: block;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: cover;
}

@media (max-width: 768px) {
    .benefit-layout { grid-template-columns: 1fr; gap: 20px; }
    .benefit-animation { display: none; }
}

.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.benefit-item {
    padding: 20px;
    background: #f0f4f8;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.benefit-img {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .benefit-grid { grid-template-columns: 1fr; gap: 20px; }
    .benefit-item { padding: 15px; }
    .benefit-img { width: 140px; height: 140px; }
    .benefit-item p { font-size: 16px; }
}

.partners-carousel-wrapper { width: 100%; overflow: hidden; margin-top: 20px; }
.partners-carousel { display: flex; width: max-content; animation: marquee 20s linear infinite; }
.partner-img { width: 150px; height: auto; margin: 0 15px; object-fit: contain; flex-shrink: 0; }

@media (max-width: 768px) {
    .partner-img { width: 100px; margin: 0 12px; }
    .partners-carousel { animation: marquee 15s linear infinite; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-carousel:hover { animation-play-state: paused; }

.reviews-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
}

.reviews-carousel {
    display: flex;
    width: max-content;
    transition: transform 0.5s ease;
}

.review-item {
    background: #f0f4f8;
    border-radius: 15px;
    padding: 20px;
    margin: 0 15px;
    min-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.review-item p {
    font-size: 16px;
    color: #1A202C;
    margin-bottom: 10px;
    font-style: italic;
}

.review-item span {
    font-size: 14px;
    color: #457B9D;
    font-weight: 500;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #1D3557;
    border: none;
    width: 20px;
    height: 20px;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    color: #2ECC71;
}

.carousel-prev {
    left: 5px;
}

.carousel-next {
    right: 5px;
}

@media (max-width: 768px) {
    .review-item {
        min-width: 250px;
        margin: 0 10px;
    }
    .review-item p { font-size: 14px; }
    .review-item span { font-size: 12px; }
    .carousel-prev, .carousel-next {
        width: 15px;
        height: 15px;
        font-size: 16px;
    }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

footer {
    background: #1D3557;
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p { font-size: 14px; margin: 5px 0; }
footer a { color: #2ECC71; text-decoration: none; }
footer a:hover { color: #fff; }
footer .phone-link {
    font-size: 18px;
    justify-content: center;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    footer { padding: 20px; }
    footer p { font-size: 12px; }
    footer .phone-link { font-size: 16px; }
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 20px;
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.social-icons .viber { background-color: #665CAC; }
.social-icons .telegram { background-color: #0088CC; }
.social-icons .whatsapp { background-color: #25D366; }

@media (max-width: 768px) {
    .social-icons a { width: 36px; height: 36px; line-height: 36px; font-size: 18px; margin: 0 8px; }
}

.docs-container { max-width: 1200px; margin: 0 auto; display: block; padding: 0 15px; }
.docs-img { max-width: 40%; width: 100%; height: auto; object-fit: contain; display: block; margin: 0 auto 20px; }
.docs-content { text-align: center; }
.docs-content h2 { font-size: 28px; color: #1D3557; margin-bottom: 20px; text-align: center; position: relative; padding-bottom: 5px; }
.docs-content h2::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 2px; background: linear-gradient(90deg, #34D399, #457B9D); }
.docs-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.docs-list li {
    font-size: 16px;
    color: #1A202C;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    display: block;
    line-height: 1.6;
}
.docs-list li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #34D399;
    font-size: 14px;
}

@media (min-width: 769px) {
    .docs-list li i { display: none; }
    .docs-list li { padding-left: 0; }
}

@media (max-width: 768px) {
    .docs-list li { font-size: 16px; padding-left: 15px; margin-bottom: 10px; line-height: 1.6; }
    .docs-list li i { top: 50%; transform: translateY(-50%); font-size: 14px; left: 0; }
    .docs-img { max-width: 80%; width: 100%; height: auto; }
    .docs-container { padding: 0 10px; }
}

.calculator {
    background: linear-gradient(135deg, #ffffff, #f0f4f8);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
    text-align: left;
    position: relative;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease;
}

.calculator:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.calculator h3 {
    font-size: 24px;
    color: #1D3557;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.calculator label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1D3557;
    font-size: 16px;
}

.calculator select, .calculator input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.calculator select:focus, .calculator input:focus {
    border-color: #34D399;
    box-shadow: 0 0 5px rgba(52, 211, 153, 0.5);
    outline: none;
}

.calculator button {
    background: linear-gradient(135deg, #1D3557, #457B9D);
    color: white;
    padding: 16px 35px;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin: 30px auto 0;
}

.calculator button:hover:not(:disabled) {
    background: linear-gradient(135deg, #2ECC71, #34D399);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.calculator button:disabled {
    background: #a0aec0;
    cursor: not-allowed;
}

.calculator button.loading .loading-percentage {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.button-text {
    display: inline;
}

.loading-percentage {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #fff;
}

.calculator button.loading .loading-percentage {
    display: block;
}

.calculator button.loading .button-text {
    visibility: hidden;
}

.switch-container {
    margin-bottom: 15px;
}

.switch-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 15px;
}

.switch-wrapper {
    display: flex;
    align-items: center;
    margin: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-left: 10px;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2ECC71;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.switch-label {
    font-size: 14px;
    color: #1D3557;
    font-weight: 500;
}

.switch-container {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@media (max-width: 768px) {
    .switch {
        width: 40px;
        height: 20px;
        margin-left: 10px;
    }
    
    .slider:before {
        height: 16px;
        width: 16px;
        left: 2px;
        bottom: 2px;
    }
}

.input-wrapper {
    position: relative;
}

.city-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}

.city-dropdown div {
    padding: 8px;
    cursor: pointer;
}

.city-dropdown div:hover {
    background: #f0f4f8;
}

#vehicleCity:focus + #cityList,
#vehicleCity:not(:placeholder-shown) + #cityList {
    display: block;
}

.city-buttons {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.city-buttons .city-btn {
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.city-buttons .city-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #2ECC71, #34D399);
}

.calculator-results {
    width: 80%;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card.selected {
    border: 2px solid #2ECC71;
}

.card-body {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(45deg, #F8F9FA, #E6F3F5);
    flex-wrap: wrap;
    gap: 15px;
}

.card img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 8px;
}

.card .price-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card .price {
    font-size: 1.5rem;
    color: #10B981;
    font-weight: 700;
    margin-bottom: 5px;
}

.card .original-price {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.card .discount-text {
    font-size: 0.9rem;
    color: #2ECC71;
    font-weight: 500;
    margin-bottom: 10px;
}

.buy-button {
    padding: 12px 25px;
    font-size: 16px;
    position: relative;
    color: #fff;
    background: #1D3557;
    border: none;
    border-radius: 35px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    z-index: 1;
    min-width: 48px;
    min-height: 48px;
}

.buy-button::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #34D399, #A7F3D0, #1D3557, #34D399);
    background-size: 400%;
    z-index: -1;
    border-radius: 35px;
    animation: gradient 8s ease infinite;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .calculator {
        width: 100%;
        padding: 20px;
    }
    .calculator h3 {
        font-size: 20px;
    }
    .calculator select, .calculator input {
        font-size: 14px;
        padding: 10px;
    }
    .calculator button {
        padding: 14px 30px;
        font-size: 16px;
    }
    .switch-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .switch-wrapper {
        width: 100%;
        justify-content: space-between;
    }
    .calculator-results {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .card {
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    .card-body {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .card img {
        width: 120px;
        height: 120px;
        margin: 0 auto 10px;
    }
    .card .price-info {
        text-align: center;
    }
    .buy-button {
        width: 100%;
        margin-top: 5px;
        padding: 14px 28px;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
    font-size: 24px;
    color: #1D3557;
    margin-bottom: 20px;
}

.modal-content label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: 500;
    color: #1D3557;
}

.modal-content input, .modal-content select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
}

.modal-content input:focus, .modal-content select:focus {
    border-color: #34D399;
    outline: none;
}

.modal-content .button {
    width: 100%;
    margin-top: 10px;
}

.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 101;
    justify-content: center;
    align-items: center;
}

.success-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    color: #1D3557;
    font-weight: 500;
}

.close-modal {
    position: absolute;
    top: 0px;
    right: 15px;
    font-size: 33px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    user-select: none;
}

.close-modal:hover {
    color: #ff0000;
}

#contactModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

#contacts div {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
}

[aria-hidden="true"] {
    display: none;
}

/* Стили для FAQ */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: #f0f4f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item summary {
    padding: 15px;
    font-size: 18px;
    color: #1D3557;
    cursor: pointer;
    font-weight: 500;
    outline: none;
    transition: background 0.3s ease;
}

.faq-item summary:hover {
    background: #e6f3f5;
}

.faq-item p {
    padding: 15px;
    font-size: 16px;
    color: #1A202C;
}

.faq-company-list {
    list-style: none;
    padding: 0 15px 15px;
}

.faq-company-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #1A202C;
}

.faq-company-list li strong {
    color: #1D3557;
}

@media (max-width: 768px) {
    .faq-item summary {
        font-size: 16px;
    }
    .faq-item p, .faq-company-list li {
        font-size: 14px;
    }
}
.faq-logo {
    max-width: 150px;
    height: auto;
    margin: 15px auto;
    display: block;
}.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.company-block {
    text-align: center;
    text-decoration: none;
    color: #1D3557;
    background: #f0f4f8;
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.company-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.company-block h3 {
    font-size: 18px;
    margin: 0;
}
/*
     FILE ARCHIVED ON 18:52:36 Apr 07, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 12:30:25 Jul 09, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.505
  exclusion.robots: 0.037
  exclusion.robots.policy: 0.026
  esindex: 0.01
  cdx.remote: 95.533
  LoadShardBlock: 72.169 (3)
  PetaboxLoader3.datanode: 72.056 (4)
  PetaboxLoader3.resolve: 145.784 (2)
  load_resource: 164.095
*/