/* === CSS Variables для легкой кастомизации === */
:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --accent: #F59E0B;
    --accent-dark: #D97706;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-dark: #111827;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* === Reset и базовые стили === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* === Error Modal === */
.error-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

.error-modal-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: slideUp 0.3s ease;
}

.error-modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.error-modal-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.error-modal-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.5;
}

.error-modal-button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.error-modal-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.error-modal-button:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === Utility Classes === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
    line-height: 1.2;
}

/* === Header === */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
}

.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    min-width: 80px;
}

.lang-switcher-btn:hover {
    border-color: #D1D5DB;
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

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

.lang-flag {
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.lang-code {
    font-weight: 600;
    color: var(--text-dark);
}

.lang-switcher-btn svg {
    margin-left: auto;
    color: var(--text-muted);
    transition: var(--transition);
}

.lang-switcher-btn:hover svg {
    color: var(--text-dark);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    min-width: 160px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1001;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--bg-light);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--bg-light);
}

.lang-option.active {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
}

.lang-option-flag {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.lang-option-name {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.lang-option.active .lang-option-name {
    color: var(--text-dark);
    font-weight: 600;
}

.language-switcher select {
    display: none;
}

/* === Hero Section === */
.hero {
    padding: 80px 0;
    background: var(--white);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

.hero-content--form {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 32px;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.badge,
.hero-badge {
    display: inline-block;
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
}

.hero-trust-head {
    margin-bottom: 20px;
}

.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0;
    justify-content: flex-start;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    line-height: 1.2;
}

.hero-trust-pill--primary {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
}

.hero-trust-pill--soft {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}

.hero-trust-icon {
    flex-shrink: 0;
}

.hero-trust-note {
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-light);
    margin: 0 0 24px;
    max-width: 54ch;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--text-dark);
}

.hero-title-line {
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 32px;
    color: var(--text-light);
    line-height: 1.4;
}

.hero-benefits {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 18px;
    color: var(--text-dark);
}

.hero-benefits li::before {
    content: "•";
    color: var(--accent);
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
}

.hero-pricing {
    margin-bottom: 24px;
}

.hero-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.hero-price-row + .hero-price-row {
    margin-top: 6px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
    text-transform: lowercase;
}

.hero-variants {
    margin-bottom: 24px;
}

.hero-variants-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-variants-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.hero-variants-list {
    display: grid;
    gap: 10px;
}

.variant-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius);
    background: var(--white);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.variant-option input {
    accent-color: var(--accent);
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.variant-option input:checked {
    accent-color: var(--accent);
}

.variant-option:has(input:checked) {
    border-color: var(--accent);
    background: rgba(124, 58, 237, 0.05);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.variant-option:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.hero-cta-btn {
    width: 100%;
    max-width: 320px;
}

.hero-form {
    width: 100%;
}

.hero-form .form-wrapper {
    max-width: 480px;
    margin: 0;
    padding: 32px;
}

.hero-media {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
}

.hero-media-img {
    width: min(390px, 33vw);
    height: auto;
    opacity: 0.9;
    transform: translate(-80px, -30px);
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.12));
}

.hero-text,
.hero-form {
    position: relative;
    z-index: 2;
}

.hero-form {
    margin-left: 64px;
}

.hero-form .form-header {
    margin-bottom: 20px;
}

.hero-form .form-title {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
}

.hero-form .form-title-line {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-form .form-discount {
    gap: 16px;
    margin-bottom: 20px;
}

.hero-form .discount-badge {
    font-size: 18px;
    padding: 8px 16px;
}

.hero-form .form-price-old {
    font-size: 16px;
}

.hero-form .form-price-new {
    font-size: 28px;
}

.hero-form .form-group {
    margin-bottom: 16px;
}

.hero-form .form-group input {
    padding: 12px 14px;
    font-size: 14px;
}

.hero-form .form-group label {
    font-size: 13px;
}

.hero-form .submit-btn {
    padding: 16px;
    font-size: 16px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.hero-cta-row .hero-cta-btn,
.hero-countdown {
    flex: 1 1 0;
}

.hero-cta-row .hero-cta-btn {
    max-width: none;
}

.hero-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    background: var(--bg-dark);
    color: var(--white);
    text-align: center;
}

.hero-countdown-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.hero-countdown .countdown {
    gap: 8px;
    margin: 0;
}

.hero-countdown .countdown-item span:first-child {
    font-size: 24px;
    color: var(--accent);
}

.hero-countdown .countdown-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-countdown .countdown-separator {
    font-size: 18px;
}

.hero-form .form-trust-badges {
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
}

.hero-form .form-trust-badge-item {
    height: 40px;
    min-width: 80px;
    padding: 6px 10px;
}

.hero-form .form-trust-badge-item img {
    max-width: 90px;
    height: 34px;
}

.hero-form .trust-badges {
    margin-top: 16px;
    gap: 10px;
}

.hero-cta {
    margin-top: 32px;
    margin-bottom: 32px;
}

.price-tag {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.price-old {
    font-size: 20px;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-new {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
}

.hero .price-new {
    color: var(--accent);
}

.hero .price-old {
    color: var(--text-muted);
    opacity: 0.7;
}

.social-proof {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

.proof-item:hover {
    opacity: 1;
    transform: translateX(4px);
    color: var(--text-dark);
}

.proof-icon {
    font-size: 16px;
}

.proof-link-hint {
    margin-left: auto;
    opacity: 0.7;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.cta-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 18px 48px;
    border-radius: var(--border-radius);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.cta-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-btn:active {
    transform: translateY(-1px);
}

/* === Problems Section === */
.problems {
    padding: 80px 0;
    background: var(--bg-light);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.problem-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.problem-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.problem-item:hover .problem-image img {
    transform: scale(1.1);
}

.problem-content {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.problem-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.problem-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Адаптивность для Problems */
@media (max-width: 1200px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }
}

/* === Solution Section === */
.solution {
    padding: 80px 0;
    background: var(--white);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.solution-text {
    animation: fadeInLeft 0.8s ease;
}

.solution-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.2;
}

.benefits-list {
    list-style: none;
    margin-top: 32px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateX(8px);
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 16px;
    opacity: 0.9;
}

.solution-image {
    position: relative;
    width: 100%;
    animation: fadeInRight 0.8s ease;
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.solution-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: bounceIn 0.8s ease 0.5s backwards;
}

.solution-badge::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 900;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
    70% {
        transform: translateX(-50%) scale(0.9);
    }
    100% {
        transform: translateX(-50%) scale(1);
    }
}

.solution-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* === How It Works Section === */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.step-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}



.step-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.step-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}


/* === Use Cases GIF Section === */
.use-cases-gif {
    padding: 80px 0;
    background: var(--white);
}

.section-title-red {
    color: #DC2626;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.use-case-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.use-case-gif-wrapper {
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    margin-bottom: 20px;
}

.use-case-gif-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.use-case-gif-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.use-case-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === Reviews Section === */
.reviews {
    padding: 80px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.review-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.review-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.review-rating {
    color: var(--accent);
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.review-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: auto;
}

.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    padding: 20px 0;
    width: 100%;
}

.reviews-carousel {
    display: flex;
    gap: 24px;
    animation: scrollCarousel 30s linear infinite;
    width: fit-content;
    will-change: transform;
}

.reviews-carousel:hover {
    animation-play-state: paused;
}

.review-carousel-item {
    flex: 0 0 380px;
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-carousel-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-carousel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-carousel-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.review-carousel-info {
    flex: 1;
}

.review-carousel-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.review-carousel-rating {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 4px;
}

.review-carousel-location {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.7;
}

.review-carousel-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
    flex: 1;
}

.review-carousel-date {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: auto;
}

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

/* === Urgency Section === */
.urgency {
    padding: 60px 0;
    background: var(--bg-dark);
    color: var(--white);
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.urgency-box h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
}

.urgency-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.urgency-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.urgency-label {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 4px;
}

.countdown-separator {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 4px;
}

.stock-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.stock-icon {
    font-size: 24px;
}

.stock-text {
    font-size: 18px;
}

.stock-text strong {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin: 0 4px;
}

/* === Order Form Section === */
.order-form {
    padding: 80px 0;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.form-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.discount-badge {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 800;
}

.form-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-price-old {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.form-price-new {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -8px;
    left: 12px;
    font-size: 12px;
    color: var(--primary);
    background: var(--white);
    padding: 0 4px;
}

.form-group input.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.error:focus {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.form-group input.error + label {
    color: var(--danger);
}

/* Phone country selector styles */
.form-group .phone-wrapper {
    display: flex;
    gap: 8px;
    align-items: stretch;
    position: relative;
    width: 100%;
    margin-top: 8px; /* Add space for label above */
}

.form-group .phone-wrapper--pl .phone-prefix {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    background: var(--bg-light);
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.form-group .phone-wrapper--pl .phone-prefix-flag {
    font-size: 1.1em;
    line-height: 1;
}

.form-group .phone-wrapper--pl #phone {
    flex: 1;
    min-width: 0;
}

.form-group #phone-country {
    flex: 0 0 auto;
    min-width: 220px;
    width: 220px;
    max-width: 220px;
    padding: 16px 40px 16px 16px;
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius);
    font-size: 15px;
    line-height: 1.5;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    color: var(--text-dark);
    font-weight: 500;
    z-index: 1;
}

.form-group #phone-country:hover {
    border-color: var(--primary-light);
}

.form-group #phone-country:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group #phone-country option {
    padding: 8px;
    font-size: 15px;
    line-height: 1.5;
}

/* Make dial code bold in select - use JavaScript to format */
.form-group #phone-country {
    font-weight: 500;
}

/* Style phone input placeholder */
.form-group #phone::placeholder {
    font-weight: normal;
    color: var(--text-light);
}

/* Make dial code bold in placeholder using CSS */
.form-group #phone {
    position: relative;
}

/* Create overlay for bold dial code in placeholder */
.form-group #phone-wrapper-dial-code {
    position: absolute;
    left: 16px;
    top: 16px;
    pointer-events: none;
    font-weight: bold;
    color: var(--text-light);
    font-size: 16px;
    z-index: 2;
    display: none;
}

.form-group #phone:placeholder-shown:not(:focus) ~ #phone-wrapper-dial-code {
    display: block;
}

.form-group #phone-country:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group #phone {
    flex: 1;
}

@media (max-width: 768px) {
    .form-group .phone-wrapper {
        flex-direction: column;
    }
    
    .form-group #phone-country {
        min-width: 100%;
        width: 100%;
    }
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 16px;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition);
}

/* Phone wrapper label positioning - label is after phone-wrapper */
.form-group .phone-wrapper + label {
    position: absolute;
    top: -8px;
    left: 12px;
    font-size: 12px;
    color: var(--text-light);
    background: var(--white);
    padding: 0 4px;
    pointer-events: none;
    transition: var(--transition);
    z-index: 10;
}

/* When phone input has value or is focused, change label color */
.form-group .phone-wrapper:has(#phone:focus) + label,
.form-group .phone-wrapper:has(#phone:not(:placeholder-shown)) + label {
    color: var(--primary);
}

.field-error {
    display: block;
    color: var(--danger);
    font-size: 14px;
    margin-top: 8px;
    padding-left: 4px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--bg-light);
}

.form-trust-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    min-width: 100px;
    flex: 0 0 auto;
    padding: 8px 12px;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.form-trust-badge-item:hover {
    background: var(--bg-light);
}

.form-trust-badge-item img {
    max-width: 120px;
    width: auto;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0;
    filter: grayscale(0%);
    opacity: 1;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* === FAQ Section === */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: #D1D5DB;
}

.faq-question {
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    color: var(--text-dark);
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
}

.faq-item:hover .faq-question::after {
    background: #E5E7EB;
    color: var(--text-dark);
}

.faq-item.active {
    border-color: #D1D5DB;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    background: var(--text-dark);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* === Footer === */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center; /* лого, ссылки и соцсети — одна горизонталь по центру блока */
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-left {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 28px;
}

.footer-brand {
    display: block;
    flex-shrink: 0;
    line-height: 0;
    transition: opacity 0.2s ease;
}

.footer-brand:hover {
    opacity: 0.9;
}

.footer-brand:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
    border-radius: 6px;
}

/* Основной логотип в футере — крупно; иконки соцсетей ниже — компактные */
.footer-brand-logo {
    display: block;
    height: 104px;
    width: auto;
    max-width: min(560px, 92vw);
    object-fit: contain;
    object-position: left center;
}

.footer-left-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

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

.footer-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: var(--transition);
    flex-shrink: 0;
}

.social-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer-copyright {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* === Sticky CTA Button === */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: slideInUp 0.3s ease;
}

.sticky-cta .cta-btn {
    padding: 16px 32px;
    font-size: 18px;
    box-shadow: var(--shadow-xl);
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-content--form {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-media {
        position: static;
        order: 2;
        margin: 0;
        padding: 0;
    }

    .hero-form {
        order: 3;
    }

    .hero-form .form-wrapper {
        max-width: 100%;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .review-carousel-item {
        flex: 0 0 320px;
    }
    
    /* Секции отступы */
    .hero,
    .problems,
    .solution,
    .how-it-works,
    .reviews,
    .urgency,
    .order-form,
    .faq {
        padding: 60px 0;
    }
}

@media (max-width: 1024px) {
    .hero-media-img {
        width: min(315px, 90vw);
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 16px;
    }
    
    /* HERO - 1 КОЛОНКА НА МОБИЛЬНЫХ */
    .hero {
        padding: 40px 0;
        overflow: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 24px;
        padding: 0 16px;
    }
    
    .hero-content--form {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
    
    .language-switcher {
        top: 16px;
        right: 16px;
    }
    
    .lang-switcher-btn {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 70px;
    }
    
    .lang-flag {
        font-size: 18px;
    }
    
    .lang-dropdown {
        min-width: 140px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    /* Левая колонка с товаром */
    .hero-left {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-product-image {
        max-width: 100%;
        height: auto;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }

    .hero-benefits li {
        font-size: 16px;
    }

    .variant-option {
        font-size: 15px;
    }
    
    .solution-title {
        font-size: 32px;
    }
    
    .review-carousel-item {
        flex: 0 0 340px;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-wrapper {
        padding: 32px 24px;
    }
    
    .form-title {
        font-size: 24px;
    }

    .hero-form .form-wrapper {
        padding: 24px 16px;
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-form .form-title {
        font-size: 22px;
    }

    .hero-form .form-price-new {
        font-size: 24px;
    }
    
    .hero-form {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
    
    .hero-content--form {
        padding: 0 16px;
        display: flex;
        justify-content: center;
    }
    
    /* Фикс счетчика - уменьшаем чтобы влезал */
    .countdown {
        gap: 4px;
    }
    
    .countdown-item {
        min-width: auto;
        padding: 12px 8px;
    }
    
    .countdown-item span:first-child {
        font-size: 24px;
    }
    
    .countdown-item span:last-child {
        font-size: 10px;
    }
    
    .form-trust-badges {
        gap: 12px;
    }
    
    .form-trust-badge-item img {
        max-height: 45px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-social {
        justify-content: flex-start;
        align-self: stretch;
    }
    
    .social-link {
        width: 22px;
        height: 22px;
    }
    
    .social-link img {
        width: 22px;
        height: 22px;
    }

    .footer-brand-logo {
        height: 92px;
        max-width: min(520px, 92vw);
    }
    
    .countdown-item span:first-child {
        font-size: 28px;
    }
    
    .sticky-cta {
        bottom: 16px;
        right: 16px;
    }
    
    .sticky-cta .cta-btn {
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 12px;
        right: 12px;
    }
    
    .lang-switcher-btn {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 60px;
    }
    
    .lang-flag {
        font-size: 16px;
    }
    
    .lang-code {
        font-size: 12px;
    }
    
    .lang-dropdown {
        min-width: 120px;
        max-height: 250px;
    }
    
    .lang-option {
        padding: 10px 12px;
    }
    
    .lang-option-name {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .review-carousel-item {
        flex: 0 0 280px;
        padding: 24px;
    }
    
    .review-carousel-photo {
        width: 48px;
        height: 48px;
    }
    
    /* FAQ */
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .form-wrapper {
        padding: 24px 16px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .discount-badge {
        font-size: 20px;
        padding: 10px 20px;
    }
    
    .form-price-new {
        font-size: 28px;
    }
    
    .form-trust-badges {
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .form-trust-badge-item img {
        max-height: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-social {
        justify-content: flex-start;
        align-self: stretch;
        margin-top: 16px;
    }
    
    .social-link {
        width: 20px;
        height: 20px;
    }
    
    .social-link img {
        width: 20px;
        height: 20px;
    }

    .footer-brand-logo {
        height: 84px;
        max-width: min(480px, 94vw);
    }
    
    /* Показываем sticky button на мобильных */
    .sticky-cta-mobile {
        display: block !important;
    }
    
    /* Solution section адаптация */
    .solution-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .solution-badge {
        font-size: 16px;
        padding: 10px 24px;
    }
    
    .solution-desc {
        font-size: 16px;
    }
    
    /* Use Cases адаптация */
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Benefits адаптация */
    .benefit-item {
        padding: 16px;
    }
    
    .benefit-icon {
        font-size: 28px;
    }
}

/* === Sticky CTA Button для мобильных === */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
    padding: 12px 16px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: slideUpSticky 0.3s ease;
}

@keyframes slideUpSticky {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-cta-mobile .cta-btn-mobile {
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sticky-cta-mobile .cta-btn-mobile:active {
    transform: scale(0.98);
}

.sticky-cta-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    color: white;
    font-size: 14px;
}

.sticky-cta-price-old {
    text-decoration: line-through;
    opacity: 0.6;
}

.sticky-cta-price-new {
    font-size: 20px;
    font-weight: 900;
    color: var(--accent);
}


/* === Desktop (993px+) === */
@media (min-width: 993px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        padding: 0 32px;
    }
    
    .hero-content--form {
        grid-template-columns: 1.1fr 1fr;
        gap: 48px;
    }
}
/* === Полностью адаптивный жирный вариант === */

@media (max-width: 1200px) {
    /* Главный экран */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .hero-trust-bar {
        justify-content: center;
    }

    .hero-form {
        width: 100%;
        margin-left: 0;
        max-width: 480px;
    }
    .hero-media-img {
        width: min(300px, 60vw);
        transform: translate(0,0);
        margin: 0 auto;
    }

    /* Проблемы */
    .problems-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
        justify-items: center;
    }

    /* Решение */
    .solution-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }
    .solution-image img {
        margin: 0 auto;
        max-width: 100%;
        height: auto;
    }

    /* Как это работает */
    .how-it-works .steps {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    /* Кейсы использования */
    .use-cases-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    /* Отзывы */
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    .reviews-carousel-wrapper {
        overflow-x: visible;
    }
    .reviews-carousel {
        flex-wrap: wrap;
        justify-content: center;
        animation: none;
    }
}

/* Более мелкие экраны */
@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 18px; }
    .hero-benefits li { font-size: 16px; }
    .hero-cta-btn { max-width: 100%; }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .benefit-icon { margin-bottom: 12px; }

    .urgency-items { grid-template-columns: 1fr !important; }
}

/* Смартфоны */
@media (max-width: 576px) {
    .hero-title { font-size: 28px; line-height: 1.2; }
    .hero-subtitle { font-size: 16px; }
    .hero-media-img { width: min(200px, 70vw); }

    .section-title,
    .section-title-red { font-size: 28px; }

    .form-wrapper { padding: 24px; max-width: 100%; margin: 0 auto; }
    .form-title { font-size: 24px; text-align: center; }
    .form-price-new { font-size: 28px; text-align: center; }

    
    .review-carousel-item { flex: 0 0 260px; padding: 20px; margin: 0 auto; }
}

/* Малые экраны, до 480px */
@media (max-width: 480px) {
    .hero-cta-row {
        flex-direction: column;
        gap: 12px;
    }

    .trust-badges,
    .form-trust-badges {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .lang-switcher-btn, .variant-option {
        font-size: 12px;
        padding: 6px 10px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 14px 24px;
        width: 100%;
    }
}

/* ==== MOBILE FIXES ==== */
@media (max-width: 768px) {
    .hero-content,
    .hero-content--form {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-form-wrapper {
        order: 2;
    }
}

/* Reviews carousel mobile */
@media (max-width: 768px) {
    .reviews-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .reviews-carousel {
        animation: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .reviews-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .review-carousel-item {
        flex: 0 0 85%;
        max-width: 340px;
        scroll-snap-align: start;
    }
}

/* Quantity Selector */
.quantity-selector {
    margin: 24px 0;
}

.quantity-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

.quantity-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.quantity-btn {
    position: relative;
    padding: 16px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
}

.quantity-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.quantity-btn.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.qty-discount {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.qty-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.quantity-btn.active .qty-price {
    color: white;
}

.qty-unit {
    font-size: 12px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .quantity-buttons {
        grid-template-columns: 1fr;
    }
    
    .quantity-btn {
        padding: 20px;
    }
}


/* Works Everywhere Section */
.works-everywhere {
    padding: 80px 0;
    background: white;
}

.works-everywhere .section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.work-item {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.work-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .works-everywhere .section-title {
        font-size: 36px;
    }
}


/* How it Works - Cards */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* UK Price */
.price-uk {
    color: var(--primary);
    font-size: 0.9em;
    font-weight: 600;
}


/* Mobile Trust Badges - Single Row */
@media (max-width: 768px) {
    .form-trust-badges {
        display: flex;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
        margin: 15px auto;
        max-width: 100%;
    }
    
    .form-trust-badge-item {
        flex-shrink: 0;
    }
    
    .form-trust-badge-item img {
        max-width: 50px !important;
        max-height: 30px !important;
        width: auto;
        height: auto;
    }
    
    /* Trust badges під формою */
    .trust-badges {
        display: flex;
        flex-direction: row !important;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .badge-item {
        font-size: 12px;
    }
}



/* Desktop Infinite Carousel */
.reviews-carousel-wrapper {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.reviews-carousel-wrapper::-webkit-scrollbar {
    height: 6px;
}

.reviews-carousel-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reviews-carousel-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.reviews-carousel-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.reviews-carousel {
    display: flex !important;
    flex-wrap: nowrap !important;
}
/* Pure CSS Infinite Carousel - SMOOTH */

.reviews-carousel-wrapper {
    overflow: hidden !important;
    position: relative;
    width: 100%;
}

.reviews-carousel {
    display: flex !important;
    gap: 24px;
    animation: scroll-reviews 40s linear infinite;
    will-change: transform;
}

/* Duplicate reviews in HTML first! */
.reviews-carousel .review-carousel-item {
    flex: 0 0 auto;
    width: 350px;
}

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

/* Pause on hover */
.reviews-carousel:hover {
    animation-play-state: paused;
}

/* Mobile */
@media (max-width: 768px) {
    .reviews-carousel {
        animation: scroll-reviews 30s linear infinite;
    }
    
    .reviews-carousel .review-carousel-item {
        width: 280px;
    }
}

/* Mobile Reviews - Keep Animation */
@media (max-width: 768px) {
    .reviews-carousel-wrapper {
        overflow: hidden !important;
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .reviews-carousel {
        animation: scroll-reviews 25s linear infinite !important;
    }
    
    .reviews-carousel .review-carousel-item {
        width: 280px;
    }
}

/* Fix Problem Images - Better Height */
.problem-image {
    height: 250px !important;
    min-height: 250px;
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile */
@media (max-width: 768px) {
    .problem-image {
        height: 220px !important;
        min-height: 220px;
    }
}

/* Fix Problem Cards - Equal Width */
.problem-item {
    max-width: 100% !important;
    width: 100% !important;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 24px;
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr !important;
    }
    
    .problem-item {
        max-width: 100%;
    }
}


/* Fix Problem Cards Width */
.problem-item {
    max-width: 100% !important;
    width: 100%;
}

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

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Problems Grid - 4 in One Row Desktop */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px;
}

@media (max-width: 1200px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr !important;
    }
}
