:root {
    --bg-black: #000000;
    --bg-dark: #111111;
    --text-white: #ffffff;
    --text-gray: #888888;
    --accent: #ffffff;
    --border-color: #333333;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --accent-red: #ff0000;
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);

    min-height: 100vh;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.header {
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #111;
}

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

.logo img {
    height: 40px;
}

.nav-social-container {
    margin-left: auto;
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.btn-partners {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-partners:hover {
    opacity: 1;
    text-decoration: underline;
}

.lang-selector {
    cursor: pointer;
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.lang-selector span {
    transition: color 0.3s ease;
}

.lang-selector span:hover {
    color: #fff;

}

.lang-selector .active {
    color: #ff0000;

}

.lang-selector .inactive {
    color: #666;

}

.text-divider {
    color: #666;
    margin: 0 5px;
}

.split-container {
    display: flex;

    width: 100%;
    position: relative;
}

.split-content {
    flex: 0 0 50%;
    width: 50%;

    background-color: var(--bg-black);
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 180px 12vw 100px 12vw;

    position: relative;
}

.content-wrapper {
    max-width: 600px;
    margin: 0;


    width: 100%;
}

.hero-text {
    margin-bottom: 40px;
}

.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    line-height: 0.9;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    color: var(--text-white);
}

.network-highlight {
    color: var(--accent-red);
    font-style: italic;
}

.benefits-list {
    list-style: none;
    margin-bottom: 0;
    border-left: 2px solid #fff;
    padding-left: 20px;
}

.benefits-list.italic li {
    font-style: italic;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #888;

    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;

    font-weight: 600;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list li .icon {
    display: block;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    border: none;
}

.form-section {
    border-top: 1px solid #222;
    padding-top: 30px;
}

.form-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-white);
}

.form-header p {
    color: var(--text-gray);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

#form-fields-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0px;

    position: relative;
    width: 100%;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.required-star {
    color: #ff0000;
}

.required-help-text {
    color: var(--text-gray);
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 20px;
    width: 100%;
    grid-column: span 2;

}

.form-control {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #333;
    color: #888;

    padding: 12px 15px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #fff;
    background: #000;
    color: #fff;

}

.error-msg {
    color: #ff4444;
    font-size: 0.7rem;
    position: absolute;
    bottom: -18px;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-container {
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #111;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--accent-red);
}

.success-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.success-body {
    color: #888;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-control.error+.error-msg,
.phone-input-group.error+.error-msg {
    opacity: 1;
}

.phone-input-group {
    display: flex;
    gap: 0;

    background: #0a0a0a;
    border: 1px solid #333;

    padding: 0;
    align-items: center;
    transition: all 0.3s ease;
}

.phone-input-group:focus-within {
    border-color: #fff;
    background: #000;
}

.phone-prefix {
    width: auto;
    min-width: 80px;

    background: transparent;
    color: #888;

    border: none;

    cursor: pointer;
    font-size: 0.8rem;

    padding: 12px 25px 12px 10px;

    font-family: 'Inter', sans-serif;
    outline: none;
    appearance: none;

    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 16px;
}

.phone-prefix option {
    background-color: #0a0a0a;
    color: #888;

    font-size: 0.8rem;
}

.phone-number {
    flex: 1;
    background: transparent;
    border: none;

    color: #888;

    padding: 12px 15px 12px 5px;

    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #FF0000;
    color: #fff;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.loader-text {
    color: #666;
    font-size: 0.9rem;
}

.mt-20-center {
    margin-top: 20px;
    text-align: center;
}

.split-visual {
    width: 50%;

    background-image: url('../assets/images/contact-hero.webp');

    background-size: cover;
    background-position: center center;

    position: relative;

    filter: grayscale(100%);
    min-height: 100vh;

}

