
.event-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #fff;
    overflow: hidden;
    background-image: url(../image/pattern-horizontal.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
}
@media(min-width: 1440px){
    .event-hero{
        padding-top: 150px;
    }
}
.event-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.event-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.event-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.event-hero-content {
    position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	z-index: 3;
	text-align: left;
	padding: 20px 80px;
	width: 100%;
}

.event-hero-content-left {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin-top: 50px;
}

.event-hero-content-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 10px;
}

.event-hero-title {
    margin-bottom: 40px;
    text-align: left;
}

.event-hero-title h1,
.event-hero-title h2 {
    font-size: 80px;
    font-weight: 700;
    margin: 0 0 20px;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.1;
    text-align: left;
}

.event-hero-title h2 {
    font-size: 64px;
    margin: 0;
}

.event-hero-subtitle {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 60px;
    line-height: 1.6;
    max-width: 1000px;
    text-align: left;
}
.event-hero-subtitle span{
    color: #e50914;
}
.event-hero-subtitle p {
    margin: 12px 0;
    text-align: left;
}

.event-hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 0;
}


.btn-primary {
    background: red;
    color: #fff;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid red;
    letter-spacing: 1px;
}


.btn-primary:hover {
    background: transparent;
    color: red;
    cursor: pointer;
}

.meeting-btn {
    background: red;
    color: #fff;
    padding: 10px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid red;
    letter-spacing: 1px;
    margin: 0 20px;
}

.meeting-btn:hover {
    background: transparent;
    color: red;
    cursor: pointer;
}


.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
}

/* About Section - Modern Design */
.about-section {
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
    color: #fff;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 0, 0, 0.03) 50%, transparent 70%);
    animation: aboutRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes aboutRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ff6b6b);
    border-radius: 2px;
    animation: titleUnderline 2s ease-in-out infinite alternate;
}

@keyframes titleUnderline {
    0% { width: 60px; opacity: 0.7; }
    100% { width: 100px; opacity: 1; }
}

.about-description {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: auto;
    display: block;
}

.about-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: aboutShimmer 3s infinite;
}

@keyframes aboutShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.about-description p:hover {
    color: rgba(255, 255, 255, 1);
}

.about-description ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    gap: 15px;
}

.about-description li {
    padding: 15px 20px 15px 50px;
    position: relative;
    background: rgba(255, 0, 0, 0.05);
    border-left: 3px solid #ff6b6b;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
}

.about-description li:hover {
    background: rgba(255, 0, 0, 0.1);
    border-left-color: #ff0000;
    transform: translateX(5px);
    color: rgba(255, 255, 255, 1);
}

.about-description li::before {
    content: "⚡";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite alternate;
}

@keyframes iconPulse {
    0% { transform: translateY(-50%) scale(1); }
    100% { transform: translateY(-50%) scale(1.1); }
}

.about-description .highlight {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    padding: 0 2px;
}

.about-description .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, #ff6b6b);
    opacity: 0.3;
    animation: highlightGlow 2s ease-in-out infinite alternate;
}

@keyframes highlightGlow {
    0% { opacity: 0.3; transform: scaleX(0.8); }
    100% { opacity: 0.6; transform: scaleX(1); }
}

.about-description strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-description strong::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: strongShimmer 4s infinite;
}

@keyframes strongShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.get-call-wrap{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}



.social-icons-section {
    background-color: #000;
    color: #fff;
    padding: 60px 80px;
    text-align: center;
}

.social-icons-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-icons-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.social-icons-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    color: #191f28;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.social-icon.fb:hover { background-color: #3b5998; color: #fff; }
.social-icon.ig:hover { background-color: #e1306c; color: #fff; }
.social-icon.tg:hover { background-color: #0088cc; color: #fff; }
.social-icon.tt:hover { background-color: #000; color: #fff; }

.services-page {
    background-color: #000;
    color: #fff;
    padding: 20px 80px;
    display: flex;
    flex-direction: column;
}

.portfolio-page {
    color: #fff;
    padding: 20px 80px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.portfolio-bg{
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background-image: url(../image/pattern-horizontal.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.services-items {
    display: flex;
    flex-wrap: wrap;
}

.portfolio-items {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.portfolio-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    margin-right: 3%;
    margin-bottom: 40px;
    transition: 0.3s ease;
    cursor: pointer;
}

.portfolio-block h2{
    margin-bottom: 6px;
}

.portfolio-block p{
    margin: 0;
}

.portfolio-block img{
    align-self: center;
    transition: 0.3s ease;
    width: 100%;
    border-radius: 10px;
}

.portfolio-block:hover img {
    transform: scale(1.05);
}

.portfolio-block:hover {
    color: #e50914;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-header h1 {
    font-size: 48px;
    color: #fff;
}

.portfolio-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 48px;
    color: #fff;
}

.services-header p {
    font-size: 18px;
    color: #fff;
}

.services-header p span{
    color: #ff6f6d;
}
.service-block {
    margin-bottom: 40px;
    border-top: 1px solid #333;
    padding-top: 40px;
    width: 30%;
    margin-right: 3%;
}

.service-block h2 {
    font-size: 32px;
    color: #e50914;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.service-block li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

.service-name {
    font-weight: 500;
    color: #fff;
}

.service-price {
    font-weight: 700;
    color: #e50914;
    white-space: nowrap;
}

/* E-commerce Content Management — short card button */
.ecom-cm-more-btn {
    display: inline-block;
    margin-top: 12px;
}

/* E-commerce Content Management — full-width details block */
.ecom-cm-details {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    scroll-margin-top: 100px;
    background-color: #0a0a0a;
    color: #fff;
    padding: 60px 20px 80px;
    border-top: 1px solid #222;
    box-sizing: border-box;
}

.ecom-cm-details-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    box-sizing: border-box;
}

.ecom-cm-content {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.ecom-cm-sidebar {
    flex: 0 0 320px;
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 28px;
    position: sticky;
    top: 100px;
    box-sizing: border-box;
}

.ecom-cm-details h2 {
    font-size: 32px;
    color: #e50914;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ecom-cm-lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    line-height: 1.6;
}

.ecom-cm-section {
    margin-top: 48px;
}

.ecom-cm-section h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 16px;
}

.ecom-cm-table-title {
    font-weight: 700;
    color: #fff;
    margin: 20px 0 8px 0;
}

.ecom-cm-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.ecom-cm-price-list li {
    padding: 6px 0;
    color: #e50914;
    border-bottom: 1px solid #222;
}

.ecom-cm-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 4px 0 16px 0;
}

.ecom-cm-includes-title {
    font-weight: 700;
    color: #fff;
    margin: 16px 0 8px 0;
}

.ecom-cm-includes {
    list-style: disc;
    padding-left: 24px;
    margin: 0 0 16px 0;
    color: rgba(255, 255, 255, 0.9);
}

.ecom-cm-includes li {
    margin-bottom: 4px;
    border: none;
    padding: 0;
}

.ecom-cm-final-note {
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.ecom-cm-sidebar-title {
    font-size: 20px;
    color: #e50914;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ecom-cm-sidebar-lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.ecom-cm-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.ecom-cm-sidebar-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    border: none;
}

.ecom-cm-sidebar-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e50914;
    font-weight: bold;
}

.ecom-cm-order-btn {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* E-commerce block: mobile — left block on top, right block below, no overflow */
@media (max-width: 900px) {
    .ecom-cm-details {
        width: 100%;
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
        padding: 40px 16px 60px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .ecom-cm-details-inner {
        flex-direction: column;
        gap: 32px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .ecom-cm-content {
        order: 1;
        max-width: 100%;
        min-width: 0;
    }

    .ecom-cm-sidebar {
        order: 2;
        flex: none;
        width: 100%;
        max-width: 100%;
        position: static;
        padding: 20px 16px;
        box-sizing: border-box;
    }

    .ecom-cm-sidebar .ecom-cm-order-btn {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Кнопка «Детальніше» і кнопки в картках услуг на моб — не вилазять */
@media (max-width: 900px) {
    .service-block .ecom-cm-more-btn,
    .service-block .btn-secondary.consultation-btn {
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

.tariff-section {
    width: 100%;
    margin-top: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tariff-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
    text-transform: uppercase;
}

.tariff-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tariff-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
	flex-direction: column;
	justify-content: space-between;
}


.tariff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
}

.tariff-card .btn-secondary{
    margin-top: 20px;
}

.tariff-card h3 {
    font-size: 24px;
    color: #e50914;
    margin-bottom: 20px;
}

.tariff-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.tariff-card li {
    padding: 6px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.tariff-card .price {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.service-desc {
    font-size: 14px;            /* чуть меньше чем название услуги */
    color: rgba(255, 255, 255, 0.6); /* более мягкий серый оттенок */
    line-height: 1.4;
    margin-top: 4px;            /* отступ сверху от названия */
}

/* Для тарифных карт */
.tariff-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
    margin-top: 2px;
}

.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.custom-modal.show {
    opacity: 1;
}

.custom-modal-content {
    background-color: #000;
    color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-modal.show .custom-modal-content {
    transform: scale(1);
    opacity: 1;
}

.custom-modal-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.privacy-policy{
    color: #fff;
    padding: 120px 20px 20px 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}


@media (max-width: 768px) {
    .social-icons-list {
        gap: 20px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .event-hero-content {
        padding: 20px;
        margin-top: 120px;
        flex-direction: column;
    }
    .event-hero-content-left, .event-hero-content-right {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .event-hero-title h1 {
        font-size: 36px;
    }

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

    .event-hero-subtitle {
        font-size: 23px;
    }

    .event-hero-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 43px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .about-section{
        padding: 80px 15px;
    }

    .about-title{
        font-size: 2.5rem;
    }

    .about-header{
        margin-bottom: 40px;
    }

    .about-description{
        width: auto;
        padding: 30px 20px;
        margin: 0 10px;
    }

    .about-description p{
        font-size: 1rem;
        text-align: center;
    }

    .about-description li{
        padding: 12px 15px 12px 40px;
    }

    .about-description li::before{
        left: 12px;
        font-size: 1rem;
    }

    .about-description strong{
        font-size: 1rem;
        padding: 15px;
    }

    .social-icons-section{
        padding: 10px 20px;
    }

    .social-icons-header h2{
        font-size: 32px;
        margin-bottom: 20px;
    }

    .services-page{
        padding: 20px;
    }

    .service-block{
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .portfolio-page{
        padding: 20px;
    }

    .portfolio-header p{
        padding: 20px;
    }

    .portfolio-block{
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .services-header p,
    .services-header h1{
        padding: 0 20px;
    }
}

/* Privacy consent styles for home form */
.event-hero-content-right .privacy-consent {
    margin-bottom: 20px;
    margin-top: 15px;
}

.event-hero-content-right .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    padding-left: 50px;
}

.event-hero-content-right .checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.event-hero-content-right .checkmark {
    height: 18px;
    width: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #fff;
    border-radius: 3px;
    /* position: relative; */
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 1px;
}

.event-hero-content-right .checkbox-label:hover .checkmark {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.event-hero-content-right .checkbox-label input:checked ~ .checkmark {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    border-color: #ff6b6b;
}

.event-hero-content-right .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.event-hero-content-right .checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.event-hero-content-right .checkbox-label .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.event-hero-content-right .privacy-link {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-hero-content-right .privacy-link:hover {
    color: #ff0000;
    text-decoration: underline;
}

/* Стили для формы на главной странице */
.event-hero-content-right .consultation-form {
    width: 60%;
    max-width: 100%;
    box-sizing: border-box;
}

@media(max-width: 1440px){
    .event-hero-content-right .consultation-form {
        width: 90%;
    }
}

 .consultation-form .form-group {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.consultation-form .form-group input::placeholder,
.consultation-form .form-group textarea::placeholder{
    color: #fff;
}
 .consultation-form .form-group input,
 .consultation-form .form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    header .meeting-btn{
        display: none;
    }
    
    .event-hero-content-right {
        padding: 0;
    }
}

.fixed-cta{
    position: fixed;
    width: 100%;
    height:auto;
    z-index: 98;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.fixed-cta.show{
    opacity: 1;
    transform: translateY(0);
}
.fixed-cta-btn{
    background: red;
	color: #fff;
	padding: 10px 40px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid red;
	letter-spacing: 1px;
}

/* Business Niches Section */
.business-niches {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
    position: relative;
}

.business-niches::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.niches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.niche-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.niche-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s;
}

.niche-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 0, 0, 0.1);
}

.niche-card:hover::before {
    left: 100%;
}

.niche-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.niche-card:hover .niche-icon {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4);
}

.niche-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.niche-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    background: linear-gradient(45deg, #fff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.niche-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.niche-services {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.niche-services li {
    position: relative;
    padding: 8px 0 8px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.niche-services li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1rem;
}

.niche-card:hover .niche-services li {
    color: rgba(255, 255, 255, 0.95);
}

.niche-card:hover .niche-services li::before {
    color: #ff0000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-niches {
        padding: 60px 15px;
    }
    
    .niches-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .niche-card {
        padding: 20px;
    }
    
    .niche-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .niche-content h3 {
        font-size: 1.2rem;
    }
    
    .niche-content p {
        font-size: 0.85rem;
    }
    
    .niche-services li {
        font-size: 0.8rem;
        padding: 6px 0 6px 18px;
    }
}

@media (max-width: 480px) {
    .niches-grid {
        grid-template-columns: 1fr;
        margin: 0 10px;
        gap: 15px;
    }
    
    .niche-card {
        padding: 18px 15px;
    }
    
    .niche-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .niche-content h3 {
        font-size: 1.1rem;
    }
}

/* Marketing Approach Section */
.marketing-approach {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    text-align: center;
    position: relative;
}

.marketing-approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.marketing-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.marketing-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
    background: linear-gradient(45deg, #fff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.marketing-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 768px) {
    .marketing-approach {
        padding: 60px 15px;
    }
    
    .marketing-content h2 {
        font-size: 1.8rem;
    }
    
    .marketing-content p {
        font-size: 1.1rem;
    }
}

/* Services Preview Section */
.services-preview {
    padding: 100px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-preview-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services-preview-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-preview-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-preview-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 0, 0, 0.1);
}

.service-preview-card:hover::before {
    left: 100%;
}

.service-preview-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-preview-card:hover .service-preview-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

.service-preview-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
    background: linear-gradient(45deg, #fff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-preview-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.service-preview-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.service-preview-features li {
    position: relative;
    padding: 6px 0 6px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.service-preview-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.services-preview-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Clients Niches Home Section */
.clients-niches-home {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    position: relative;
}

.clients-niches-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.clients-niches-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.clients-niches-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clients-niches-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.niches-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.niche-card-home {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.niche-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s;
}

.niche-card-home:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 0, 0, 0.1);
}

.niche-card-home:hover::before {
    left: 100%;
}

.niche-icon-home {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.niche-card-home:hover .niche-icon-home {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4);
}

.niche-card-home h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    background: linear-gradient(45deg, #fff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.niche-card-home p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.clients-niches-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .services-preview,
    .clients-niches-home {
        padding: 80px 15px;
    }
    
    .services-preview-header h2,
    .clients-niches-header h2 {
        font-size: 2.5rem;
    }
    
    .services-preview-grid,
    .niches-grid-home {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-preview-card,
    .niche-card-home {
        padding: 25px 20px;
    }
    
    .service-preview-icon,
    .niche-icon-home {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .services-preview-header h2,
    .clients-niches-header h2 {
        font-size: 2rem;
    }
    
    .service-preview-card h3,
    .niche-card-home h3 {
        font-size: 1.2rem;
    }
}