/* ДЕКЛАРАЦИЯ НА БРАНДОВИТЕ ЦВЕТОВЕ ОT БИОБОРДА */
:root {
    --bg-dark-blue: #0c1535;      /* Истински дълбок тъмносин фон */
    --brand-blue: #0056ff;        
    --brand-light-blue: #3babe4;  /* Светлосин цвят за акценти */
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --bg-manifesto: #f8fafc;     
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-dark-blue);
    color: var(--text-white);
    overflow-x: hidden;
    padding-top: 80px; 
}

/* ЛОГО */
.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text-white);
}
.logo span {
    color: var(--brand-light-blue);
}

/* НАВИГАЦИЯ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 21, 53, 0.7); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 8%;
}

.nav-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.menu-placeholder {
    width: 40px; 
}

/* HERO СЕКЦИЯ - ЗАРЕЖДАНЕ НА УЕБ ИЗОБРАЖЕНИЕТО (WEB_HERO.PNG) */
.hero-section {
    position: relative;
    min-height: 85vh; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Избутва съдържанието (таймера) надолу, за да не пречи на графичния текст */
    align-items: center;
    padding-bottom: 120px; 
    
    /* Добавяне на уеб изображението (.png) като фон върху тъмносиния цвят */
    background: url('web_hero.png') no-repeat center center;
    background-size: contain; /* Запазва пропорциите на текста без изрязване */
    background-color: var(--bg-dark-blue);
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ТАЙМЕР */
.timer-box {
    background: rgba(12, 21, 53, 0.85); /* Малко по-плътен фон за максимална четимост */
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 45px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    max-width: 550px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.timer-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 20px;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.time-block span {
    font-size: 38px; 
    font-weight: 800;
    color: var(--text-white);
    background: rgba(0, 86, 255, 0.25);
    border: 1px solid rgba(0, 86, 255, 0.4);
    width: 100%;
    padding: 10px 0;
    border-radius: 12px;
    margin-bottom: 8px;
    text-align: center;
}

.time-block label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* АНИМИРАНИ СТРЕЛКИ НАДОЛУ */
.arrow-bounce-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}

/* МАНФЕСТ СЕКЦИЯ */
.manifesto-section {
    background-color: var(--bg-manifesto);
    color: #0f172a;
    padding: 120px 8%;
}

.manifesto-container {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.section-tag {
    color: #0056ff;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 22px;
    display: block;
    margin-bottom: 20px;
}

.manifesto-title {
    color: var(--brand-blue);
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 45px;
    letter-spacing: -1px;
}

.manifesto-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.manifesto-p {
    font-size: 20px;
    line-height: 1.6;
    color: #475569;
}

.strong-text {
    margin-top: 30px;
    font-weight: 700;
    color: #0f172a;
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #0f172a;
}

.final-highlight {
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-blue);
    margin-top: 15px;
}

/* СЕКЦИЯ 3: КАРТА С ПОКРИТИЕ */
.map-section {
    padding: 100px 8%;
    background-color: var(--bg-dark-blue);
    text-align: center;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Контрол на видимостта на картата за голям екран */
.web-asset { display: block !important; }
.mobile-asset { display: none !important; }

/* ФУТЪР */
.footer-section {
    background-color: #060c22;
    padding: 50px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 14px;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-light-blue);
}

/* МЕДИЯ КУЕРИТА ЗА АДАПТИВНОСТ */
@media (max-width: 1024px) {
    .manifesto-section { padding: 100px 5%; }
    .hero-section { background-size: contain; }
}

@media (max-width: 768px) {
    /* ПОДМЕНЯНЕ НА УЕБ С МОБИЛНИЯ ФОН (MOBILE_HERO.PNG) */
    .hero-section {
        min-height: 90vh; 
        padding-bottom: 80px;
        background: url('mobile_hero.png') no-repeat center center;
        background-size: contain; 
        background-color: var(--bg-dark-blue);
    }
/* МОБИЛНО АДАПТИРАНЕ НА НОВИТЕ СЕКЦИИ */
    .freedom-info-container {
        flex-direction: column-reverse; /* Снимката отива над текста на мобилен за по-добър баланс */
        gap: 35px;
    }
    
    .freedom-info-content {
        text-align: left;
    }

    .freedom-benefits-list li {
        align-items: flex-start;
    }

    .referral-steps-chain {
        flex-direction: column; /* Стъпките се подреждат вертикално на телефон */
        gap: 35px;
    }

    .ref-step-card {
        padding: 30px 20px;
    }
    
    .plans-main-btn {
        width: 100%;
        justify-content: center;
    }
    /* АКТИВИРАНЕ НА МОБИЛНАТА КАРТА */
    .web-asset { display: none !important; }
    .mobile-asset { display: block !important; }

    .navbar {
        padding: 15px 5%;
    }
    
    .timer-box {
        padding: 18px 15px;
        max-width: 90%;
    }
    
    .time-block span {
        font-size: 28px;
        padding: 8px 0;
    }
    
    .manifesto-section {
        padding: 80px 6%; 
    }
    
    .manifesto-title {
        font-size: 42px;
    }

    .map-section {
        padding: 60px 4%;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
/* НОВИ СЕКЦИИ: ДОВЕДИ ПРИЯТЕЛ & СТЪПКИ */
.steps-section {
    padding: 120px 8%;
    background-color: #090f26; /* Леко по-тъмен нюанс за динамика */
    text-align: center;
}

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

.section-tag-light {
    color: var(--brand-light-blue);
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 15px;
    display: block;
    margin-bottom: 20px;
}

.steps-main-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.steps-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 171, 228, 0.3);
}

.step-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--brand-light-blue);
    margin-bottom: 20px;
    opacity: 0.8;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* СЕКЦИЯ: ВОДЕНЕ КЪМ СВОБОДА И ПАКЕТИ */
.cta-section {
    padding: 100px 8%;
    background-color: var(--bg-dark-blue);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.featured-box {
    background: linear-gradient(135deg, rgba(0, 86, 255, 0.15) 0%, rgba(12, 21, 53, 0.8) 100%);
    border: 1px solid rgba(0, 86, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-icon {
    font-size: 40px;
    color: var(--brand-light-blue);
    margin-bottom: 25px;
}

.featured-box .cta-icon {
    color: #ffffff;
    background: var(--brand-blue);
    padding: 10px;
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.cta-link-btn {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid var(--brand-light-blue);
    padding-bottom: 5px;
    transition: color 0.2s, border-color 0.2s;
}

.cta-link-btn:hover {
    color: var(--brand-light-blue);
}

.cta-btn-primary {
    background-color: var(--brand-blue);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 10px 25px rgba(0, 86, 255, 0.2);
}

.cta-btn-primary:hover {
    background-color: #1e70ff;
    transform: translateY(-2px);
}
/* ==========================================================================
   ИЗЦЯЛО АДАПТИВНИ СЕКЦИИ: ДОВЕДИ ПРИЯТЕЛ & СТРАНИЦИ
   ========================================================================== */

/* СТЪПКИ - ДОВЕДИ ПРИЯТЕЛ */
.steps-section {
    padding: clamp(60px, 8vw, 120px) 5%;
    background-color: #090f26; /* Лека промяна на фона за визуален баланс */
    text-align: center;
    width: 100%;
}

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

.section-tag-light {
    color: var(--brand-light-blue);
    font-weight: 900;
    letter-spacing: 3px;
    font-size: clamp(12px, 2vw, 14px);
    display: block;
    margin-bottom: 15px;
}

.steps-main-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.steps-subtitle {
    color: var(--text-muted);
    font-size: clamp(15px, 2.5vw, 18px);
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* Автоматична мобилна мрежа: на телефон е 1 колона, на таблет/PC се разпъва сама */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: clamp(30px, 5vw, 40px) clamp(20px, 4vw, 30px);
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 1024px) {
    .step-card:hover {
        transform: translateY(-5px);
        border-color: rgba(59, 171, 228, 0.3);
    }
}

.step-number {
    font-size: clamp(36px, 5vw, 42px);
    font-weight: 900;
    color: var(--brand-light-blue);
    margin-bottom: 15px;
    opacity: 0.8;
}

.step-card h3 {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: clamp(14px, 2vw, 15px);
    line-height: 1.6;
}

/* СЕКЦИЯ: ВОДЕНЕ КЪМ СТРАНИЦИ */
.cta-section {
    padding: clamp(60px, 8vw, 100px) 5%;
    background-color: var(--bg-dark-blue);
    width: 100%;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: clamp(30px, 6vw, 50px) clamp(20px, 5vw, 40px);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between; /* Държи бутоните подравнени най-долу */
    min-height: 320px;
}

.featured-box {
    background: linear-gradient(135deg, rgba(0, 86, 255, 0.15) 0%, rgba(12, 21, 53, 0.8) 100%);
    border: 1px solid rgba(0, 86, 255, 0.3);
}

.cta-icon {
    font-size: 36px;
    color: var(--brand-light-blue);
    margin-bottom: 20px;
}

.featured-box .cta-icon {
    color: #ffffff;
    background: var(--brand-blue);
    padding: 8px;
    border-radius: 10px;
}

.cta-box h2 {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-box p {
    color: var(--text-muted);
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-link-btn {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid var(--brand-light-blue);
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
    align-self: flex-start;
}

.cta-link-btn:hover {
    color: var(--brand-light-blue);
}

.cta-btn-primary {
    background-color: var(--brand-blue);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 10px 20px rgba(0, 86, 255, 0.15);
    text-align: center;
    display: inline-block;
    width: auto;
}

/* Бутонът за пакетите става на цял екран само на малки телефони за по-лесно кликане */
@media (max-width: 480px) {
    .cta-btn-primary {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .cta-btn-primary:hover {
        background-color: #1e70ff;
        transform: translateY(-2px);
    }
}
/* ==========================================================================
   СЕКЦИЯ: КАКВО Е СВОБОДАТА (ФИКСИРАН ДЕСКТОП ВДЯСНО + МОБИЛЕН ОТДОЛУ)
   ========================================================================== */
.freedom-info-section {
    background-color: var(--bg-manifesto);
    color: #0f172a;
    padding: clamp(60px, 6vw, 100px) 8% 0 8%; /* 0 отдолу, за да стъпи снимката на ръба */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.freedom-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row; /* Текстът вляво, снимката вдясно на десктоп */
    align-items: flex-end; /* Снимката стъпва на дъното */
    justify-content: space-between;
    gap: 50px;
}

.freedom-info-content {
    flex: 1.2;
    max-width: 600px;
    padding-bottom: clamp(40px, 6vw, 90px); /* Вдига текста и бутона нагоре, докато снимката си седи до тях */
}

.freedom-info-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

.freedom-info-title .accent-text {
    color: var(--brand-blue);
}

.freedom-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.freedom-benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.freedom-benefits-list li .list-icon {
    font-size: 22px;
    color: var(--brand-blue);
    background: rgba(0, 86, 255, 0.06);
    padding: 10px;
    border-radius: 50%;
}

.freedom-benefits-list li p {
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 500;
    color: #334155;
}

/* БУТОН */
.freedom-btn-wrapper {
    display: flex;
    justify-content: flex-start;
}

.freedom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--brand-blue);
    color: var(--text-white);
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 8px 25px rgba(0, 86, 255, 0.2);
}

.freedom-cta-btn:hover {
    background-color: #1e70ff;
    transform: translateY(-2px);
}

/* КОНТЕЙНЕР СНИМКА (ДЕСКТОП) */
.freedom-info-image-wrapper {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.freedom-bottom-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 220px;
}

/* ==========================================================================
   МЕДИЯ КУЕРИ - САМО ЗА МОБИЛНИ УСТРОЙСТВА (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .freedom-info-section {
        padding: 60px 6% 0 6%;
    }

    .freedom-info-container {
        flex-direction: column; /* САМО НА МОБИЛЕН: Снимката пада най-отдолу под текста */
        align-items: stretch;
        gap: 30px;
    }
    
    .freedom-info-content {
        padding-bottom: 10px;
    }

    .freedom-btn-wrapper {
        justify-content: center;
    }

    .freedom-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .freedom-info-image-wrapper {
        justify-content: center;
        width: 100%;
    }

    .freedom-bottom-img {
        max-width: 90%;
        margin: 0 auto;
    }
}

/* СЕКЦИЯ: ДОВЕДИ ПРИЯТЕЛ (ТЪМНА) */
.referral-section {
    background-color: var(--bg-dark-blue); /* Дълбокото брандово тъмносин фон */
    padding: clamp(60px, 8vw, 120px) 8%;
    text-align: center;
    width: 100%;
}

.referral-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-tag-blue {
    color: var(--brand-light-blue); /* Твоят акцентен светлосин цвят */
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
}

.referral-main-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.referral-bonus-text {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-muted);
    margin-bottom: 60px;
}

.highlight-bonus {
    color: var(--brand-light-blue);
    font-weight: 700;
}

.referral-steps-chain {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.ref-step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 25px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.ref-step-badge {
    position: absolute;
    top: -15px;
    left: 25px;
    background: var(--brand-light-blue);
    color: var(--bg-dark-blue);
    font-weight: 900;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.ref-icon {
    font-size: 38px;
    color: var(--brand-light-blue);
}

.ref-step-card p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-muted);
    font-weight: 500;
}

/* СЕКЦИЯ: РАЗГЛЕДАЙ ПАКЕТИТЕ (СВЕТЛА CTA) */
.plans-cta-section {
    background-color: var(--bg-manifesto);
    padding: clamp(80px, 10vw, 140px) 6%;
    text-align: center;
    width: 100%;
}

.plans-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.plans-cta-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #0056ff;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.plans-cta-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #475569;
    margin-bottom: 40px;
    font-weight: 500;
}

.plans-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--brand-blue);
    color: var(--text-white);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px; /* Модерен заоблен хап-стил за бутона */
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 10px 30px rgba(0, 86, 255, 0.25);
}

.plans-main-btn:hover {
    background-color: #1e70ff;
    transform: translateY(-2px);
}

.container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:80px;
}

.container-small{
    max-width:1100px;
    margin:auto;
}

.freedom-section-v2{
    background:#f8fafc;
    padding:120px 8%;
}

.freedom-text{
    flex:1;
}

.freedom-text h2{
    font-size:52px;
    font-weight:900;
    line-height:1.1;
    color:#0f172a;
    margin:20px 0;
}

.freedom-text h2 span{
    color:#0056ff;
}

.freedom-intro{
    color:#475569;
    margin-bottom:40px;
    font-size:18px;
}

.freedom-image{
    flex:1;
    text-align:right;
}

.freedom-image img{
    max-width:500px;
    width:100%;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.benefit-card {
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    color: #0f172a; /* ДОБАВИ ТОВА: Прави всички текстове в картата тъмни по подразбиране */
}

.benefit-card span{
    color:#0056ff;
    font-size:34px;
}

.process-section{
    padding:120px 8%;
    background:#0c1535;
    text-align:center;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.process-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    padding:40px;
    border-radius:24px;
}
.process-card h3 {
    margin-bottom: 15px; /* Ако ти се струва малко, може да го увеличиш на 20px или 25px */
}

.step-number{
    color:#3babe4;
    font-size:48px;
    font-weight:900;
    margin-bottom:20px;
}

.process-card span{
    font-size:40px;
    color:#3babe4;
}

.trust-section{
    background:#0c1535;
    padding:120px 8%;
    text-align:center;
}

.section-title-dark{
    color:#ffffff;
    font-size:30px;
    font-weight:900;
    margin-bottom:60px;
}
.process-section .section-title {
    margin-bottom: 20px; /* Увеличи тази стойност (напр. 35px), ако искаш още повече въздух */
}

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

.trust-card{
    background:white;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    color: #0f172a; /* ДОБАВИ ТОВА: Прави заглавията (Прозрачност, Поддръжка, Свобода) черни */
}

/* ДОБАВИ И ТОВА ПОД НЕГО: За да направиш описанията малко по-меко тъмно сиви за по-добър дизайн */
.trust-card p {
    color: #475569; 
}

.trust-card span{
    font-size:40px;
    color:#0056ff;
}

.cta-benefits{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:40px;
    color:#475569;
    font-weight:600;
}

.benefit-card:hover,
.process-card:hover,
.trust-card:hover{
    transform:translateY(-6px);
    transition:.3s;
}

@media(max-width:768px){

.container{
    flex-direction:column;
    gap:40px;
}

.freedom-text h2{
    font-size:38px;
}

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

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

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

.cta-benefits{
    flex-direction:column;
    gap:12px;
}

  

.plans-main-btn{
    width:100%;
    justify-content:center;
}

}

/* ==========================================================================
   ДОБАВЕНО: БУРГЕР МЕНЮ И МОБИЛНА НАВИГАЦИЯ (БЕЗ ПРОМЯНА НА СТАРИЯ КОД)
   ========================================================================== */

/* Стилизиране на бургер иконата */
.burger-btn {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Анимация на бургера, когато е активен (става на 'X') */
.burger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--brand-light-blue);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background-color: var(--brand-light-blue);
}

/* Стилизиране на падащото меню (Overlay) */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(12, 21, 53, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
}

/* Когато менюто се активира */
.mobile-nav.active {
    right: 0;
}

/* Линковете в менюто */
.mobile-nav a {
    color: var(--text-white);
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--brand-light-blue);
}

/* Промяна на големината само на "Под Свобода ние разбираме" */
.freedom-info-title {
    font-size: 30px !important; /* Намали или увеличи тази стойност по твой избор (оригиналната е по-голяма) */
}

/* Запазване или отделна настройка за текста в синьо */
.freedom-info-title .accent-text {
    font-size: 36px; /* Тук задаваш какъв да бъде размерът на синия текст, ако искаш да остане голям */
}

/* Намаляване на разстоянието между редовете в секция Манифест */
.manifesto-text {
    gap: 10px !important; /* Намалява празното пространство между самите редове (оригинално е 18px) */
}

.manifesto-p, .highlight-text {
    line-height: 1.3 !important; /* Прави самите текстове по-компактни, ако се пренесат на нов ред */
}
/* ==========================================================================
   ГЛОБАЛНО НАМАЛЯВАНЕ НА РАЗСТОЯНИЯТА ЗА ВСИЧКИ СЕКЦИИ НА САЙТА
   ========================================================================== */

/* 1. Намаляване на вътрешния отстъп (въздуха отгоре и отдолу) на абсолютно всички секции */
.manifesto-section,
.process-section,
.freedom-info-section,
.trust-section,
.plans-cta-section,
.map-section,
.steps-section,
.cta-section,
.referral-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* 2. Намаляване на разстоянието под абсолютно всички главни заглавия на секции */
.manifesto-title,
.section-title,
.section-title-dark,
.steps-main-title,
.referral-main-title,
.plans-cta-title,
.freedom-info-title {
    margin-bottom: 15px !important;
}

/* 3. Намаляване на разстоянието под подзаглавията и вътрешните текстови контейнери */
.steps-subtitle,
.referral-bonus-text,
.plans-cta-subtitle,
.section-subtitle {
    margin-bottom: 30px !important;
}

/* 4. Корекция за мобилни устройства, за да затиснем старите големи отстъпи */
@media (max-width: 768px) {
    .manifesto-section,
    .process-section,
    .freedom-info-section,
    .trust-section,
    .plans-cta-section,
    .map-section,
    .steps-section,
    .cta-section,
    .referral-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}
