/* =========================================
   LOCAL FONTS (GOOGLE ADS COMPLIANCE)
   ========================================= */

/* MANROPE (Основной текст) */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/manrope-v20-cyrillic_latin-regular.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/manrope-v20-cyrillic_latin-600.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/manrope-v20-cyrillic_latin-800.woff2') format('woff2');
    font-display: swap;
}

/* NUNITO (Заголовки и Лого) */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-v32-cyrillic_latin-regular.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/nunito-v32-cyrillic_latin-800.woff2') format('woff2');
    font-display: swap;
}

:root {
    /* ECO GREEN PALETTE (Playful & Friendly) */
    --color-dark: #0F172A;        /* Deep Forest Green */
    --color-dark-soft: #1E293B;   /* Teal/Dark Mint */
    
    --color-primary: #0284C7;     /* Main Emerald/Green */
    --color-primary-hover: #0369A1;
    --color-primary-shadow: #075985;
    
    --color-accent: #38BDF8;      /* Bright Mint */
    --color-accent-light: #F0F9FF;/* Soft Pastel Mint */
    
    --color-text-main: #1F2937;   /* Soft Dark Gray */
    --color-text-muted: #6B7280;
    --color-bg-page: #F9FAFB;
    --color-border: #E5E7EB;
    
    /* PLAYFUL SQUIRCLE BORDERS */
    --radius-xl: 40px;
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 14px;
    
    /* SOFT BOUNCY SHADOWS */
    --shadow-soft: 0 8px 24px rgba(2, 132, 199, 0.08);
    --shadow-medium: 0 16px 32px -8px rgba(2, 132, 199, 0.12);
    --shadow-heavy: 0 24px 48px -12px rgba(15, 23, 42, 0.15);
    --shadow-3d-btn: 0 6px 0 var(--color-primary-shadow);
}

/* =========================================
   1. RESET & BASICS
   ========================================= */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

body { 
    font-family: 'Manrope', sans-serif; 
    background: var(--color-bg-page); 
    color: var(--color-text-main); 
    line-height: 1.6; 
}

h1, h2, h3, h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s; 
}

.wrapper { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    position: relative;
}

.text-accent { color: var(--color-primary); }

/* =========================================
   2. TOP BAR
   ========================================= */
.ch-top-bar { 
    background: #E6F4EA; 
    color: var(--color-dark-soft); 
    font-size: 13px; 
    font-weight: 800;
    padding: 10px 0; 
}
.ch-top-bar-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.tb-left, .tb-right { 
    display: flex; 
    align-items: center; 
}
.tb-item { 
    display: flex; 
    align-items: center; 
}
.tb-phone { 
    font-weight: 800; 
    color: var(--color-dark); 
    letter-spacing: 0.5px; 
}
.pulse-dot { 
    display: inline-block; 
    width: 10px; 
    height: 10px; 
    background: var(--color-primary); 
    border-radius: 50%; 
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4); 
    animation: pulse 2s infinite; 
    margin-right: 6px; 
}
@keyframes pulse { 
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); } 
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } 
}

/* =========================================
   3. HEADER / NAVIGATION
   ========================================= */
.ch-site-header { 
    background: #ffffff; 
    position: relative; 
    z-index: 100; 
    transition: 0.3s; 
    border-bottom: 1px solid var(--color-border); 
}
.ch-site-header.scrolled { 
    border-bottom-color: var(--color-border); 
    box-shadow: var(--shadow-soft); 
}
.ch-header-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 80px; 
}
.ch-brand-logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.ch-logo-text {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.ch-logo-text .text-1 { color: var(--color-dark); }
.ch-logo-text .text-2 { color: var(--color-primary); }

.ch-desktop-nav { 
    display: flex; 
    gap: 30px; 
    font-weight: 800; 
    font-size: 16px; 
    color: var(--color-text-main); 
}
.ch-desktop-nav a {
    transition: 0.2s;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}
.ch-desktop-nav a:hover { 
    color: var(--color-dark); 
    background: var(--color-accent-light);
}

/* MOBILE HAMBURGER MENU */
.mobile-toggle {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
.mobile-toggle span {
    width: 100%;
    height: 4px;
    background-color: var(--color-dark);
    border-radius: 4px;
    transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* =========================================
   4. PLAYFUL HERO SECTION
   ========================================= */
.ch-hero-section { 
    background-color: #ECFDF5;
    background-image: radial-gradient(circle at 10% 20%, #F0F9FF 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, #FFFBEB 0%, transparent 40%);
    padding: 60px 0 80px; 
    position: relative; 
    overflow: hidden; 
}
.hero-grid { 
    display: grid; 
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 40px; 
    align-items: center; 
    position: relative; 
    z-index: 2; 
}
.hero-badge { 
    display: inline-flex; 
    align-items: center; 
    background: #FFFFFF; 
    border: 2px solid var(--color-primary); 
    padding: 10px 20px; 
    border-radius: 30px; 
    color: var(--color-dark); 
    font-size: 15px; 
    font-weight: 800; 
    margin-bottom: 25px; 
    box-shadow: 0 4px 10px rgba(2,132,199,0.08);
}
.hero-text-content h1 { 
    font-size: 52px; 
    font-weight: 800; 
    color: var(--color-dark); 
    line-height: 1.15; 
    margin-bottom: 20px; 
}
.hero-text-content p { 
    font-size: 18px; 
    color: var(--color-text-muted); 
    margin-bottom: 30px; 
    max-width: 500px; 
    line-height: 1.5; 
}
.ch-hero-features { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    list-style: none;
}
.ch-hero-features li { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    color: var(--color-text-main); 
    font-size: 15px; 
}

.icon-bulb { 
    width: 48px; 
    height: 48px; 
    border-radius: var(--radius-sm); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    font-size: 24px;
}
.icon-bulb.green { background: #E0F2FE; box-shadow: 0 4px 10px rgba(2, 132, 199, 0.12); }
.icon-bulb.mint { background: #E0F2FE; box-shadow: 0 4px 10px rgba(2, 132, 199, 0.12); }
.icon-bulb.gray { background: #F1F5F9; box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05); }

.ch-hero-features strong { 
    color: var(--color-dark); 
    font-size: 16px; 
    font-weight: 800; 
    display: block; 
    margin-bottom: 2px; 
}

/* =========================================
   5. SQUIRCLE CALCULATOR CARD
   ========================================= */
.ch-calc-block { 
    background: #ffffff; 
    border-radius: var(--radius-xl); 
    padding: 40px; 
    box-shadow: var(--shadow-heavy); 
    position: relative; 
    border: 2px solid #F0FDF4;
}
.calc-top { 
    margin-bottom: 25px; 
    border-bottom: 2px dashed var(--color-border); 
    padding-bottom: 15px; 
    text-align: center;
}
.calc-top h3 { 
    font-size: 26px; 
    color: var(--color-dark); 
}
.calc-control { margin-bottom: 30px; }
.calc-label-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    margin-bottom: 15px; 
}
.calc-label-row span:first-child { 
    font-size: 15px; 
    font-weight: 800; 
    color: var(--color-text-muted); 
}
.calc-val-large { 
    font-family: 'Nunito', sans-serif;
    font-size: 38px; 
    font-weight: 800; 
    color: var(--color-primary); 
    line-height: 1; 
    white-space: nowrap;
}

/* Custom Playful Slider */
.playful-slider { 
    width: 100%; 
    -webkit-appearance: none; 
    height: 14px; 
    background: var(--color-border); 
    border-radius: 14px; 
    outline: none; 
    margin-bottom: 12px; 
}
.playful-slider::-webkit-slider-thumb { 
    -webkit-appearance: none; 
    width: 36px; 
    height: 36px; 
    background: #fff; 
    border: 8px solid var(--color-primary); 
    border-radius: 50%; 
    cursor: pointer; 
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3); 
    transition: 0.2s; 
}
.playful-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-scale { 
    display: flex; 
    justify-content: space-between; 
    font-size: 14px; 
    color: var(--color-text-muted); 
    font-weight: 800; 
}

/* Promo Switch Box */
.calc-promo-box {
    background: #F0F9FF;
    border: 2px solid #BAE6FD;
    border-radius: var(--radius-md);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.promo-info { display: flex; align-items: center; gap: 12px; }
.promo-icon { font-size: 28px; }
.promo-texts { display: flex; flex-direction: column; }
.promo-texts strong { font-size: 15px; font-weight: 800; color: var(--color-dark); }
.promo-texts span { font-size: 13px; color: var(--color-dark-soft); font-weight: 600; }

/* Switch Toggle */
.switch-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
    margin-left: 15px;
}
.switch-toggle input { opacity: 0; width: 0; height: 0; }
.slider-round {
    position: absolute; cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #CBD5E1;
    transition: .4s; border-radius: 34px;
}
.slider-round:before {
    position: absolute; content: "";
    height: 20px; width: 20px;
    left: 4px; bottom: 4px;
    background-color: white;
    transition: .4s; border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
input:checked + .slider-round { background-color: var(--color-primary); }
input:checked + .slider-round:before { transform: translateX(22px); }

/* Summary */
.calc-summary { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
    margin-bottom: 25px; 
    background: #F9FAFB;
    padding: 20px;
    border-radius: var(--radius-md);
}
.summary-item { 
    display: flex; 
    flex-direction: column; 
    gap: 4px; 
}
.summary-item span { 
    font-size: 13px; 
    color: var(--color-text-muted); 
    font-weight: 800; 
}
.summary-item strong { 
    font-family: 'Nunito', sans-serif;
    font-size: 24px; 
    font-weight: 800;
    color: var(--color-dark); 
}

/* 3D Call to Action Button */
.btn-main-cta { 
    display: block; 
    width: 100%; 
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff; 
    text-align: center; 
    padding: 18px; 
    border-radius: var(--radius-md); 
    font-size: 20px; 
    font-weight: 800; 
    transition: all 0.3s ease; 
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.2); 
    font-family: 'Nunito', sans-serif;
}
.btn-main-cta:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.3); 
    background: linear-gradient(135deg, #0369A1 0%, #0284C7 100%);
}
.btn-main-cta:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2);
}

.calc-security { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    font-size: 13px; 
    color: var(--color-primary); 
    margin-top: 25px; 
    font-weight: 800; 
    text-align: center;
}
.calc-security span {
    text-align: center;
}
.calc-security svg { width: 18px; height: 18px; }

.micro-disclaimer {
    font-size: 11px; 
    color: #9CA3AF; 
    text-align: center; 
    margin-top: 15px; 
    line-height: 1.5; 
    padding: 0 10px;
}
.micro-disclaimer a { text-decoration: underline; }

/* =========================================
   6. OFFERS FEED (SQUIRCLE CARDS)
   ========================================= */
.offers-feed { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 42px; color: var(--color-dark); margin-bottom: 15px; }
.section-header p { font-size: 18px; color: var(--color-text-muted); max-width: 600px; margin: 0 auto; }

.offers-listing { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.ch-card-item {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border: 2px solid #F0FDF4;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ch-card-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: #F0F9FF;
}

/* Бейдж */
.promo-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #E0F2FE;
    color: #0369A1;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
    z-index: 2;
    border: 2px solid #BAE6FD;
    white-space: nowrap;
}

/* Логотип */
.logo-box {
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.logo-box img {
    max-height: 100%;
    max-width: 160px;
    object-fit: contain;
}

/* Сетка с информацией */
.info-grid {
    width: 100%;
    margin-bottom: 30px;
    background: var(--color-bg-page);
    border-radius: var(--radius-md);
    padding: 20px;
}

.info-row {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.amount-row {
    padding-bottom: 20px;
    border-bottom: 2px dashed #F0F9FF;
    margin-bottom: 15px;
}
.lbl-sm {
    font-size: 13px; 
    color: var(--color-text-muted); 
    font-weight: 800; 
}
.val-lg {
    font-family: 'Nunito', sans-serif;
    font-size: 36px; 
    font-weight: 800;
    color: var(--color-primary); 
    line-height: 1.1; 
    margin-top: 5px; 
}

.sub-row {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.sub-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}
.sub-col:first-child { border-right: 1px solid var(--color-border); }
.val-md {
    font-size: 16px; 
    color: var(--color-dark); 
    font-weight: 800; 
    margin-top: 4px;
}

.action-box {
    width: 100%;
    margin-top: auto;
}

.btn-apply {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 18px;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 6px 0 #0369A1;
    transition: 0.1s ease;
    border: none;
}

.btn-apply:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #0369A1;
    background: var(--color-primary);
}
.btn-apply:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 transparent;
}


/* =========================================
   7. HOW IT WORKS
   ========================================= */
.how-it-works { padding: 100px 0; background: #fff; }
.steps-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.step-card { 
    text-align: center; 
    background: #F0F9FF; 
    padding: 40px 30px; 
    border-radius: var(--radius-lg); 
}
.step-num { 
    width: 70px; height: 70px; 
    background: #fff; 
    color: var(--color-primary); 
    border-radius: 24px; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 32px; font-weight: 800; 
    margin: 0 auto 25px; 
    box-shadow: 0 10px 20px rgba(2,132,199,0.08);
    font-family: 'Nunito', sans-serif;
}
.step-h { font-size: 24px; color: var(--color-dark); font-family: 'Nunito', sans-serif; font-weight: 800; margin-bottom: 15px; }
.step-p { font-size: 16px; color: var(--color-text-muted); }

/* =========================================
   8. FAQ ACCORDION
   ========================================= */
.faq-block { padding: 100px 0; background: var(--color-bg-page); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.ch-faq-item { 
    background: #fff; 
    border: 2px solid var(--color-border); 
    border-radius: var(--radius-md); 
    overflow: hidden; 
    transition: 0.3s; 
}
.ch-faq-item:hover { border-color: var(--color-accent); box-shadow: var(--shadow-soft); }
.lx-acc-trigger { 
    width: 100%; text-align: left; padding: 25px 30px; 
    font-size: 18px; font-weight: 800; color: var(--color-dark); 
    background: none; border: none; cursor: pointer; 
    display: flex; justify-content: space-between; align-items: center;
}
.lx-acc-trigger::after {
    content: '+'; font-size: 32px; color: var(--color-primary); transition: 0.3s;
}
.lx-acc-content { padding: 0 30px 30px; color: var(--color-text-muted); font-size: 16px; display: none; }
.ch-faq-item.lx-active .lx-acc-trigger::after { content: '−'; transform: rotate(180deg); }
.ch-faq-item.lx-active .lx-acc-content { display: block; }

/* =========================================
   9. PARTNERS & LEGAL (GOOGLE ADS COMPLIANCE)
   ========================================= */
.partners-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}
.partners-section h2 { font-size: 36px; color: var(--color-dark); margin-bottom: 10px; }
.partners-section .subtitle { color: var(--color-text-muted); margin-bottom: 50px; font-size: 18px; }
.partners-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: 0.3s;
}
.partners-grid:hover { opacity: 1; filter: grayscale(0%); }
.partner-logo { height: 60px; display: flex; align-items: normal; }
.partner-logo img { max-height: 100%; border-radius: 12px; max-width: 100px;}

.legal-disclaimer {
    background: #E5E7EB;
    padding: 60px 0;
    font-size: 12px;
    color: var(--color-text-main);
}
.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.legal-col h3 {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}
.legal-col p { margin-bottom: 25px; line-height: 1.7; }
.legal-col strong { color: var(--color-dark); }

/* =========================================
   10. FOOTER
   ========================================= */
.ch-site-footer { 
    background: var(--color-dark); 
    color: #F0F9FF; 
    padding: 80px 0 40px; 
    text-align: center; 
}
.ch-foot-logo .ch-logo-text { font-size: 42px; }
.ch-foot-logo .text-1 { color: #ffffff; }
.ch-foot-logo .text-2 { color: var(--color-accent); }
.footer-contacts {
    margin: 30px 0;
    font-size: 14px;
    line-height: 2;
    color: #A7F3D0;
}
.footer-contacts strong { color: #fff; }
.foot-links { 
    display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; 
    margin: 30px 0 40px; 
}
.foot-links a { color: #fff; font-weight: 800; font-size: 16px; }
.foot-links a:hover { color: var(--color-accent); }
.ch-copyright { 
    font-size: 13px; opacity: 0.8; line-height: 1.6; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 30px; max-width: 800px; margin: 0 auto; 
}

/* =========================================
   11. RESPONSIVE DESIGN & MOBILE FIXES
   ========================================= */
@media (max-width: 1024px) {
    .ch-top-bar { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-text-content { text-align: center; }
    .hero-text-content p { margin: 0 auto 20px; }
    .ch-hero-features { align-items: center; text-align: left; width: fit-content; margin: 0 auto; }
    .ch-calc-block { max-width: 600px; margin: 0 auto; }
    
    .offers-listing { grid-template-columns: 1fr 1fr; }
    .legal-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
    /* MOBILE HEADINGS REDUCTION */
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 26px !important; margin-bottom: 10px; line-height: 1.25; }
    .section-header p { font-size: 14px !important; }

    .ch-header-flex { height: 70px; }
    .mobile-toggle { display: flex; }
    
    .ch-desktop-nav { 
        position: absolute; top: 70px; left: 0; width: 100%; 
        background: #fff; flex-direction: column; gap: 0; 
        box-shadow: var(--shadow-medium); 
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease-in-out;
    }
    .ch-desktop-nav.lx-menu-open { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .ch-desktop-nav a { padding: 18px 20px; border-bottom: 1px solid var(--color-border); border-radius: 0; }
    
    /* RADICAL MOBILE PADDING REDUCTION FOR HERO */
    .ch-hero-section { padding: 15px 0 30px; } 
    .hero-grid { gap: 10px; } 
    
    .hero-badge { margin-bottom: 10px; padding: 6px 14px; font-size: 12px; }
    .hero-text-content h1 { font-size: 32px; margin-bottom: 10px; }
    .hero-text-content p { font-size: 14px; margin-bottom: 15px; display: none; /* Скрываем текст ради калькулятора */ }
    
    .ch-hero-features { display: none; /* Скрываем буллиты на мобильном для компактности, либо делаем очень мелко */ }

    /* Compact Mobile Calculator */
    .ch-calc-block { padding: 25px 15px; border-radius: var(--radius-lg); }
    .calc-top { margin-bottom: 15px; padding-bottom: 10px; }
    .calc-top h3 { font-size: 20px; }
    
    .calc-control { margin-bottom: 20px; }
    .calc-label-row span:first-child { font-size: 13px; }
    .calc-val-large { font-size: 24px; white-space: nowrap; }
    
    .calc-promo-box { 
        padding: 12px 10px; 
        margin-bottom: 20px; 
        background: #F0F9FF;
        border-color: #BAE6FD;
        gap: 8px;
    }
    .promo-icon { font-size: 22px; }
    .promo-texts strong { font-size: 12px; }
    .promo-texts span { font-size: 10px; }
    .switch-toggle { width: 44px; height: 24px; margin-left: 8px; }
    .slider-round:before { height: 16px; width: 16px; left: 4px; bottom: 4px; }
    input:checked + .slider-round:before { transform: translateX(20px); }
    
    .calc-summary { 
        grid-template-columns: 1fr; 
        gap: 12px; 
        padding: 15px; 
        margin-bottom: 20px; 
    }
    .summary-item { 
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center; 
        width: 100%;
    }
    .summary-item span { 
        font-size: 13px; 
        margin-bottom: 0; 
    }
    .summary-item strong { 
        font-size: 18px; 
    }
    
    .btn-main-cta { padding: 16px; font-size: 18px; }
    
    /* MOBILE OFFERS TICKET CARDS */
    .offers-listing { grid-template-columns: 1fr; gap: 25px; }
    .ch-card-item { padding: 30px 20px 25px; border-radius: var(--radius-lg); }
    .val-lg { font-size: 32px; }

    .steps-container { grid-template-columns: 1fr; gap: 20px; }
    .step-card { padding: 30px 20px; }
    
    .partners-grid { gap: 15px; }
    .partner-logo { height: 40px; }
    
    .foot-links { flex-direction: column; gap: 15px; }
}