/**
 * Vindeksa Custom Styles
 * Versija: 1.0 (2025-12-04)
 * 
 * Block 1: CSS Variables
 * Block 2: Reset & Base
 * Block 3: Hero Section
 * Block 4: Profiles Grid
 * Block 5: Profile Cards
 * Block 6: Features Section
 * Block 7: CTA Section
 * Block 8: Mobile Call Button
 * Block 9: Responsive
 */

/* ============================================
   BLOCK 1: CSS VARIABLES
   ============================================ */
:root {
    --vind-warm-white: #FDFBF7;
    --vind-cream: #F7F4ED;
    --vind-warm-gray-light: #E8E4DC;
    --vind-warm-gray: #9A9589;
    --vind-anthracite: #3D3D3D;
    --vind-deep-charcoal: #2A2A2A;
    --vind-gold-accent: #C4956A;
    --vind-gold-hover: #B8865A;
    --vind-success-green: #4A7C59;
    --vind-font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --vind-space-xs: 0.5rem;
    --vind-space-sm: 1rem;
    --vind-space-md: 1.5rem;
    --vind-space-lg: 2rem;
    --vind-space-xl: 3rem;
    --vind-space-2xl: 4rem;
    --vind-shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
    --vind-shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
}

/* ============================================
   BLOCK 2: RESET & BASE
   ============================================ */
.vindeksa-landing {
    font-family: var(--vind-font-main);
    background: var(--vind-warm-white);
    color: var(--vind-deep-charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.vindeksa-landing * {
    box-sizing: border-box;
}

/* ============================================
   BLOCK 3: HERO SECTION
   ============================================ */
.vind-hero {
    background: linear-gradient(135deg, var(--vind-cream) 0%, var(--vind-warm-white) 100%);
    padding: var(--vind-space-2xl) var(--vind-space-lg);
    text-align: center;
}

.vind-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--vind-deep-charcoal);
    margin-bottom: var(--vind-space-sm);
    letter-spacing: -1px;
}

.vind-hero p {
    font-size: 1.125rem;
    color: var(--vind-warm-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BLOCK 4: PROFILES GRID
   ============================================ */
.vind-profiles {
    padding: var(--vind-space-2xl) var(--vind-space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.vind-section-title {
    text-align: center;
    margin-bottom: var(--vind-space-xl);
}

.vind-section-title h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--vind-deep-charcoal);
    margin-bottom: var(--vind-space-xs);
}

.vind-section-title p {
    color: var(--vind-warm-gray);
}

.vind-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--vind-space-lg);
}

/* ============================================
   BLOCK 5: PROFILE CARDS
   ============================================ */
.vind-profile-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--vind-shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vind-profile-card:hover {
    box-shadow: var(--vind-shadow-hover);
    transform: translateY(-4px);
}

.vind-profile-card.vind-premium {
    border: 2px solid var(--vind-gold-accent);
}

.vind-profile-card.vind-premium .vind-badge {
    display: block;
}

.vind-badge {
    display: block;
    background: var(--vind-gold-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--vind-space-xs) var(--vind-space-sm);
    text-align: center;
}

.vind-profile-image {
    background: linear-gradient(180deg, #f8f6f2 0%, #eeebe4 100%);
    padding: var(--vind-space-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.vind-profile-svg {
    width: 100%;
    max-width: 280px;
}

.vind-profile-info {
    padding: var(--vind-space-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vind-profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vind-deep-charcoal);
    margin-bottom: var(--vind-space-xs);
}

.vind-profile-specs {
    display: flex;
    gap: var(--vind-space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--vind-space-md);
    padding-bottom: var(--vind-space-md);
    border-bottom: 1px solid var(--vind-warm-gray-light);
}

.vind-spec-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--vind-warm-gray);
}

.vind-spec-item strong {
    color: var(--vind-anthracite);
    font-weight: 600;
}

.vind-spec-divider {
    color: var(--vind-warm-gray-light);
}

.vind-profile-features {
    list-style: none;
    margin: 0 0 var(--vind-space-md) 0;
    padding: 0;
    flex-grow: 1;
}

.vind-profile-features li {
    display: flex;
    align-items: center;
    gap: var(--vind-space-xs);
    padding: var(--vind-space-xs) 0;
    font-size: 0.9rem;
    color: var(--vind-anthracite);
}

.vind-profile-features li::before {
    content: "✓";
    color: var(--vind-success-green);
    font-weight: 600;
}

.vind-profile-footer {
    margin-top: auto;
}

.vind-profile-price {
    display: flex;
    align-items: baseline;
    gap: var(--vind-space-xs);
    margin-bottom: var(--vind-space-sm);
}

.vind-price-from {
    font-size: 0.875rem;
    color: var(--vind-warm-gray);
}

.vind-price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--vind-deep-charcoal);
}

.vind-price-unit {
    font-size: 0.875rem;
    color: var(--vind-warm-gray);
}

.vind-btn-calculate {
    display: block;
    width: 100%;
    padding: var(--vind-space-md);
    background: var(--vind-gold-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: center;
    text-decoration: none;
}

.vind-btn-calculate:hover {
    background: var(--vind-gold-hover);
    color: white;
}

/* ============================================
   BLOCK 6: FEATURES SECTION
   ============================================ */
.vind-features {
    background: var(--vind-cream);
    padding: var(--vind-space-2xl) var(--vind-space-lg);
}

.vind-features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--vind-space-lg);
}

.vind-feature-card {
    background: white;
    padding: var(--vind-space-lg);
    border-radius: 12px;
    text-align: center;
}

.vind-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--vind-space-sm);
    background: var(--vind-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.vind-feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--vind-space-xs);
    color: var(--vind-deep-charcoal);
}

.vind-feature-card p {
    font-size: 0.875rem;
    color: var(--vind-warm-gray);
    margin: 0;
}

/* ============================================
   BLOCK 7: CTA SECTION
   ============================================ */
.vind-cta {
    background: var(--vind-deep-charcoal);
    color: white;
    padding: var(--vind-space-2xl) var(--vind-space-lg);
    text-align: center;
}

.vind-cta h2 {
    font-size: 1.75rem;
    margin-bottom: var(--vind-space-sm);
}

.vind-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--vind-space-lg);
}

.vind-cta-buttons {
    display: flex;
    gap: var(--vind-space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.vind-btn-primary {
    padding: var(--vind-space-md) var(--vind-space-xl);
    background: var(--vind-gold-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.vind-btn-primary:hover {
    background: var(--vind-gold-hover);
    color: white;
}

.vind-btn-secondary {
    padding: var(--vind-space-md) var(--vind-space-xl);
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.vind-btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    color: white;
}

/* ============================================
   BLOCK 8: MOBILE CALL BUTTON
   ============================================ */
.vind-mobile-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--vind-gold-accent);
    color: white;
    padding: var(--vind-space-md);
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.vind-mobile-call:hover {
    color: white;
}

/* ============================================
   BLOCK 9: RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .vind-profiles-grid {
        grid-template-columns: 1fr;
    }
    
    .vind-hero h1 {
        font-size: 1.75rem;
    }
    
    .vind-cta-buttons {
        flex-direction: column;
    }
    
    .vind-btn-primary,
    .vind-btn-secondary {
        width: 100%;
    }
    
    .vind-mobile-call {
        display: block;
    }
    
    .vindeksa-landing {
        padding-bottom: 60px;
    }
}

/* ============================================
   BLOCK 10: PROFILE IMAGES (PNG)
   Added: 2025-12-04
   ============================================ */
.vind-profile-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
}
