/* Base styles */
:root {
    --dark-bg: #120E2F;
    --darker-accent: #0A091B;
    --accent-red: #FF425E;
    --accent-yellow: #FFFE06;
    --text-color: #ffffff;
    --card-bg: #1A1744;
    --grey-text: #94a3b8;
    --accent-gradient: linear-gradient(135deg, var(--accent-red), var(--accent-yellow));
    --shadow-red: 0 0 15px rgba(255, 66, 94, 0.5);
    --shadow-yellow: 0 0 15px rgba(255, 254, 6, 0.5);
    --shadow-card: 0 10px 20px rgba(0, 0, 0, 0.2);
    --animation-duration: 1.5s;
}

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

@font-face {
    font-family: 'Gilroy';
    src: url('Apuesta360 Identity/fonts/Gilroy-Regular.woff2') format('woff2'),
         url('Apuesta360 Identity/fonts/Gilroy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('Apuesta360 Identity/fonts/Gilroy-Bold.woff2') format('woff2'),
         url('Apuesta360 Identity/fonts/Gilroy-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('Apuesta360 Identity/fonts/Gilroy-Extrabold.woff2') format('woff2'),
         url('Apuesta360 Identity/fonts/Gilroy-Extrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('Apuesta360 Identity/fonts/Gilroy-Medium.woff2') format('woff2'),
         url('Apuesta360 Identity/fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

body {
    font-family: 'Gilroy', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 66, 94, 0.03) 0%, rgba(18, 14, 47, 0) 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 254, 6, 0.03) 0%, rgba(18, 14, 47, 0) 50%);
}

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

h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--shadow-red);
    animation: glow var(--animation-duration) ease-in-out infinite alternate;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 10px;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-red);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--accent-yellow);
    text-shadow: var(--shadow-yellow);
}

section {
    padding: 3rem 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h1v1H0V0zm19 0h1v1h-1V0zM0 19h1v1H0v-1zm19 0h1v1h-1v-1z' fill='%2339ff14' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}

/* Header */
header {
    background-color: var(--darker-accent);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 0 10px rgba(57, 255, 20, 0.1);
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 30px;
}

.language-switcher {
    display: flex;
    gap: 0.3rem;
}

.lang-btn {
    background: none;
    border: 1px solid var(--grey-text);
    color: var(--grey-text);
    padding: 0.15rem 0.3rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    box-shadow: 0 0 10px rgba(255, 66, 94, 0.2);
}

.lang-btn.active {
    background-color: var(--accent-red);
    color: var(--dark-bg);
    border-color: var(--accent-red);
    font-weight: 600;
    box-shadow: var(--shadow-red);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 66, 94, 0.1) 0%, rgba(18, 14, 47, 0) 70%);
    overflow: hidden;
    position: relative;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 66, 94, 0.02);
    z-index: -1;
    filter: blur(40px);
}

.hero::before {
    top: -100px;
    left: -100px;
}

.hero::after {
    bottom: -100px;
    right: -100px;
    background: rgba(255, 254, 6, 0.02);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--grey-text);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container {
    margin: 2rem 0;
}

.cta-button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    background: var(--accent-gradient);
    color: var(--dark-bg);
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 66, 94, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 900;
    animation: pulse-shadow 2s infinite;
    min-height: 60px;
    line-height: 1.2 !important;
    vertical-align: middle !important;
    margin: 0 auto;
}

/* Для всех тегов внутри кнопок */
.cta-button > * {
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    line-height: 1.2;
    text-align: center;
}

/* Стиль для основной кнопки в hero секции */
.hero .cta-button {
    font-size: 1.4rem;
    text-transform: uppercase;
    padding: 1.2rem 2.5rem;
    letter-spacing: 0.08em;
    font-weight: 900;
    min-height: 70px;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 66, 94, 0.6);
}

.cta-button:hover::before {
    left: 100%;
}

.hero-image {
    margin-top: 2rem;
    max-width: 100%;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(255, 66, 94, 0.3) 0%, rgba(18, 14, 47, 0) 70%);
    filter: blur(10px);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-image video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.enhanced-image {
    animation: float 6s ease-in-out infinite;
}

/* Earnings Section */
.earnings {
    background-color: var(--darker-accent);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.earnings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.earnings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.earnings-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255, 66, 94, 0.1);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.earnings-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 66, 94, 0.1), transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.earnings-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 66, 94, 0.2);
}

.earnings-card:hover::before {
    opacity: 1;
}

.earnings-card i {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 66, 94, 0.5));
    transition: transform 0.3s ease;
}

.earnings-card:hover i {
    transform: scale(1.1);
}

.earnings-card h3 {
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.earnings-card p {
    color: var(--grey-text);
}

/* Process Section */
.process {
    padding: 4rem 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: radial-gradient(circle at center, rgba(255, 66, 94, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-red);
    position: relative;
    z-index: 1;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--accent-gradient);
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

.benefits {
    background-color: var(--darker-accent);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.benefits h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.benefits li:hover {
    transform: translateX(5px);
    background-color: rgba(255, 66, 94, 0.05);
}

.benefits i {
    color: var(--accent-red);
    margin-right: 1rem;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 66, 94, 0.5));
    flex-shrink: 0;
    margin-top: 0.2rem;
}

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

.benefit-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255, 66, 94, 0.1);
    box-shadow: var(--shadow-card);
    height: 180px; /* Fixed smaller height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 66, 94, 0.2);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 5px rgba(255, 66, 94, 0.5));
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-align: center;
}

.benefit-card p {
    color: var(--grey-text);
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

/* Growth Section */
.growth {
    background-color: var(--darker-accent);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.growth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.growth-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.level {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 66, 94, 0.1);
    overflow: hidden;
}

.level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 66, 94, 0.1), transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.level:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 66, 94, 0.2);
}

.level:hover::before {
    opacity: 1;
}

.level-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-red);
    position: relative;
}

.level-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--accent-gradient);
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

.level-icon i {
    font-size: 2rem;
    color: var(--dark-bg);
}

.level-connector {
    position: relative;
    margin: 30px auto;
    height: 40px;
    width: 40px;
}

.level-connector:before {
    content: '';
    width: 2px;
    height: 30px;
    background-color: var(--accent-red);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    box-shadow: 0 0 5px rgba(255, 66, 94, 0.6);
}

.level-connector:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid var(--accent-red);
    filter: drop-shadow(0 0 5px rgba(255, 66, 94, 0.6));
}

@keyframes pulse-arrow {
    0% {
        box-shadow: 0 0 8px rgba(255, 66, 94, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 66, 94, 0.8);
    }
    100% {
        box-shadow: 0 0 8px rgba(255, 66, 94, 0.5);
    }
}

@keyframes pulse-arrow-head {
    0% {
        box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 3px 3px 10px rgba(255, 66, 94, 0.5);
    }
    100% {
        box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    }
}

.bonus-info {
    margin-top: 3rem;
    background-color: rgba(255, 254, 6, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 0 20px rgba(255, 254, 6, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 254, 6, 0.2);
}

.bonus-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 254, 6, 0.1), transparent);
    animation: shine 3s infinite;
}

.bonus-info i {
    color: var(--accent-yellow);
    font-size: 2rem;
    filter: drop-shadow(0 0 5px rgba(255, 254, 6, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

/* Contact Form */
.contact {
    padding: 4rem 0;
    text-align: center;
}

form {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 66, 94, 0.1);
    position: relative;
    overflow: hidden;
}

form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-gradient);
}

.form-group {
    margin-bottom: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    width: auto;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
}

.checkbox-group a {
    color: var(--accent-red);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-group a:hover {
    color: var(--accent-yellow);
    text-shadow: 0 0 5px rgba(255, 254, 6, 0.5);
}

.checkbox-group label::after {
    content: " *";
    color: #ff3e3e;
    font-weight: bold;
}

.checkbox-group input[type="checkbox"]:focus {
    outline: 2px solid var(--accent-red);
    outline-offset: 2px;
}

.checkbox-group input[type="checkbox"]:invalid {
    outline: 2px solid #ff3e3e;
    outline-offset: 2px;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

input, select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    background-color: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-family: 'Gilroy', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 2px rgba(255, 66, 94, 0.2);
}

.form-group:focus-within label {
    color: var(--accent-red);
}

form .cta-button {
    display: flex !important;
    width: 100%;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.5s ease;
    background-size: 200% auto;
    background-position: 0% 0%;
    font-size: 1.3rem;
    padding: 1.2rem;
    letter-spacing: 0.08em;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

form .cta-button:hover {
    background-position: 100% 0%;
}

form .cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

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

.fa-spinner {
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 5px;
}

.validation-message {
    margin-top: 5px;
    font-size: 0.8rem;
    color: #ff3e3e;
    background-color: rgba(255, 62, 62, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    border-left: 3px solid #ff3e3e;
}

.form-note {
    margin-top: 1.5rem;
    color: var(--grey-text);
    font-size: 0.9rem;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.error-message {
    color: #ff3e3e;
    background-color: rgba(255, 62, 62, 0.1);
    border: 1px solid rgba(255, 62, 62, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: rgba(10, 15, 30, 0.8);
    padding: 30px 0;
    border-top: 1px solid rgba(var(--accent-red-rgb), 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 0 25px 0;
    order: -1;
}

.social-icons img {
    width: 45px;
    height: 45px;
    vertical-align: middle;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.age-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
    position: relative;
    top: -3px;
}

.gcb-logo {
    height: 40px;
    width: auto;
    max-width: 140px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo a:hover .gcb-logo {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(0, 104, 56, 0.7));
}

.footer-info {
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 0;
    text-align: left;
}

.footer-info p:first-child {
    margin-bottom: 15px;
}

.footer-info p:last-child {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-info {
        font-size: 0.7rem;
    }
}

/* Animations */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(255, 66, 94, 0.5);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 66, 94, 0.8), 0 0 20px rgba(255, 66, 94, 0.3);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

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

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

/* Shake animation for validation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

/* Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .earnings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .process-steps {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    
    /* Выравнивание графических элементов второго экрана */
    .step {
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 240px;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-top: 0;
    }
    
    .step h3 {
        margin-top: 1rem;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .step p {
        flex-grow: 1;
        display: flex;
        align-items: center;
    }
    
    .growth-path {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .level-connector {
        margin: 0;
        margin-top: 35px;
        width: 100px;
        height: 30px;
    }
    
    .level-connector:before {
        width: 80px;
        height: 2px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
    
    .level-connector:after {
        top: 50%;
        left: auto;
        right: 5px;
        bottom: auto;
        transform: translateY(-50%);
        border-left: 12px solid var(--accent-red);
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 0;
    }
}

@media (min-width: 1024px) {
    .earnings-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 2rem;
    }
    
    .benefits-grid .benefit-card:nth-child(1) {
        grid-column: 1;
    }
    
    .benefits-grid .benefit-card:nth-child(2) {
        grid-column: 2;
    }
    
    .benefits-grid .benefit-card:nth-child(3) {
        grid-column: 3;
    }
    
    .benefits-grid .benefit-card:nth-child(4) {
        grid-column: 1 / span 2;
    }
    
    .benefits-grid .benefit-card:nth-child(5) {
        grid-column: 3;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .hero-image {
        margin-top: 0;
        grid-column: 2;
        grid-row: 1 / span 4;
    }
    
    .hero-image video {
        max-width: 90%;
        max-height: 75vh;
        margin: 0 auto;
        display: block;
    }
    
    .hero .subtitle {
        margin-left: 0;
        margin-bottom: 0.3rem;
        margin-top: 0.3rem;
        grid-row: 2;
        grid-column: 1;
    }
    
    .hero h1 {
        margin-bottom: 0.3rem;
        margin-top: 0;
        grid-row: 1;
        grid-column: 1;
    }
    
    .hero .cta-container {
        margin: 0.5rem 0;
        grid-row: 3;
        grid-column: 1;
    }
    
    .hero .cta-button {
        padding: 1.3rem 2.5rem;
        font-size: 1.4rem;
        letter-spacing: 0.08em;
    }
    
    .hero .bonus-highlight {
        display: none;
        grid-row: 4;
        grid-column: 1;
    }
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    max-width: 90%;
    width: 450px;
    box-shadow: 0 0 30px rgba(255, 66, 94, 0.3);
    text-align: center;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1), opacity 0.3s ease;
    border: 1px solid rgba(255, 66, 94, 0.2);
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
}

.modal-icon {
    font-size: 4rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounceIn 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) both;
    filter: drop-shadow(0 0 10px rgba(255, 66, 94, 0.5));
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-message {
    color: var(--grey-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.modal-close {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0.75rem 2rem;
    background: var(--accent-gradient);
    color: var(--dark-bg);
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 66, 94, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    min-height: 50px;
    line-height: 1.2 !important;
}

.modal-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 66, 94, 0.5);
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.social-icons a {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* Новые стили для обновленного лендинга */

/* Основные стили */
.bonus-highlight {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    text-align: center;
    margin: 1rem 0;
    font-weight: bold;
    animation: pulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 254, 6, 0.7);
}

.center-btn {
    display: flex;
    justify-content: center;
    margin: 2rem auto;
}

.center-btn .cta-button {
    font-size: 1.3rem;
    padding: 1rem 2.5rem;
    letter-spacing: 0.08em;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 60px;
    margin: 0;
}

/* Participants section */
.participants {
    padding: 4rem 0;
    background-color: var(--dark-bg);
    position: relative;
}

.participants-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.participant-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 66, 94, 0.1);
    box-shadow: var(--shadow-card);
}

.participant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 66, 94, 0.2);
}

.participant-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-red);
}

.participant-icon i {
    font-size: 2rem;
    color: var(--dark-bg);
}

.participant-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.participant-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.participant-card li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.participant-card i {
    color: var(--accent-red);
    margin-right: 1rem;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 66, 94, 0.5));
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.participant-highlight {
    font-weight: bold;
    text-align: center;
    font-size: 1.1rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 66, 94, 0.1), transparent 80%);
}

/* Bonus section */
.checklist-bonus {
    background-color: rgba(255, 254, 6, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 254, 6, 0.2);
    box-shadow: 0 0 15px rgba(255, 254, 6, 0.1);
}

.checklist-bonus h3 {
    color: var(--accent-yellow);
    margin-bottom: 0.8rem;
}

/* Partners section */
.partners {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.pitch-container {
    margin-bottom: 2rem;
}

.pitch-speech {
    text-align: center;
    margin-bottom: 1rem;
}

.speech-bubble {
    background-color: rgba(255, 66, 94, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    margin: 2rem auto;
    max-width: 80%;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
    border: 1px solid rgba(255, 66, 94, 0.2);
}

.speech-bubble:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border-width: 15px;
    border-style: solid;
    border-color: rgba(255, 66, 94, 0.1) transparent transparent transparent;
}

.benefits-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.benefits-column {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 66, 94, 0.1);
    box-shadow: var(--shadow-card);
}

.benefits-column h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.benefits-column h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 10px;
}

.benefits-column ul {
    list-style: none;
}

.benefits-column li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.benefits-column i {
    color: var(--accent-red);
    margin-right: 1rem;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 66, 94, 0.5));
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Getting started section */
.getting-started {
    background-color: var(--darker-accent);
    padding: 4rem 0;
    position: relative;
    padding-bottom: 2rem;
}

.steps-container {
    margin-top: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.step-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 66, 94, 0.1);
    box-shadow: var(--shadow-card);
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card i {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin: 1rem 0;
    filter: drop-shadow(0 0 5px rgba(255, 66, 94, 0.5));
}

.step-card h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Contact form */
.radio-group {
    margin-bottom: 1.5rem;
}

.radio-container {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.radio-container:hover {
    background-color: rgba(255, 66, 94, 0.1);
}

.radio-container input[type="radio"] {
    margin-right: 10px;
    width: auto;
    flex-shrink: 0;
    cursor: pointer;
}

/* Базовый стиль для всех текстовых меток */
.radio-label {
    font-weight: 500;
    transition: color 0.3s ease;
    color: white; /* Изначально все белые */
}

/* Стиль для выбранного радио - становится красным */
.radio-container input[type="radio"]:checked + .radio-label {
    color: var(--accent-red);
    font-weight: 600;
}

/* Убираем нестандартный стиль, если он есть */
.radio-container input[type="radio"] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
    opacity: 1;
}

.agent-count {
    text-align: center;
    margin-top: 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--accent-yellow);
}

/* Media Queries */
@media (min-width: 768px) {
    .participants-grid, 
    .benefits-grid, 
    .benefits-columns,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid,
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Responsiveness Improvements */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding: 0;
    }
    
    /* Улучшенные стили для центрирования шагов в мобильной версии */
    .process-steps {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin: 0 auto;
    }
    
    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 280px;
        margin: 0 auto 1rem auto;
        background-color: rgba(25, 23, 68, 0.3);
        border-radius: 12px;
        padding: 1.5rem 1rem;
        border: 1px solid rgba(255, 66, 94, 0.1);
    }
    
    .process .step-number {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        aspect-ratio: 1/1;
        margin: 0 auto 1rem auto;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.3rem;
    }
    
    .step h3 {
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }
    
    .step p {
        margin-bottom: 0;
        font-size: 0.9rem;
    }
    
    /* Стили для процессуальной визуализации (index-en.html) */
    .process-visualization {
        margin: 0 auto;
        text-align: center;
        max-width: 300px;
        margin-top: 1.5rem;
    }
    
    .process-steps-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }
    
    /* Адаптивные стили для кнопки на мобильных */
    .hero .cta-button {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        min-height: 55px;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Адаптивные стили для кнопок секций на мобильных */
    .center-btn .cta-button, 
    form .cta-button {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        min-height: 55px;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Стиль для видео в мобильной версии */
    .hero-image video {
        max-height: 50vh;
        margin: 0 auto;
        display: block;
    }
    
    /* Better mobile steps layout */
    .step-card {
        padding: 1rem;
        margin-bottom: 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    
    .step-card h3 {
        font-size: 1.2rem;
        margin: 0.5rem 0;
    }
    
    .step-number {
        margin-right: 1rem;
        min-width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .steps-grid {
        display: flex;
        flex-direction: column;
    }
    
    /* Adjust cards in mobile */
    .earnings-card, .benefit-card, .participant-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
        height: auto;
        min-height: 160px;
    }
    
    /* Foreign Object text for step 4 */
    foreignObject div {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }
    
    /* Additional fixes for section spacing */
    section {
        padding: 2.5rem 0;
    }
    
    section:not(:first-child) {
        padding-top: 2rem;
    }
    
    /* Center SVG and adjust size */
    .steps-visual {
        margin: 0.5rem auto 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .steps-svg {
        width: 100%;
        max-width: 300px;
        display: block;
        margin: 0 auto;
    }
    
    /* Improve form layout */
    .form-group input,
    .form-group select {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    /* Improve footer readability */
    .footer-info p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Добавляем отступ снизу для кнопки на мобильных устройствах */
    .getting-started .cta-container {
        margin-bottom: 60px;
    }
}

/* Special fixes for extra small screens */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
    
    .hero-image video {
        max-width: 100%;
        height: auto;
    }
    
    /* Адаптивный размер для кнопки на самых маленьких экранах */
    .hero .cta-button {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
        letter-spacing: 0.05em;
        min-height: 50px;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Адаптивный размер для кнопок секций на самых маленьких экранах */
    .center-btn .cta-button, 
    form .cta-button,
    .modal-close {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
        letter-spacing: 0.05em;
        min-height: 45px;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Make sure step numbers are perfectly circular in smallest screens */
    .process .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    /* Smaller text in cards */
    .benefit-card h3, .earnings-card h3, .participant-card h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    /* Tighten vertical spacing */
    section {
        padding: 2rem 0;
    }
    
    .cta-container {
        margin: 1.5rem 0;
    }
    
    /* Enhance SVG display */
    .steps-svg {
        width: 100%; 
        max-width: 280px;
        margin: 0 auto;
    }
    
    .getting-started {
        padding-bottom: 0;
    }
    
    /* Добавляем отступ снизу для кнопки на мобильных устройствах */
    .getting-started .cta-container {
        margin-bottom: 80px;
    }
}

/* Добавляем отступ снизу для кнопки на 8-м экране (getting-started) на мобильных устройствах */
@media screen and (max-width: 768px) {
    section.getting-started {
        padding-bottom: 1.5rem !important;
    }
    
    section.getting-started .cta-container.center-btn {
        margin-bottom: 20px !important;
    }
}

@media screen and (max-width: 480px) {
    section.getting-started {
        padding-bottom: 2rem !important;
    }
    
    section.getting-started .cta-container.center-btn {
        margin-bottom: 30px !important;
    }
}

/* Стиль для дополнительного отступа на мобильных устройствах */
.mobile-spacer {
    display: none; /* По умолчанию скрыт */
}

/* Показываем и задаем размер на мобильных устройствах */
@media screen and (max-width: 768px) {
    .mobile-spacer {
        display: block;
        height: 20px; /* Минимальный отступ для планшетов */
    }
}

@media screen and (max-width: 480px) {
    .mobile-spacer {
        height: 30px; /* Минимальный отступ для смартфонов */
    }
}

/* Styles for SVG steps visualization */
.steps-visual {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    width: 100%;
}

.steps-svg {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Эффект пульсации для кнопок */
@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 15px rgba(255, 66, 94, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 66, 94, 0.6);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 66, 94, 0.4);
    }
}

/* About Us Section */
.about-us {
    background-color: var(--darker-accent);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.about-us-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 66, 94, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 66, 94, 0.2);
}

.about-us-card h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.about-us-card i {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 66, 94, 0.5));
}

.about-us-card p {
    color: var(--grey-text);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.about-us-highlight {
    font-weight: 600;
    color: #ffffff;
}

.about-us-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.feature-badge {
    background: linear-gradient(135deg, rgba(255, 66, 94, 0.2), rgba(255, 66, 94, 0.05));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 66, 94, 0.3);
}

.feature-badge i {
    font-size: 1rem;
    margin: 0;
}

@media (min-width: 768px) {
    .about-us-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-us-card:first-child {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .about-us-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-us-card:first-child {
        grid-column: 1 / -1;
    }
}

/* Декоративные элементы и графика */
.section-divider {
    height: 5px;
    background: var(--accent-gradient);
    margin: 0 auto;
    width: 100px;
    border-radius: 5px;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(255, 66, 94, 0.5);
}

.bg-decoration {
    position: absolute;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.bg-decoration.circle {
    border-radius: 50%;
    background: var(--accent-gradient);
    filter: blur(40px);
}

.bg-decoration.dots {
    background-image: radial-gradient(rgba(255, 66, 94, 0.3) 1px, transparent 2px);
    background-size: 20px 20px;
}

.bg-decoration.wave {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23FF425E" opacity="0.2"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-decoration.squares {
    background-image: linear-gradient(rgba(255, 66, 94, 0.2) 1px, transparent 1px), 
                     linear-gradient(90deg, rgba(255, 66, 94, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
}

.section-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(255, 66, 94, 0.4));
}

.visual-divider {
    width: 100%;
    height: 40px;
    background-image: url('data:image/svg+xml;utf8,<svg height="40" width="60" xmlns="http://www.w3.org/2000/svg"><path d="M0 20 L60 20" stroke="%23FF425E" stroke-width="1" stroke-dasharray="5,5" opacity="0.5"/></svg>');
    background-repeat: repeat-x;
    margin: 2rem 0;
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%23120E2F"/></svg>');
    background-size: cover;
    background-position: center;
}

/* Применение декоративных элементов к секциям */
section {
    position: relative;
    overflow: hidden;
}

.hero {
    position: relative;
}

.hero .bg-decoration.circle {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.process .bg-decoration.dots {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.05;
}

.earnings .bg-decoration.squares {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.07;
}

.participants .bg-decoration.wave {
    width: 100%;
    height: 200px;
    top: -100px;
    left: 0;
}

.benefits .bg-decoration.circle {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

.about-us .bg-decoration.dots {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    opacity: 0.05;
}

.growth .bg-decoration.circle {
    width: 250px;
    height: 250px;
    top: -100px;
    right: -100px;
}

.partners .bg-decoration.squares {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.07;
}

.getting-started .bg-decoration.wave {
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    transform: rotate(180deg);
}

.contact .bg-decoration.circle {
    width: 350px;
    height: 350px;
    bottom: -175px;
    right: -175px;
}

/* Анимированные фоновые элементы */
.animated-bg {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--accent-red);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
    animation: floatBubble 15s infinite ease-in-out;
}

.animated-bg:nth-child(2n) {
    width: 25px;
    height: 25px;
    animation-delay: 2s;
    animation-duration: 17s;
}

.animated-bg:nth-child(3n) {
    width: 10px;
    height: 10px;
    animation-delay: 4s;
    animation-duration: 13s;
}

.animated-bg:nth-child(4n) {
    width: 20px;
    height: 20px;
    animation-delay: 6s;
    animation-duration: 20s;
}

@keyframes floatBubble {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, 50px);
    }
    50% {
        transform: translate(50px, 100px);
    }
    75% {
        transform: translate(-50px, 50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Для глобального применения к inline кнопкам */
a.cta-button {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Для кнопок формы, которые должны быть block */
form .cta-button, 
button.cta-button {
    display: flex !important;
    width: 100%;
} 

.mobile-spacer {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-spacer {
        display: block;
        height: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .mobile-spacer {
        display: block;
        height: 3rem;
    }
}

.try-platform {
  background-color: #1A153A;
  padding: 60px 0;
  text-align: center;
}

.try-platform .bonus-box {
  background-color: rgba(255, 66, 94, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin: 30px auto;
  max-width: 700px;
}

.steps-visual {
  display: flex !important;
  width: 100%;
} 