* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-orange: #FF8200;
    --secondary-orange: #FF8200;
    --accent-orange: #FF8200;
    --light-bg: #F5F5F7;
    --light-secondary: #FFFFFF;
    --light-card: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-gray: #41464b;
    --text-muted: #9CA3AF;
}

body {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
    will-change: transform;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-100px, 100px) scale(0.9);
    }
}

/* Geometric shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.35;
    border: 3px solid var(--primary-orange);
    transition: transform 0.1s ease-out;
}

.shape-1 {
    width: 220px;
    height: 220px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 15%;
    left: 10%;
    animation: morphShape 15s ease-in-out infinite;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1), transparent);
}

.shape-2 {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    top: 25%;
    right: 28%;
    animation: morphShape 12s ease-in-out infinite reverse;
    background: radial-gradient(circle at center, rgba(255, 143, 90, 0.15), transparent);
}

.shape-3 {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    top: 60%;
    left: 20%;
    transform: rotate(45deg);
    animation: rotate 20s linear infinite;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 143, 90, 0.1));
}

@keyframes morphShape {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hero Section */
.hero {
    padding: 20px 100px 40px;
    position: relative;
    overflow: visible;
    /*min-height: 70vh;*/
    display: flex;
    align-items: center;
    background: #ffffff;
    margin-top: 70px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    padding-left: 20px;
    padding-right: 70px;
    max-width: 700px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 500 !important;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.hero-text .highlight {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange), var(--accent-orange));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    font-size: 48px;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
    font-weight: 500;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-text .subtitle {
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(255, 130, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 130, 0, 0.4);
}



.cta-button:hover::after {
    transform: translateX(5px);
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    position: absolute;
    left: -170px;
    top: 55%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 5;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(7px);
    border-radius: 16px;
    border: none;
    box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: none;
}

.stat-card:hover {
    box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.5);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 130, 0, 0.2);
}

.stat-icon i {
    width: 24px;
    height: 24px;
    color: white !important;
    stroke: white !important;
    fill: none !important;
    stroke-width: 2.5;
}

.stat-icon svg {
    color: white !important;
    stroke: white !important;
}

.stat-icon svg path {
    stroke: white !important;
    fill: none !important;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    line-height: 1;
}


.phone-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    min-height: 550px;
}

.phone-container::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: transparent;
    display: none;
}

.phone-mockup {
    position: relative;
    z-index: 1;
}

.phone-mockup img {
    width: auto;
    height: 550px;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.widget-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 130%;
    max-width: 580px;
    will-change: transform;
}

body.loaded .widget-overlay {
    animation: scaleWidget 2.5s ease-in-out infinite;
}

.widget-overlay img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(255, 107, 53, 0.3));
}

@keyframes scaleWidget {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes floatQuestion {
    0%, 100% { transform: translateY(-50%) translateY(0px); }
    50% { transform: translateY(-50%) translateY(-20px); }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-30%, -30%) scale(1);
    }
    50% {
        transform: translate(-30%, -30%) scale(1.08);
    }
}

/* Features Section */
.features {
    padding: 60px 40px;
    width: 100%;
    position: relative;
    z-index: 10;
    background: #ffffff;
}


.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1250px;
    margin: 0 auto;
}

.feature-card {
    padding: 30px 24px;
    background: #f5f5f5;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
    opacity: 0;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    width: 40px;
    height: 40px;
    color: white !important;
    stroke: white !important;
    fill: none !important;
    stroke-width: 2;
}

.feature-icon svg {
    color: white !important;
    stroke: white !important;
}

.feature-icon svg path {
    stroke: white !important;
    fill: none !important;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 40px;
    width: 100%;
    position: relative;
    z-index: 10;
    background: #ffffff;
}

.how-it-works .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 340px;
}

.step-circle {
    width: 100px;
    height: 100px;
    border: 3px solid #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-circle.active {
    transform: scale(1.1);
    border-color: var(--primary-orange);
}

.step-circle i {
    width: 40px;
    height: 40px;
    color: #2d3748;
    stroke-width: 2;
    transition: color 0.3s ease;
}

.step-circle.active i {
    color: var(--primary-orange);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
    padding: 0 10px;
    width: 200px;
}

.step-connector {
    flex: 0 0 auto;
    width: 120px;
    height: 3px;
    background-image: repeating-linear-gradient(
            to right,
            #2d3748 0,
            #2d3748 8px,
            transparent 8px,
            transparent 16px
    );
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Flappy Bird Showcase */
.flappy-showcase {
    padding: 30px 40px;
    position: relative;
    z-index: 10;
    background: #f9f9f9;
    overflow: visible;
}

.flappy-showcase .section-title {
    margin-bottom: 10px;
}

.flappy-showcase .section-subtitle {
    margin-bottom: 30px;
}

.flappy-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.flappy-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
}

.phone-game-mockup {
    position: relative;
    max-width: 280px;
    width: 100%;
}

.phone-game-mockup > img:first-child {
    width: 100%;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 15px 10px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.game-logo {
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 85%;
    width: 85%;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3));
}

.start-button {
    position: absolute;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 70%;
    z-index: 10;
    display: block;
    transition: transform 0.3s;
}

.start-button:hover {
    transform: translateX(-50%) scale(1.05);
}

.start-button img {
    width: 100%;
    height: auto;
    display: block;
}

.notification-image {
    position: absolute;
    top: 40%;
    left: calc(50% + 140px + 30px);
    transform: translateY(-50%);
    max-width: 380px;
    width: 380px;
    z-index: 4;
    filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.3));
    will-change: transform;
}

body.loaded .notification-image {
    animation: floatNotification 3s ease-in-out infinite 0.5s;
}

@keyframes floatNotification {
    0%, 100% { transform: translateY(-50%) translateY(0px); }
    50% { transform: translateY(-50%) translateY(-15px); }
}

/* Game Description */
.game-description {
    position: relative;
    z-index: 10;
    color: var(--text-gray);
    padding-left: 200px;
    padding-top: 60px;
}

.game-description h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.game-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #2D3748;
    margin-bottom: 32px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.game-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.game-features li {
    font-size: 18px;
    color: #2D3748;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.6;
}

.game-features li i {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
    stroke-width: 2;
}

/* Purple Geometric Shapes */
.flappy-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.purple-shape {
    position: absolute;
    opacity: 0.25;
    border: 2px solid #8B5CF6;
    transition: transform 0.1s ease-out;
}

.purple-shape-1 {
    width: 180px;
    height: 180px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    right: 10%;
    animation: morphPurpleShape 18s ease-in-out infinite;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1), transparent);
}

.purple-shape-2 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: 15%;
    left: 15%;
    animation: morphPurpleShape 14s ease-in-out infinite reverse;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.15), transparent);
}

.purple-shape-3 {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    top: 50%;
    right: 25%;
    transform: rotate(45deg);
    animation: rotatePurple 25s linear infinite;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
}

@keyframes morphPurpleShape {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

@keyframes rotatePurple {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Street Beat Game Section */
.street-beat-section {
    padding: 30px 120px;
    position: relative;
    z-index: 10;
    background: #f9f9f9;
    overflow: visible;
}

.street-beat-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background-image: url('../images/gamification/street-beat/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 32px;
    padding: 80px 60px;
    overflow: hidden;
    border: 1px solid #D1D5DB;
}

.street-beat-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    z-index: 1;
    border-radius: 32px;
}

.street-beat-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.game-screen {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.game-screen img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.prize-badge {
    max-width: 60px;
    filter: drop-shadow(0 5px 10px rgba(255, 107, 53, 0.23));
    margin-right: -65px;
    z-index: 1;
    transform: rotate(-5deg);
    will-change: transform;
}

body.loaded .prize-badge {
    animation: swingBadge 4s ease-in-out infinite 0.5s;
}

.game-screen img:not(.prize-badge) {
    z-index: 2;
    position: relative;
}

@keyframes swingBadge {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.street-beat-info {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.63);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.street-beat-info h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.street-beat-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #2D3748;
    margin-bottom: 32px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.street-beat-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.street-beat-features li {
    font-size: 18px;
    color: #2D3748;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.6;
}

.street-beat-features li i {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
    stroke-width: 2;
}

.game-features-list {
    list-style: none;
    margin-bottom: 40px;
}

.game-features-list li {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

.game-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 24px;
    font-weight: 600;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.game-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

/* Cat Game Section */
.cat-game-section {
    padding: 30px 120px;
    position: relative;
    z-index: 10;
    background: #f9f9f9;
    overflow: visible;
}

.cat-game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: rgba(220, 221, 222, 0.7);
    background-image: url('../images/gamification/cat/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 32px;
    padding: 80px 60px;
    overflow: hidden;
    border: 1px solid #D1D5DB;
}

.cat-game-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    z-index: 0;
    border-radius: 32px;
}

.cat-game-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(238, 238, 240, 1), rgba(238, 238, 240, 0));
    z-index: 5;
}

.cat-game-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cat-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cat-phone img {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 15px 10px rgba(0, 0, 0, 0.3));
}

.cat-decorations {
    position: absolute;
    left: calc(25% + 140px + 10px);
    top: 65%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 5;
}

.cat-message {
    max-width: 200px;
    width: 100%;
    margin-top: 90px;
    will-change: transform;
}

body.loaded .cat-message {
    animation: float 3s ease-in-out infinite 0.5s;
}

.sad-cat {
    max-width: 180px;
    width: 100%;
}

.cat-game-info {
    position: relative;
    z-index: 10;
    padding-left: 90px;
    padding-top: 50px;
}

.cat-game-info h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cat-game-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #2D3748;
    margin-bottom: 32px;
}

.cat-game-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.cat-game-features li {
    font-size: 18px;
    color: #2D3748;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.6;
}

.cat-game-features li i {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
    stroke-width: 2;
}

/* Europe Game Section */
.europe-game-section {
    padding: 30px 120px;
    position: relative;
    z-index: 10;
    background: #f9f9f9;
    overflow: visible;
}

.europe-game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background-image: url('../images/gamification/europe/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 32px;
    padding: 60px;
    overflow: hidden;
    border: 1px solid #D1D5DB;
}

.europe-game-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    z-index: 0;
    border-radius: 32px;
}

.europe-game-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(238, 238, 240, 1), rgba(238, 238, 240, 0));
    z-index: 5;
}

.europe-game-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.europe-game-info{
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.63);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.europe-game-info h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.europe-game-info h3,
.street-beat-info h3,
.advent-calendar-info h3{
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.8;
}

.europe-game-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #2D3748;
    margin-bottom: 32px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.europe-game-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.europe-game-features li {
    font-size: 18px;
    color: #2D3748;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.europe-game-features li i {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
    stroke-width: 2;
}

.europe-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.europe-gif {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.europe-gif img {
    width: 100%;
    max-width: 290px;
    height: auto;
    border-radius: 16px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

/* Bubble Game Section */
.bubble-game-section {
    padding: 30px 120px;
    position: relative;
    z-index: 15;
    background: #f9f9f9;
    overflow: visible;
}

.bubble-game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background-image: url('../images/gamification/bubble/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 32px;
    padding: 80px 60px;
    overflow: hidden;
    border: 1px solid #D1D5DB;
}

.bubble-game-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
    border-radius: 32px;
}

.bubble-game-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bubble-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bubble-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bubble-phone img {
    width: 100%;
    max-width: 460px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
}

.congratulation-card {
    position: absolute;
    left: -120px;
    top: 10%;
    transform: translateY(-50%);
    max-width: 280px;
    width: 280px;
    z-index: 5;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    will-change: transform;
}

body.loaded .congratulation-card {
    animation: float 3s ease-in-out infinite 0.5s;
}

.bubble-game-info {
    position: relative;
    z-index: 10;
    padding-left: 40px;
}

.bubble-game-info h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 24px;
    line-height: 1.2;
}

.bubble-game-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #2D3748;
    margin-bottom: 32px;
    padding-right: 40px;
}

.bubble-game-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.bubble-game-features li {
    font-size: 18px;
    color: #2D3748;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.6;
}

.bubble-game-features li i {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
    stroke-width: 2;
}

/* Advent Calendar Section */
.advent-calendar-section {
    padding: 30px 120px 60px;
    position: relative;
    z-index: 15;
    background: #f9f9f9;
    overflow: visible;
}

.advent-calendar-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    background-image: url('../images/gamification/event calendar/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 48px;
    overflow: hidden;
    position: relative;
    border: 1px solid #D1D5DB;
}

.advent-calendar-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
    border-radius: 48px;
}


.advent-calendar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    justify-content: center;
}

.advent-calendar-visual {
    background: transparent;
}

.advent-calendar-info {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.advent-calendar-info h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.advent-calendar-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #2D3748;
    margin-bottom: 32px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.advent-calendar-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.advent-calendar-features li {
    font-size: 18px;
    color: #2D3748;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.advent-calendar-features li i {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
    stroke-width: 2;
}

/* Calendar Images */
.calendar-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}

.calendar-image {
    flex: 0 0 auto;
    position: relative;
}

.calendar-image:not(.main-image) {
    background: rgba(255, 255, 255, 0.18);
    padding: 12px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.calendar-image img {
    width: auto;
    height: 450px;
    display: block;
    border-radius: 24px;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.25));
}


.calendar-image.main-image {
    z-index: 10;
    margin: 0 -30px;
}

.calendar-image.main-image img {
    height: 520px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
    border: 2px solid rgba(58, 58, 58, 0.51);
    border-radius: 24px;
}

.calendar-image:first-child {
    z-index: 1;
}

.calendar-image:last-child {
    z-index: 1;
}

/* Responsive */
@media (max-width: 1300px) {
    body {
        overflow-x: hidden;
    }

    .hero,
    .features,
    .how-it-works,
    .flappy-showcase,
    .street-beat-section,
    .cat-game-section,
    .europe-game-section,
    .bubble-game-section,
    .advent-calendar-section {
        max-width: 100vw;
    }

    .street-beat-section{
        padding: 30px 40px;
    }

    .cat-game-section{
        padding: 30px 40px;
        overflow: visible;
    }

    .europe-game-section{
        padding: 30px 40px;
        overflow: visible;
    }

    .street-beat-wrapper{
        padding: 60px 20px;
    }

    .cat-game-wrapper{
        padding: 60px 0;
    }

    .europe-game-wrapper{
        padding: 60px 40px;
    }

    .bubble-game-wrapper{
        padding: 60px 0;
    }

    .advent-calendar-wrapper{
        padding: 60px 30px;
    }

    .calendar-image:not(.main-image) {
        padding: 12px;
    }

    .calendar-image img {
        width: auto;
        height: 350px;
        display: block;
        filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
    }

    .calendar-image:not(.main-image) img {
        filter: none;
    }

    .calendar-image.main-image img {
        height: 410px;
    }

    .cat-phone {
        padding-left: 40px;
        justify-content: left;
    }
    .cat-game-info {
        padding: 20px 50px 20px 50px;
        top: 20px;
    }

    .cat-decorations {
        left: calc(20% + 140px);
    }

    .europe-gif img {
        max-width: 250px;
    }

    .game-screen img {
        max-width: 240px;
    }

    .bubble-game-section{
        padding: 30px 40px;
    }

    .advent-calendar-section{
        padding: 30px 40px 60px;
    }

    .features{
        padding: 0 40px;
    }

    .hero {
        padding: 20px 40px 40px;
    }

    .hero-content {
        grid-template-columns: 0.8fr 1fr;
        gap: 0;
        max-width: 1300px;
    }

    .hero-visual {
        height: 540px;
    }

    .phone-mockup img {
        height: 460px;
    }


    .phone-container {
        margin: 0 50px 0 20px;
        min-height: 550px;
    }

    .widget-overlay {
        max-width: 480px;
    }

    .hero-content {
        position: relative;
    }

    .hero-stats {
        position: static;
        transform: none;
        flex-direction: row;
        gap: 20px;
        z-index: 10;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .stat-card {
        padding: 18px 22px;
        flex: 0 0 auto;
        min-width: auto;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
    }

    .stat-icon i,
    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-label {
        font-size: 18px;
    }

    .steps-container {
        gap: 0;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .step-item {
        max-width: 220px;
    }

    .step-connector {
        width: 55px;
    }

    .step-circle {
        width: 90px;
        height: 90px;
    }

    .step-circle i {
        width: 30px;
        height: 30px;
    }

    .step-circle svg {
        width: 30px;
        height: 30px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 18px;
    }

    .phone-container::before {
        width: 350px;
        height: 350px;
    }

    .shape-1 {
        width: 180px;
        height: 180px;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
    }

    .shape-3 {
        width: 170px;
        height: 170px;
    }

    .hero-text {
        padding: 0;
        margin-top: 0;
    }

    .hero-text h1,
    .hero-text .highlight {
        font-size: 52px;
        margin-bottom: 18px;
    }

    .subtitle {
        font-size: 19px;
    }

    .section-title {
        font-size: 40px;
    }

    .section-subtitle,
    .feature-description{
        font-size: 18px;
    }

    .features .section-subtitle,
    .flappy-showcase .section-subtitle {
        font-size: 22px;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .flappy-phone {
        position: relative;
        display: flex;
        /*justify-content: left;*/
        align-items: center;
        margin-left: 0;
    }

    .game-description {
        padding-top: 18px;
        padding-left: 180px;
        text-align: left;
    }

    .phone-game-mockup {
        max-width: 280px;
    }

    .notification-image {
        left: calc(50% + 140px + 20px);
        width: 280px;
    }

    .game-features li svg,
    .street-beat-features li svg,
    .cat-game-features li svg,
    .europe-game-features li svg,
    .bubble-game-features li svg,
    .advent-calendar-features li svg{
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .flappy-content,
    .street-beat-content,
    .cat-game-content,
    .europe-game-content,
    .bubble-game-content{
        gap: 50px;
    }

    .advent-calendar-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }


    .flappy-content {
        padding: 0 20px;
    }

    .game-description h2,
    .street-beat-info h2,
    .cat-game-info h2,
    .europe-game-info h2,
    .bubble-game-info h2,
    .advent-calendar-info h2 {
        font-size: 38px;
    }


    .hero-text .subtitle {
        font-size: 22px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        justify-content: center;
    }
}

@media (max-width: 968px) {
    body {
        overflow-x: hidden;
    }

    .desktop-br {
        display: none;
    }

    /* Выравнивание по левому краю для мобильной версии */
    .section-title {
        text-align: left;
    }

    .section-subtitle {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .features .section-subtitle {
        margin-bottom: 20px;
    }

    .hero-text {
        text-align: left;
        margin-bottom: 60px;
    }

    .step-item {
        align-items: center;
        text-align: center;
    }

    .game-description {
        padding-top: 15px;
        text-align: left;
    }

    .street-beat-info,
    .cat-game-info,
    .europe-game-info,
    .bubble-game-info,
    .advent-calendar-info {
        text-align: left;
    }

    .game-features,
    .street-beat-features,
    .cat-game-features,
    .europe-game-features,
    .bubble-game-features,
    .advent-calendar-features {
        justify-content: flex-start;
    }

    .game-features li,
    .street-beat-features li,
    .cat-game-features li,
    .europe-game-features li,
    .bubble-game-features li,
    .advent-calendar-features li {
        justify-content: flex-start;
    }

    /* Уменьшаем жирность заголовков для мобильной версии */
    .hero-text h1,
    .section-title,
    .step-title,
    .game-description h2,
    .street-beat-info h2,
    .cat-game-info h2,
    .europe-game-info h2,
    .bubble-game-info h2,
    .advent-calendar-info h2 {
        font-weight: 550;
    }

    /* Увеличиваем размер основного текста */
    p,
    .game-description p,
    .street-beat-info p,
    .cat-game-info p,
    .europe-game-info p,
    .bubble-game-info p,
    .advent-calendar-info p,
    .step-description {
        font-size: 22px;
    }

    .features .section-subtitle,
    .flappy-showcase .section-subtitle{
        font-size: 22px;
    }

    .hero-text .subtitle{
        font-size: 22px;
    }

    .step-description {
        width: auto;
    }

    .game-features li,
    .street-beat-features li,
    .cat-game-features li,
    .europe-game-features li,
    .bubble-game-features li,
    .advent-calendar-features li {
        font-size: 22px;
    }

    .street-beat-features li svg,
    .game-features li svg,
    .cat-game-features li svg,
    .europe-game-features li svg,
    .bubble-game-features li svg,
    .advent-calendar-features li svg{
        width: 30px;
        height: 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-bottom: 0;
        margin: 0;
        max-width: 100%;
        overflow: visible;
    }

    .hero-text {
        max-width: 100%;
        padding-left: 0;
        padding-right: 60px;
    }

    .hero-stats {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: stretch;
        margin-top: 20px;
        gap: 20px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-card {
        padding: 26px 32px;
        width: 100%;
        gap: 20px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
    }

    .stat-icon i {
        width: 32px;
        height: 32px;
    }

    .stat-icon svg {
        width: 25px;
        height: 25px;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-label {
        font-size: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-card {
        display: grid;
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
        gap: 16px 20px;
        text-align: left;
        padding: 24px 20px;
    }

    .feature-icon {
        grid-row: 1 / 3;
        width: 80px;
        height: 80px;
        border-radius: 20px;
        margin-bottom: 0;
    }

    .feature-icon svg,
    .feature-icon i {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        grid-column: 2;
        font-size: 20px;
        margin-bottom: 0;
    }

    .feature-description {
        grid-column: 2;
        font-size: 16px;
        margin: 0;
    }

    .features .section-title {
        text-align: left;
    }

    /* Steps Mobile */
    .steps-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px 40px;
    }

    .step-item {
        max-width: 100%;
        margin-bottom: 0;
        display: grid;
        grid-template-columns: 100px 1fr;
        grid-template-rows: auto auto;
        gap: 12px 24px;
        text-align: left;
    }

    .step-item:last-child {
        margin-bottom: 0;
    }

    .step-connector {
        display: block;
        width: 3px;
        height: 40px;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: 50px;
        background-image: repeating-linear-gradient(
            to bottom,
            #2d3748 0,
            #2d3748 8px,
            transparent 8px,
            transparent 16px
        );
        position: relative;
    }

    .step-connector::after {
        display: none;
    }

    .step-circle {
        grid-row: 1 / 3;
        width: 100px;
        height: 100px;
        margin-bottom: 0;
    }

    .step-circle i,
    .step-circle svg {
        width: 42px;
        height: 42px;
    }

    .step-title {
        grid-column: 2;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 0;
    }

    .step-description {
        grid-column: 2;
        text-align: left;
        margin: 0;
        padding-left: 0;
    }

    .feature-card {
        display: grid;
        grid-template-columns: 70px 1fr;
        grid-template-rows: auto auto;
        gap: 0 25px;
        text-align: left;
        padding: 24px 18px;
    }

    .feature-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 20px;
    }

    .feature-icon svg {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .feature-description {
        font-size: 20px;
    }

    .hero-text h1,
    .hero-text .highlight {
        font-size: 42px;
        font-weight: 500;
    }

    .section-title {
        font-size: 32px;
    }

    .hero {
        padding: 40px 40px 80px;
        min-height: auto;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .hero-visual {
        height: auto;
        min-height: 350px;
        margin-top: 0px;
        margin-bottom: 0px;
        max-width: 100%;
        overflow: visible;
    }

    .phone-mockup {
        display: flex;
        justify-content: center;
    }

    .phone-mockup img {
        height: 500px;
        width: auto;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.25));
    }

    .widget-overlay {
        max-width: 450px;
        left: 52%;
    }

    .phone-container {
        margin: 0 auto;
        min-height: 500px;
        max-width: 100%;
    }

    .phone-container::before {
        width: 500px;
        height: 500px;
    }

    .question-card {
        left: -80px;
        width: 150px;
    }

    /*.widget-overlay {*/
    /*    width: 130%;*/
    /*    max-width: 420px;*/
    /*}*/

    .features,
    .how-it-works,
    .flappy-showcase{
        padding: 30px 40px;

    }

    .how-it-works .section-title {
        text-align: left;
    }

    .cat-game-section {
        padding: 0 0 20px 0;
    }

    .flappy-showcase::before,
    .street-beat-section::before,
    .street-beat-section::after,
    .cat-game-section::before,
    .cat-game-section::after,
    .europe-game-section::before,
    .europe-game-section::after,
    .bubble-game-section::before,
    .bubble-game-section::after,
    .advent-calendar-section::before,
    .advent-calendar-section::after {
        display: none;
    }

    /* Пунктирные линии между секциями */
    .flappy-showcase,
    .how-it-works,
    .street-beat-section,
    .bubble-game-section,
    .advent-calendar-section {
        border-bottom: 5px dashed #B8BABD;
        padding-bottom: 40px;
    }

    .cat-game-section,
    .europe-game-section {
        border-bottom: 5px dashed #B8BABD;
        padding-bottom: 0;
    }

    .flappy-content {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0;
        gap: 30px;
    }

    .phone-game-mockup {
        max-width: 250px;
        margin: 0 auto;
    }

    .flappy-phone {
        margin-left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .notification-image {
        display: none;
    }

    .game-description {
        padding: 30px 30px 10px 10px;
    }

    .game-description h3 {
        font-size: 32px;
    }

    .street-beat-wrapper,
    .bubble-game-wrapper,
    .advent-calendar-wrapper {
        border-radius: 0;
        max-width: 100%;
        border: none;
    }

    .advent-calendar-wrapper {
        overflow-x: hidden;
        padding: 60px 0;
    }

    .street-beat-wrapper,
    .bubble-game-wrapper,
    .cat-game-wrapper {
        box-shadow: none;
        border: none;
    }

    .cat-game-wrapper,
    .bubble-game-wrapper {
        padding-bottom: 0;
    }

    .street-beat-wrapper::before,
    .cat-game-wrapper::before,
    .bubble-game-wrapper::before,
    .advent-calendar-wrapper::before {
        border-radius: 0 !important;
    }

    .street-beat-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
    }

    .street-beat-info {
        padding: 30px;
        margin: 0 24px;
    }

    .street-beat-info h2 {
        font-size: 36px;
    }

    .street-beat-info h3,
    .europe-game-info h3,
    .advent-calendar-info h3{
        font-size: 22px;
    }

    .game-screen {
        flex-direction: row;
        gap: 0;
        justify-content: center;
    }

    .game-screen img {
        max-width: 260px;
    }

    .prize-badge {
        max-width: 80px;
        margin-right: -55px;
    }

    .street-beat-section {
        padding: 0;
    }

    .cat-game-section {
        background: rgba(220, 221, 222, 0.61);
    }

    .cat-game-wrapper {
        background-position: center 80px;
        background-size: contain;
        border-radius: 0 !important;
        border: none !important;
        padding: 30px 0 30px 0;
    }

    .cat-game-content {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        align-items: flex-start;
    }

    .cat-phone {
        flex: 0 0 auto;
        order: 1;
        padding: 0;
    }

    .cat-phone img {
        max-width: 250px;
    }

    .cat-decorations {
        display: none;
    }

    .cat-message {
        max-width: 120px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .sad-cat {
        max-width: 140px;
    }

    .cat-game-info {
        flex: 1 1 100%;
        order: 3;
        padding: 30px 30px 10px 30px;
        margin: 0 24px;
    }

    .cat-game-info h2 {
        font-size: 36px;
    }

    .europe-game-section {
        padding: 0;
    }

    .europe-game-wrapper {
        padding: 60px 20px;
        border-radius: 0;
        border: none;
    }

    .europe-game-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .europe-game-info {
        order: 2;
        padding: 30px;
        margin: 0 20px;
    }

    .europe-game-info h2 {
        font-size: 36px;
    }

    .europe-visual {
        order: 1;
    }

    .europe-gif img {
        max-width: 300px;
    }

    .bubble-game-section {
        padding: 0;
    }

    .bubble-game-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
    }

    .bubble-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .bubble-phone {
        position: relative;
        left: 20px;
    }

    .bubble-phone img {
        max-width: 400px;
    }

    .congratulation-card {
        position: absolute;
        left: -60px;
        top: 10%;
        transform: translateY(-50%);
        max-width: 250px;
    }

    .bubble-game-info {
        padding: 0 30px 50px 30px;
        margin: 0 24px;
    }

    .bubble-game-info h2 {
        font-size: 36px;
    }

    .advent-calendar-section {
        padding: 0;
        overflow-x: hidden;
    }

    .advent-calendar-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .advent-calendar-info {
        order: 2;
        padding: 30px;
        margin: 0 40px;
    }

    .advent-calendar-visual {
        order: 1;
        overflow-x: hidden;
    }

    .advent-calendar-info h2 {
        font-size: 36px;
    }

    .calendar-images {
        gap: 0;
        padding: 0 24px;
    }

    .calendar-image:not(.main-image) {
        padding: 10px;
        box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.12);
    }

    .calendar-image.main-image {
        margin: 0 -15px;
    }

    .calendar-image img {
        height: 400px;
        filter: none;
    }

    .calendar-image:not(.main-image) img {
        filter: none;
    }

    .calendar-image.main-image img {
        height: 480px;
        border-radius: 20px;
        filter: none;
    }
}

/* Скрыть плашки и центрировать телефон для 468px */
@media (max-width: 448px) {
    .hero-stats {
        display: none !important;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .phone-container {
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .widget-overlay {
        left: 50% !important;
    }
}

@media (max-width: 580px) {
    /* Выравнивание по левому краю для очень маленьких экранов */
    .section-title {
        text-align: left;
    }

    .section-title,
    .section-subtitle {
        padding: 0 16px;
    }

    .features .section-subtitle,
    .flappy-showcase .section-subtitle{
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero-text {
        text-align: left;
        margin-bottom: 0;
    }

    .steps-container {
        align-items: flex-start;
        padding: 0 20px 20px 20px;
    }

    .game-description {
        text-align: left;
        padding: 0;
        margin: 0 20px;
    }


    .street-beat-info,
    .cat-game-info,
    .europe-game-info,
    .bubble-game-info,
    .advent-calendar-info {
        text-align: left;
    }

    .street-beat-info {
        box-shadow: none;
    }

    .street-beat-content {
        gap: 30px;
    }

    .street-beat-wrapper {
        box-shadow: none;
    }

    .game-screen img {
        box-shadow: none;
    }

    .prize-badge {
        filter: none;
    }

    .game-features,
    .street-beat-features,
    .cat-game-features,
    .europe-game-features,
    .bubble-game-features,
    .advent-calendar-features {
        justify-content: flex-start;
    }

    .game-features li,
    .street-beat-features li,
    .cat-game-features li,
    .europe-game-features li,
    .bubble-game-features li,
    .advent-calendar-features li {
        justify-content: flex-start;
    }

    .game-features li svg,
    .street-beat-features li svg,
    .cat-game-features li svg,
    .europe-game-features li svg,
    .bubble-game-features li svg,
    .advent-calendar-features li svg{
        width: 25px;
        height: 25px;
    }

    /* Уменьшаем жирность заголовков для очень маленьких экранов */
    .section-title,
    .step-title,
    .street-beat-info h2,
    .cat-game-info h2,
    .europe-game-info h2,
    .bubble-game-info h2,
    .advent-calendar-info h2 {
        font-weight: 600;
    }

    /* Увеличиваем размер основного текста */
    p,
    .street-beat-info p,
    .cat-game-info p,
    .europe-game-info p,
    .bubble-game-info p,
    .advent-calendar-info p,
    .step-description {
        font-size: 16px;
    }

    .cat-game-features li,
    .europe-game-features li,
    .bubble-game-features li,
    .advent-calendar-features li {
        font-size: 16px;
    }

    .hero {
        padding: 40px 16px 20px;
        min-height: auto;
    }

    .hero-visual {
        height: 350px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .phone-mockup {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .phone-mockup img {
        height: 400px;
        width: auto;
        filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.2));
    }

    .widget-overlay {
        max-width: 320px;
        left: 55%;
    }

    .phone-container {
        margin: 40px 10px 20px 10px;
        min-height: 300px;
    }

    .phone-container::before {
        width: 250px;
        height: 250px;
    }

    /* Еще больше уменьшаем фигуры для маленьких экранов */
    .shape-1 {
        width: 70px;
        height: 70px;
        top: 8%;
        left: 3%;
    }

    .shape-2 {
        width: 60px;
        height: 60px;
        top: 40%;
        right: 3%;
    }

    .shape-3 {
        width: 65px;
        height: 65px;
        top: 75%;
        left: 3%;
    }

    .hero-text h1,
    .hero-text .highlight {
        font-size: 32px;
    }

    .hero-stats {
        padding-right: 10px;
    }

    .hero-text .subtitle {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .stat-card {
        min-width: 130px;
        padding: 12px 14px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 14px;
    }

    .features {
        padding: 20px 0;
    }
    .how-it-works {
        padding: 30px 0;
    }

    .section-title {
        text-align: left;
        padding: 0 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }

    .feature-card {
        display: grid;
        grid-template-columns: 70px 1fr;
        grid-template-rows: auto auto;
        gap: 5px 18px;
        text-align: left;
        padding: 24px 18px;
    }

    .step-description {
        padding: 0 40px 0 0;
    }

    .feature-icon {
        grid-row: 1 / 3;
        width: 60px;
        height: 60px;
        border-radius: 18px;
        margin-bottom: 0;
    }

    .feature-icon svg,
    .feature-icon i {
        width: 30px;
        height: 30px;
    }

    .feature-title {
        grid-column: 2;
        font-size: 18px;
        margin-bottom: 0;
    }

    .feature-description {
        grid-column: 2;
        font-size: 15px;
        margin: 0;
    }

    .features .section-title {
        text-align: left;
        padding: 0 16px;
    }

    .step-item {
        display: grid;
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
        gap: 10px 20px;
        text-align: left;
    }

    .step-circle {
        grid-row: 1 / 3;
        width: 80px;
        height: 80px;
        margin-bottom: 0;
    }

    .step-circle i,
    .step-circle svg {
        width: 32px;
        height: 32px;
    }

    .step-connector {
        /*margin-left: 40px;*/
        margin: 0 0 0 40px;
    }

    .step-title {
        grid-column: 2;
        font-size: 18px;
        margin-bottom: 0;
    }

    .step-description {
        grid-column: 2;
        font-size: 16px;
        text-align: left;
        margin: 0;
    }

    .flappy-showcase {
        padding: 30px 0;
    }

    .flappy-showcase h2,
    .flappy-showcase p {
        padding: 0 20px 0 20px;
    }

    .flappy-showcase::before,
    .street-beat-section::before,
    .street-beat-section::after,
    .cat-game-section::before,
    .cat-game-section::after,
    .europe-game-section::before,
    .europe-game-section::after,
    .bubble-game-section::before,
    .bubble-game-section::after,
    .advent-calendar-section::before,
    .advent-calendar-section::after {
        display: none;
    }

    /* Пунктирные линии между секциями */
    .how-it-works,
    .flappy-showcase,
    .street-beat-section,
    .cat-game-section,
    .europe-game-section,
    .bubble-game-section,
    .advent-calendar-section {
        border-bottom: 4px dashed #B8BABD;
        padding-bottom: 30px;
    }

    .phone-game-mockup {
        max-width: 280px;
        margin: 0 auto;
    }

    .flappy-phone {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .notification-image {
        display: none;
    }

    .game-description p {
        font-size: 16px;
        margin-bottom: 20px;
        padding: 0;
    }

    .game-features li {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .street-beat-section,
    .cat-game-section,
    .europe-game-section,
    .bubble-game-section,
    .advent-calendar-section {
        padding: 0;
    }

    .cat-game-section {
        background: rgba(220, 221, 222, 0.61);
    }

    .europe-game-section {
        background-image: url('images/gamification/europe/background.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }

    .europe-game-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.4);
        z-index: 1;
    }

    .europe-game-wrapper {
        position: relative;
        z-index: 2;
    }

    .street-beat-wrapper,
    .europe-game-wrapper,
    .bubble-game-wrapper,
    .advent-calendar-wrapper {
        padding: 30px 0;
        border-radius: 0;
        max-width: 100%;
        border: none;
    }

    .cat-game-wrapper {
        background-position: center 50px;
        background-size: contain;
        border-radius: 0 !important;
        border: none;
        padding: 40px 0;
    }

    .europe-game-wrapper {
        background: none;
        border-radius: 0;
        padding: 40px 0;
    }

    .street-beat-wrapper::before,
    .cat-game-wrapper::before,
    .europe-game-wrapper::before,
    .bubble-game-wrapper::before,
    .advent-calendar-wrapper::before {
        border-radius: 0 !important;
    }

    .europe-game-content {
        flex-direction: column;
        gap: 30px;
        position: relative;
        z-index: 3;
    }

    .europe-game-info {
        order: 2;
        padding: 24px 20px;
        margin: 0 20px;
    }

    .europe-game-info h2 {
        font-size: 28px;
    }

    .europe-visual {
        order: 1;
    }

    .europe-gif img {
        max-width: 230px;
    }

    .cat-game-info {
        padding: 0;
        margin: 0 20px;
    }

    .bubble-game-info {
        padding: 0;
        margin: 0 20px;
    }

    .street-beat-info,
    .advent-calendar-info{
        padding: 24px;
        margin: 0 16px;
    }

    .game-description h2 {
        padding: 0;
    }

    .game-description h2,
    .street-beat-info h2,
    .cat-game-info h2,
    .europe-game-info h2,
    .bubble-game-info h2,
    .advent-calendar-info h2 {
        font-size: 24px;
        margin-bottom: 10px;
        font-weight: 550;
    }

    .street-beat-info h3,
    .europe-game-info h3,
    .advent-calendar-info h3 {
        font-size: 16px;
        font-weight: 600;
    }

    .street-beat-info p,
    .cat-game-info p,
    .europe-game-info p,
    .bubble-game-info p,
    .advent-calendar-info p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .street-beat-features li,
    .cat-game-features li,
    .europe-game-features li,
    .bubble-game-features li,
    .advent-calendar-features li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .game-screen {
        flex-direction: row;
        gap: 0;
        justify-content: center;
    }

    .game-screen img {
        max-width: 200px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .prize-badge {
        max-width: 70px;
        margin-right: -45px;
    }

    .cat-phone img {
        max-width: 220px;
    }
    .cat-phone {
        padding: 0;
    }

    .cat-decorations {
        display: none;
    }

    .cat-message {
        max-width: 90px;
        margin-bottom: 8px;
    }

    .sad-cat {
        max-width: 110px;
    }

    .bubble-phone img {
        max-width: 250px;
        margin-left: 60px;
    }

    .congratulation-card {
        max-width: 180px;
        left: -20px;
        top: 20px;
    }

    .calendar-image:not(.main-image) {
        padding: 8px;
    }

    .calendar-image.main-image {
        margin: 0 -15px;
    }

    .calendar-image img {
        height: 220px;
    }

    .calendar-image:not(.main-image) img {
        filter: none;
    }

    .calendar-image.main-image img {
        height: 270px;
        border: 1.5px solid rgba(58, 58, 58, 0.68);
        border-radius: 16px;
    }

}

.header__logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .header__logo img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .header__logo img {
        height: 30px;
    }
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
    position: relative;
    z-index: 1002;
}

.header__menu li {
    margin-right: 60px;
}

.header__menu li:nth-child(1) {
    margin-right: 50px; /* Кейсы - короткое слово */
}

.header__menu li:nth-child(2) {
    margin-right: 55px; /* Тарифы - короткое слово */
}

.header__menu li:nth-child(3) {
    margin-right: 45px; /* Партнеры - среднее слово */
}

.header__menu li:nth-child(4) {
    margin-right: 25px; /* Медиа - короткое слово с иконкой */
}

.header__menu li:nth-child(5) {
    margin-right: 50px; /* О нас */
}

.header__menu li:nth-child(6) {
    margin-right: 0; /* Карьера - последний пункт */
}

.header__menu li a,
.header__menu li a span {
    color: #333 !important;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;

    border: none !important;
    background: transparent !important;
    pointer-events: auto;
    z-index: 1003;
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 500 !important;
}

.header__menu li a:hover,
.header__menu li a:hover span {
    color: #FF6B00 !important;
    background: transparent !important;
    border: none !important;
}

/* Стиль для текущей страницы */
.header__menu li a.current-page,
.header__menu li a.current-page span {
    font-weight: 500;
    color: #FF6B00 !important;
    background: transparent !important;
    border: none !important;
}

/* Выпадающее меню */
.header__dropdown {
    position: relative;
}

.header__dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: color 0.3s ease;
    border: none !important;
    padding: 8px 16px;
    color: #333 !important;
    background: transparent !important;
    text-decoration: none !important;
}

.header__dropdown-toggle:hover,
.header__dropdown-toggle:hover span {
    color: #FF6B00 !important;
    background: transparent !important;
    border: none !important;
}

.header__dropdown:hover .header__dropdown-toggle,
.header__dropdown:hover > .header__dropdown-toggle {
    color: #FF6B00 !important;
}

/* Дополнительные селекторы для надежности */
.header__dropdown:hover .header__dropdown-toggle span,
.header__dropdown-menu:hover + .header__dropdown-toggle,
li.header__dropdown:hover .header__dropdown-toggle {
    color: #FF6B00 !important;
}

.header__dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    color: inherit;
    display: inline-block;
    transform-origin: center;
    flex-shrink: 0;
}

.header__dropdown.active .header__dropdown-arrow {
    transform: rotate(180deg) !important;
}

.header__dropdown.active .header__dropdown-toggle {
    color: #FF6B00 !important;
    background: transparent !important;
    border: none !important;
}

.header__dropdown-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(240, 240, 240, 0.8);
    border-bottom: 1px solid rgba(240, 240, 240, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0;
    margin-top: 0;
    pointer-events: none;
}

/* Адаптивная позиция меню для скроллнутой шапки */
.header.scrolled .header__dropdown-menu {
    top: 62px;
}

.header__dropdown.active .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.header__dropdown-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.header__dropdown-item {
    flex: 1;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.header__dropdown-item:hover {
    color: #333;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.header__dropdown-card {
    padding: 0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.header__dropdown-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 6px 0;
    line-height: 1.2;
    transition: color 0.3s ease;
    font-family: 'Gilroy', sans-serif !important;
}

.header__dropdown-item:hover .header__dropdown-title {
    color: #FF6B00;
}

.header__dropdown-description {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 400 !important;
}

/* Контейнер для контактов */
.header__contacts {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Мобильный индикатор живого общения */
.header__mobile-live-indicator {
    display: none;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-live-indicator__avatar {
    position: relative;
    width: 32px;
    height: 32px;
}

.mobile-live-indicator__avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.header__mobile-live-indicator:hover .mobile-live-indicator__avatar img {
    transform: scale(1.05);
}

.mobile-live-indicator__status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #4CAF50;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: pulse-small 2s infinite;
}

/* Тултип для мобильного индикатора */
.header__mobile-live-indicator::after {
    content: 'Отвечу на вопросы';
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1004;
}

.header__mobile-live-indicator::before {
    content: '';
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1004;
}

.footer-placeholder{
    background: #00c1ff;
}

/* Класс для показа тултипа через JavaScript */
.header__mobile-live-indicator.show-tooltip::after,
.header__mobile-live-indicator.show-tooltip::before {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-small {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 4px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Номер телефона */
.header__phone {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__phone:hover {
    color: #FF6B00;
}

/* Десктопная версия - только текст */
.header__phone--desktop {
    display: flex;
    color: #FF6B00;
    font-weight: 400;
}

.header__phone--desktop:hover {
    color: #e55a00;
}

/* Мобильная версия - только иконка */
.header__phone--mobile {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    transition: all 0.3s ease;
}

.header__phone--mobile:hover {
    background-color: transparent;
    color: #FF6B00;
    transform: scale(1.1);
}

.header__phone-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.header__phone-text {
    white-space: nowrap;
}

/* Wrapper для Telegram с тултипом */
.header__telegram-wrapper {
    position: relative;
}

/* Новый десктопный аватар Telegram */
.header__telegram-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header__telegram-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}

.header__telegram-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.header__telegram-contact:hover .header__telegram-avatar img {
    transform: scale(1.05);
}

.header__telegram-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: pulse-desktop 2s infinite;
}

@keyframes pulse-desktop {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Старые стили иконки больше не нужны */
.header__telegram-icon {
    display: none;
}

/* Всплывающая подсказка для Telegram */
.header__telegram-tooltip {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 16px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1003;
    border: 1px solid #e0e0e0;
}

.header__telegram-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.header__telegram-wrapper:hover .header__telegram-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.telegram-tooltip__content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.telegram-tooltip__avatar {
    flex-shrink: 0;
}

.telegram-tooltip__avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.telegram-tooltip__info {
    flex: 1;
}

.telegram-tooltip__name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
    font-family: 'Gilroy', sans-serif !important;
}

.telegram-tooltip__text {
    font-size: 12px;
    color: #666;
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 400 !important;
}

.header__contact-button {
    background-color: #FFFFFF;
    color: #FF6B00;
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    border: 1px solid transparent;
    font-family: 'Gilroy', sans-serif !important;
}

.header__contact-button:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Мобильная навигация */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Анимация бургера в крестик */
.header__burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    padding: 80px 20px 20px;
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu__overlay.active {
    display: block;
}

.mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu__item {
    margin-bottom: 20px;
}

.mobile-menu__link {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 500 !important;
}

.mobile-menu__link:hover {
    color: #FF6B00;
}

/* Стиль для текущей страницы */
.mobile-menu__link.current-page {
    font-weight: 500;
    color: #FF6B00;
}

/* Мобильное выпадающее меню */
.mobile-menu__dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 5px;
}

.mobile-menu__dropdown-toggle {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: none;
    gap: 12px;
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 500 !important;
}

.mobile-menu__dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    color: #333;
    flex-shrink: 0;
}

.mobile-menu__dropdown.active .mobile-menu__dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-menu__dropdown-items {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 12px;
}

.mobile-menu__dropdown.active .mobile-menu__dropdown-items {
    max-height: 200px;
}

.mobile-menu__dropdown-items li {
    margin-bottom: 2px;
}

.mobile-menu__dropdown-items li:last-child {
    margin-bottom: 0;
}

.mobile-menu__dropdown-items .mobile-menu__link {
    padding: 4px 40px 4px 24px;
    font-size: 18px;
    border-bottom: none;
    display: block;
}

.mobile-menu__dropdown-items .mobile-menu__link:last-child {
    border-bottom: none;
}

/* Контакты в мобильном меню */
.mobile-menu__contacts {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mobile-menu__phone {
    display: block;
    color: #FF6B00;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Gilroy', sans-serif !important;
}

.mobile-menu__phone:hover {
    color: #e55a00;
}

/* Улучшенная CTA для Telegram в мобильном меню */
.mobile-menu__telegram-cta {
    display: block;
    padding: 16px 0;
}

.mobile-telegram-cta__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mobile-telegram-cta__avatar {
    position: relative;
    flex-shrink: 0;
}

.mobile-telegram-cta__avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-telegram-cta__status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.mobile-telegram-cta__info {
    flex: 1;
}

.mobile-telegram-cta__name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 2px;
    font-family: 'Gilroy', sans-serif !important;
}

.mobile-telegram-cta__button {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #0088cc;
    background-color: #e3f2fd;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-telegram-cta__button:hover {
    background-color: #bbdefb;
    color: #0066aa;
}

.mobile-menu__telegram {
    display: block;
    text-decoration: none;
    color: #333;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 500 !important;
}

/* Адаптивность для выпадающего меню */
@media (max-width: 1400px) {
    .header__dropdown-container {
        gap: 15px;
    }
    
    .header__dropdown-title {
        font-size: 16px;
    }
    
    .header__dropdown-description {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .header__dropdown-container {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .header__dropdown-item {
        max-width: 300px;
        width: 100%;
    }
    
    .header__dropdown-card {
        text-align: center;
    }
    
    .header__dropdown-title {
        font-size: 15px;
    }
    
    .header__dropdown-description {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header__dropdown-container {
        padding: 20px;
    }
    
    .header__dropdown-title {
        font-size: 14px;
    }
    
    .header__dropdown-description {
        font-size: 12px;
    }
}

@media (max-width: 1400px) and (min-width: 1201px) {
    .header__menu li {
        margin-right: 50px;
    }
    
    .header__menu li:nth-child(1) {
        margin-right: 40px; /* Кейсы */
    }
    
    .header__menu li:nth-child(2) {
        margin-right: 45px; /* Тарифы */
    }
    
    .header__menu li:nth-child(3) {
        margin-right: 35px; /* Партнеры */
    }
    
    .header__menu li:nth-child(4) {
        margin-right: 25px; /* Медиа */
    }
    
    .header__menu li:nth-child(5) {
        margin-right: 0; /* О компании */
    }
}

@media (max-width: 1200px) {
    .header__menu {
        display: none;
    }
    
    .header__burger {
        display: flex;
        order: 3;
    }
    
    .header__logo {
        order: 1;
    }
    
    .header__contacts {
        order: 2;
        margin-left: auto;
        margin-right: 24px;
    }
    
    .header__telegram-wrapper {
        display: none;
    }
    
    .header__mobile-live-indicator {
        display: block;
    }
    
    /* Переключаем версии телефона */
    .header__phone--desktop {
        display: none;
    }
    
    .header__phone--mobile {
        display: flex;
    }
}

@media (max-width: 992px) {
    .header__contacts {
        gap: 24px;
        margin-right: 24px;
    }
}

@media (max-width: 768px) {
    .header__contacts {
        gap: 24px;
        margin-right: 24px;
    }
}

@media (max-width: 480px) {
    .header__contacts {
        gap: 4px;
    }
}

/* Дополнительные стили для статей */
@media (max-width: 768px) {
    .header__menu {
        gap: 15px;
    }
    
    .header__menu li a {
        padding: 5px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header__menu {
        gap: 5px;
    }
    
    .header__menu li a {
        padding: 4px 8px;
        font-size: 12px;
    }
}

/* Запрет прокрутки для тела страницы */
body.no-scroll {
    overflow: hidden;
}

/* Автоматический тултип для десктопного аватара */
.header__telegram-wrapper::after {
    content: 'Отвечу на вопросы';
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1003;
}

.header__telegram-wrapper::before {
    content: '';
    position: absolute;
    top: calc(100% + 2px);
    right: 20px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1003;
}

/* Класс для показа десктопного тултипа */
.header__telegram-wrapper.show-desktop-tooltip::after,
.header__telegram-wrapper.show-desktop-tooltip::before {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Дополнительное правило для hover "Медиа" и "О компании" */
.header__dropdown:hover .header__dropdown-toggle,
.header__dropdown:hover .header__dropdown-toggle span {
    color: #FF6B00 !important;
}

/* Стили для секции формы обратной связи */
.contact-form {
    padding: 60px 40px 20px;
    background: #f9f9f9;
}

.contact-form__container {
    max-width: 840px;
    margin: 0 auto;
}

.contact-form__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form__content::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 1;
}

.contact-form__left {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.contact-form__right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-form__title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000000;
    font-weight: 400;
}

.contact-form__form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group {
    width: 100%;
    margin-bottom: 25px;
    position: relative;
}

.form-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #000000;
    border-radius: 0;
    font-size: 16px;
    outline: none;
    /*transition: all 0.3s ease;*/
    background-color: transparent;
    margin-bottom: 5px;
    font-weight: 400;
    line-height: 1.6;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-bottom-color: #FF6B00;
    /*box-shadow: none;*/
}

.form-input::placeholder {
    color: #999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-input:focus::placeholder {
    opacity: 0.7;
    transform: translateY(-10px);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: #FF6B00;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #FF6B00;
    border-color: #FF6B00;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.privacy-link {
    color: #FF6B00;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-button {
    background-color: #FF6B00;
    color: #FFFFFF;
    font-size: 16px;
    padding: 15px 30px;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-align: center;
    width: auto;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #E55D00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

.phone-image-container {
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
}

.phone-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

@media (max-width: 992px) {
    .contact-form__content {
        flex-direction: column;
    }
    
    .contact-form__left {
        max-width: 100%;
    }
    
    .contact-form__right {
        justify-content: center;
        margin-top: 30px;
    }
    
    .phone-image-container {
        max-width: 300px;
    }
    
    .contact-form__title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 60px 40px;
    }
    
    .contact-form__content {
        padding: 40px 25px;
    }
    
    .contact-form__right {
        margin-top: 25px;
    }
    
    .phone-image-container {
        max-width: 200px;
    }
    
    .contact-form__title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .form-input {
        padding: 12px 0;
        font-size: 14px;
    }
    
    .submit-button {
        font-size: 14px;
        padding: 12px 24px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 20px 20px 40px;
    }
    
    .contact-form__content {
        padding: 40px;
        border-radius: 12px;
    }
    
    .contact-form__right {
        margin-top: 20px;
    }
    
    .phone-image-container {
        max-width: 180px;
    }
    
    .contact-form__title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .checkbox-text {
        font-size: 12px;
    }
    
    .submit-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}