:root {
    --primary-blue: #0052FF;
    --dark: #000000;
    --gray: #F5F5F7;
    --border: #E5E5E5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo { font-weight: 900; font-size: 1.2rem; letter-spacing: -1px; }
.logo span { color: var(--primary-blue); font-weight: 400; }

.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-link { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem; }

.cta-black {
    background: var(--dark);
    color: white;
    padding: 12px 25px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: 0.3s;
}

.brand-logo {
    height: 100px; /* Podesi visinu prema potrebi */
    width: auto;
    display: block;
}

/* Opciono: Ako želiš da logo malo potamni na beloj pozadini ako je presvetao */
.brand-logo {
    filter: brightness(0.95);
    transition: 0.3s;
}

.brand-logo:hover {
    filter: brightness(1);
}

/* Hero Section */
.hero {
    padding-top: 150px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 40px 40px;
	padding-bottom: 20px;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 0 5%;
}

.badge {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.9;
    letter-spacing: -4px;
    font-weight: 900;
    margin-bottom: 25px;
}

.outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--dark);
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Bento Grid */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.bento-box {
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
}


.bento-box.light { border: 1px solid var(--border); background: white; }
.bento-box.dark, .bento-box.blue { 
    background: white; 
    color: var(--dark); 
    border: 1px solid var(--border); 
}
/* Zadrži samo ovo da prvi i dalje bude širok */
.bento-box.dark { grid-column: span 2; }

.bento-num { font-size: 2.5rem; font-weight: 900; letter-spacing: -2px; }
.bento-icon { font-size: 2rem; }
.bento-box p { font-weight: 700; font-size: 0.9rem; line-height: 1.3; }

/* Actions */
.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 22px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.3);
}

.cta-group { display: flex; align-items: center; gap: 25px; }
.trust-tag { font-size: 0.7rem; font-weight: 800; color: #aaa; text-transform: uppercase; }

/* Bottom Strip */
.footer-strip {
    margin-top: auto;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    h1 { font-size: 3.5rem; }
}

/* --- DRUGA SEKCIJA: JASNA DIFERENCIJACIJA --- */
.benefits-section.premium-blue {
    padding: 100px 5%;
    background-color: #f0f4ff; /* Ova boja se JASNO vidi pored bele */
    border-top: 1px solid #e0e7ff;
    position: relative;
}

.benefits-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -2px;
    color: #081021;
}

/* KARTICE KOJE "ODSKAČU" */
.benefits-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: #ffffff; /* Čisto bele kartice na plavoj pozadini */
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid #e0e7ff;
    
    display: flex;
    flex-direction: column;
    align-items: center; /* Centriranje svega */
    text-align: center;
    
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 82, 255, 0.05);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 82, 255, 0.12);
    border-color: #0052ff;
}

/* IKONICE - POPRAVLJENE DA SE UVEK VIDE */
.icon-wrap {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    background: #f0f4ff; /* Svetla podloga za ikonu */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

/* HOVER EFEKAT - Ikonica ostaje vidljiva, samo pozadina poplavi */
.info-card:hover .icon-wrap {
    background: #0052ff;
    color: #ffffff; /* Emoji/Ikona postaje bela i uočljiva */
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.6rem;
    font-weight: 850;
    margin-bottom: 15px;
    color: #081021;
}

.info-card p {
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .benefits-info-grid { grid-template-columns: 1fr; }
}

/* --- SECTION 3: MODERN CLINICAL --- */
.analysis-section.modern-clinical {
    padding: 100px 5%;
    background-color: #ffffff;
    position: relative;
}

.analysis-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Status Pulse */
.status-pulse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0f7ff;
    color: #0052ff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #0052ff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 82, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 82, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 82, 255, 0); }
}

.section-header-modern h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #0a1d37; /* Deep Navy */
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 60px;
}

.text-blue { color: #0052ff; }

/* CLINICAL CARDS */
.clinical-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.glass-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: #0052ff;
    box-shadow: 0 30px 60px rgba(0, 82, 255, 0.1);
}

.card-number {
    font-size: 0.85rem;
    font-weight: 900;
    color: #0052ff;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.glass-card h3 {
    font-size: 1.6rem;
    font-weight: 850;
    color: #0a1d37;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.glass-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.card-footer {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    letter-spacing: 1px;
}

/* INSIGHT BOX */
.insight-box {
    background: linear-gradient(135deg, #0a1d37 0%, #003db3 100%);
    border-radius: 35px;
    padding: 50px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.insight-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
    color: #4cc9f0;
}

.insight-content p {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.highlight-blue {
    color: #4cc9f0;
    font-weight: 900;
}

.insight-action {
    background: #ffffff;
    color: #0a1d37;
    padding: 25px 40px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 800;
    min-width: 280px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.bold { font-weight: 900; color: #0052ff; }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .clinical-cards { grid-template-columns: 1fr; }
    .insight-box { flex-direction: column; text-align: center; padding: 40px 30px; }
    .insight-action { min-width: 100%; }
}

/* 1. ČETVRTA  SEKCIJA */
/* --- WAVE TRANSITION --- */
.wave-transition-full {
    background-color: #ffffff;
    line-height: 0;
    width: 100%;
}

.wave-transition-full svg {
    display: block;
    width: 100vw;
    height: 120px;
}

/* --- CASE STUDY SECTION --- */
.case-study-section {
    background-color: #0a1d37;
    padding: 0 5% 100px;
    margin-top: -1px;
    color: #ffffff;
}

.case-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.case-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 850;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.case-description {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* SOCIAL BOX */
.social-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.doctor-icon {
    width: 54px;
    height: 54px;
    background: #0052ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doctor-icon svg { width: 28px; color: white; }

.social-text { font-size: 1rem; line-height: 1.4; color: #cbd5e1; }
.bold-white { display: block; color: white; font-weight: 800; margin-top: 5px; }

/* CTA DUGME */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.yellow-cta {
    background: #ffcc00;
    color: #0a1d37;
    padding: 20px 30px;
    border-radius: 14px;
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    text-align: center;
    transition: 0.3s ease;
}

.yellow-cta:hover { transform: translateY(-3px); background: #f5c200; }
.sub-cta { text-align: center; font-size: 0.85rem; color: #94a3b8; }

/* --- VIDEO FIX: Visina 600px i Contain --- */
.video-wrapper-600 {
    width: 100%;
    max-width: 450px;
    height: 600px; /* FIKSNA VISINA */
    border-radius: 25px;
    overflow: hidden;
    background: #000; /* Crna pozadina ako video ne popuni sve */
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-element-contain {
    width: 100%;
    height: 100%;
    object-fit: contain; /* KLJUČNO: Ceo video je vidljiv, nema crop-a */
    display: block;
}

@media (max-width: 1024px) {
    .case-container { grid-template-columns: 1fr; text-align: center; }
    .social-box { flex-direction: column; }
    .video-wrapper-600 { margin: 0 auto; height: 500px; }
}

/* 1. PETA SEKCIJA */

/* 1. Reset i pozadina - NE DIRAMO */
.wave-divider {
    background-color: #fff;
    line-height: 0;
    margin-top: -1px;
}

.process-section-fixed {
    background-color: #ffffff;
    padding: 80px 0 80px; 
    font-family: sans-serif;
}

/* 2. Container */
.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* 3. Header sekcije - OVDJE SU SMANJENI RAZMACI PREMA SLICI */
.section-header-modern {
    text-align: center;
    margin-bottom: 40px; /* Smanjeno sa 80px da se kartice približe tekstu */
}

.badge-blue {
    background: #f0f5ff;
    color: #0052ff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    display: inline-block;
}

.process-header-v2 {
    text-align: center;
    margin-bottom: 30px; /* Razmak od podnaslova do kartica - SMANJENO */
}

.title-display {
    font-size: 3rem;
    font-weight: 900;
    color: #0a1d37;
    /* STRELICA 1: Smanjen razmak između značke i naslova */
    margin: 10px 0 0px; 
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.title-display span { color: #0052ff; }

.subtitle-display {
    color: #64748b;
    font-size: 1.2rem;
    /* STRELICA 2: Podnaslov skroz približen glavnom naslovu */
    margin-top: 5px; 
}

/* 4. Grid i Kartice - OSTALO IDENTIČNO KAKO SI TRAŽIO */
.steps-grid-fixed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.step-card-modern {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 40px 30px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.step-card-modern:hover {
    transform: translateY(-12px);
    border-color: #0052ff;
    box-shadow: 0 25px 50px rgba(10, 29, 55, 0.1);
}

.step-number-bg {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    margin-bottom: 20px;
}

.step-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 850;
    color: #0a1d37;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-card-modern p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.time-pill {
    display: inline-block;
    margin-top: 30px;
    background: #f8faff;
    color: #0052ff;
    padding: 6px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    border: 1px solid #eef4ff;
}

.step-card-modern:hover .time-pill {
    background: #0052ff;
    color: #fff;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .title-display { font-size: 2.2rem; }
    .process-section-fixed { padding: 100px 0 60px; }
}

/* 1. ŠESTA SEKCIJA */
.trust-final {
    background-color: #0a1d37;
    padding: 80px 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.container-final {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Poravnanje */
.flex-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch; /* Ovo osigurava da su lijeva i desna strana iste visine */
}

.features-list {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.04);
    padding: 20px 25px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(0, 82, 255, 0.15);
    color: #0052ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.icon-box svg { width: 22px; height: 22px; }

.feature-item p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Slika - Fiksirana visina */
.image-container {
    flex: 0.9;
    display: flex;
}

.image-frame {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 24px;
    background: #0a1d37;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Slika će ispuniti prostor bez rastezanja */
    border-radius: 18px;
    display: block;
}

/* Dugme i ostalo */
.header-final { margin-bottom: 40px; }
.title-final { font-size: 3rem; font-weight: 900; margin: 0 0 5px 0; letter-spacing: -1.5px; }
.subtitle-final { font-size: 1.25rem; opacity: 0.8; }

.cta-area { margin-top: 50px; text-align: center; }
.btn-main {
    background: #ffcc00;
    color: #0a1d37;
    padding: 20px 50px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 1.4rem;
    text-decoration: none;
    display: inline-block;
}
.btn-caption { font-size: 0.9rem; opacity: 0.6; margin-top: 10px; }

.minimal-faq-white {
    background-color: #ffffff; /* Čista bijela pozadina */
    padding: 120px 0;
    color: #0a1d37;
    font-family: 'Inter', sans-serif;
}

.container-minimal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-layout-minimal {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.faq-sticky-side {
    position: sticky;
    top: 50px;
    height: fit-content;
}

.badge-blue {
    color: #0052ff;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faq-sticky-side h2 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 20px 0;
    letter-spacing: -2px;
}

.text-blue { color: #0052ff; }

.faq-sticky-side p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
}

/* Lista bez pozadinskih kartica */
.faq-list-minimal {
    display: flex;
    flex-direction: column;
}

.faq-entry {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #f1f5f9;
}

.faq-entry:last-child { border: none; }

.faq-num {
    font-size: 0.75rem;
    font-weight: 900;
    color: #0052ff;
    background: #f0f5ff;
    padding: 5px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: inline-block;
}

.faq-entry h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0a1d37;
}

.faq-entry p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Respozivnost za mobitel */
@media (max-width: 991px) {
    .faq-layout-minimal { grid-template-columns: 1fr; gap: 50px; }
    .faq-sticky-side { position: relative; top: 0; }
    .faq-sticky-side h2 { font-size: 2.5rem; }
}

.premium-security-bento {
    background-color: #0a1d37; /* Tamnoplava pozadina brenda */
    padding: 100px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.bento-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Osnovni stilovi za kartice */
.bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px;
    transition: 0.4s ease;
}

.bento-card:hover {
    border-color: #0052ff;
    background: rgba(255, 255, 255, 0.05);
}

/* Naslovna sekcija */
.bento-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 60px;
}

.bento-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
}

/* Grid layout */
.bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 25px;
}

.bento-text h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.security-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-bullets li {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 25px;
}

.security-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0052ff;
}

/* Vizuelni blok sa ispravljenim katancom */
.bento-visual {
    background: #0052ff; /* Plavi naglasak */
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.database-icon-container {
    position: relative;
    display: inline-block;
}

.database-icon-container > svg {
    width: 90px;
    height: 90px;
    color: rgba(255, 255, 255, 0.9);
}

/* ISPRAVLJENO: Bijelo polje koje sada prikazuje tamni katanac */
.lock-white-box {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.lock-white-box svg {
    width: 20px;
    height: 20px;
    color: #0a1d37; /* Tamnoplava boja katanca - SADA VIDLJIVO */
}

.badge-row {
    margin-top: 20px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.security-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Respozivnost */
@media (max-width: 991px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-header { padding: 40px; }
}

.modern-footer-white {
    background-color: #ffffff; /* Čista bijela pozadina */
    padding: 80px 0 40px 0;
    color: #0a1d37; /* Tamnoplavi tekst za kontrast */
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Stil za CTA na bijeloj podlozi */
.footer-cta-white {
    margin-bottom: 60px;
}

.house-icon-blue svg {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.footer-cta-white h2 {
    font-size: 2.4rem;
    font-weight: 850;
    color: #0a1d37;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
}

.footer-cta-white p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 35px;
}

/* Žuto dugme sa tvoje slike */
.btn-yellow-premium {
    display: inline-block;
    background-color: #ffb400; 
    color: #0a1d37;
    padding: 20px 50px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 180, 0, 0.25);
}

.btn-yellow-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 180, 0, 0.35);
    background-color: #ffc12e;
}

.footer-bottom-border {
    border-top: 1px solid #edf2f7;
    margin-bottom: 40px;
}

/* Branding i sitni tekst */
.footer-logo-dark {
    height: 150px;
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.brand-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a0aec0;
    margin-bottom: 25px;
}

.legal-info p {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 12px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.legal-links a {
    color: #718096;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.legal-links a:hover {
    color: #0a1d37;
}

@media (max-width: 768px) {
    .footer-cta-white h2 { font-size: 1.8rem; }
    .btn-yellow-premium { width: 100%; box-sizing: border-box; }
}

/* Glavni H1 kontejner */
.hero-text h1 {
    margin-bottom: 24px;
    line-height: 1.1;
    max-width: 900px; /* Ograničavamo širinu da tekst ne ide u nedogled desno */
}

/* Prvi deo: Vermögen aufbauen... */
.main-title {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responzivna veličina */
    font-weight: 850;
    color: #000;
    letter-spacing: -0.03em;
}

/* Drugi deo: speziell für... (SMANJEN) */
.sub-title {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.2rem); /* Vidno manje od glavnog naslova */
    font-weight: 600;
    color: #000;
    margin-top: 5px;
}

/* Tekst ispod naslova */
.hero-lead {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 30px;
}

/* Bluecard isticanje - Elegantno i uočljivo */
.bluecard-tag {
    color: #2563eb; 
    font-weight: 700;
    background: #eff6ff;
    padding: 2px 10px;
    border-radius: 6px;
    margin-left: 5px;
    border: 1px solid #dbeafe;
}

/* Dugme ostaje fiksirano u proporciji */
.btn-primary {
    display: inline-block;
    background: #0052ff; /* Boja sa slike */
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 82, 255, 0.2);
}

/* Mobile Fix - za ekrane manje od 768px */
@media (max-width: 768px) {
    /* Glavni kontejner naslova */
    .hero-text h1 {
        font-size: 2.2rem !important; /* Drastično smanjujemo bazu */
        line-height: 1.2 !important;  /* Povećavamo razmak između redova da se slova ne sudaraju */
        margin-bottom: 20px;
    }

    /* Prvi deo naslova */
    .main-title {
        font-size: 2.2rem !important;
        display: block;
        letter-spacing: -0.01em;
    }

    /* Drugi deo naslova (speziell für...) */
    .sub-title {
        font-size: 1.4rem !important; /* Manji font za nastavak */
        display: block;
        margin-top: 10px;
        font-weight: 600;
    }

    /* Tekst iznad dugmeta */
    .hero-lead {
        font-size: 1.05rem !important;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    /* Bluecard bedž na mobilnom */
    .bluecard-tag {
        display: inline-block;
        margin-top: 8px; /* Daje mu malo prostora ako pređe u novi red */
        padding: 4px 10px;
        font-size: 0.95rem;
    }

    /* Dugme se širi na ceo ekran radi lakšeg klika */
    .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* Mobile CSS za Trust Section */
@media screen and (max-width: 768px) {
    .trust-final {
        padding: 40px 15px !important;
        background-color: #2b3864; /* Prilagodi boju pozadine ako je drugačija */
        color: white;
    }

    .container-final {
        width: 100% !important;
        max-width: 100% !important;
    }

    .header-final {
        margin-bottom: 30px !important;
        text-align: center !important;
    }

    .title-final {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    .subtitle-final {
        font-size: 16px !important;
        opacity: 0.9;
    }

    /* Wrapper prebacujemo u kolonu */
    .flex-wrapper {
        display: flex !important;
        flex-direction: column-reverse !important; /* Slika ide ispod ili iznad po želji, ovdje je iznad liste */
        gap: 30px !important;
    }

    /* Lista elemenata */
    .features-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .feature-item {
        display: flex !important;
        align-items: center !important;
        text-align: left !important;
        background: rgba(255, 255, 255, 0.05); /* Lagana pozadina za stavke */
        padding: 15px !important;
        border-radius: 15px !important;
    }

    .icon-box {
        min-width: 45px !important;
        height: 45px !important;
        margin-right: 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .icon-box svg {
        width: 24px !important;
        height: 24px !important;
        color: #4a86f7; /* Plava boja ikonica */
    }

    .feature-item p {
        font-size: 15px !important;
        margin: 0 !important;
        line-height: 1.4 !important;
    }

    /* Slika */
    .image-container {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .image-frame {
        width: 100% !important;
        max-width: 300px !important; /* Ograničavamo širinu slike na mobitelu */
        border-radius: 20px !important;
        overflow: hidden !important;
    }

    .image-frame img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* CTA Area - Dugme */
    .cta-area {
        margin-top: 40px !important;
        text-align: center !important;
    }

    .btn-main {
        display: block !important;
        width: 100% !important;
        padding: 18px 20px !important;
        font-size: 18px !important;
        border-radius: 10px !important;
        text-decoration: none !important;
        background-color: #4a86f7 !important;
        color: white !important;
        font-weight: bold !important;
        box-sizing: border-box !important;
    }

    .btn-caption {
        font-size: 14px !important;
        margin-top: 10px !important;
        opacity: 0.8;
    }
}

@media screen and (max-width: 768px) {
    /* Kontejner u kolonu, video ide iznad teksta */
    .case-container {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 25px !important;
        text-align: center !important;
    }

    /* Video sekcija - bez fiksnih visina */
    .case-visual {
        width: 100% !important;
    }

    .video-wrapper-600 {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important; /* Dozvoljava videu da diktira visinu */
        border-radius: 15px !important;
        overflow: hidden !important;
        background: transparent !important;
    }

    .video-element-contain {
        width: 100% !important;
        height: auto !important; /* Čuva originalni razmjer */
        display: block !important;
        object-fit: contain !important; /* Osigurava da se ništa ne siječe */
    }

    /* Prilagođavanje ostalog sadržaja */
    .case-content {
        padding: 0 5px !important;
    }

    .case-title {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }

    .yellow-cta {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background-color: #ffcc00 !important;
        color: #000 !important;
        padding: 18px !important;
        font-weight: bold !important;
        text-decoration: none !important;
        border-radius: 8px !important;
    }
}