/* =========================
   HERO ABOUT SECTION
========================= */

.about-project {
    text-align: center;
    padding: 60px 20px 30px;
    color: #111;
}

.about-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* TITLE */

.about-title {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    /* subtle premium effect */
    letter-spacing: -0.5px;
}

.about-project .about-title {
    color: rgb(39, 62, 89);
}

/* DESCRIPTION */

.about-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
}

/* POINTS */

.about-points {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    margin-bottom: 30px;
}

.about-points span {
    background: rgba(0,0,0,0.04);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.08);
    color: #222;
    transition: 0.2s;
}

.about-points span:hover {
    background: rgba(0,0,0,0.07);
}

/* CTA */

.about-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* PRIMARY BUTTON */

.cta-primary {
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76,175,80,0.25);
}

/* SECONDARY BUTTON */

.cta-secondary {
    background: transparent;
    color: #111;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.15);
    transition: 0.25s;
}

.cta-secondary:hover {
    background: rgba(0,0,0,0.05);
}

#fuel-form,
#prices-container {
    scroll-margin-top: 800px; /* настрой си стойността */
}

/* =========================
   FACEBOOK CTA BUTTON
========================= */

.facebook-button-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 22px;
    border-radius: 10px;

    text-decoration: none;
    font-weight: 600;
    font-size: 14px;

    color: white;
    background: linear-gradient(135deg, #1877f2, #3b5998);

    transition: 0.25s;
}

/* HOVER */

.facebook-button-1:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24,119,242,0.3);
}

/* ACTIVE */

.facebook-button-1:active {
    transform: translateY(0);
    box-shadow: none;
}

/* =========================
   HOW IT WORKS - UPGRADE
========================= */

/* =========================
   HOW IT WORKS - FINAL
========================= */

.how-it-works {
    margin: 100px 0;
}

/* =========================
   HEADER
========================= */

.how-header {
    text-align: center;
    margin-bottom: 50px;
}

.how-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: rgba(37,99,235,0.1);
    color: #2563eb;

    margin-bottom: 10px;
}

/* 🔥 PREMIUM TITLE */

.how-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;

    background: linear-gradient(90deg, #2563eb, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: -0.5px;
}

.how-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 12px auto 0;

    border-radius: 999px;

    background: linear-gradient(90deg, #2563eb, #22c55e);
    opacity: 0.8;
}

.how-subtitle {
    color: #555;
    font-size: 14px;
}

/* =========================
   GRID
========================= */

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

/* =========================
   CARD
========================= */

.step {
    padding: 30px 24px;
    border-radius: 16px;

    background: rgb(33, 52, 72);
    border: 1px solid rgba(255,255,255,0.1);

    text-align: center;

    transition: 0.2s;

    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

/* =========================
   ICON
========================= */

.step-icon {
    width: 56px;
    height: 56px;

    margin: 0 auto 16px auto;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;

    border-radius: 12px;

    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
}

.step:nth-child(2) .step-icon {
    background: linear-gradient(135deg, #22c55e, #4ade80);
}

.step:nth-child(3) .step-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

/* =========================
   TEXT
========================= */

.step h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.step p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(226,232,240,0.7);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .about-desc {
        font-size: 16px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-points {
        gap: 10px;
    }

}