/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 3rem;
    margin-top: -1rem;
    color: #6b7280;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3b82f6;
}

.nav-cta {
    padding: 12px 24px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #1f2937;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #6b7280;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 1.5rem;
    font-size: 18px;
    padding: 18px 36px;
}

.hero-disclaimer {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 2.5rem 0;
}

/* Hero Visual Desktop - отображается только на десктопе справа */
.hero-visual-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Скрыть мобильную версию визуала на десктопе */
@media (min-width: 769px) {
    .hero-content .hero-visual {
        display: none;
    }
}

.demo-mockup {
    position: relative;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.demo-mockup:hover {
    transform: rotate(0deg);
}

.mockup-screen {
    width: 300px;
    height: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border: 8px solid #374151;
}

.mockup-header {
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 6px;
    margin-bottom: 15px;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-block {
    height: 30px;
    background: #e5e7eb;
    border-radius: 4px;
}

.mockup-block.small {
    height: 20px;
    width: 60%;
}

.timer-badge {
    position: absolute;
    top: -10px;
    right: -20px;
    background: #fbbf24;
    color: #92400e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f9fafb;
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto 3rem;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.comparison-table th {
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.problem-column {
    background: #fef2f2;
    color: #d73737;
    border-right: 1px solid #fecaca;
}

.solution-column {
    background: #f0fdf4;
    color: #39995d;
}

.comparison-table td {
    padding: 1.5rem;
    vertical-align: top;
    border-bottom: 1px solid #f3f4f6;
}

.problem-cell {
    background: #fefefe;
    color: #bf3636;
    border-right: 1px solid #fecaca;
}

.solution-cell {
    background: #fefffe;
    color: #329358;
    font-weight: 500;
}

.comparison-cta {
    text-align: center;
}

/* Мобильные карточки сравнения (скрыты по умолчанию) */
.comparison-mobile {
    display: none;
    gap: 1.5rem;
}

.comparison-card-problem,
.comparison-card-solution {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
}

.comparison-card-problem {
    border-left-color: #d73737;
}

.comparison-card-solution {
    border-left-color: #39995d;
}

.comparison-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.comparison-icon {
    font-size: 1.5rem;
}

.comparison-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.comparison-card-problem h3 {
    color: #d73737;
}

.comparison-card-solution h3 {
    color: #39995d;
}

.comparison-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    line-height: 1.5;
}

.comparison-card-list li:last-child {
    border-bottom: none;
}

/* Fast Development Accordion */
.fast-development-accordion {
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fast-dev-question {
    padding: 1rem 2rem;
    background: #fafbfc;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 1rem;
    color: #6b7280;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    text-align: center;
    position: relative;
}

.fast-dev-question:hover {
    background: #f8f9fa;
    color: #4b5563;
}

.fast-dev-arrow {
    position: absolute;
    right: 2rem;
    font-size: 0.875rem;
    color: #d1d5db;
    transition: transform 0.3s ease;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
}

.fast-development-accordion.active .fast-dev-arrow {
    transform: rotate(180deg);
}

.fast-dev-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
}

.fast-development-accordion.active .fast-dev-answer {
    border: 1px solid #f1f3f4;
    border-top: none;
}

.fast-development-accordion.active .fast-dev-question {
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #f1f3f4;
}

.fast-dev-content {
    padding: 1.5rem;
    text-align: center;
}

.fast-dev-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.fast-dev-content p:last-child {
    margin-bottom: 0;
}

/* Pricing list styles */
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.pricing-item:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.pricing-item.free-demo {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border-color: #10b981;
    border-width: 2px;
}

.pricing-item.free-demo:hover {
    background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
}

.pricing-service {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.pricing-cost {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.pricing-item.free-demo .pricing-cost {
    color: #059669;
    font-weight: 700;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f9fafb;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.pricing-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pricing-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.pricing-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.75rem;
    white-space: nowrap;
}

.pricing-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Demo card - выделяется особо */
.pricing-demo-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.pricing-demo-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pricing-demo-card .pricing-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-demo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.pricing-demo-price {
    font-size: 2rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 1rem;
}

.pricing-demo-description {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Examples Section */
.examples-section {
    padding: 80px 0;
    background: white;
}

.examples-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch; /* Сделать блоки одинаковой высоты */
}

.examples-cta {
    text-align: center;
    margin-top: 2rem;
}

.examples-grid > * {
    position: static;
    transform: none !important;
}

.examples-slider {
    position: relative;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(20px);
}

.slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.slide-caption {
    padding: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    background: #f9fafb;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Скрыть мобильные ссылки на десктопе */
.mobile-demo-link {
    display: none;
}

/* На десктопе описание в одну строку */
.caption-niche,
.caption-time {
    display: inline;
}

.caption-niche:after {
    content: " • ";
}

.slider-controls {
    position: absolute;
    top: 125px; /* Центр изображения (250px / 2) */
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    color: #374151;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.5);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Mobile demo button - hidden by default */
.mobile-demo-btn {
    display: none;
}

/* Slider indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.slider-indicator.active {
    background: #3b82f6;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.slider-indicator:hover:not(.active) {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.slider-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.slider-indicator.active::before {
    left: 100%;
}

/* Demo link styles */
.demo-link {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 12px;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.demo-link:hover .demo-overlay {
    opacity: 1;
}

.demo-button {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.demo-link:hover .demo-button {
    transform: translateY(0);
}

.demo-button:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Progress bar removed */

/* What's Included */
.what-included {
    display: flex;
    align-items: stretch; /* Сделать блоки одинаковой высоты */
}

.included-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 0px solid #e2e8f0;
    position: static;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.included-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

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

.included-card ul.bullet-list {
    list-style: disc inside;
    padding-left: 0;
}

.included-card li {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #374151;
}

.included-card ul.bullet-list li {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #374151;
    padding-left: 0.5rem;
}

.included-note {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.4;
}

/* Messenger Section */
.messenger-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.messenger-section .section-title {
    color: white;
}

.messenger-mockup {
    max-width: 600px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.messenger-header {
    background: #f3f4f6;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.messenger-avatar {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.messenger-title {
    font-weight: 600;
    color: #1f2937;
}

.messenger-status {
    font-size: 0.75rem;
    color: #22c55e;
    margin-left: auto;
}

.messenger-chat {
    padding: 1.5rem;
    background: #fafafa;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.message.client {
    justify-content: flex-end;
}

.message.support {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    font-size: 0.875rem;
    line-height: 1.4;
}

.message.client .message-bubble {
    background: #3b82f6;
    color: white;
    border-bottom-right-radius: 4px;
}

.message.support .message-bubble {
    background: #e5e7eb;
    color: #1f2937;
    border-bottom-left-radius: 4px;
}

.message-time {
    font-size: 0.75rem;
    color: #9ca3af;
    align-self: flex-end;
    margin-bottom: 2px;
}

.show-more-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.message-link {
    color: #3b82f6;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.message-link:hover {
    color: #1d4ed8;
}

.text-collapsed {
    color: #9ca3af;
    font-style: italic;
    font-size: 0.9em;
    opacity: 0.7;
    border-left: 3px solid #e5e7eb;
    padding-left: 0.5rem;
    margin-left: 0.5rem;
    display: inline-block;
    background: #f9fafb;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
}

.messenger-caption {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.messenger-cta {
    text-align: center;
}

/* Guarantees Section */
.guarantees-section {
    padding: 80px 0;
    background: white;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.guarantee-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
}

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

.guarantee-title {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

.guarantee-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.guarantees-legal {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-style: italic;
}

.guarantees-cta {
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1rem;
}

.faq-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.faq-content {
    flex: 1;
}

.faq-fear {
    font-weight: 600;
    color: #bf3636;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.faq-answer {
    color: #329358;
    font-weight: 500;
}

.faq-cta {
    text-align: center;
}

/* Final Section */
.final-section {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.final-content p {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.final-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.final-form input,
.final-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.final-form input::placeholder,
.final-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.final-form input:focus,
.final-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.final-form textarea {
    margin-bottom: 1.5rem;
    resize: vertical;
}

.final-form .btn-primary {
    width: 100%;
    font-size: 18px;
    padding: 18px;
}

.privacy-consent {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.4;
}

.privacy-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: white;
}

.final-confirmation {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    color: #1f2937;
}

.final-confirmation h3 {
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.final-confirmation p {
    color: #1f2937;
    margin: 0;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 2rem 0;
}

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

.footer-contacts p {
    margin: 0;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-legal p {
    margin: 0;
    font-size: 0.875rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Скрыть треугольник аккордеона на мобильном */
    .fast-dev-arrow {
        display: none;
    }
    
    /* Скрыть десктопную версию визуала на мобильном */
    .hero-visual-desktop {
        display: none;
    }
    
    /* Скрыть десктопные кнопки на мобильном */
    .slider-controls {
        display: none;
    }
    
    /* Мобильные ссылки демо */
    .mobile-demo-link {
        display: inline;
        color: #6b7280;
        text-decoration: underline;
        font-size: 0.875rem;
        font-weight: 600;
        flex-shrink: 0;
        transition: opacity 0.2s ease;
    }
    
    .mobile-demo-link:hover {
        opacity: 0.7;
    }
    
    /* Мобильная структура описания */
    .caption-niche,
    .caption-time {
        display: block;
    }
    
    /* Убрать разделитель в мобильной версии */
    .caption-niche:after {
        content: none;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .hero-grid,
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* На мобильном hero-content занимает всю ширину */
    .hero-content {
        display: flex;
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Скрыть таблицу на мобильном */
    .comparison-table-wrapper {
        display: none;
    }
    
    /* Показать мобильные карточки */
    .comparison-mobile {
        display: flex;
        flex-direction: column;
    }
    
    .guarantees-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Мобильные цены - 2 в ряд */
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-emoji {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .pricing-card h3 {
        font-size: 1.125rem;
    }
    
    .pricing-price {
        font-size: 1.25rem;
        white-space: nowrap;
    }
    
    .pricing-demo-card {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .pricing-demo-card .pricing-emoji {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-cta {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .final-content h2 {
        font-size: 2rem;
    }
    
    .comparison-table-wrapper {
        margin: 0 -15px 3rem;
    }
    
    .messenger-chat {
        padding: 1rem;
    }
    
    .message-bubble {
        max-width: 85%;
    }
    
    /* Еще меньше цены на очень маленьких экранах */
    .pricing-price {
        font-size: 1.125rem;
    }
}

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

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section animations */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    opacity: 1;
    transform: none;
}