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

body {
    font-family: "Inter", sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Background */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-size: 200% 200%;
    animation: gradient-shift 10s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Particles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ff6d5a;
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

/* Glass Card Effect */
.glass-card {
    background: rgba(45, 45, 45, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 109, 90, 0.2);
    border-color: #ff6d5a;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #ff6d5a;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #ff5a47;
    transform: scale(1.05);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #ff6d5a;
}

.pulse-button {
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(255, 109, 90, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(255, 109, 90, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 109, 90, 0.8); }
    100% { box-shadow: 0 0 20px rgba(255, 109, 90, 0.5); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
}

.section-header p {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    border-radius: 50px;
    padding: 10px 20px;
    opacity: 0;
    transform: translate(-50%, -100px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.main-header.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

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

.header-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.header-nav {
    display: flex;
    gap: 24px;
}

.header-nav a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #ff6d5a;
}

.header-button {
    padding: 12px 24px;
    font-size: 1rem;
}

/* Hamburger */
.hamburger-button {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(45,45,45,0.4);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-button span {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-button.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    margin: 0 10px;
    background: rgba(45,45,45,0.95);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 16px;
    z-index: 1200;
}

.mobile-menu a,
.mobile-menu button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 12px;
    color: #fff;
    text-decoration: none;
    background: transparent;
}

.mobile-menu a:hover {
    color: #ff6d5a;
}

.mobile-menu.open {
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    color: #9ca3af;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Features Section */
.features-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

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

.feature-card {
    padding: 32px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    color: #ff6d5a;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: #4ade80;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.feature-card p {
    color: #d1d5db;
}

/* Dashboard Section */
.dashboard-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.stat-card {
    padding: 32px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6d5a;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.stat-description {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* n8n Section */
.n8n-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.n8n-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

.n8n-text {
    flex: 1;
}

.n8n-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.n8n-text p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 16px;
}

.n8n-image {
    flex: 1;
    text-align: center;
}

.n8n-image img {
    max-width: 100%;
    border-radius: 16px;
}

/* Sticker Screenshots Section */
.screenshots-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.screenshots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -50px; /* Negative gap for overlapping */
    flex-wrap: wrap;
}

.screenshot-sticker {
    position: relative;
    width: 400px; /* Increased size */
    height: 280px; /* Increased size */
    background-color: #333;
    border: 10px solid white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, z-index 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #ccc;
}

.screenshot-sticker img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screenshot-sticker:hover {
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 100;
}

.screenshot-sticker:nth-child(1) {
    transform: rotate(-8deg);
    z-index: 1;
}
.screenshot-sticker:nth-child(2) {
    transform: translateY(20px) rotate(4deg);
    z-index: 2;
}
.screenshot-sticker:nth-child(3) {
    transform: translateY(-10px) rotate(-5deg);
    z-index: 3;
}

/* Use Cases Section */
.use-cases-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 24px;
}

.use-case-card {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #ff6d5a;
    transition: transform 0.4s ease;
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.1);
}

.use-case-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.use-case-card p {
    color: #d1d5db;
    font-size: 0.9rem;
}

.use-case-card.wide {
    grid-column: span 2;
}

@media (max-width: 992px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .use-case-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    .use-case-card.wide {
        grid-column: span 1;
    }
}

/* Models Section */
.models-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
    overflow: hidden;
}

.models-ticker {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: rgba(45, 45, 45, 0.2);
}

.models-track {
    display: flex;
    width: fit-content;
    animation: ticker-scroll 40s linear infinite;
}

.model-item {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #d1d5db;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Pricing Section */
.pricing-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
    background: rgba(45, 45, 45, 0.3);
}

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

.pricing-card {
    padding: 32px;
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    border-color: #ff6d5a;
    box-shadow: 0 0 30px rgba(255, 109, 90, 0.3);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6d5a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.plan-description {
    color: #d1d5db;
    margin-bottom: 24px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6d5a;
    margin-bottom: 32px;
}

.price span {
    font-size: 1.125rem;
    color: #9ca3af;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #d1d5db;
}

.features-list li::before {
    content: "✓";
    color: #4ade80;
    font-weight: bold;
    margin-right: 12px;
}

.plan-button {
    width: 100%;
    padding: 16px;
    border: 2px solid #ff6d5a;
    background: transparent;
    color: #ff6d5a;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: #ff6d5a;
    color: white;
}

.plan-button.primary {
    background: #ff6d5a;
    color: white;
}

.plan-button.primary:hover {
    background: #ff5a47;
}

/* Success Stories Section */
.success-stories-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.story-sticker {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.story-company {
    font-size: 1.25rem;
    font-weight: 700;
}

.story-gain {
    background-color: #4ade80;
    color: #1a1a1a;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.story-sticker p {
    font-size: 1rem;
    color: #d1d5db;
    flex-grow: 1;
    margin-bottom: 24px;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #9ca3af;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

/* Floating TG Button */
.floating-tg-button {
    position: fixed;
    bottom: 30px; /* Вернул в нижний правый угол */
    right: 30px;
    width: 60px;
    height: 60px;
    background: #ff6d5a; /* Оранжевый цвет */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 109, 90, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(0);
    opacity: 0;
}

.floating-tg-button.visible {
    transform: scale(1);
    opacity: 1;
}

.floating-tg-button:hover {
    transform: scale(1.1);
}

.floating-tg-button svg {
    width: 32px;
    height: 32px;
}

/* Floating WhatsApp Button */
.floating-whatsapp-button {
    position: fixed;
    bottom: 95px; /* Над кнопкой TG (60px высота + 5px отступ + 30px снизу) */
    right: 30px; /* Тот же правый отступ, что и у TG */
    width: 60px;
    height: 60px;
    background: #25D366; /* WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1001; /* Выше TG кнопки */
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(0);
    opacity: 0;
}

.floating-whatsapp-button.visible {
    opacity: 1;
    transform: scale(1);
}

.floating-whatsapp-button:hover {
    transform: scale(1.1);
}

.floating-whatsapp-button svg {
    width: 32px;
    height: 32px;
}

/* Scroll-to-top button */
.scroll-to-top-button {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Переместил налево */
    width: 60px;
    height: 60px;
    background: #ff6d5a; /* Оранжевый цвет */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 109, 90, 0.3);
    z-index: 999; /* Чуть ниже TG кнопки */
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.scroll-to-top-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(255, 109, 90, 0.5);
}

.scroll-to-top-button svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .scroll-to-top-button {
        left: 30px; /* Подвинуть для мобильных, чтобы не перекрывалась */
        bottom: 30px; /* Вернуть на стандартную позицию */
    }
}

/* How We Work Section */
.how-we-work-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.work-steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.work-step {
    text-align: center;
    max-width: 250px;
}

.step-number {
    width: 50px;
    height: 50px;
    border: 2px solid #ff6d5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6d5a;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-content p {
    color: #d1d5db;
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 2.5rem;
    color: #ff6d5a;
    margin-top: 50px;
}

/* Training Section */
.training-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.training-card {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 48px;
}

.training-text {
    flex: 1;
}

.training-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.training-text p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 24px;
}

.training-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.training-text li {
    margin-bottom: 12px;
    color: #d1d5db;
}

.training-image {
    flex: 1;
    max-width: 400px;
}

.training-image img {
    width: 100%;
    border-radius: 16px;
}


/* CTA Section */
.cta-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.cta-card {
    background: linear-gradient(to right, #ff6d5a, #ff5a47);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    padding: 48px 0;
    border-top: 1px solid #2d2d2d;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.footer-brand p {
    color: #d1d5db;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

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

.footer-links a:hover {
    color: #ff6d5a;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

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

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

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .features-grid, .cases-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "main" "case2" "case3";
    }
    
    .n8n-content {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 16px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    /* Hide desktop nav, show hamburger */
    .header-nav {
        display: none;
    }
    .header-button {
        display: none;
    }
    .hamburger-button {
        display: inline-flex;
    }

    /* How We Work: mobile layout */
    .work-steps-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .step-arrow {
        display: none;
    }
    .work-step {
        display: flex;
        align-items: center;
        gap: 16px;
        max-width: 100%;
        text-align: left;
        background: rgba(45, 45, 45, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 16px;
    }
    .step-number {
        margin: 0;
        min-width: 50px;
    }
    .step-content {
        flex: 1;
    }

    /* Training section: mobile layout */
    .training-card {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        padding: 24px;
    }
    .training-text h2 {
        font-size: 1.75rem;
    }
    .training-text p {
        font-size: 1rem;
    }
    .training-text ul {
        margin-bottom: 24px;
    }
    .training-image {
        max-width: 100%;
        margin: 0 auto;
    }
    .training-image img {
        width: 100%;
        height: auto;
    }
    .training-text .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .cta-card {
        padding: 32px 24px;
    }

    .cta-card h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 32px 24px;
    }
}

/* Feedback Section */
.feedback-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.feedback-card {
    padding: 48px;
}

.feedback-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

.feedback-usp {
    flex: 1;
}

.feedback-usp h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.feedback-usp .highlight {
    color: #4ade80;
}

.feedback-usp p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 24px;
}

.discount-badge {
    background: linear-gradient(to right, #4ade80, #3cb05f);
    color: #1a1a1a;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    font-size: 1.125rem;
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.3);
}

.feedback-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.feedback-form-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

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

.feedback-form label {
    display: block;
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 8px;
}

.feedback-form input[type="text"],
.feedback-form input[type="email"],
.feedback-form textarea,
.feedback-form input[type="tel"] {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(45, 45, 45, 0.6);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feedback-form input[type="text"]:focus,
.feedback-form input[type="email"]:focus,
.feedback-form textarea:focus,
.feedback-form input[type="tel"]:focus {
    border-color: #ff6d5a;
    box-shadow: 0 0 0 3px rgba(255, 109, 90, 0.3);
}

.feedback-form textarea {
    resize: vertical;
    min-height: 120px;
}

.feedback-form .cta-button {
    width: auto;
    margin: 10px auto 0 auto; /* Центрирование кнопки */
    margin-top: 10px;
}

@media (max-width: 768px) {
    .feedback-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    .feedback-usp,
    .feedback-form-wrapper {
        flex: none;
        width: 100%;
    }
    .feedback-usp h2 {
        font-size: 2rem;
    }
    .feedback-usp p {
        font-size: 1rem;
    }
    .discount-badge {
        font-size: 1rem;
        padding: 10px 20px;
    }
    .feedback-form-wrapper h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        justify-content: space-between; /* Чтобы бургер был справа, а лого слева */
    }
    .header-button {
        display: none; /* Скрываем кнопки в хедере на мобильных */
    }
    .mobile-menu button {
        margin-top: 10px; /* Отступ между кнопками в моб. меню */
    }
    .mobile-menu a,
    .mobile-menu button {
        text-align: center; /* Центрируем кнопки и ссылки в моб. меню */
    }
}

/* Privacy Policy Page */
.privacy-policy-section {
    position: relative;
    z-index: 10;
    padding: 120px 0 80px 0;
}

.privacy-content {
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: white;
}

.privacy-content p, .privacy-content li {
    color: #d1d5db;
    margin-bottom: 16px;
}

.privacy-content ul {
    list-style-position: inside;
    padding-left: 20px;
}

.privacy-content a {
    color: #ff6d5a;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    z-index: 1100;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.visible {
    bottom: 0;
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-banner p {
    color: #d1d5db;
    margin: 0;
}

.cookie-banner a {
    color: #ff6d5a;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-banner .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
}
