/* ============================================
   V2Bot Landing - Sections (Light Theme)
   Version: 2.0
   ============================================ */

/* ============================================
   PHILOSOPHY V2 SECTION
   ============================================ */
.philosophy {
    padding: var(--space-4xl) 0;
    background: #FFFFFF;
}

.philosophy__content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.philosophy__content p:last-child {
    margin-bottom: 0;
}

.philosophy__content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.philosophy__content .highlight {
    background: var(--gold-primary);
    color: var(--text-on-gold);
    padding: 5px 8px 7px 8px;
}

.philosophy__content .highlight-line {
    margin-bottom: 0;
}

.philosophy__content .brand-gradient {
    background: linear-gradient(135deg, var(--gold-primary), var(--cyan-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.philosophy__content .dotted-underline {
    text-decoration: underline dotted;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* Two-column layout: character left, text right */
.philosophy__layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.philosophy__character-side {
    flex-shrink: 0;
}

.philosophy__character {
    max-width: 230px;
    width: 230px;
    height: auto;
}

.philosophy__content {
    max-width: 920px;
    text-align: center;
}

/* Mobile: stack vertically */
@media (max-width: 1024px) {
    .philosophy__layout {
        flex-direction: column;
        gap: var(--space-xl);
        text-align: center;
    }

    .philosophy__character {
        max-width: 280px;
    }

    .philosophy__content {
        order: 1;
    }

    .philosophy__character-side {
        order: 2;
    }
}

/* ============================================
   DEMO SECTION (moved from Hero)
   ============================================ */
.demo {
    padding: var(--space-4xl) 0;
    background: var(--bg-tertiary);
}

.demo__messenger-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.demo__messenger-wrapper .demo-messenger {
    max-width: 480px;
    width: 100%;
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */
.showcase {
    padding: var(--space-4xl) 0;
}

.showcase__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

/* Note: Showcase layout styles moved to inline styles in index.html */
/* Old grid-based styles removed to prevent conflicts with new carousel layout */

/* Showcase Card */
.showcase__card {
    background: var(--surface-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-slow);
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.showcase__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--gold-primary);
}

.showcase__card-badge {
    margin-bottom: var(--space-md);
}

.showcase__card-user {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.showcase__card-request {
    font-size: var(--fs-body);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.showcase__card-response {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--cyan-primary);
}

.showcase__card-expand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    font-size: var(--fs-small);
    color: var(--gold-primary);
    font-weight: 500;
}

/* Show More Button */
.showcase__more {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Find Your Use Block */
.showcase__find {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--bg-tertiary);
    border-radius: var(--radius-xl);
    text-align: center;
}

.showcase__find-title {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-lg);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: var(--space-4xl) 0;
    background: var(--bg-tertiary);
}

/* Intro block: text left, image right */
.how-it-works__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.how-it-works__intro-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.how-it-works__intro-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.how-it-works__intro-cta {
    font-weight: 600;
    color: var(--text-primary);
}

.how-it-works__intro-image {
    text-align: center;
}

.how-it-works__hero-img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .how-it-works__intro {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .how-it-works__intro-text {
        order: 1;
    }

    .how-it-works__intro-image {
        order: 2;
        display: flex;
        justify-content: center; /* Центрируем изображение */
        width: 100%;
    }

    .how-it-works__hero-img {
        max-width: 320px;
        margin: 0 auto; /* Дополнительное центрирование */
    }
}

.how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    position: relative;
}

/* Connecting Line */
.how-it-works__steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: var(--radius-full);
    z-index: 0;
}

/* Step */
.how-it-works__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.how-it-works__step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-on-gold);
    box-shadow: var(--shadow-glow-gold);
}

.how-it-works__step-title {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-sm);
}

.how-it-works__step-text {
    font-size: var(--fs-body);
    color: var(--text-secondary);
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   MEMORY SECTION
   ============================================ */
.memory {
    padding: var(--space-4xl) 0;
}

.memory__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.memory__content {
    max-width: 500px;
}

.memory__title {
    margin-bottom: var(--space-md);
}

.memory__text {
    font-size: var(--fs-body-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* Memory Chat Example */
.memory__chat {
    background: var(--bg-tertiary);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    border: 1px solid var(--border-card);
}

.memory__chat-message {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.memory__chat-message:last-child {
    margin-bottom: 0;
}

.memory__chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-caption);
    color: var(--text-on-gold);
    font-weight: 600;
    flex-shrink: 0;
}

.memory__chat-avatar--bot {
    background: var(--cyan-primary);
}

.memory__chat-text {
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: var(--fs-small);
}

/* Memory Visual */
.memory__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.memory__network {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    position: relative;
}

.memory__note {
    margin-top: var(--space-md);
    font-size: var(--fs-small);
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   FEATURES SECTION (formerly SECURITY)
   ============================================ */
.security {
    padding: var(--space-4xl) 0;
}

.security__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.security__card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-slow);
}

/* Center the last card (5th) when it's alone on the row */
.security__card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
}

.security__card:hover {
    border-color: var(--cyan-primary);
    box-shadow: var(--shadow-glow-cyan);
}

.security__card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--cyan-primary);
}

.security__card-icon svg {
    width: 28px;
    height: 28px;
}

.security__card-title {
    font-size: var(--fs-body-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.security__card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.testimonials__carousel {
    position: relative;
    margin-bottom: var(--space-xl);
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    gap: var(--space-lg);
    animation: scroll-testimonials 30s linear infinite;
    width: max-content;
}

.testimonials__track:hover {
    animation-play-state: paused;
}

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

.testimonials__card {
    flex-shrink: 0;
    width: 320px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-slow);
}

.testimonials__card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-card-hover);
}

.testimonials__content {
    margin-bottom: var(--space-lg);
}

.testimonials__text {
    font-size: var(--fs-body);
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.7;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonials__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-on-gold);
    font-size: var(--fs-small);
}

.testimonials__info {
    display: flex;
    flex-direction: column;
}

.testimonials__name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--fs-body);
}

.testimonials__role {
    font-size: var(--fs-small);
    color: var(--text-muted);
}

.testimonials__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.testimonials__nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonials__nav:hover {
    background: var(--bg-secondary);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.testimonials__more {
    text-align: center;
}

/* Video testimonial support */
.testimonials__video {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: var(--space-4xl) 0;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto var(--space-xl);
}

.pricing__card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    text-align: left;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.pricing__card:hover {
    border-color: var(--cyan-primary);
    transform: translateY(-4px);
}

/* Featured Card */
.pricing__card--featured {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
    transform: scale(1.05);
    position: relative;
    z-index: 1;
}

.pricing__card--featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--text-on-gold);
    font-size: var(--fs-caption);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing__name {
    font-size: var(--fs-h3);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.pricing__price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: var(--space-lg);
    flex-wrap: nowrap;
}

.pricing__price {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
    white-space: nowrap;
}

.pricing__period {
    font-size: var(--fs-body);
    color: var(--text-muted);
}

.pricing__features {
    text-align: left;
    margin-bottom: var(--space-xl);
    flex-grow: 1;
}

.pricing__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.pricing__feature-icon {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    height: 16px;
}

.pricing__target {
    font-size: var(--fs-small);
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--space-md);
    text-align: center;
}

.pricing__note {
    text-align: center;
    font-size: var(--fs-body);
    color: var(--text-secondary);
}

.pricing__note strong {
    color: var(--gold-primary);
}

.pricing__refund {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing__refund-icon {
    flex-shrink: 0;
    color: var(--cyan-primary);
    margin-top: 2px;
}

.pricing__refund-text {
    font-size: var(--fs-body);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.pricing__refund-text strong {
    color: var(--text-primary);
}

.pricing__refund-link {
    color: var(--cyan-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.pricing__refund-link:hover {
    color: var(--gold-primary);
    text-decoration: underline;
}

/* Trial Pack */
.pricing__trial {
    margin-top: var(--space-2xl);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.pricing__trial-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg-secondary);
    border: 2px dashed var(--border-card);
    border-radius: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing__trial-inner:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.08);
}

.pricing__trial-left {
    flex: 1;
}

.pricing__trial-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.pricing__trial-icon {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.pricing__trial-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: 700;
    color: var(--text-primary);
}

.pricing__trial-desc {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.pricing__trial-right {
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pricing__trial-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pricing__trial-price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
}

.pricing__trial-credits {
    font-size: var(--fs-small);
    color: var(--text-muted);
}

.pricing__trial-btn {
    white-space: nowrap;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: var(--fs-small);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn--outline:hover {
    background: var(--gold-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

.pricing__trial-note {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--space-4xl) 0;
    background: var(--bg-tertiary);
}

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

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
    padding: var(--space-4xl) 0 var(--space-2xl);
    text-align: center;
}

.footer__cta {
    margin-bottom: var(--space-3xl);
}

.footer__title {
    font-size: var(--fs-h1);
    margin-bottom: var(--space-sm);
}

.footer__subtitle {
    font-size: var(--fs-body-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.footer__messengers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer__messengers .btn-messenger {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--fs-body);
}

.footer__messengers .btn-messenger__icon {
    width: 20px;
    height: 20px;
}

.footer__micro {
    font-size: var(--fs-small);
    color: var(--text-muted);
}

/* Footer Bottom */
.footer__bottom {
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border-card);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.footer__copy {
    font-size: var(--fs-small);
    color: var(--text-muted);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    justify-self: center;
}

.footer__link {
    font-size: var(--fs-small);
    color: var(--text-muted);
}

.footer__link:hover {
    color: var(--gold-primary);
}

.footer__info {
    text-align: left;
    max-width: 100%;
}

.footer__legal {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: var(--space-xs);
    line-height: 1.5;
    opacity: 0.8;
}

.footer__contact {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.footer__email {
    color: var(--cyan-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__email:hover {
    color: var(--gold-primary);
    text-decoration: underline;
}

.footer__social {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: var(--space-xs);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer__social-label {
    opacity: 0.8;
}

.footer__social-link {
    color: var(--cyan-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__social-link:hover {
    color: var(--gold-primary);
    text-decoration: underline;
}

.footer__payment {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-xs);
    justify-self: end;
}

.footer__payment-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
}

.footer__payment-logos {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: wrap;
}

.footer__payment-logo {
    height: 18px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    filter: grayscale(30%);
}

.footer__payment-logo:hover {
    opacity: 0.9;
    filter: grayscale(0%);
}

.footer__payment-logo--tbank {
    height: 16px;
}

/* ============================================
   MESSENGER ROADMAP (Footer)
   ============================================ */

/* Доступно сейчас */
.messenger-available {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-4xl);
}

.messenger-available__label {
    width: 100%;
    text-align: center;
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--cyan-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn-messenger--active {
    position: relative;
    background: var(--cyan-primary);
    border-color: var(--cyan-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--fs-body);
    gap: var(--space-sm);
}

.btn-messenger--active:hover {
    background: var(--cyan-secondary);
    border-color: var(--cyan-secondary);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}


/* В разработке */
.messenger-roadmap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-4xl);
}

.messenger-roadmap__label {
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.messenger-roadmap__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    max-width: 900px;
}

.messenger-roadmap__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--space-sm);
    opacity: 0.5;
    transition: opacity var(--transition-normal);
}

.messenger-roadmap__item:hover {
    opacity: 0.7;
}


.messenger-roadmap__icon {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
}

.messenger-roadmap__name {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}


/* Responsive for messenger roadmap */
@media (max-width: 480px) {
    .messenger-roadmap__grid {
        max-width: 300px;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    /* Showcase styles removed - now in inline styles */

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing__card--featured {
        transform: none;
    }

    .pricing__card--featured:hover {
        transform: translateY(-4px);
    }

    .pricing__trial-inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
        padding: var(--space-lg);
    }

    .pricing__trial-header {
        justify-content: center;
    }

    .pricing__trial-desc {
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Showcase styles removed - now in inline styles */

    .how-it-works__steps {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .how-it-works__steps::before {
        display: none;
    }

    .memory__inner {
        grid-template-columns: 1fr;
    }

    .memory__visual {
        order: -1;
    }

    .security__grid {
        grid-template-columns: 1fr;
    }

    .testimonials__card {
        width: 280px;
    }

    .footer__messengers {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
        max-width: 100%;
    }

    .footer__messengers .btn-messenger {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--fs-small);
    }

    .footer__bottom {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer__info {
        text-align: center;
        max-width: 100%;
    }

    .footer__links {
        gap: var(--space-sm);
        justify-self: center;
    }

    .footer__payment {
        align-items: center;
        justify-self: center;
    }

    .footer__payment-logos {
        justify-content: center;
    }
}
