@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
    --primary-red: #FFBE01;
    --dark-red: #E5AA01;
    --light-red: #FFBE01;
    --accent-red: #FFBE01;
    --dark-blue: #1E293B;
    --medium-blue: #3B5998;
    --light-blue: #60A5FA;
    --text-dark: #0F172A;
    --text-medium: #475569;
    --text-light: #94A3B8;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #FFBE01;
}

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

.logo {
    flex-shrink: 0;
}

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

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

.nav-link {
    color: #1E293B;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: #FFBE01;
    color: #1E293B;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #E5AA01;
}

.btn-secondary {
    background-color: var(--primary-red);
    color: #1E293B;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    box-shadow: 0 4px 12px rgba(255, 190, 1, 0.3);
}

.btn-secondary:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 190, 1, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #1E293B;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn:hover {
    color: var(--primary-red);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    border-left: 3px solid #FFBE01;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    background: none;
    border: none;
    color: #1E293B;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    margin-bottom: 32px;
}

.close-menu:hover {
    color: var(--primary-red);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: #1E293B;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 190, 1, 0.1);
    color: var(--primary-red);
}

.mobile-cta {
    margin-top: 20px;
}

.hero {
    background-image: url('https://i.ibb.co/Nnmd7bFG/smiley-woman-using-her-tablet-home-with-credit-card.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: -40px;
    margin-bottom: 32px;
    color: #475569;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.highlight {
    color: #FFBE01;
}

.text-accent {
    color: #1E293B;
}

.text-dark {
    color: #1E293B;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
    max-width: 900px;
    width: 100%;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gradient-card {
    background: linear-gradient(135deg, rgba(255, 235, 120, 0.6) 0%, rgba(255, 220, 90, 0.55) 100%);
    color: #333;
    backdrop-filter: blur(8px);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gradient-card:hover {
    background: #FFBE01;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #FFFFFF;
    border: 3px solid #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    flex-shrink: 0;
}

.service-info {
    flex: 1;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.5;
}


.about-section {
    padding: 60px 0;
    background: white;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

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

.about-subtitle {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.services-section {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background: white;
    padding: 24px 20px;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
}

.service-item:hover {
    transform: translateY(-4px);
}

.service-icon-img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon-img {
    transform: scale(1.1);
}

.service-underline {
    width: 40px;
    height: 2px;
    background: #8B5CF6;
    margin: 8px auto 12px;
}

.service-item-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-item-desc {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 16px;
}

.btn-info {
    background: #FFBE01;
    color: #1E293B;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-info:hover {
    transform: translateY(-2px);
    background: #E5AA01;
}

.service-link-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-link-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-red);
    box-shadow: 0 12px 40px rgba(255, 190, 1, 0.15);
}

.service-link-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #1E293B;
    box-shadow: 0 6px 20px rgba(255, 190, 1, 0.3);
}

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

.service-link-desc {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.entities-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 48px;
}

.entities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.entity-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--border-color);
}

.entity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 190, 1, 0.15);
    border-color: var(--primary-red);
}

.entity-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1E293B;
}

.entity-card:hover .entity-icon {
    transform: scale(1.1);
}

.entity-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    text-align: center;
}

.companies {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
}

.company-card {
    background: white;
    padding: 32px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #FFBE01;
}

.company-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.company-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.company-card:hover .company-logo {
    transform: none;
}

.company-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    padding: 20px;
}

.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-red);
    box-shadow: 0 12px 40px rgba(255, 190, 1, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #1E293B;
    box-shadow: 0 8px 20px rgba(255, 190, 1, 0.3);
}

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

.benefit-desc {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.footer {
    background: #F5F5F5;
    color: #333;
    padding: 60px 0 0;
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-link {
    width: 32px;
    height: 32px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-link:hover {
    color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.footer-title-space {
    margin-top: 32px;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-red);
    transform: translateX(4px);
}

.footer-links li {
    color: #666;
    font-size: 15px;
}

.btn-footer-gray {
    background: #C4C4C4;
    color: #666;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-footer-gray:hover {
    background: #B0B0B0;
}

.btn-footer-phone {
    background: #FFBE01;
    color: #333;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    width: 100%;
}

.btn-footer-phone:hover {
    background: #E5AA01;
}

.footer-bottom {
    border-top: 1px solid #DDD;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.brandal-link {
    color: #5B6FED;
    text-decoration: none;
    font-weight: 500;
}

.brandal-link:hover {
    text-decoration: underline;
}

.chat-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border: none;
    border-radius: 50%;
    color: #1E293B;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 190, 1, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(255, 190, 1, 0.5);
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-title {
        font-size: 38px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 0;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .about-title {
        font-size: 18px;
    }

    .about-subtitle {
        font-size: 14px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 32px 24px;
    }

    .service-icon-img {
        width: 55px;
        height: 55px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .chat-btn {
        width: 56px;
        height: 56px;
        font-size: 24px;
        bottom: 24px;
        right: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .service-title {
        font-size: 18px;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 14px;
    }
}

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

.hero-text,
.hero-image,
.service-card,
.company-card,
.benefit-card,
.service-link-card {
    animation: fadeInUp 0.6s ease-out;
}
