
@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest/Onest-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Sometype Mono';
    src: url('../fonts/Sometype_Mono/SometypeMono-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sometype Mono';
    src: url('../fonts/Sometype_Mono/SometypeMono-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 800;
    font-style: italic;
    font-display: swap;
}

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

body {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Global Typography */
h1, h2, h3, h4 { color: #201F24; }

h1 { font-weight: 700; line-height: 1.2; }
h2 { font-weight: 700; line-height: 1.2; font-size: clamp(28px, 4.5vw, 40px); margin: 0 0 24px; }
h3 { font-weight: 600; line-height: 1.25; font-size: clamp(20px, 3vw, 24px); }
p  { font-weight: 500; line-height: 1.6; color: #141212; }

/* Section titles unified */
.section-title {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    color: #201F24;
    font-size: clamp(32px, 6vw, 48px);
    line-height: 1.2;
    margin: 0 0 32px;
}

/* Links */
a { color: #007AFF; text-decoration: none; }
a:hover:not(.hero-v2-btn):not(.cta-lang-btn):not(.plan-button):not(.footer-btn) { color: #0056CC; text-decoration: underline; }

/* HERO V2 */
.hero-v2 {
    position: relative;
    background: #CCF4FF;
    background-image: linear-gradient(316.21deg, #63B2FC -41.28%, #D9F6FF 94.33%);
    min-height: calc(100vh + 80px);
    border-top: 2px solid #00000000; /* placeholder to match figma border intent without showing */
    display: flex;
    align-items: center;
    overflow: hidden;
}


/* Site Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.hero-v2-stars {
    position: absolute;
    /* Right edge of stars (74px width) touches left edge of centered 1200px container */
    left: calc(50% - 550px);
    top: calc(100vh / 2 + -240px);
    width: 74px;
    height: 74px;
    opacity: 1;
    pointer-events: none;
}

/* Hide stars when the gutter from container to viewport edge is < 74px: vw < 1200 + 2*74 */
@media (max-width: 1180px) {
    .hero-v2-stars { display: none; }
}

.hero-v2-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
	padding-top: 100px; /*wx1*/
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    width: 100%;
}

/* Top menu inside hero-v2 */
.site-menu {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
}

.site-menu .menu-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 80px;
    text-decoration: none;
    color: #0D0A38;
    font-family: 'Onest', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.site-menu .menu-code {
    display: none;
}

.site-menu .menu-link.active {
    background: #EFF0F2;
}

.site-menu .menu-flag {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    display: block;
}

.hero-v2-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
}

.hero-v2-logo-title {
    position: relative;
}

.hero-v2-logo {
    width: 340px;
    height: auto;
    display: block;
}

.hero-v2-title {
    font-family: 'Onest', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2;
    color: #201F24;
    margin-top: -67px; /* overlap onto logo as per design */
}

.hero-v2-title .mono {
    color: #136EE1;
}

/* Language switcher in hero-v2 */
.hero-v2-title .language-switcher {
    position: relative;
    color: #136EE1;
    display: inline-block;
}

.hero-v2-title .language-text {
    transition: opacity 0.3s ease;
    color: #136EE1;
}

/* Cursor blinking animation */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-v2-title .cursor {
    animation: blink 1s infinite;
    color: #201F24;
    font-weight: 300;
}

.hero-v2-subtitle {
    font-family: 'Onest', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #141212;
    max-width: 520px;
    margin: 16px 0 24px;
}

.hero-v2-subtitle .mono {
    color: #136EE1;
}

.hero-v2-chips {
    display: flex;
    gap: 12px;
    margin: 20px 0 12px;
    flex-wrap: wrap;
}

.hero-v2-chips .chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 80px;
    background: #EFF0F2;
    color: #0D0A38;
    text-decoration: none;
    font-family: 'Onest', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.hero-v2-chips .chip .flag { font-size: 16px; line-height: 1; }
.hero-v2-chips .chip.active { outline: 2px solid #0D0A38; background: #FFFFFF; }

.hero-v2-cta {
    margin: 12px 0 16px;
}

.hero-v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 72px;
    background: #FFFFFF;
    color: #000;
    border: 1px solid #000000;
    border-radius: 16px;
    text-decoration: none;
    font-family: 'Onest', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.16);
    transition: transform 0.15s ease;
}

.hero-v2-btn:hover { transform: translateY(-2px); }
.hero-v2-btn-icon { width: 32px; height: 32px; }

.hero-v2-social { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.hero-v2-avatars { display: flex; align-items: center; }

.hero-v2-social-text {
    font-size: 14px;
    font-weight: 500;
    color: #201F24;
}

.hero-v2-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #FFFFFF;
    margin-left: -13px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}

.hero-v2-avatar:first-child { margin-left: 0; }

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

/* Reuse existing phone styles; add container lift */
.hero-v2 .phone-frame {
    box-shadow: 8px 8px 0px #181515;
    border: 3px solid #181515;
}

/* Responsive rules for hero-v2 */
@media (max-width: 1023px) {
    .hero-v2-container { grid-template-columns: 1fr; gap: 24px; }
    .hero-v2-right { display: none; }
    .hero-v2-left { margin: 0 auto; max-width: 450px;}
    .hero-v2-left .hero-v2-cta {margin: 12px auto 16px;}
    .hero-v2-left .hero-v2-social {display: block; text-align: center;}
    .hero-v2-left .hero-v2-social .hero-v2-avatars {display: block;}
    .hero-v2-stars { display: none; }
    .hero-v2 { min-height: auto; padding: 80px 0; }
    .site-menu { flex-wrap: wrap; }
    .site-menu .menu-link {padding: 8px 8px;}
}

/* Switch to short codes when menu doesn't fit (header only) */
@media (max-width: 768px) {
    .site-menu .menu-text { display: none; }
    .site-menu .menu-code { display: inline; }
    .site-menu .menu-link { padding: 8px 12px; }
}

@media (max-width: 480px) {
    .hero-v2-title { font-size: 46px; margin-top: -55px; }
    .hero-v2-logo { width: 260px; }
    .hero-v2-btn { padding: 14px 24px; font-size: 16px; }
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner (visual only) */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
    z-index: 2000;
}

.cookie-banner__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end; /* align content to the right */
}

.cookie-banner__text {
    font-family: 'Onest', 'Inter', sans-serif;
    font-size: 0.7em;
    color: #141212;
    line-height: 1.5;
}

.cookie-banner__link { color: #136EE1; text-decoration: underline; }

.cookie-banner__btn {
    padding: 10px 20px;
    background: #136EE1;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-family: 'Onest', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: none;
}

.cookie-banner__btn:hover { filter: brightness(0.95); }

@media (max-width: 768px) {
    .cookie-banner__container {
max-width: 1000px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex
;
    align-items: center;
    /* gap: 12px; */
    justify-content: flex-end;
    flex-direction: column;
	
    }
    .cookie-banner__text {
        font-size: 13px;
        white-space: normal; /* allow wrapping to two lines */
        word-break: break-word;
        text-align: left; /* align with button on the right */
        /*max-width: calc(100% - 110px); /* reserve space for the button */
    }
    .cookie-banner__btn { margin-right: 8px; }
}



.phone-container {
    display: none;
}

/* Phone Screen Telegram Interface */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #d5e8ea;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.telegram-header {
    background: #EFF0F2;
    color: #181515;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.back-arrow {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 4px;
}

.bot-avatar {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    overflow: hidden;
}

.bot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bot-info {
    flex: 1;
}

.bot-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: -4px;
}

.bot-status {
    font-size: 12px;
    opacity: 0.8;
}

.chat-messages {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.message {
    max-width: 85%;
    word-wrap: break-word;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.user-message {
    align-self: flex-end;
}

.bot-message {
    align-self: flex-start;
}

.combined-voice-message {
    background: #EDFFDC;
    border-radius: 16px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 180px;
}

.bot-voice-combined {
    background: #FFFFFF;
}

.voice-part {
    display: flex;
    align-items: center;
    gap: 8px;
}

.transcript-part {
    font-size: 13px;
    line-height: 1.4;
    padding-top: 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.voice-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: #79C371;
    color: #EDFFDC;
}

.bot-message .voice-icon {
    background: #72B6E7;
    color: #FFFFFF;
}

.voice-waves {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
}

.voice-waves span {
    width: 2px;
    background: #4CAF50;
    border-radius: 1px;
    animation: voice-wave 1.5s ease-in-out infinite;
}

.voice-waves span:nth-child(1) { height: 6px; animation-delay: 0s; }
.voice-waves span:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.voice-waves span:nth-child(3) { height: 18px; animation-delay: 0.2s; }
.voice-waves span:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.voice-waves span:nth-child(5) { height: 8px; animation-delay: 0.4s; }
.voice-waves span:nth-child(6) { height: 16px; animation-delay: 0.5s; }
.voice-waves span:nth-child(7) { height: 10px; animation-delay: 0.6s; }
.voice-waves span:nth-child(8) { height: 12px; animation-delay: 0.7s; }

@keyframes voice-wave {
    0%, 100% { transform: scaleY(0.3); opacity: 0.7; }
    50% { transform: scaleY(1); opacity: 1; }
}

.voice-duration {
    font-size: 11px;
    color: #666;
    min-width: 24px;
}



.message-text {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.4;
}

.explanation-text {
    font-style: italic;
    color: #666;
    font-size: 12px;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.bot-reaction {
    font-size: 80px;
    padding: 4px;
    display: inline-block;
    animation: reaction-appear 0.3s ease-out;
}

@keyframes reaction-appear {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.error-word {
    color: #FF3B30;
    text-decoration: line-through;
    font-weight: 500;
}

.correction-word {
    color: #34C759;
    font-weight: 600;
}



.phone-frame {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transform: rotate(5deg);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.phone-frame:hover {
    transform: rotate(0deg) scale(1.02);
}







/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid #e8eaed;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Tablet Styles */
@media (min-width: 768px) {
    
    
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .step {
        padding: 40px 32px;
    }
    
    
    .phone-container {
        display: block;
        position: relative;
        width: 320px;
        height: 640px;
    }
    
    .phone-frame {
        width: 320px;
        height: 640px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    
    .phone-frame {
        width: 320px;
        height: 640px;
        transform: rotate(5deg);
    }
    
    .phone-frame:hover {
        transform: rotate(0deg) scale(1.02);
    }
    
    .step {
        padding: 48px 40px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Old who-is-it-for styles removed */

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8eaed;
    position: relative;
}

.advantage-card {
    min-height: 180px;
}

.advantage-card:hover {
    transform: rotate(0deg) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.advantage-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.advantage-description {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Intermediate CTA Section */
.intermediate-cta {
    padding: 80px 0;
    background: linear-gradient(316.21deg, #63B2FC -41.28%, #D9F6FF 94.33%);
    text-align: center;
}

.cta-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.cta-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 72px;
    background: #FFFFFF;
    color: #000;
    border: 1px solid #000000;
    border-radius: 16px;
    text-decoration: none;
    font-family: 'Onest', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.16);
    transition: transform 0.15s ease;
}
.cta-lang-btn:hover { transform: translateY(-2px); }

/* Match hero button hover behavior */
.cta-lang-btn:hover { transform: translateY(-2px); }

.btn-flag {
    font-size: 28px;
}

.btn-text {
    font-weight: 600;
}

.btn-telegram-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

/* No extra icon animation for CTA to match hero button */

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #ffffff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.review-card {
    background: #FFFFFF;
    border: 1px solid #E8EAED;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 56px;
}

.reviewer-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #D9D9D9;
    flex-shrink: 0;
    overflow: hidden;
}

.reviewer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.reviewer-name {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #141212;
    margin-bottom: 2px;
}

.reviewer-role {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #666666;
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-text {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #141212;
    margin: 0;
    position: relative;
    padding-left: 32px;
}

.review-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 24px;
    height: 24px;
    background-image: url('../images/quote.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
}

.review-result {
    padding: 16px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.result-label {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #2C6CD9;
}

.result-text {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #141212;
}

.reviews-link {
    text-align: center;
}

.channel-link {
    color: #136EE1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.channel-link:hover {
    color: #0056CC;
    text-decoration: underline;
}

/* Tablet Styles for new sections */
@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .cta-buttons {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 64px;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e8eaed;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.price-card.popular {
    border: 2px solid #136EE1;
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #136EE1;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.card-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.period {
    font-size: 18px;
    color: #666;
}

.savings {
    margin-top: 8px;
    color: #136EE1;
    font-weight: 600;
    font-size: 16px;
}

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

.features-list li {
    padding: 8px 0;
    color: #555;
    font-size: 16px;
    position: relative;
    padding-left: 24px;
    text-align: left;
}

.features-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #34C759;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
}

.plan-button {
    width: 100%;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Onest', 'Inter', sans-serif;
    text-decoration: none;
}

.demo-btn { background: #FFFFFF; color: #000; border: 1px solid #000;}

.monthly-btn { background: #136EE1; color: #FFFFFF; }

.yearly-btn { background: #136EE1; color: #FFFFFF; }

/* Remove individual hover on plan buttons; card hover already present */
.plan-button:hover { transform: none; }

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    padding: 24px;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e0e8ff;
}

.guarantee-icon {
    font-size: 32px;
}

.guarantee-text h4, .guarantee-text .h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.guarantee-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Footer v2 */
.footer-v2 {
    background: linear-gradient(316.21deg, #63B2FC -41.28%, #D9F6FF 94.33%);
    color: #201F24;
    padding: 80px 0 20px;
}

.footer-v2-container, .footer-disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.footer-col {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-logo-img { width: 200px; height: auto; }

.footer-links, .footer-langs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #201F24;
    text-decoration: none;
    font-size: 14px;
}

.footer-link:hover { text-decoration: underline; }

.footer-langs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.footer-langs .menu-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    padding: 8px 12px; 
    border-radius: 80px; 
    text-decoration: none; 
    color: #0D0A38; 
    font-weight: 500; 
    font-size: 14px; 
}
.footer-langs .menu-link.active { background: #EFF0F2; }
.footer-langs .menu-flag { width: 16px; height: 16px; border-radius: 8px; display: block; }
.footer-langs .menu-code { display: none; }

.footer-share {margin: 10px; margin-top: 50px;}
.share-title {font-weight: 600;}

@media (min-width: 768px) {
    .footer-v2-container { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
}

 
/* Footer disclaimer */
.footer-disclaimer {
    text-align: right;
    font-size: 12px;
    color: #2E2E2E;
    opacity: 0.8;
    padding: 40px 20px 0;
}
/* ========== Who Is It For v3 (desktop/tablet) ========== */
.who-is-it-for-v3 { display: none; padding: 100px 0; background: #f8fbff; }

.who-v3-cards { position: relative; display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }

.who-v3-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px;
    border: 1px solid #D9D9D9;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-v3-card .card-media {
    width: 277px;
    height: 185px;
    border-radius: 16px;
    position: relative;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.who-v3-card .card-media img { max-height: 160px; height: auto; object-fit: contain; display: block; }

.who-v3-card .card-content { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.who-v3-card .card-title { font-weight: 600; font-size: 20px; line-height: 150%; color: #141212; }
.who-v3-card .card-desc  { font-weight: 500; font-size: 16px; line-height: 150%; color: #666666; }

/* Direction alternation */
.who-v3-card.dir-row { flex-direction: row; }
.who-v3-card.dir-row-reverse { flex-direction: row-reverse; }

/* Horizontal shifts (first is shifted right) */
.who-v3-card.shift-right { transform: translateX(20px); }
.who-v3-card.shift-left  { transform: translateX(-20px); }

/* Individual gradient backgrounds under transparent PNGs */
.who-v3-card.g1 .card-media { background: linear-gradient(126.99deg, #D2F5FF 12.4%, #7CE0FF 163.89%); }
.who-v3-card.g2 .card-media { background: linear-gradient(144.52deg, #FFEAC0 8.38%, #FFCF90 88.9%); }
.who-v3-card.g3 .card-media { background: linear-gradient(123.72deg, #FFEAF0 -23.81%, #FB669F 381.91%); }
.who-v3-card.g4 .card-media { background: linear-gradient(135.1deg, #D0EDFD -2.79%, #C9C6FE 112.27%); }
.who-v3-card.g5 .card-media { background: linear-gradient(140.02deg, #EAF9FF -25.67%, #68F08C 253.96%); }

/* Visibility rules: mobile uses old section, tablet/desktop use v3 */
@media (min-width: 768px) { .who-is-it-for-v3 { display: block; } }

/* Hover as other cards */
.who-v3-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

/* Mobile layout for new block */
@media (max-width: 767px) {
    .who-is-it-for-v3 { display: block; padding: 64px 0; }
    .who-v3-cards { gap: 16px; max-width: 100%; }
    .who-v3-card {
        flex-direction: column !important;
        align-items: stretch;
        transform: none !important;
        padding: 16px;
        gap: 12px;
        border-radius: 16px;
    }
    .who-v3-card .card-media { width: 100%; height: 160px; border-radius: 12px; }
    .who-v3-card .card-media img { max-height: 130px; margin: 0 auto; }
    .who-v3-card .card-content { padding: 6px 2px 0; }
    .who-v3-card .card-title { font-size: 18px; line-height: 1.35; }
    .who-v3-card .card-desc  { font-size: 14px; line-height: 1.5; color: #666; }
}


/* wx1.ru */
.fixedmenu{display:none;}
.wxfaq h2{font-size:1.2em;padding-top:2em;}
.wxfaq .su-spoiler {background:linear-gradient(316.21deg, #63B2FC -41.28%, #C7ECFF 100%);
	padding:1em;
	border: 1px solid #D9D9D9;
    border-radius: 16px;
    /*background: #FFFFFF;*/
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;


}
/*
linear-gradient(316.21deg, #63B2FC -41.28%, #C7ECFF 100%)

.page_container{
max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;}
*/