
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.8px;
    line-height: 1.6;
    color: #0f172a;
    background: #ffffff;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    /* background: rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(20px); */
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #3b82f6;
    text-decoration: none;
    letter-spacing: -0.5px;
    img {
        height: 40px;
        width: auto;
        vertical-align: middle;
    }
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3b82f6;
}

.cta-nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-secondary {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(0,0,0,0.2) ), url('bg4.jpg') no-repeat;      
    background-position: center, center;   
    background-size: cover, cover;
    overflow: hidden;        
}

/* Gradient clouds background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 80% 20%, rgba(147, 51, 234, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 900px 500px at 50% 90%, rgba(16, 185, 129, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text small {
    font-size: 40px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #0f172a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 24px;
    color: #64748b;
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-text p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: start;
    img {
        height: 32px;
        vertical-align: middle;
    }
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-large {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.9);
    color: #64748b;
    border: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 1);
    color: #0f172a;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.glass-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.5);
}

.card-1 {
    top: 20px;
    left: 20px;
    width: 280px;
    height: 120px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 180px;
    right: 40px;
    width: 260px;
    height: 120px;
    animation: float 6s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 60px;
    left: 40px;
    width: 260px;
    height: 120px;
    animation: float 6s ease-in-out infinite 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    width: 40px;
    height: 40px;
    display: inline;
    vertical-align: middle;
    img {
        width: auto;
        height: 40px;
    }
}

.card-title {
    font-weight: 600;
    color: #0f172a;
    font-size: 14px;
    margin-left: 8px;
    display: inline;
}

.card-text {
    font-size: 14px;
    color: #64748b;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(0,0,0,0.2) ), url('bg_services_2.jpg') no-repeat;
    background-size: cover, cover;
    background-position: center;

}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    position: relative;
    z-index: 1;
    img {
        height: 40px;
    }
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item p {
    color: #94a3b8;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 600px 400px at 30% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 400px 300px at 70% 80%, rgba(147, 51, 234, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: #0f172a;
    color: #94a3b8;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h4 {
    color: #3b82f6;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-brand p {
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-column h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-brand img {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3b82f6;
}

.text-center {
    text-align: center;
    justify-content: center;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
}

.footer-content {
    a {
        color: #94a3b8;
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 500;
        &:hover {
            color: #fff;
        }
    }
}

.link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    &:hover {
        color: #1e40af;
    }
}

/* --- Paketi (Cjenovnik) --- */
.pricing {
    padding: 60px 0;
    background: url('../assets/bg_paketi.jpg'), linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    background-size: cover, cover;
    background-position: center, center;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 24px 20px 20px 20px;
    width: 320px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(236, 236, 236, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pricing-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 36px rgba(0,0,0,0.10);
    border-color: #19a7ce;
}
.pricing-card h3 {
    font-size: 1.35rem;
    color: #19a7ce;
    margin-bottom: 18px;
    font-weight: 700;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 26px;
    text-align: left;
}
.pricing-card ul li {
    font-size: 1rem;
    color: #262c35;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}
.pricing-card ul li::before {
    content: "✓";
    color: #19a7ce;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.pricing-card .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);  
    color: #fff;
    padding: 12px 28px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    display: inline-block;
    margin-top: auto;
}

.pricing-icon {
    width: 128px;
    height: 128px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
/* --- FAQ --- */
.faq {
    padding: 60px 0 70px 0;
    background: #fff;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #e9ecef;
    padding: 24px 0;
    transition: background 0.13s;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item h4 {
    font-size: 1.15rem;
    color: #19a7ce;
    margin-bottom: 8px;
    font-weight: 700;
}
.faq-item p {
    font-size: 1rem;
    color: #444b57;
    margin: 0;
}

@media (max-width: 900px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 100%;
        max-width: 340px;
    }
}



/* Responsive */
@media (max-width: 768px) {

    .hero-content {
        padding-top: 120px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    
    }

    .hero-visual {
        display: none;
    }
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-visual {
        height: 300px;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
