/* =========================================
   LOCAL FONTS (GOOGLE ADS COMPLIANCE)
   ========================================= */

/* MANROPE */




/* FREDOKA */




:root {
    /* VIBRANT MEXICAN COLOR PALETTE */
    --color-dark: #2D3436;        /* Soft Black */
    --color-dark-soft: #4A5568;   
    --color-primary: #FF6B00;     /* Vibrant Orange */
    --color-primary-hover: #E65C00;
    --color-primary-shadow: #CC5500;
    --color-accent: #00D2D3;      /* Bright Cyan */
    --color-accent-light: #E0F7FA;
    
    --color-text-main: #2D3436;
    --color-text-muted: #636E72;
    --color-bg-page: #F8F9FA;
    --color-border: #DFE6E9;
    
    /* VOLUMINOUS SHADOWS & BORDERS */
    --shadow-soft: 0 4px 10px rgba(0,0,0,0.04);
    --shadow-medium: 0 12px 24px -4px rgba(0,0,0,0.08);
    --shadow-heavy: 0 20px 40px -10px rgba(255, 107, 0, 0.15);
    --shadow-3d-btn: 0 6px 0 #CC5500;
    
    --radius-lg: 32px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

/* =========================================
   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; 
}

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
   ========================================= */
.top-bar { 
    background: #FFFFFF; 
    color: var(--color-text-muted); 
    font-size: 13px; 
    padding: 12px 0; 
    border-bottom: 1px solid var(--color-border); 
}
.top-bar-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.tb-left, .tb-right { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}
.tb-item { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}
.tb-item svg { 
    width: 16px; 
    height: 16px; 
    color: var(--color-accent); 
}
.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-accent); 
    border-radius: 50%; 
    box-shadow: 0 0 0 rgba(0, 210, 211, 0.4); 
    animation: pulse 2s infinite; 
    margin-right: 5px; 
}
@keyframes pulse { 
    0% { box-shadow: 0 0 0 0 rgba(0, 210, 211, 0.4); } 
    70% { box-shadow: 0 0 0 6px rgba(0, 210, 211, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(0, 210, 211, 0); } 
}

/* =========================================
   3. HEADER / NAVIGATION
   ========================================= */
.main-header { 
    background: #FFFFFF; 
    position: relative; 
    z-index: 100; 
    transition: 0.3s; 
    border-bottom: 1px solid transparent; 
}
.main-header.scrolled { 
    border-bottom-color: var(--color-border); 
    box-shadow: var(--shadow-soft); 
}
.header-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 80px; 
}
.brand-logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.logo-shield { 
    width: 44px; 
    height: 44px; 
    background: var(--color-bg-page); 
    border-radius: 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.logo-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.5px;
}

.desktop-nav { 
    display: flex; 
    gap: 35px; 
    font-weight: 700; 
    font-size: 16px; 
    color: var(--color-text-main); 
}
.desktop-nav a {
    transition: 0.2s;
}
.desktop-nav a:hover { color: var(--color-primary); }

/* 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: 3px;
    background-color: var(--color-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* =========================================
   4. LIGHT & VIBRANT HERO SECTION
   ========================================= */
.main-hero { 
    background-color: #FFFBF0;
    background-image: radial-gradient(circle at 10% 20%, #FFE5D9 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, #E0F7FA 0%, transparent 40%);
    padding: 50px 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; 
    gap: 8px; 
    background: #FFFFFF; 
    border: 2px solid #FFE5D9; 
    padding: 10px 20px; 
    border-radius: 30px; 
    color: var(--color-primary); 
    font-size: 14px; 
    font-weight: 800; 
    margin-bottom: 25px; 
    box-shadow: var(--shadow-soft);
}
.hero-text-content h1 { 
    font-size: 48px; 
    font-weight: 800; 
    color: var(--color-dark); 
    line-height: 1.15; 
    margin-bottom: 15px; 
    letter-spacing: -1px; 
}
.hero-text-content p { 
    font-size: 16px; 
    color: var(--color-text-muted); 
    margin-bottom: 25px; 
    max-width: 500px; 
    line-height: 1.5; 
    font-weight: 500;
}
.hero-benefits { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    list-style: none;
}
.hero-benefits li { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    color: var(--color-text-main); 
    font-size: 15px; 
}

.icon-bulb { 
    width: 40px; 
    height: 40px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
}
.icon-bulb svg { width: 22px; height: 22px; }

.icon-bulb.green { background: #D1FAE5; color: #10B981; box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2); }
.icon-bulb.blue { background: #E0F7FA; color: #00D2D3; box-shadow: 0 4px 10px rgba(0, 210, 211, 0.2); }
.icon-bulb.orange { background: #FFE5D9; color: #FF6B00; box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2); }

.hero-benefits strong { 
    color: var(--color-dark); 
    font-size: 16px; 
    font-weight: 800; 
    display: block; 
    margin-bottom: 2px; 
}

/* =========================================
   5. VOLUMINOUS CALCULATOR CARD
   ========================================= */
.hero-calculator { 
    background: #fff; 
    border-radius: var(--radius-lg); 
    padding: 35px; 
    box-shadow: var(--shadow-heavy); 
    position: relative; 
    border: 1px solid #FFF4EB;
}
.calc-top { 
    margin-bottom: 25px; 
    border-bottom: 2px dashed var(--color-border); 
    padding-bottom: 15px; 
}
.calc-top h3 { 
    font-size: 22px; 
    font-weight: 800; 
    color: var(--color-dark); 
}
.calc-control { margin-bottom: 25px; }
.calc-label-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    margin-bottom: 15px; 
}
.calc-label-row span:first-child { 
    font-size: 14px; 
    font-weight: 800; 
    text-transform: uppercase; 
    color: var(--color-text-muted); 
    letter-spacing: 0.5px; 
}
.calc-val-large { 
    font-size: 38px; 
    font-weight: 800; 
    color: var(--color-dark); 
    line-height: 1; 
}

/* Custom Range Slider 3D */
.voluminous-slider { 
    width: 100%; 
    -webkit-appearance: none; 
    height: 10px; 
    background: var(--color-border); 
    border-radius: 8px; 
    outline: none; 
    margin-bottom: 12px; 
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.voluminous-slider::-webkit-slider-thumb { 
    -webkit-appearance: none; 
    width: 32px; 
    height: 32px; 
    background: #fff; 
    border: 6px solid var(--color-primary); 
    border-radius: 50%; 
    cursor: pointer; 
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4); 
    transition: 0.2s; 
}
.voluminous-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-scale { 
    display: flex; 
    justify-content: space-between; 
    font-size: 13px; 
    color: var(--color-text-muted); 
    font-weight: 700; 
}

/* Promo Switch Box */
.calc-promo-box {
    background: #FEF9F5;
    border: 2px solid #FFE5D9;
    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: 24px; }
.promo-texts { display: flex; flex-direction: column; }
.promo-texts strong { font-size: 14px; font-weight: 800; color: var(--color-dark); }
.promo-texts span { font-size: 11px; color: var(--color-text-muted); font-weight: 600; }

/* Switch Toggle CSS */
.switch-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}
.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: 18px; width: 18px;
    left: 3px; bottom: 3px;
    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(20px); }

/* Summary Box */
.calc-summary { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
    margin-bottom: 25px; 
}
.summary-item { 
    display: flex; 
    flex-direction: column; 
    gap: 2px; 
}
.summary-item span { 
    font-size: 13px; 
    color: var(--color-text-muted); 
    font-weight: 700; 
    text-transform: uppercase; 
}
.summary-item strong { 
    font-size: 24px; 
    font-weight: 800; 
    color: var(--color-dark); 
}

/* 3D Call to Action Button */
.btn-main-cta { 
    display: block; 
    width: 100%; 
    background: var(--color-primary); 
    color: #fff; 
    text-align: center; 
    padding: 18px; 
    border-radius: var(--radius-md); 
    font-size: 18px; 
    font-weight: 800; 
    transition: 0.2s; 
    box-shadow: var(--shadow-3d-btn); 
    transform: translateY(-2px);
}
.btn-main-cta:hover { 
    transform: translateY(0); 
    box-shadow: 0 2px 0 #CC5500; 
}
.btn-main-cta:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #CC5500;
}

.calc-security { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 6px; 
    font-size: 11px; 
    color: #A0AEC0; 
    margin-top: 20px; 
    font-weight: 700; 
}
.calc-security svg { width: 14px; height: 14px; }

/* =========================================
   6. OFFERS FEED (TICKET CARDS DESIGN)
   ========================================= */
.offers-feed { padding: 80px 0 100px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 38px; font-weight: 800; color: var(--color-dark); margin-bottom: 15px; letter-spacing: -0.5px; }
.section-header p { font-size: 18px; color: var(--color-text-muted); max-width: 600px; margin: 0 auto; font-weight: 500; }

.offers-listing { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

/* Карточка-билет (Используем текущий HTML класс .offer-row) */
.offer-row {
    /* Плавный градиент вместо резкого обрыва */
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #FFF4EB 100%);
    border-radius: 20px;
    padding: 35px 25px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.06));
    border: none;
    transition: transform 0.3s ease, filter 0.3s ease;
    gap: 0;
    overflow: hidden; /* Важно для вырезов и градиента */
}

.offer-row:hover {
    transform: translateY(-6px);
    filter: drop-shadow(0 15px 30px rgba(255, 107, 0, 0.15));
}

/* Бейдж */
.promo-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 0 0 16px 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Логотип */
.logo-box {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.logo-box img {
    max-height: 100%;
    max-width: 160px;
    object-fit: contain;
}

/* Сетка с информацией */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 15px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* 1. СУММА (Растягивается на всю ширину) */
.info-col:nth-child(1) {
    grid-column: 1 / -1;
    padding-bottom: 25px;
    border-bottom: 2px dashed #DFE6E9;
    margin-bottom: 15px;
    position: relative;
}

/* Вырезы по бокам билета (Крепятся к границе Суммы) */
.info-col:nth-child(1)::before,
.info-col:nth-child(1)::after {
    content: '';
    position: absolute;
    bottom: -12px;
    width: 24px;
    height: 24px;
    background: var(--color-bg-page);
    border-radius: 50%;
    z-index: 5;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.info-col:nth-child(1)::before { left: -37px; } 
.info-col:nth-child(1)::after { right: -37px; }

.info-col:nth-child(1) .lbl-sm {
    font-size: 12px; 
    color: var(--color-text-muted); 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}
.info-col:nth-child(1) .val-lg {
    font-size: 38px; 
    color: var(--color-primary); 
    font-weight: 800; 
    line-height: 1; 
    margin-top: 5px; 
    display: block;
}

/* 2 и 3. СТАВКА И СРОК (Внизу билета) */
.info-col:nth-child(2), .info-col:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}
.info-col:nth-child(2) .lbl-sm, .info-col:nth-child(3) .lbl-sm {
    font-size: 12px; 
    color: var(--color-text-muted); 
    font-weight: 700; 
    text-transform: uppercase;
}
.info-col:nth-child(2) .val-lg, .info-col:nth-child(3) .val-lg {
    font-size: 16px; 
    color: var(--color-dark); 
    font-weight: 800; 
    margin-top: 4px;
}

.action-box {
    width: 100%;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

/* Объемная 3D Кнопка */
.btn-apply {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 6px 0 var(--color-primary-shadow);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s ease;
    border: none;
}

.btn-apply:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 var(--color-primary-shadow);
    color: #fff;
    background: var(--color-primary-hover);
}

.btn-apply:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 transparent;
}


/* =========================================
   7. HOW IT WORKS (STEPS)
   ========================================= */
.how-it-works { padding: 100px 0; background: #fff; border-top: 1px solid var(--color-border); }
.steps-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.step-card { text-align: center; }
.step-num { 
    width: 60px; height: 60px; 
    background: var(--color-accent-light); 
    color: var(--color-dark); 
    border-radius: 20px; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 24px; font-weight: 800; 
    margin: 0 auto 25px; 
    box-shadow: 0 4px 10px rgba(0, 210, 211, 0.15);
}
.step-h { font-size: 22px; font-weight: 800; margin-bottom: 15px; color: var(--color-dark); }
.step-p { font-size: 16px; color: var(--color-text-muted); line-height: 1.6; font-weight: 500; }

/* =========================================
   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; }
.lx-acc-item { background: #fff; border: 2px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: 0.3s; }
.lx-acc-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: 28px; color: var(--color-primary); transition: 0.3s;
}
.lx-acc-content { padding: 0 30px 30px; color: var(--color-text-muted); font-size: 16px; font-weight: 500; line-height: 1.6; display: none; }
.lx-acc-item.lx-active .lx-acc-trigger::after { content: '−'; transform: rotate(180deg); }
.lx-acc-item.lx-active .lx-acc-content { display: block; }

/* =========================================
   9. GOOGLE ADS COMPLIANCE SECTIONS
   ========================================= */
.partners-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    border-top: 1px solid var(--color-border);
}
.partners-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
}
.partners-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: 0.3s;
}
.partners-grid:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.partner-logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logo img {
    max-height: 100%;
    max-width: 120px;
    border-radius: 8px;
}

.transparency-section {
    background: var(--color-bg-page);
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.transparency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.transparency-box h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
}
.transparency-box p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.legal-disclaimer {
    background: #FFFFFF;
    padding: 60px 0;
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.6;
}
.legal-disclaimer h3 {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 15px;
    font-weight: 800;
}
.legal-disclaimer p { margin-bottom: 12px; }
.legal-disclaimer strong { color: var(--color-dark-soft); }

/* =========================================
   10. FOOTER
   ========================================= */
.site-footer { 
    background: var(--color-dark); 
    color: #A0AEC0; 
    padding: 60px 0 40px; 
    border-top: 6px solid var(--color-primary); 
    text-align: center; 
}
.foot-logo .logo-text { font-size: 40px; color: #fff; }
.foot-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin: 30px 0 40px; }
.foot-links a { color: #E2E8F0; font-weight: 700; font-size: 16px; }
.foot-links a:hover { color: var(--color-primary); }
.copyright { font-size: 14px; opacity: 0.6; 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) {
    .top-bar { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-text-content { text-align: center; }
    .hero-text-content p { margin: 0 auto 20px; }
    .hero-benefits { align-items: center; text-align: left; width: fit-content; margin: 0 auto; }
    .hero-calculator { max-width: 600px; margin: 0 auto; }
    
    .offers-listing { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .header-flex { height: 70px; }
    
    .mobile-toggle { display: flex; }
    
    .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); /* Hidden state */
        transition: clip-path 0.3s ease-in-out;
    }
    .desktop-nav.lx-menu-open {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* Visible state */
    }
    .desktop-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--color-border);
    }
    
    /* VERY COMPACT MOBILE HERO - FOR IMMEDIATE VISIBILITY OF CALCULATOR */
    .main-hero { padding: 15px 0 30px; } 
    .hero-grid { gap: 15px; } 
    
    .hero-badge { margin-bottom: 8px; padding: 4px 10px; font-size: 11px; }
    .hero-text-content h1 { font-size: 30px; margin-bottom: 8px; line-height: 1.1; }
    .hero-text-content p { font-size: 14px; margin-bottom: 12px; line-height: 1.3; }
    
    .hero-benefits { gap: 8px; }
    .hero-benefits li { gap: 12px; font-size: 13px; }
    .hero-benefits strong { font-size: 13px; }
    
    .icon-bulb { width: 30px; height: 30px; border-radius: 8px; }
    .icon-bulb svg { width: 16px; height: 16px; }

    /* Compact Mobile Calculator */
    .hero-calculator { padding: 20px 15px; }
    .calc-top { margin-bottom: 15px; padding-bottom: 10px; }
    .calc-top h3 { font-size: 18px; }
    
    .calc-control { margin-bottom: 15px; }
    .calc-val-large { font-size: 26px; }
    .calc-promo-box { padding: 10px 12px; margin-bottom: 15px; }
    .promo-texts strong { font-size: 12px; }
    
    .calc-summary { gap: 10px; margin-bottom: 15px; }
    .summary-item strong { font-size: 18px; }
    
    .btn-main-cta { padding: 14px; font-size: 16px; }
    
    /* MOBILE OFFERS TICKET CARDS */
    .offers-listing {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    
    .offer-row {
        padding: 30px 20px 25px; /* Отступы по краям 20px */
        filter: drop-shadow(0 6px 12px rgba(0,0,0,0.06));
    }

    /* Подстраиваем вырезы под мобильные отступы (-20px - 12px) */
    .info-col:nth-child(1)::before { left: -32px; }
    .info-col:nth-child(1)::after { right: -32px; }

    .info-col:nth-child(1) .val-lg { font-size: 32px; }
    .btn-apply { font-size: 16px; padding: 14px; }

    .steps-container { grid-template-columns: 1fr; gap: 30px; }
    
    .partners-grid { gap: 20px; }
    .partner-logo { height: 30px; }
    
    .foot-links { flex-direction: column; gap: 15px; }
}
