/* =====================================================
   SECTION COMPONENTS - Zajedničke sekcije
   ===================================================== */

/* Section Base */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section--dark {
    background: linear-gradient(180deg, 
        rgba(8, 8, 14, 1) 0%, 
        rgba(12, 12, 20, 1) 50%, 
        rgba(8, 8, 14, 1) 100%
    );
}

.section--gradient {
    background: linear-gradient(180deg, 
        rgba(255, 107, 53, 0.03) 0%, 
        transparent 30%,
        transparent 70%,
        rgba(255, 152, 0, 0.02) 100%
    );
}

/* Section Header */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
    gap: 12px;
}

.section-header.text-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-header.text-left {
    align-items: flex-start;
    text-align: left;
}

/* Section header sa dugmetom pored naslova */
.section-header.with-action {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    gap: 24px;
}

.section-header.with-action > div {
    text-align: left;
}

.section-header.with-action .section-title {
    justify-content: flex-start;
    text-align: left;
}

.section-header.with-action .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 768px) {
    .section-header.with-action {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .section-header.with-action > div {
        text-align: center;
    }
    
    .section-header.with-action .section-title {
        justify-content: center;
        text-align: center;
    }
    
    .section-header.with-action .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,140,0,0.08));
    color: var(--primary);
    padding: 12px 24px;
    border-radius: var(--radius-full, 9999px);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,107,53,0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.section-badge i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

/* Section Title */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

/* Section Subtitle */
.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    margin-top: 16px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
}

/* =====================================================
   SECTION RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 0 8px;
    }
    
    .section-badge {
        margin: 0 auto 14px;
        padding: 8px 16px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .section-badge i {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        gap: 10px;
        flex-wrap: wrap;
        padding: 0 8px;
    }
    
    .section-title i {
        font-size: 1.25rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-top: 12px;
        padding: 0 8px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 24px;
    }
    
    .section-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* =====================================================
   APP PROMO SECTION
   ===================================================== */
.app-promo-section {
    background: linear-gradient(180deg, 
        rgba(255, 107, 53, 0.05) 0%, 
        transparent 100%
    );
}

.app-promo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-promo__content {
    text-align: left;
}

.app-promo__content .section-badge {
    margin: 0 0 20px 0;
}

.app-promo__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.app-promo__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.app-promo__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.app-promo__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.app-promo__features i {
    color: var(--primary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .app-promo__features {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
        max-width: 250px;
        margin: 0 auto 24px;
    }
    
    .app-promo__features li {
        font-size: 0.9rem;
        justify-content: flex-start;
    }
}

.app-promo__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-promo__phone {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0a0a0f 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 107, 53, 0.1);
    position: relative;
}

.app-promo__phone::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #0a0a0f;
    border-radius: 12px;
}

.app-promo__phone-screen {
    width: 100%;
    height: 100%;
    background: #0c0c14;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-promo__phone-header {
    padding: 50px 16px 16px;
    background: #0c0c14;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-promo__phone-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.app-promo__phone-logo {
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
}

.app-promo__phone-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #0c0c14;
    flex: 1;
}

.app-promo__phone-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #16161e;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-promo__card-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.app-promo__card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.app-promo__card-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.app-promo__card-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

.app-promo__phone-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px 16px;
    background: #16161e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.app-promo__nav-item {
    font-size: 1.1rem;
    opacity: 0.5;
}

.app-promo__nav-item.active {
    opacity: 1;
}

@media (max-width: 992px) {
    .app-promo {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .app-promo__content {
        text-align: center;
    }
    
    .app-promo__content .section-badge {
        margin: 0 auto 20px;
    }
    
    .app-promo__features {
        justify-content: center;
    }
    
    .app-promo__visual {
        order: -1;
    }
    
    .app-promo__phone {
        width: 240px;
        height: 480px;
    }
    
    .app-promo__card-img {
        width: 50px;
        height: 50px;
    }
    
    .app-promo__card-name {
        font-size: 0.75rem;
    }
    
    .app-promo__card-price {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .app-promo__features {
        grid-template-columns: 1fr;
    }
    
    .app-promo__phone {
        width: 200px;
        height: 400px;
        border-radius: 30px;
    }
    
    .app-promo__phone::before {
        width: 60px;
        height: 18px;
        top: 14px;
    }
    
    .app-promo__phone-screen {
        border-radius: 24px;
    }
    
    .app-promo__phone-header {
        padding: 40px 12px 12px;
    }
    
    .app-promo__phone-logo-img {
        width: 22px;
        height: 22px;
    }
    
    .app-promo__phone-logo {
        font-size: 0.8rem;
    }
    
    .app-promo__phone-content {
        padding: 10px;
        gap: 8px;
    }
    
    .app-promo__phone-card {
        padding: 8px;
        gap: 8px;
    }
    
    .app-promo__card-img {
        width: 40px;
        height: 40px;
    }
    
    .app-promo__card-name {
        font-size: 0.65rem;
    }
    
    .app-promo__card-price {
        font-size: 0.6rem;
    }
    
    .app-promo__phone-nav {
        padding: 10px 12px;
    }
    
    .app-promo__nav-item {
        font-size: 0.9rem;
