/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --section-bg: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: rgb(255, 255, 255);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}
.header .container {
    height: 64px;
    max-width: none;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background-image: url('images/logo-sm.jpg');
    background-size: cover;
    width: 75px;
    height: 40px;
}

.logo-bg {
    opacity: 0;
}

.nav-list, .nav-mob {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-mob {
    display: none;
}

.nav-list a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: color 0.3s;
}

.separator {
    color: #EEF1F5;
    pointer-events: none;   /* чтобы разделитель не мешал кликам */
    font-size: 1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.cta-button-nav-gray {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: 0;
    color: #262626;
    background-color: #EEF1F5;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-button-nav-gray:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.cta-button-nav-dark {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: 0;
    background-color: #262626;
    color: #FFFFFF;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    transition: background-color 0.3s;
    font-style: normal;
    text-align: center;
}
.cta-button-nav-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.close-button {
    display: none;
    background-image: url('images/close.svg');
}

.hamburger span {
    width: 25px;
    height: 3px;
    border-radius: 2px;
    transition: var(--transition);
    background-color: #000;
}

/* Hero Section */
.hero {
    font-family: 'Inter Tight', serif;
    padding: 10rem 0 6rem;
    text-align: left;
    color: white;
    margin-top: 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 18px;
    max-width: 800px;
    font-weight: 300;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    line-height: 26px;
}

.hero .hero-content {
    position: absolute;
    bottom: 10vh;
    left: 10vh;
}

.vk {
    height: 40px;
}

.whatsapp {
    height: 40px;
}

.cta-button {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    background-color: #F7F7F7;
    color: #262626;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    text-align: center;
}

.partners-title {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner {
    font-weight: 500;
    font-size: 1.125rem;
    opacity: 0.8;
    transition: opacity 0.3s;
    background-repeat: no-repeat;
}

.partner:hover {
    opacity: 1;
}

/* About Section */
.about {
    padding: 6rem 0;
    text-align: center;
}

.section-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 48px;
    line-height: 56px;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.section-title span {
    font-weight: 700;
}

.about-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 48px;
    line-height: 56px;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    color: var(--light-text);
}

.about-description video {
    width: 170px;
    height: 56px;
    vertical-align: middle;
    border-radius: 100% / 300%;
    object-fit: cover;
}

/* Work Section */
.work {
    padding: 6rem 0;
}

.work-section {
    margin-bottom: 4rem;
}

.work-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 48px;
    line-height: 56px;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.work-title span {
    font-weight: 700;
}

.work-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #686868;
    margin-bottom: 2rem;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.campaign {
    transition: transform 0.3s;
}

.campaign video:hover {
    transform: translateY(-5px);
}

.campaign video {
    border-radius: 6px;
    width: 100%;
}
.campaign-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.campaign-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.campaign-description {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 100%;
    margin-bottom: 1rem;
    color: #686868;
}

.campaign-date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 100%;
    color: #686868;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.episode {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.episode:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.episode-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #262626;
    padding-top: 20px;
    margin-bottom: 0.5rem;
}

.episode-featuring {
    font-family: 'Inter', sans-serif;
    color: #686868;
    font-size: 12px;
    font-weight: 400;
}

/* Advantage Section */
.section-subtitle {
    font-family: 'Inter', sans-serif;
    color: #686868;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    margin-bottom: 3rem;
}

.advantage-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.advantage-item h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    padding-left: 10px;
}

.advantage-item p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    padding-left: 10px;
}

/* Photorealistic Section */
.photorealistic .section-subtitle {
    margin-bottom: 0;
}

.photorealistic h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.photorealistic p {
    color: #686868;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.photorealistic-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    padding-bottom: 50px;
}

.photorealistic img {
    width: 100%;
    border-radius: 6px;
}

.photorealistic img:hover {
    transform: translateY(-5px);
}

/* Integration Section */
.integration {
    padding-top: 10rem;
}

.integration .section-subtitle {
    margin-bottom: 0;
}

.integration h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.integration p {
    color: #686868;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.integration-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    padding-bottom: 50px;
}

.integration img {
    width: 100%;
    border-radius: 6px;
}

.integration img:hover {
    transform: translateY(-5px);
}

/* Consistency Section */
.consistency {
    padding-top: 10rem;
}

.consistency .section-subtitle {
    margin-bottom: 0;
}

.consistency h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.consistency p {
    color: #686868;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.consistency-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    padding-bottom: 50px;
}

.consistency img {
    width: 100%;
    border-radius: 6px;
}

.consistency img:hover {
    transform: translateY(-5px);
}

/* LipSync Section */
.lipsync {
    padding-top: 10rem;
}

.lipsync .section-subtitle {
    margin-bottom: 0;
}

.lipsync h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.lipsync p {
    color: #686868;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.lipsync-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    padding-bottom: 50px;
}

.lipsync img {
    width: 100%;
    border-radius: 6px;
}

.lipsync img:hover {
    transform: translateY(-5px);
}

/* Detailing Section */
.detailing {
    padding-top: 10rem;
}

.detailing .section-subtitle {
    margin-bottom: 0;
}

.detailing h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.detailing p {
    color: #686868;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.detailing-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    padding-bottom: 50px;
}

.detailing img {
    width: 100%;
    border-radius: 6px;
}

.detailing img:hover {
    transform: translateY(-5px);
}

/* Creativity Section */
.creativity {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.creativity .section-subtitle {
    margin-bottom: 0;
}

.creativity h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.creativity p {
    color: #686868;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.creativity-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    padding-bottom: 50px;
}

.creativity img {
    width: 100%;
    border-radius: 6px;
}

.creativity img:hover {
    transform: translateY(-5px);
}


.styles {
    padding: 6rem 0;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.style-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.style-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.style-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.style-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.style-item p {
    color: var(--light-text);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    margin: 40px 16px 16px;
    border-radius: 12px;
    padding: 1rem 0;
    background-color: #111827;
    color: white;
}

.footer-content {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-copyright {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .logo-bg {
        opacity: 1;
        padding: 50px;
        background-image: url('images/logo-big.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        width: 240px;
        height: 167px;
    }

    .nav-list {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list-desktop {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-list-desktop.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

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

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

    .advantage-item {
        display: flex;
        justify-content: left;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .contact-header {
        text-align: left !important;
        padding-left: 30px;
    }
}

@media (max-width: 480px) {
    .nav-mob {
        display: flex;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description,
    .about-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .advantages-grid,
    .styles-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-animated {
        height: 560px !important;
        min-height: 560px !important;
    }

    .hero .hero-content {
        bottom: 5vh;
        left: 5vh;
    }

    .cta-button {
        width: 90% !important;
    }

    .about-description video {
        display: none;
    }

    .about-description {
        font-size: 32px;
        line-height: 40px;
    }

    .nav-list {
        align-items: end;
    }

    .nav-list a {
        font-family: 'Inter Tight', sans-serif;
        font-size: 32px;
        line-height: 40px;
        font-weight: 300;
        color: #1C1C1C;
    }

    .nav-list a.tg {
        color: #4F9FD8;
    }

    .nav-list a.whatsapp {
        color: #64CD59;
    }

    .nav-list a:hover {
        transform: none;
        box-shadow: none;
        transition: none;
        text-decoration: underline;
    }
}

.hero-with-video {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    padding-right: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4a6cf7;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.hero-animated {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-video-grid {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.video-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.layer-1 video {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.layer-2 {
    mix-blend-mode: screen;
    opacity: 0.3;
}

.layer-2 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Текст с градиентом */
.gradient-text {
    background: linear-gradient(90deg, #667eea, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-title-sub {
    font-size: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Действия */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-cta.primary {
    background: linear-gradient(90deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-preview {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-preview:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.video-preview img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.preview-play {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-play i {
    color: #4a6cf7;
    font-size: 10px;
    margin-left: 2px;
}

.preview-label {
    font-size: 0.9rem;
    margin-left: 40px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swiper-container {
    max-width: 320px;
    cursor: pointer;
    text-align: left;
}

.swiper-container video:hover {
    transform: translateY(-5px);
}

.swiper-container video {
    border-radius: 6px;
}

.swiper-pagination {
    bottom: -5px !important;
}

.swiper-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper video {
    height: 568px;
}

.contact {
    margin: 16px;
    border-radius: 12px;
    padding: 70px 0;
    background-color: #F3F3F3;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Заголовок и описание */
.contact-header {
    padding-right: 40px;
}

.contact .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0;
}

/* Форма */
.contact-form {
    padding: 40px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form input {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #9CA3AF;
    background-color: #F3F3F3;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #666E7A66;
    outline: none;
}

.contact .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #262626;
}

.contact-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 300;
    color: #262626;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #262626;
}

.required-star {
    color: #262626;
    font-size: 1.1rem;
    line-height: 1;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    color: #1e293b;
    border-radius: 12px;
    transition: all 0.2s ease;
    outline: none;
}

.form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
    font-weight: 300;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    background-color: #F3F3F3;
}

/* Кнопка отправки */
.submit-btn {
    font-family: 'Inter', sans-serif;
    width: 150px;
    border-radius: 8px;
    background-color: #262626;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    letter-spacing: 0;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.footer-item {
    display: inline-block;
    margin-right: 8px;        /* отступ справа для разделителя */
    color: #555;              /* цвет текста */
}

.footer-item::after {
    content: "/";             /* символ разделителя */
    margin-left: 8px;         /* отступ слева от разделителя */
    color: #999;              /* цвет разделителя (можно задать отдельно) */
    font-weight: normal;      /* при необходимости */
}

/* Убираем разделитель у последнего элемента */
.footer-item:last-child::after {
    content: none;            /* или display: none; */
}

/* Дополнительно: можно убрать правый отступ у последнего */
.footer-item:last-child {
    margin-right: 0;
}
/* Адаптивность */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-header {
        padding-right: 0;
        text-align: center;
    }

    .contact .section-title {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 1rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-form {
        padding: 30px;
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 70px 0;
    }

    .contact .section-title {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-control {
        padding: 12px 16px;
    }

    .submit-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}