* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #1a1a2e;
    background: #faf8f5;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}


.logo {
    flex-shrink: 0;
    margin-right: 0;
    position: relative;
}

.logo a {
    display: flex;
}

.logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

#header {
    background: rgba(10, 10, 30, 0.96);
    backdrop-filter: blur(8px);
    padding: 6px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    height: 62px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
}

.logo {
    flex-shrink: 0;
    margin-left: 20px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

#main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
}

.nav-menu li a {
    color: #f0ece4;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 16px;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    background: #d4af37;
    color: #1a1a2e;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #f0ece4;
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
}

.header-phone {
    flex-shrink: 0;
    margin-right: 20px;
}

.header-phone a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-phone a i {
    font-size: 13px;
}

.header-phone a:hover {
    color: #f0ece4;
}

.banner-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 62px;
}

.banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 30, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.banner-content {
    max-width: 800px;
    animation: fadeUp 1.2s ease forwards;
}

.banner-content h1 {
    font-size: clamp(2.2rem, 8vw, 4.8rem);
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    line-height: 1.1;
}

.banner-content p {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    color: #f0ece4;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.banner-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.banner-dots span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.4s ease;
}

.banner-dots span.active {
    background: #d4af37;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .banner-section {
        min-height: 420px;
        margin-top: 62px;
    }

    .banner-dots {
        bottom: 20px;
        gap: 10px;
    }

    .banner-dots span {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .banner-dots {
        bottom: 16px;
        gap: 8px;
    }

    .banner-dots span {
        width: 8px;
        height: 8px;
    }
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: linear-gradient(145deg, #f5f0e8 0%, #e8e0d5 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #1a1a2e;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f5d97a);
    margin: 12px auto 0;
    border-radius: 4px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #2d2d44;
    margin-bottom: 16px;
}

.about-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin: 20px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    color: #2d2d44;
}

.about-list li i {
    color: #d4af37;
    font-size: 1.1rem;
}

.about-highlight {
    font-size: 1.15rem;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border-left: 5px solid #d4af37;
    border-radius: 0 12px 12px 0;
    margin-top: 10px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-item {
    background: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    text-align: center;
    border-bottom: 4px solid #d4af37;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.95rem;
    color: #5a5a72;
    font-weight: 500;
}

.stat-labe {
    font-size: 0.95rem;
    color: #5a5a72;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: #d4af37;
}

.benefit-card i {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 18px;
}

.benefit-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #4a4a62;
}

#audience {
    background: linear-gradient(160deg, #f8f5f0 0%, #f0ebe3 100%);
    position: relative;
    overflow: hidden;
}

#audience::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#audience::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6a6a82;
    margin-top: 8px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.audience-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.audience-stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

.audience-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.1;
    background: linear-gradient(135deg, #d4af37, #b8942e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audience-stat-label {
    font-size: 0.8rem;
    color: #6a6a82;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.audience-stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.1;
    font-variant-numeric: lining-nums;
    white-space: nowrap;
}

.stat-number[data-target] {
    white-space: nowrap;
}

.stat-label {
    font-size: 0.95rem;
    color: #5a5a72;
    font-weight: 500;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.audience-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 20px 16px;
    border-radius: 16px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.audience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.01));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.audience-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.12);
    border-color: #d4af37;
}

.audience-item:hover::before {
    opacity: 1;
}

.audience-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #d4af37;
    transition: all 0.4s ease;
}

.audience-item:hover .audience-icon {
    background: linear-gradient(135deg, #d4af37, #b8942e);
    color: #fff;
    transform: rotate(360deg) scale(1.1);
}

.audience-item span {
    font-size: 0.92rem;
    line-height: 1.3;
}

.audience-highlight {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 35px 45px;
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    border-radius: 24px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.12);
    margin-top: 10px;
}

.audience-highlight-icon {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #b8942e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #1a1a2e;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}

.audience-highlight-content p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #f0ece4;
    line-height: 1.6;
    margin: 0;
}

.audience-highlight-content strong {
    color: #d4af37;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .audience-stats-row {
        flex-direction: column;
        gap: 12px;
        padding: 20px 25px;
        border-radius: 30px;
        max-width: 100%;
    }

    .audience-stat-divider {
        width: 60%;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .audience-item {
        padding: 14px 12px;
        flex-direction: column;
        gap: 6px;
    }

    .audience-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.9rem;
    }

    .audience-item span {
        font-size: 0.82rem;
    }

    .audience-highlight {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 16px;
    }

    .audience-highlight-content p {
        font-size: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .audience-item {
        padding: 12px 10px;
    }

    .audience-item span {
        font-size: 0.78rem;
    }

    .audience-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.75rem;
    }

    .audience-stats-row {
        padding: 16px 18px;
        gap: 8px;
    }

    .audience-stat-number {
        font-size: 1.5rem;
    }

    .audience-stat-label {
        font-size: 0.7rem;
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.category-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border-top: 5px solid #d4af37;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.08);
}

.category-card i {
    font-size: 2.4rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.category-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
    text-align: center;
}

.category-card ul {
    list-style: none;
    text-align: center;
    width: 100%;
}

.category-card ul li {
    padding: 5px 0;
    font-size: 0.95rem;
    color: #3a3a52;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    text-align: center;
}

.category-card ul li:last-child {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.channel-item {
    background: #fff;
    padding: 16px 14px;
    border-radius: 14px;
    text-align: center;
    font-weight: 500;
    color: #1a1a2e;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.channel-item i {
    color: #d4af37;
    margin-right: 8px;
    font-size: 1.1rem;
}

.channel-item:hover {
    background: #d4af37;
    color: #fff;
}

.channel-item:hover i {
    color: #fff;
}

.channel-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    font-size: 1.05rem;
    color: #2d2d44;
    text-align: center;
    border: 1px dashed #d4af37;
}

.card-example {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.card-content {
    padding: 40px 35px;
    position: relative;
}

.card-badge {
    display: inline-block;
    background: #d4af37;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.card-content h3 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.card-content > p {
    font-size: 1.05rem;
    color: #4a4a62;
    margin-bottom: 20px;
}

.card-info {
    list-style: none;
    margin-bottom: 25px;
}

.card-info li {
    padding: 6px 0;
    font-size: 0.98rem;
    color: #3a3a52;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-info li i {
    color: #d4af37;
    width: 20px;
    text-align: center;
}

.promo-code {
    background: #1a1a2e;
    color: #d4af37;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 1px;
    font-family: 'Inter', monospace;
}

.card-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.card-image {
    background: #e8e0d5;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #d4af37;
    color: #1a1a2e;
}

.btn-primary:hover {
    background: #c4a030;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
}

.btn-secondary:hover {
    background: #1a1a2e;
    color: #f0ece4;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

.table-responsive {
    overflow-x: auto;
}

.options-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.options-table thead {
    background: #1a1a2e;
    color: #f0ece4;
}

.options-table th,
.options-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.options-table th {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.options-table tr:last-child td {
    border-bottom: none;
}

.options-table tr:hover td {
    background: rgba(212, 175, 55, 0.04);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.adv-card {
    background: #fff;
    padding: 30px 22px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}

.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.08);
}

.adv-card i {
    font-size: 2.4rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.adv-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.adv-card ul {
    list-style: none;
}

.adv-card ul li {
    padding: 5px 0;
    padding-left: 22px;
    position: relative;
    font-size: 0.92rem;
    color: #3a3a52;
}

.adv-card ul li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 0.7rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #d4af37, #f5d97a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #1a1a2e;
    margin: 0 auto 16px;
}

.step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.92rem;
    color: #4a4a62;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    padding: 20px 0;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.partner-name-placeholder {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    padding: 12px 28px;
    background: #fff;
    border-radius: 12px;
    border: 2px dashed #d4af37;
}

.partner-placeholder {
    font-size: 1.1rem;
    color: #7a7a92;
    padding: 30px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    width: 100%;
}

.commercial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.commercial-item {
    background: #fff;
    padding: 30px 22px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border-bottom: 4px solid #d4af37;
}

.commercial-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.08);
}

.commercial-item i {
    font-size: 2.4rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.commercial-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.commercial-item p {
    font-size: 0.92rem;
    color: #4a4a62;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-text h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 1.05rem;
    color: #2d2d44;
    margin-bottom: 12px;
}

.contact-text ul {
    list-style: none;
}

.contact-text ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.98rem;
    color: #3a3a52;
}

.contact-text ul li::before {
    content: "✦";
    position: absolute;
    left: 4px;
    color: #d4af37;
    font-size: 1.1rem;
}

.contact-form {
    background: #fff;
    padding: 40px 35px;
    border-radius: 24px;
    box-shadow: 0 12px 50px rgba(0,0,0,0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e0d5;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #faf8f5;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: #aaa;
}

.form-group:last-of-type select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a1a2e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px 10px;
    padding-right: 50px;
    transition: all 0.3s ease;
}

.form-group:last-of-type select.open {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 7l5-5 5 5' stroke='%23d4af37' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.form-group:last-of-type select option {
    padding: 10px;
}

.form-group:last-of-type select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

@media (max-width: 768px) {
    .form-group input,
    .form-group select {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .form-group:last-of-type select {
        background-position: right 16px center;
        padding-right: 44px;
    }
}

#footer {
    background: linear-gradient(160deg, #0d0d20, #1a1a2e);
    color: #c8c4d0;
    padding: 60px 0 0;
    border-top: 4px solid #d4af37;
    margin-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand img {
    max-height: 44px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #a8a4b8;
    max-width: 300px;
    margin-bottom: 18px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: #c8c4d0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #d4af37;
    color: #1a1a2e;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #f0ece4;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #a8a4b8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-contacts {
    list-style: none;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #a8a4b8;
}

.footer-contacts li i {
    color: #d4af37;
    width: 20px;
    text-align: center;
}

.footer-contacts a {
    color: #a8a4b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contacts a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0 30px;
    font-size: 0.85rem;
    color: #6a6a82;
}

@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .channels-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .commercial-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 62px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 62px);
        background: rgba(10, 10, 30, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 16px;
        gap: 0;
        transition: left 0.4s ease;
        overflow-y: auto;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: center;
    }

    .header-phone {
        display: none;
    }

    #main-nav {
        justify-content: flex-end;
    }

    .logo {
        margin-left: -4px;
    }

    .banner-section {
        min-height: 420px;
        margin-top: 62px;
    }

    .banner-controls {
        bottom: 16px;
        gap: 10px;
    }

    .banner-arrow {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .about-grid,
    .card-example,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 1 1 140px;
        padding: 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .benefits-grid,
    .categories-grid,
    .advantages-grid,
    .commercial-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .channels-grid {
        grid-template-columns: 1fr 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 50px 0;
    }

    .card-content {
        padding: 25px 20px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .card-actions {
        flex-direction: column;
    }

    .card-actions .btn {
        justify-content: center;
    }

    #footer {
        padding-top: 40px;
    }

    .partner-logo img {
        max-height: 50px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .channels-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .options-table th,
    .options-table td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }

    .stat-item {
        flex: 1 1 100%;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 12px;
    }

    .footer-col h4 {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu li a {
        font-size: 12px;
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 62px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 62px);
        background: rgba(10, 10, 30, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 16px;
        gap: 0;
        transition: left 0.4s ease;
        overflow-y: auto;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: center;
    }

    .header-phone {
        display: none;
    }

    #main-nav {
        flex: 0 1 auto;
        margin: 0;
    }

    .header-container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    #header {
        height: 56px;
    }

    .nav-menu {
        top: 56px;
        height: calc(100vh - 56px);
    }

    .banner-section {
        margin-top: 56px;
        min-height: 400px;
    }

    .logo img {
        max-height: 32px;
    }
}

.calculator-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 30px 35px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.calculator-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-align: center;
}

.calculator-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.calc-tab {
    padding: 8px 24px;
    border: 2px solid #e8e0d5;
    border-radius: 30px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6a6a82;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-tab:hover {
    border-color: #d4af37;
    color: #1a1a2e;
}

.calc-tab.active {
    background: #d4af37;
    border-color: #d4af37;
    color: #1a1a2e;
}

.calculator-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #f0ece4;
}

.calculator-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 580px;
}

.calculator-table thead th {
    padding: 14px 16px;
    background: #fdf3e4;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6a6a82;
    text-align: left;
    border-bottom: 2px solid #e8e0d5;
}

.calculator-table thead th.calc-price-header {
    text-align: center;
    min-width: 100px;
}

.calculator-table thead th.calc-select-header {
    text-align: center;
    min-width: 60px;
}

.calculator-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #f5f0e8;
    vertical-align: middle;
}

.calculator-table tbody tr:hover td {
    background: #faf8f5;
}

.calc-service-label {
    font-weight: 500;
    color: #1a1a2e;
}

.calc-price-cell {
    text-align: center;
    font-weight: 500;
    color: #2d2d44;
}

.calc-select-cell {
    text-align: center;
}

.calc-checkbox-label {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.calc-checkbox-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #d4af37;
    border-radius: 6px;
    background: #fff;
    transition: all 0.3s ease;
}

.calc-checkbox-label input:checked + .checkmark {
    background: #d4af37;
}

.calc-checkbox-label input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 8px;
    height: 14px;
    border: solid #1a1a2e;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.calc-checkbox-label:hover .checkmark {
    border-color: #b8942e;
}

.calc-total-row td {
    padding: 16px;
    background: #fdf3e4;
    font-weight: 700;
    font-size: 1.05rem;
    border-top: 2px solid #e8e0d5;
}

.calc-total-cell {
    text-align: center;
    color: #d4af37;
    font-size: 1.1rem;
}

.calc-total-cell strong {
    font-size: 1.15rem;
}

.calculator-note {
    margin-top: 16px;
    text-align: center;
    color: #6a6a82;
    font-size: 0.9rem;
}

.calculator-note strong {
    color: #d4af37;
}

.calc-hint {
    font-size: 0.8rem !important;
    color: #8a8aa2 !important;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .calculator-wrapper {
        padding: 20px;
    }

    .calculator-table {
        font-size: 0.82rem;
        min-width: 480px;
    }

    .calculator-table thead th,
    .calculator-table tbody td {
        padding: 10px 12px;
    }

    .calc-tab {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    .calc-total-cell strong {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .calculator-wrapper {
        padding: 14px;
    }

    .calculator-table {
        font-size: 0.72rem;
        min-width: 380px;
    }

    .calculator-table thead th,
    .calculator-table tbody td {
        padding: 8px 8px;
    }

    .calc-tab {
        padding: 4px 12px;
        font-size: 0.7rem;
    }

    .calc-service-label {
        font-size: 0.75rem;
    }
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.roi-card {
    background: #fff;
    padding: 20px 22px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border-left: 4px solid #d4af37;
    transition: transform 0.3s;
}

.roi-card:hover { transform: translateY(-4px); }

.roi-name { font-weight: 700; font-size: 1.05rem; color: #1a1a2e; }
.roi-category { font-size: 0.8rem; color: #8a8aa2; margin: 4px 0 8px; }
.roi-growth { font-size: 1.8rem; font-weight: 900; color: #27ae60; }
.roi-period { font-size: 0.75rem; color: #6a6a82; margin-top: 4px; }

.roi-total {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #d4af37, #f5d97a);
    border-radius: 16px;
    color: #1a1a2e;
}

.roi-total-label { font-size: 1.1rem; font-weight: 500; }
.roi-total-value { font-size: 2.4rem; font-weight: 900; margin-left: 12px; }

.roi-placeholder {
    text-align: center;
    padding: 40px;
    color: #8a8aa2;
    grid-column: 1 / -1;
}

.format-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 4px;
}

.format-option {
    position: relative;
    padding: 10px 12px;
    background: #faf8f5;
    border: 2px solid #e8e0d5;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    user-select: none;
}

.format-option:hover {
    border-color: #d4af37;
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.format-option.active {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.format-option .format-icon {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 1px;
    transition: transform 0.3s ease;
    line-height: 1.2;
}

.format-option.active .format-icon {
    transform: scale(1.05);
}

.format-option .format-label {
    font-weight: 600;
    font-size: 0.75rem;
    color: #1a1a2e;
    line-height: 1.2;
}

.format-option .format-desc {
    font-size: 0.6rem;
    color: #8a8aa2;
    line-height: 1.2;
    display: none;
}

.format-option .format-check {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.9rem;
    color: #d4af37;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.format-option.active .format-check {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .format-select-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .format-option {
        padding: 8px 8px;
        border-radius: 8px;
    }

    .format-option .format-icon {
        font-size: 0.95rem;
    }

    .format-option .format-label {
        font-size: 0.65rem;
    }

    .format-option .format-desc {
        display: none;
    }

    .format-option .format-check {
        width: 16px;
        height: 16px;
        font-size: 0.75rem;
        top: -4px;
        right: -4px;
    }
}

@media (max-width: 480px) {
    .format-select-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .format-option {
        padding: 6px 8px;
        border-radius: 8px;
    }

    .format-option .format-icon {
        font-size: 0.85rem;
    }

    .format-option .format-label {
        font-size: 0.6rem;
    }

    .format-option .format-check {
        width: 14px;
        height: 14px;
        font-size: 0.65rem;
        top: -3px;
        right: -3px;
    }
}

#phoneInput {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

#phoneInput:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 30, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    max-width: 420px;
    width: 100%;
    padding: 0;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #6a6a82;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: #e74c3c;
    color: #fff;
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px 30px 16px;
    text-align: center;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: #6a6a82;
    margin-bottom: 20px;
}

.modal-qr-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background: #faf8f5;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 2px solid #f0ece4;
}

.modal-qr-image {
    max-width: 200px;
    height: auto;
    display: block;
    border-radius: 8px;
}

.modal-hint {
    font-size: 0.8rem;
    color: #8a8aa2;
}

.modal-footer {
    display: flex;
    justify-content: center;
    padding: 8px 30px 28px;
}

.modal-footer .btn {
    padding: 12px 32px;
    font-size: 0.9rem;
    min-width: 160px;
    justify-content: center;
}

@media (max-width: 480px) {
    .modal-container {
        max-width: 100%;
        margin: 10px;
        border-radius: 18px;
    }

    .modal-body {
        padding: 30px 18px 16px;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .modal-qr-image {
        max-width: 160px;
    }

    .modal-footer {
        padding: 6px 18px 20px;
        flex-direction: column;
    }

    .modal-footer .btn {
        width: 100%;
        min-width: unset;
    }
}

.custom-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    max-width: 420px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 99999;
    transform: translateX(calc(100% + 40px));
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 4px solid #d4af37;
}

.custom-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-notification .notification-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.custom-notification .notification-content {
    flex: 1;
}

.custom-notification .notification-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.custom-notification .notification-message {
    font-size: 0.85rem;
    color: #6a6a82;
    line-height: 1.4;
    white-space: pre-line;
}

.custom-notification .notification-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #8a8aa2;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
}

.custom-notification .notification-close:hover {
    color: #e74c3c;
}
.custom-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    max-width: 420px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    z-index: 99999;
    transform: translateX(calc(100% + 40px));
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 5px solid #27ae60;
}

.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-toast.error {
    border-left-color: #e74c3c;
}

.custom-toast .toast-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.custom-toast.error .toast-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.custom-toast .toast-content {
    flex: 1;
    padding-top: 2px;
}

.custom-toast .toast-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.custom-toast .toast-message {
    font-size: 0.88rem;
    color: #6a6a82;
    line-height: 1.4;
}

.custom-toast .toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #b0b0c0;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
    margin-top: 2px;
}

.custom-toast .toast-close:hover {
    color: #e74c3c;
}

.custom-toast .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 0 0 0 16px;
    transition: width 0.1s linear;
}

.custom-toast.error .toast-progress {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

@media (max-width: 480px) {
    .custom-toast {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: 100%;
        padding: 16px 18px;
        border-radius: 12px;
    }
    .custom-toast .toast-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .custom-toast .toast-title {
        font-size: 0.9rem;
    }
    .custom-toast .toast-message {
        font-size: 0.8rem;
    }
}

.partner-link {
    display: block;
    transition: all 0.3s ease;
}

.partner-link:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
}

.card-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}
.filter-btn {
    padding: 8px 20px;
    border: 2px solid #e8e0d5;
    border-radius: 30px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6a6a82;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    border-color: #d4af37;
    color: #1a1a2e;
}
.filter-btn.active {
    background: #d4af37;
    border-color: #d4af37;
    color: #1a1a2e;
}

.cards-carousel {
    position: relative;
    min-height: 400px;
}
.card-example {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    animation: fadeSlide 0.5s ease;
}
.card-example.active {
    display: grid;
}
@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.card-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #8a8aa2;
    font-size: 1.1rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.carousel-arrow {
    width: 44px;
    height: 44px;
    border: 2px solid #e8e0d5;
    border-radius: 50%;
    background: #fff;
    color: #1a1a2e;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-arrow:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #fff;
}
.carousel-counter {
    font-weight: 600;
    color: #6a6a82;
    min-width: 60px;
    text-align: center;
}

@media (max-width: 768px) {
    .card-example {
        grid-template-columns: 1fr;
    }
    .card-filters {
        gap: 4px;
    }
    .filter-btn {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}

.calc-price-cell.active-term {
    color: #d4af37 !important;
    font-weight: 700 !important;
}

.calc-total-cell.active-term {
    color: #d4af37 !important;
    font-weight: 700 !important;
}

.calc-total-cell.active-term strong {
    color: #d4af37 !important;
}

.banner-views {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 10, 30, 0.6);
    backdrop-filter: blur(6px);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
}

.banner-views i {
    color: #fcfcfc;
    font-size: 0.9rem;
}

.banner-views span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.banner-views:hover {
    background: rgba(10, 10, 30, 0.8);
    border-color: rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .banner-views {
        bottom: 20px;
        right: 20px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    .banner-views i {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .banner-views {
        bottom: 16px;
        right: 16px;
        padding: 4px 10px;
        font-size: 0.65rem;
    }
    .banner-views i {
        font-size: 0.65rem;
    }
}