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

body {
    font-family: 'Inter', 'Playfair Display', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(180deg, #fbeee6 0%, #fff8f4 100%);
}

@media (max-width: 600px) {
    body {
        background: linear-gradient(180deg, #fbeee6 0%, #fff8f4 100%);
    }
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #d39f5f 0%, #b76e79 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(.77,0,.18,1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(180, 80, 60, 0.08);
    min-height: 3.6em;
}
@media (max-width: 500px) {
    .hero-title {
        font-size: 1.35rem;
        line-height: 1.18;
        padding: 0 2vw;
        min-height: 3.6em;
    }
    .hero-content {
        padding: 18px 2vw 12px 2vw;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #e59866, #d35400);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(229, 152, 102, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(211, 84, 0, 0.25);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    border: 4px solid #e59866;
    background: #fff8f3;
    box-shadow: 0 8px 32px rgba(211,159,95,0.15);
}

.placeholder-image {
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.placeholder-image i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #fbf6f0 0%, #f6efe8 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(118,75,162,0.10);
    object-fit: cover;
    display: block;
}
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-image {
        margin-top: 12px;
    }
    .about-image img {
        max-width: 90vw;
    }
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.about-image .placeholder-image {
    width: 350px;
    height: 450px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(45deg, #fbf6f0 0%, #f6efe8 100%);
    box-shadow: 0 5px 20px rgba(201,123,99,0.07);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e1a87a, #b86167);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 2px 8px rgba(201,123,99,0.10);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Bot Demo */
.bot-demo {
    display: flex;
    justify-content: center;
    margin: 36px 0 0 0;
}
.chat-demo {
    background: linear-gradient(135deg, #f7f8fa 80%, #fbeee6 100%);
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(180, 80, 60, 0.07);
    padding: 36px 24px 32px 24px;
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
}
.chat-demo:before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="60" cy="60" r="58" stroke="%23fbeee6" stroke-width="4" fill="none"/><circle cx="30" cy="30" r="8" fill="%23fbeee6" fill-opacity="0.18"/><circle cx="90" cy="90" r="10" fill="%23e6a37d" fill-opacity="0.10"/></svg>');
    opacity: 0.18;
    z-index: 0;
}
.chat-message {
    position: relative;
    z-index: 1;
}
.chat-message {
    display: flex;
    align-items: flex-end;
    margin-bottom: 6px;
    max-width: 100%;
}
.chat-message.bot {
    flex-direction: row;
    justify-content: flex-start;
    margin-left: 0;
}
.chat-message.user {
    flex-direction: column;
    align-items: flex-end;
    margin-right: 0;
}
.chat-message.user .chat-bubble {
    margin-right: 0;
    margin-left: 0;
}
.chat-message.user .chat-avatar {
    margin-top: 4px;
    align-self: flex-end;
    margin-left: 0;
    margin-right: 0;
}
.chat-avatar {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    border-radius: 50% !important;
    overflow: hidden;
    background: #fbeee6;
    border: 2px solid #fff8f4;
    box-shadow: 0 2px 8px rgba(180, 80, 60, 0.08);
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    display: flex;
}
.chat-avatar img {
    width: 100% !important;
    height: 100% !important;
    max-width: 36px !important;
    max-height: 36px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block;
}
.chat-bubble {
    max-width: 75%;
    padding: 15px 18px 2.1em 18px;
    border-radius: 18px 18px 18px 6px;
    background: #f1f4f8;
    border: 1px solid #e6bda9;
    color: #2d4250;
    font-size: 1.08rem;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(180, 80, 60, 0.04);
    font-weight: 500;
    word-break: break-word;
    margin: 0;
    text-align: left;
    position: relative;
}
.chat-time {
    position: absolute;
    right: 16px;
    bottom: 8px;
    font-size: 0.82em;
    color: #bfc9d1;
    font-weight: 400;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.chat-message.user .chat-bubble {
    background: linear-gradient(90deg, #e6a37d 0%, #c86b5f 100%);
    color: #fff;
    border-radius: 18px 18px 6px 18px;
    margin-left: 0;
    margin-right: 8px;
    border: none;
}
.chat-message.bot .chat-bubble {
    margin-right: auto;
    margin-left: 0;
}
@media (max-width: 600px) {
    .chat-demo {
        padding: 12px 1vw 12px 1vw;
        max-width: 98vw;
    }
    .chat-bubble {
        font-size: 0.98rem;
        padding: 11px 10px 2.1em 10px;
        max-width: 90vw;
    }
    .chat-time {
        right: 10px;
        bottom: 6px;
        font-size: 0.78em;
    }
    .chat-avatar {
        width: 28px;
        height: 28px;
    }
}

/* How it works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #d39f5f 0%, #b76e79 100%);
    color: white;
    background-blend-mode: multiply;
    background-image: linear-gradient(135deg, #d39f5f 0%, #b76e79 100%), url('data:image/svg+xml;utf8,<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="60" cy="60" rx="60" ry="60" fill="%23b76e79" fill-opacity="0.04"/></svg>');
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-highlight {
    margin-bottom: 30px;
}

.free-period {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.free-days {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.free-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #27ae60;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
}

.pricing-note i {
    color: #667eea;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.testimonial-card {
    background: #fff8f3;
    border: 2px dashed #e59866;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(211,159,95,0.07);
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #e59866;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-avatar i {
    font-size: 2rem;
    color: white;
}

.testimonial-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #d39f5f 0%, #b76e79 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #2d4250;
    color: #e6eaf0;
    padding: 38px 0 22px 0;
    margin-top: 48px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.footer-social {
    margin-bottom: 8px;
}
.footer-social .social-link {
    color: #e6eaf0;
    font-size: 1.15rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.footer-links a {
    color: #e6eaf0;
    text-decoration: none;
    font-size: 1.08rem;
    line-height: 1.5;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fbeee6;
}
.footer-copyright {
    font-size: 1rem;
    color: #bfc9d1;
    margin-top: 8px;
}
.footer-extra {
    font-size: 0.98rem;
    color: #bfc9d1;
    margin-top: 8px;
    text-align: center;
    line-height: 1.4;
}
@media (max-width: 600px) {
    .footer {
        padding: 22px 0 12px 0;
        margin-top: 24px;
    }
    .footer-content {
        gap: 10px;
    }
    .footer-social .social-link {
        font-size: 1rem;
    }
    .footer-links a {
        font-size: 0.98rem;
    }
    .footer-copyright {
        font-size: 0.92rem;
    }
    .footer-extra {
        font-size: 0.92rem;
        margin-top: 6px;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    .hero-title {
        font-size: clamp(1.1rem, 7vw, 1.7rem);
    }
    .cta-button {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
} 

/* --- Унификация стиля для всех страниц --- */
.support-content, .privacy-content, .terms-content, .offer-content, .consent-content {
    background: linear-gradient(135deg, #f8f9fa 60%, #fff8f3 100%), url('data:image/svg+xml;utf8,<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="60" cy="60" rx="60" ry="60" fill="%23e59866" fill-opacity="0.04"/></svg>') repeat;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(211,159,95,0.10);
    padding: 48px 24px;
    margin: 48px auto;
    max-width: 900px;
}

.support-content h1, .privacy-content h1, .terms-content h1, .offer-content h1, .consent-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #b76e79;
    letter-spacing: 0.5px;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 32px;
    text-align: center;
}

.support-content h2, .privacy-content h2, .terms-content h2, .offer-content h2, .consent-content h2 {
    font-family: 'Playfair Display', serif;
    color: #d39f5f;
    font-size: 1.4rem;
    margin: 32px 0 18px 0;
}

.support-content p, .privacy-content p, .terms-content p, .offer-content p, .consent-content p,
.support-content ul, .privacy-content ul, .terms-content ul, .offer-content ul, .consent-content ul {
    font-size: 1.08rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
}

.support-content a, .privacy-content a, .terms-content a, .offer-content a, .consent-content a {
    color: #b76e79;
    text-decoration: underline;
    transition: color 0.2s;
}

.support-content a:hover, .privacy-content a:hover, .terms-content a:hover, .offer-content a:hover, .consent-content a:hover {
    color: #d35400;
}

.support-content .contact-methods, .support-content .faq-item, .operator-section, .consent-section, .section-block {
    background: #fff8f3;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(211,159,95,0.07);
    border: 1.5px solid #e59866;
    margin-bottom: 32px;
    padding: 28px 20px;
}

.terms-date, .offer-date {
    color: #d39f5f;
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .support-content, .privacy-content, .terms-content, .offer-content, .consent-content {
        padding: 24px 6px;
        margin: 24px 0;
    }
    .support-content h1, .privacy-content h1, .terms-content h1, .offer-content h1, .consent-content h1 {
        font-size: clamp(1.3rem, 7vw, 2rem);
        margin-bottom: 18px;
    }
} 

/* FAQ аккордеон на странице поддержки */
.faq-list {
    margin: 32px 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-item {
    background: #fff7f3;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(200, 120, 80, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item.open {
    box-shadow: 0 8px 32px rgba(200, 120, 80, 0.13);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-family: inherit;
    font-size: 1.13rem;
    font-weight: 600;
    color: #a04a2a;
    padding: 20px 28px 18px 28px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f3d2c1;
}
.faq-question:after {
    content: '\25BC';
    float: right;
    color: #c97b63;
    font-size: 1.1em;
    transition: transform 0.3s;
}
.faq-item.open .faq-question:after {
    transform: rotate(180deg);
}
.faq-answer {
    display: none;
    padding: 0 28px 22px 28px;
    color: #3d2a1a;
    font-size: 1.05rem;
    line-height: 1.6;
    background: none;
}
.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.4s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .faq-question {
        font-size: 1rem;
        padding: 14px 12px 12px 12px;
    }
    .faq-answer {
        font-size: 0.98rem;
        padding: 0 12px 16px 12px;
    }
    .faq-list {
        gap: 10px;
    }
}

/* Минималистичная карусель — фото в границах, стрелки и точки под фото */
.carousel {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    background: none;
    box-shadow: none;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.carousel-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
    width: 100%;
    max-width: 350px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}
.carousel-slide {
    min-width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.carousel-controls {
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.carousel-arrows {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 8px;
}
.carousel-arrow {
    background: #fff8f4;
    border: 1.5px solid #e6bda9;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b86167;
    font-size: 18px;
    transition: background 0.2s, border 0.2s;
    box-shadow: 0 2px 8px rgba(200, 107, 95, 0.07);
}
.carousel-arrow:hover {
    background: #fbeee6;
    border-color: #c86b5f;
}
.carousel-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2px;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e6bda9;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
}
.carousel-dot.active {
    background: #b86167;
    transform: scale(1.18);
}
@media (max-width: 600px) {
    .carousel {
        max-width: 98vw;
    }
    .carousel-container, .carousel-slide {
        height: 220px;
    }
} 

/* Белый текст на всех .cta-button */
.cta-button {
    color: #fff !important;
}

/* Кнопки связи на support.html */
.support-contacts {
    display: flex;
    flex-direction: row;
    gap: 18px;
    margin-bottom: 36px;
    align-items: stretch;
    justify-content: flex-start;
}
.support-contacts .cta-button {
    min-width: 260px;
    font-size: 1.13rem;
    padding: 16px 32px;
    border-radius: 32px;
    box-shadow: 0 4px 18px rgba(200, 120, 80, 0.10);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
@media (max-width: 600px) {
    .support-contacts {
        flex-direction: column;
        gap: 10px;
    }
    .support-contacts .cta-button {
        min-width: 0;
        width: 100%;
        font-size: 1rem;
        padding: 13px 10px;
    }
} 

/* Заголовок поддержки */
.support-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: #b86167;
  font-size: 2.1rem;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

/* Кнопки поддержки — пудрово-карамельные */
.support-contacts .cta-button {
  background: linear-gradient(45deg, #e6a37d, #c86b5f);
  box-shadow: 0 4px 10px rgba(200, 107, 95, 0.18);
  border-radius: 30px;
  border: none;
  color: #fff !important;
  transition: box-shadow 0.2s, background 0.2s;
}
.support-contacts .cta-button:hover {
  background: linear-gradient(45deg, #c86b5f, #e6a37d);
  box-shadow: 0 6px 18px rgba(200, 107, 95, 0.28);
}
.support-contacts .cta-button i {
  font-size: 1.2em;
  opacity: 0.85;
}

/* FAQ — аккордеон */
.faq-list {
  margin: 32px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff8f4;
  border: 1px solid #e6bda9;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(200, 107, 95, 0.07);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item.open {
  box-shadow: 0 6px 24px rgba(200, 107, 95, 0.13);
  border-color: #e6a37d;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.13rem;
  font-weight: 600;
  color: #a5523f;
  padding: 20px 28px 18px 28px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-question:after {
  content: '';
  display: inline-block;
  margin-left: auto;
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 7.5L9 12L13.5 7.5" stroke="%23c86b5f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
  transform: rotate(0deg);
  transition: transform 0.3s;
}
.faq-item.open .faq-question:after {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 28px 22px 28px;
  color: #7a3a2a;
  font-size: 1.05rem;
  line-height: 1.6;
  background: none;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.4s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Фон секции поддержки */
.support-content {
  background: linear-gradient(180deg, #fff8f4 60%, #fbeee6 100%);
  border-radius: 24px;
  box-shadow: 0 2px 24px rgba(200, 107, 95, 0.07);
  padding: 48px 24px 40px 24px;
  margin: 32px auto 32px auto;
  max-width: 800px;
}
@media (max-width: 600px) {
  .support-content {
    padding: 18px 2vw 18px 2vw;
    border-radius: 12px;
    margin: 12px 0;
  }
  .faq-question {
    font-size: 1rem;
    padding: 14px 12px 12px 12px;
  }
  .faq-answer {
    font-size: 0.98rem;
    padding: 0 12px 16px 12px;
  }
  .faq-list {
    gap: 10px;
  }
} 

/* --- Юридические списки: выравнивание и отступы --- */
.offer-content ol, .privacy-content ol, .terms-content ol, .consent-content ol {
    padding-left: 22px;
    margin-left: 0;
    list-style-position: inside;
}
.offer-content li, .privacy-content li, .terms-content li, .consent-content li {
    padding-left: 0;
    margin-left: 0;
    text-align: left;
    list-style-position: inside;
}
.offer-content ol > li, .privacy-content ol > li, .terms-content ol > li, .consent-content ol > li {
    margin-bottom: 8px;
}
.offer-content ul, .privacy-content ul, .terms-content ul, .consent-content ul {
    padding-left: 20px;
    margin-left: 0;
    list-style-position: inside;
}
.offer-content ul > li, .privacy-content ul > li, .terms-content ul > li, .consent-content ul > li {
    margin-bottom: 6px;
}
.offer-content ol ul, .privacy-content ol ul, .terms-content ol ul, .consent-content ol ul {
    margin-top: 6px;
    margin-bottom: 6px;
    padding-left: 18px;
} 
/* Успешная и неуспешная оплата — стили */
.payment-result {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #fbeee6 0%, #fff8f3 100%);
  padding: 40px 20px;
  text-align: center;
}

.payment-result h1 {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin-bottom: 20px;
  color: #b76e79;
  font-family: 'Playfair Display', serif;
}

.payment-result p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 32px;
}

.payment-result .cta-button {
  background: linear-gradient(45deg, #e59866, #d35400);
  color: white;
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(229, 152, 102, 0.2);
  text-decoration: none;
  transition: background 0.3s ease;
}

.payment-result .cta-button:hover {
  background: linear-gradient(45deg, #d35400, #e59866);
}

.payment-result .container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.payment-result h1 {
  text-align: center;
}