@font-face {
    font-family: 'Alumni Sans SC';
    src: url('/wp-content/themes/blank-wordpress-theme-master/css/fonts/AlumniSansSC-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap; /* Для оптимизации загрузки */
}

@font-face {
    font-family: 'Alumni Sans SC';
    src: url('/wp-content/themes/blank-wordpress-theme-master/css/fonts/AlumniSansSC-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alumni Sans SC';
    src: url('/wp-content/themes/blank-wordpress-theme-master/css/fonts/AlumniSansSC-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Alumni Sans SC';
	font-weight: 400;
	font-size: 20px;
    background: linear-gradient(-45deg, 
        #ffeae4, 
        #faffe4, 
        #e4faff, 
        #ffe4ff);
    background-size: 400% 400%;
    animation: gradientFlow 16s ease infinite;
    margin: 0;
    min-height: 100vh;
}
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 75%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 25%;
    }
    100% {
        background-position: 0% 50%;
    }
}
div { position: relative; }

.container {
	width: 1200px;
	margin: auto;
}
.main-menu {
	text-align: center;
	margin-top: 20px;
}
.main-menu ul {
	margin: 0;
	padding: 0;
}
.main-menu li {
	list-style-type: none;
	display: inline-block;
}
.logo {
	text-align: center;
	display: inline-block;
	margin-top: 20px;
	transition: 0.3s;
}
.logo:hover {
	transform: scale(1.1);
}
.logo img {
	width: 200px;
	height: auto;
}
.logo-wrapper {
	text-align: center;
}
.main-menu a {
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	margin-right: 10px;
	margin-left: 10px;
	color: #000;
	letter-spacing: 1px;
	transition: 0.3s;
}
.main-menu a:hover {
	box-shadow: 0px 0px 20px 20px rgb(232, 73, 29, 100);
	background-color: rgb(232, 73, 29);
}
 .marketing-container {
            display: flex;
            width: 100%;
            max-width: 1200px;
            min-height: 500px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
        }
.content-block {
	flex: 1;
	padding: 0 60px 60px 60px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	max-width: 500px;
}
.geometric-figures {
	flex: 1;
	position: relative;
	min-height: 500px;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
	perspective: 1000px;
	padding-left: 40px;
	padding-right: 40px;
}
h1 {
	font-weight: 700;
	font-size: 42px;
	margin-top: 40px;
}

        .services-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
.services-list li {
	padding: 0;
	font-size: 1.2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(245,245,245,0.9);
	border-radius: 10px;
	transition: all 0.3s ease;
	width: 90%;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.services-list a {
	display: block;
	width: 100%;
	padding-left: 20px;
	padding-top: 15px;
	padding-bottom: 10px;
	padding-right: 20px;
	text-decoration: none;
}
.services-list li:hover {
	transform: translateX(10px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

        .services-list li span {
            font-weight: 500;
            color: #444;
        }

.services-list li em {
	color: #e8491d;
	font-style: normal;
	font-weight: 600;
	background: rgba(232,73,29,0.1);
	padding: 5px 12px;
	border-radius: 6px;
	font-size: 0.95rem;
	display: block;
	float: right;
}

        /* Стили для геометрических фигур */
        .shape {
            position: absolute;
            opacity: 0.9;
            transform-style: preserve-3d;
            filter: drop-shadow(0 2px 3px rgba(0,0,0,0.05));
        }

        .triangle {
            width: 0;
            height: 0;
            border-left: 90px solid transparent;
            border-right: 90px solid transparent;
            border-bottom: 160px solid rgba(232,73,29,0.05);
            border-bottom-width: 160px;
            top: 15%;
            right: 15%;
            animation: 
                float 18s ease-in-out infinite,
                rotate-3d 25s linear infinite;
        }

        .circle {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 1.5px solid rgba(232,73,29,0.25);
            bottom: 10%;
            right: 25%;
            animation: 
                float 20s ease-in-out infinite reverse,
                rotate-3d 35s linear infinite reverse;
        }

        .square {
            width: 120px;
            height: 120px;
            border: 1.5px solid rgba(232,73,29,0.25);
            top: 45%;
            right: 5%;
            animation: 
                float 15s ease-in-out infinite,
                rotate-3d 30s linear infinite;
        }

        .hexagon {
            width: 100px;
            height: 170px;
            top: 25%;
            right: 35%;
            animation: 
                float 22s ease-in-out infinite reverse,
                rotate-3d 40s linear infinite;
        }

        .hexagon:before, .hexagon:after {
            content: "";
            position: absolute;
            width: 0;
            border-left: 50px solid transparent;
            border-right: 50px solid transparent;
            border-bottom: 1.5px solid rgba(232,73,29,0.25);
            border-top: 1.5px solid rgba(232,73,29,0.25);
        }

        .hexagon:before {
            bottom: 100%;
            border-bottom-color: rgba(232,73,29,0.08);
        }

        .hexagon:after {
            top: 100%;
            border-top-color: rgba(232,73,29,0.08);
        }

        /* Анимации */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-40px);
            }
        }

        @keyframes rotate-3d {
            0% {
                transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
            }
            100% {
                transform: rotateX(360deg) rotateY(360deg) rotateZ(180deg);
            }
        }

        /* Фоновое вращение */
        .geometric-figures::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(232,73,29,0.03) 0%, transparent 70%);
            animation: rotate-container 80s linear infinite;
            transform-origin: center center;
        }

        @keyframes rotate-container {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        /* Адаптивность */
        @media (max-width: 992px) {
            .marketing-container {
                flex-direction: column;
                min-height: auto;
            }
            
            .content-block {
                padding: 40px 30px;
            }
            
            .geometric-figures {
                min-height: 300px;
            }
            
            h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {
            .content-block {
                padding: 30px 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .services-list li {
                font-size: 1rem;
                padding: 12px 20px;
            }
        }
.forminator-field {
	z-index: 1;
}
.text-form h2 {
	font-size: 42px;
	margin-top: 40px;
	margin-bottom: 40px;
}
.services-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            z-index: 1;
        }

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

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
        }

        .service-content {
            padding: 32px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1e293b;
        }
.service-description {
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 24px;
	flex-grow: 1;
	max-height: 90px;
}
        .service-price {
            font-size: 28px;
            font-weight: 700;
            color: #6366f1;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
        }

        .service-price::before {
            content: 'от';
            font-size: 16px;
            font-weight: 500;
            color: #94a3b8;
            margin-right: 8px;
        }

        .service-buttons {
            display: flex;
            gap: 12px;
        }

        .btn {
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
            flex: 1;
        }

        .btn-details {
            background: #e2e8f0;
            color: #475569;
            border: 1px solid #cbd5e1;
        }

        .btn-details:hover {
            background: #cbd5e1;
        }

        .btn-order {
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            color: white;
            box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
        }

        .btn-order:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(99, 102, 241, 0.3);
        }
.service-tag {
	position: absolute;
	top: 16px;
	right: 16px;
	background: #f1f5f9;
	color: #475569;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 28px;
	font-weight: 600;
}
        @media (max-width: 768px) {
            .services-container {
                grid-template-columns: 1fr;
            }
        }
.forminator-button.forminator-button-submit.btn-custom {
	background: #8b5cf6;
	color: #fff;
	font-weight: 700 !important;
	border-radius: 10px !important;
	padding-right: 30px !important;
	padding-left: 30px !important;
}
.services-home {
	text-align: center;
	font-size: 62px;
}
.portfolio-container {
	max-width: 1200px;
	margin: 0 auto 40px auto;
}

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

        .portfolio-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 20px;
        }

        .portfolio-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 10px 20px;
            background: #e2e8f0;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            color: #475569;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn:hover {
            background: #cbd5e1;
        }

        .tab-btn.active {
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            color: white;
            box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .portfolio-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .portfolio-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .portfolio-content {
            padding: 25px;
        }

        .portfolio-item-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1e293b;
        }

        .portfolio-item-description {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .portfolio-link {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .portfolio-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(99, 102, 241, 0.3);
        }

        .portfolio-category {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #6366f1;
        }

        @media (max-width: 768px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .portfolio-title {
                font-size: 2rem;
            }
        }
.site-footer {
        background: #1a1a1a;
        color: #ffffff;
        padding: 60px 0 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }

    .footer-logo-column {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .footer-logo img {
        max-width: 180px;
        height: auto;
    }

    .footer-social {
        display: flex;
        gap: 15px;
    }

    .social-link {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .social-link:hover {
        transform: translateY(-3px);
    }

    .social-link img {
        width: 32px;
        height: 32px;
    }

    .footer-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #ffffff;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background: #e8491d;
    }

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

    .footer-menu a {
        color: #bbbbbb;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-menu a:hover {
        color: #ffffff;
        padding-left: 5px;
    }

    .contact-item {
        margin-bottom: 15px;
    }

    .contact-link {
        color: #bbbbbb;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-link:hover {
        color: #ffffff;
    }

    .footer-bottom {
        background: #0d0d0d;
        padding: 20px 0;
        margin-top: 50px;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .privacy-link {
        color: #999999;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .privacy-link:hover {
        color: #ffffff;
    }

    .copyright {
        color: #777777;
        font-size: 0.9rem;
    }

    @media (min-width: 768px) {
        .footer-bottom-container {
            flex-direction: row;
            justify-content: space-between;
        }
    }
.about-page {
        color: #1e293b;
        line-height: 1.6;
    }

    .about-hero {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        color: white;
        padding: 80px 0;
        text-align: center;
    }

    .about-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .about-subtitle {
        font-size: 1.5rem;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto;
    }

    .about-stats {
        background: #f8fafc;
        padding: 60px 0;
        margin-top: -30px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        background: white;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: #6366f1;
        line-height: 1;
        margin-bottom: 10px;
    }

    .stat-text {
        font-size: 1.1rem;
        color: #64748b;
    }

    .about-content {
        padding: 80px 0;
    }

    .about-block {
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .about-block h2 {
        font-size: 2rem;
        color: #1e293b;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }

    .about-block h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: #6366f1;
    }

    .features-list {
        list-style: none;
        margin-top: 40px;
    }

    .features-list li {
        margin-bottom: 40px;
        padding-left: 30px;
        border-left: 3px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .features-list li:hover {
        border-left-color: #6366f1;
    }

    .features-list h3 {
        font-size: 1.4rem;
        color: #1e293b;
        margin-bottom: 15px;
    }

    .about-team {
        background: #f1f5f9;
        padding: 80px 0;
        text-align: center;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .team-member {
        background: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

    .team-member:hover {
        transform: translateY(-10px);
    }

    .member-photo {
        width: 120px;
        height: 120px;
        background: #e2e8f0;
        border-radius: 50%;
        margin: 0 auto 20px;
    }

    @media (max-width: 768px) {
        .about-title {
            font-size: 2.5rem;
        }
        
        .about-subtitle {
            font-size: 1.2rem;
        }
    }