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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

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

header {
    background: #1a1a2e;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #00d9ff;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #00d9ff;
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.scan-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.scan-form input {
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    width: 400px;
    max-width: 100%;
}

.scan-form input:focus {
    outline: none;
    border-color: #00d9ff;
}

.scan-form button {
    padding: 15px 40px;
    font-size: 16px;
    background: #00d9ff;
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.scan-form button:hover {
    background: #00b8d9;
}

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

.feature {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

.feature p {
    color: #666;
    font-size: 14px;
}

footer {
    background: #1a1a2e;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

footer a {
    color: #00d9ff;
    text-decoration: none;
}

/* ============================================
   Stilovi za rezultate skeniranja
   ============================================ */

.scan-result {
    padding: 40px 20px;
}

.result-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #00d9ff;
}

.result-header h1 {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.domain-highlight {
    color: #00d9ff;
    background: #e6f9ff;
    padding: 4px 12px;
    border-radius: 6px;
}

.source-info {
    color: #666;
    font-size: 14px;
}

.result-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.result-section h2 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.result-table th {
    text-align: left;
    padding: 10px;
    background: #f5f7fa;
    color: #1a1a2e;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.result-table tr:last-child td {
    border-bottom: none;
}

.result-table code {
    background: #f5f7fa;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #1a1a2e;
    font-size: 13px;
    word-break: break-all;
}

.badge {
    display: inline-block;
    background: #00d9ff;
    color: #1a1a2e;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.no-result {
    color: #999;
    font-style: italic;
    padding: 10px 0;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.result-actions {
    margin-top: 30px;
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background: #00d9ff;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-back:hover {
    background: #00b8d9;
}

/* ============================================
   Language Switcher
   ============================================ */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.lang-switcher a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
}

.lang-switcher a:hover {
    color: #00d9ff;
}

.lang-switcher a.active {
    color: #00d9ff;
    border-bottom: 2px solid #00d9ff;
    padding-bottom: 2px;
}

.lang-switcher span {
    color: rgba(255,255,255,0.3);
}

/* ============================================
   Status badge-ovi i SSL
   ============================================ */

.ssl-status {
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 15px;
}

.ssl-ok {
    background: #e6f9f0;
    color: #0a7d4d;
    border-left: 4px solid #0a7d4d;
}

.ssl-warning {
    background: #fff8e6;
    color: #8a6d00;
    border-left: 4px solid #f5a623;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.status-ok {
    background: #e6f9f0;
    color: #0a7d4d;
}

.status-missing {
    background: #fee;
    color: #c33;
}

/* ============================================
   Sigurnosni skor
   ============================================ */

.score-section {
    background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
    border: 2px solid #00d9ff;
}

.score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.score-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 8px solid #00d9ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.score-number {
    font-size: 56px;
    font-weight: bold;
    line-height: 1;
}

.score-total {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.score-grade {
    text-align: center;
}

.grade-letter {
    font-size: 72px;
    font-weight: bold;
    line-height: 1;
}

.grade-label {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
    font-weight: 600;
}

/* ============================================
   CTA sekcija
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 40px;
}

.cta-section h2 {
    color: #00d9ff;
    border-bottom: none;
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-section p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #00d9ff;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,217,255,0.3);
}

.btn-cta:hover {
    background: #00b8d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,217,255,0.5);
}

/* ============================================
   Kontakt stranica
   ============================================ */

.page-content {
    padding: 60px 20px;
}

.page-content h1 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.page-intro {
    font-size: 17px;
    color: #666;
    max-width: 800px;
    margin-bottom: 50px;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

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

.contact-info h2 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00d9ff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 28px;
    line-height: 1;
}

.contact-item strong {
    display: block;
    color: #1a1a2e;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: #00d9ff;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #444;
}

.service-list li:last-child {
    border-bottom: none;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00d9ff;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00d9ff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-cta {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

.alert-success {
    background: #e6f9f0;
    color: #0a7d4d;
    border: 1px solid #0a7d4d;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ============================================
   Cenovnik (Pricing)
   ============================================ */

.pricing-section {
    padding: 80px 20px;
    background: #f5f7fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.pricing-featured {
    border: 3px solid #00d9ff;
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00d9ff;
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: #00d9ff;
    line-height: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s;
    background: #f0f0f0;
    color: #333;
}

.btn-pricing:hover {
    background: #e0e0e0;
}

.btn-pro {
    background: #00d9ff;
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0,217,255,0.3);
}

.btn-pro:hover {
    background: #00b8d9;
    box-shadow: 0 6px 20px rgba(0,217,255,0.5);
}

.btn-free {
    background: #1a1a2e;
    color: white;
}

.btn-free:hover {
    background: #16213e;
}

.pricing-mini {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid #00d9ff;
}

.pricing-mini h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 16px;
}

.pricing-mini p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   Pricing grid za 2 kartice (centrirano)
   ============================================ */

.pricing-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

/* ============================================
   About stranica
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.about-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #00d9ff;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.about-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.about-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 20px;
}

.about-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.about-section {
    margin: 60px 0;
}

.about-section h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-item {
    background: #f8fbff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #00d9ff;
}

.service-item h4 {
    color: #1a1a2e;
    margin-bottom: 12px;
    font-size: 17px;
}

.service-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.about-cta-final {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    margin-top: 80px;
}

.about-cta-final h2 {
    color: #00d9ff;
    margin-bottom: 15px;
}

.about-cta-final p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 25px;
}

/* ============================================
   Privacy stranica (Legal)
   ============================================ */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

.legal-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    margin-bottom: 25px;
    border-left: 4px solid #00d9ff;
}

.legal-section h2 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.legal-section p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.legal-contact {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f4ff 100%);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #00d9ff;
    margin-top: 40px;
}

.legal-contact h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.legal-contact p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-contact a {
    color: #00d9ff;
    text-decoration: none;
    font-weight: 600;
}

.legal-contact a:hover {
    text-decoration: underline;
}

/* ============================================
   Preporuke
   ============================================ */

.recommendations-section {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border: 2px solid #f0ad4e;
}

.recommendations-section h2 {
    color: #8a6d00;
}

.recommendations-list {
    margin-top: 20px;
}

.recommendation-item {
    background: white;
    padding: 18px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 5px solid #f0ad4e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.recommendation-item:last-child {
    margin-bottom: 0;
}

.recommendation-item p {
    margin-top: 10px;
    color: #444;
    font-size: 14px;
    line-height: 1.7;
}

.recommendation-item code {
    background: #f5f7fa;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #d9534f;
}

.priority-badge {
    display: inline-block;
    padding: 3px 12px;
    color: white;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* ============================================
   Poslednje skenirano
   ============================================ */

.recent-section {
    padding: 60px 20px;
    background: white;
}

.recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.recent-card {
    background: #f8fbff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e0f2ff;
    transition: all 0.3s;
}

.recent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,217,255,0.15);
    border-color: #00d9ff;
}

.recent-domain {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recent-score {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    margin: 10px 0;
}

.recent-grade {
    font-size: 16px;
    opacity: 0.7;
}

.recent-date {
    font-size: 11px;
    color: #999;
    margin-top: 8px;
}

/* ============================================
   Logo
   ============================================ */

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s;
}

/* Povećaj logo */
.logo img {
    height: 50px !important;
    width: auto;
}

@media (max-width: 768px) {
    .logo img {
        height: 40px !important;
    }
}

/* Povećaj logo - override sve prethodne */
header .logo img {
    height: 100px !important;
    width: auto !important;
    max-width: 300px;
    display: block;
}

header .container {
    min-height: 120px;
}

@media (max-width: 768px) {
    header .logo img {
        height: 70px !important;
    }
    header .container {
        min-height: 90px;
    }
}

/* Vrati normalnu visinu zaglavlja */
header {
    padding: 15px 0 !important;
}

header .container {
    min-height: auto !important;
}

header .logo img {
    height: 55px !important;
    width: auto !important;
    max-width: 220px;
    display: block;
}

@media (max-width: 768px) {
    header .logo img {
        height: 45px !important;
    }
}

/* Uvećaj logo bez povećanja trake */
header .logo img {
    height: 55px !important;
    width: auto !important;
    transform: scale(1.8);
    transform-origin: left center;
    margin-right: 100px;
}

@media (max-width: 768px) {
    header .logo img {
        transform: scale(1.5);
        margin-right: 70px;
    }
}

/* Značajno povećaj logo */
header .logo img {
    height: 55px !important;
    width: auto !important;
    transform: scale(3.2);
    transform-origin: left center;
    margin-right: 220px;
    margin-left: 20px;
}

@media (max-width: 768px) {
    header .logo img {
        transform: scale(2);
        margin-right: 130px;
        margin-left: 10px;
    }
}

/* Značajno povećaj logo */
header .logo img {
    height: 55px !important;
    width: auto !important;
    transform: scale(3.6);
    transform-origin: left center;
    margin-right: 220px;
    margin-left: 20px;
}

@media (max-width: 768px) {
    header .logo img {
        transform: scale(2);
        margin-right: 130px;
        margin-left: 10px;
    }
}

/* ============================================
   Nova struktura - Index v2
   ============================================ */

/* Hero - manji padding */
.hero {
    padding: 40px 20px 30px !important;
}

.hero h1 {
    font-size: 36px !important;
    margin-bottom: 15px !important;
}

.hero p {
    font-size: 16px !important;
    margin-bottom: 25px !important;
}

/* Feature bar - male kocke */
.features-bar {
    padding: 10px 20px 30px;
    background: #f5f7fa;
}

.features-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-sm {
    background: white;
    padding: 18px 12px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 3px solid #00d9ff;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.feature-sm:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,217,255,0.15);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.feature-sm h4 {
    color: #1a1a2e;
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

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

/* Dve kolone */
.two-cols-section {
    padding: 50px 20px;
    background: white;
}

.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .two-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.col-title {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 10px;
    padding-bottom: 12px;
    border-bottom: 3px solid #00d9ff;
    display: inline-block;
}

.col-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Cenovnik - vertikalno */
.pricing-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-card-sm {
    background: #f8fbff;
    border-radius: 12px;
    padding: 22px 25px;
    border: 2px solid #e0f2ff;
    transition: all 0.3s;
}

.pricing-card-sm:hover {
    border-color: #00d9ff;
    box-shadow: 0 6px 20px rgba(0,217,255,0.1);
}

.pricing-featured-sm {
    background: linear-gradient(135deg, #f0faff 0%, #e6f7ff 100%);
    border: 2px solid #00d9ff;
    position: relative;
}

.pricing-badge-sm {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #00d9ff;
    color: #1a1a2e;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header-sm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-header-sm h3 {
    font-size: 17px;
    color: #1a1a2e;
    margin: 0;
}

.price-sm {
    font-size: 20px;
    font-weight: bold;
    color: #00d9ff;
}

.pricing-features-sm {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.pricing-features-sm li {
    padding: 5px 0;
    color: #444;
    font-size: 13px;
}

.btn-pricing-sm {
    display: block;
    text-align: center;
    padding: 11px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-free {
    background: #1a1a2e;
    color: white;
}

.btn-free:hover {
    background: #16213e;
}

.btn-pro {
    background: #00d9ff;
    color: #1a1a2e;
    box-shadow: 0 4px 12px rgba(0,217,255,0.3);
}

.btn-pro:hover {
    background: #00b8d9;
    box-shadow: 0 6px 18px rgba(0,217,255,0.5);
}

/* Recent lista */
.recent-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recent-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #f8fbff;
    border-radius: 8px;
    border-left: 4px solid #00d9ff;
    transition: all 0.3s;
}

.recent-row:hover {
    background: #f0f9ff;
    transform: translateX(3px);
}

.recent-row-domain {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 14px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recent-row-score {
    font-size: 20px;
    font-weight: bold;
    margin: 0 15px;
    min-width: 50px;
    text-align: center;
}

.recent-row-grade {
    font-size: 12px;
    opacity: 0.7;
}

.recent-row-date {
    font-size: 11px;
    color: #999;
    min-width: 70px;
    text-align: right;
}

/* ============================================
   Korekcije - Index v3
   ============================================ */

/* Hero - još manji padding */
.hero {
    padding: 30px 20px 15px !important;
}

.hero h1 {
    font-size: 34px !important;
    margin-bottom: 12px !important;
}

.hero p {
    font-size: 15px !important;
    margin-bottom: 20px !important;
}

/* Feature bar - male kocke, odmah ispod pretrage */
.features-bar {
    padding: 0 20px 30px !important;
    background: #f5f7fa;
    margin-top: -15px;
}

.features-small {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}

/* Male kockice - smanjene na pola */
.feature-sm {
    background: white !important;
    padding: 12px 10px !important;
    border-radius: 8px !important;
    text-align: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
    border-top: 3px solid #00d9ff !important;
    transition: all 0.3s !important;
}

.feature-sm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0,217,255,0.15) !important;
}

.feature-sm h3 {
    color: #1a1a2e !important;
    font-size: 13px !important;
    margin: 0 0 4px 0 !important;
    font-weight: 700 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

.feature-sm p {
    color: #888 !important;
    font-size: 11px !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

@media (max-width: 768px) {
    .features-small {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Dve kolone - cenovnik levo, recent desno */
.two-cols-section {
    padding: 40px 20px !important;
    background: white !important;
}

.two-cols {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    align-items: start !important;
}

@media (max-width: 900px) {
    .two-cols {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

.col-title {
    font-size: 22px !important;
    color: #1a1a2e !important;
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
    border-bottom: 3px solid #00d9ff !important;
    display: inline-block !important;
}

.col-subtitle {
    color: #666 !important;
    font-size: 13px !important;
    margin-bottom: 20px !important;
}

/* Cenovnik - DVE KARTICE JEDNA PORED DRUGE */
.pricing-grid-2cards {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
}

.pricing-card-sm {
    background: #f8fbff !important;
    border-radius: 10px !important;
    padding: 18px 15px !important;
    border: 2px solid #e0f2ff !important;
    transition: all 0.3s !important;
    display: flex !important;
    flex-direction: column !important;
}

.pricing-card-sm:hover {
    border-color: #00d9ff !important;
    box-shadow: 0 5px 15px rgba(0,217,255,0.1) !important;
}

.pricing-featured-sm {
    background: linear-gradient(135deg, #f0faff 0%, #e6f7ff 100%) !important;
    border: 2px solid #00d9ff !important;
    position: relative !important;
}

.pricing-badge-sm {
    position: absolute !important;
    top: -10px !important;
    right: 12px !important;
    background: #00d9ff !important;
    color: #1a1a2e !important;
    padding: 3px 10px !important;
    border-radius: 10px !important;
    font-size: 9px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.pricing-header-sm {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 12px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #e0e0e0 !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
}

.pricing-header-sm h3 {
    font-size: 15px !important;
    color: #1a1a2e !important;
    margin: 0 !important;
}

.price-sm {
    font-size: 17px !important;
    font-weight: bold !important;
    color: #00d9ff !important;
}

.pricing-features-sm {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
    flex-grow: 1 !important;
}

.pricing-features-sm li {
    padding: 4px 0 !important;
    color: #444 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
}

.btn-pricing-sm {
    display: block !important;
    text-align: center !important;
    padding: 10px !important;
    border-radius: 7px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 13px !important;
    transition: all 0.3s !important;
}

/* Recent lista */
.recent-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.recent-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 15px !important;
    background: #f8fbff !important;
    border-radius: 7px !important;
    border-left: 4px solid #00d9ff !important;
    transition: all 0.3s !important;
}

.recent-row:hover {
    background: #f0f9ff !important;
    transform: translateX(3px) !important;
}

.recent-row-domain {
    font-weight: 600 !important;
    color: #1a1a2e !important;
    font-size: 13px !important;
    flex: 1 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.recent-row-score {
    font-size: 18px !important;
    font-weight: bold !important;
    margin: 0 12px !important;
    min-width: 45px !important;
    text-align: center !important;
}

.recent-row-grade {
    font-size: 11px !important;
    opacity: 0.7 !important;
}

.recent-row-date {
    font-size: 11px !important;
    color: #999 !important;
    min-width: 60px !important;
    text-align: right !important;
}

/* ============================================
   Dodatne sekcije
   ============================================ */

/* Subdomene */
.subdomain-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.subdomain-list code {
    background: #f0f9ff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    border: 1px solid #d0eaff;
    color: #1a1a2e;
    font-family: 'Courier New', monospace;
}

/* HTTP metode */
.methods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.method-badge {
    background: #1a1a2e;
    color: #00d9ff;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* ============================================
   Forma sa kockicama lijevo (Web / Email)
   ============================================ */

.scan-form-with-toggle {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    max-width: 750px;
    margin: 0 auto 10px;
    flex-wrap: wrap;
}

/* Kockice lijevo */
.mode-toggles {
    display: flex;
    gap: 8px;
}

.mode-toggle {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 15px;
    height: 55px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-family: inherit;
    min-width: 70px;
    position: relative;
}

.mode-toggle:hover {
    border-color: #00d9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,217,255,0.15);
}

.mode-toggle.active {
    border-color: #00d9ff;
    background: linear-gradient(135deg, #f0faff 0%, #e6f7ff 100%);
    box-shadow: 0 4px 15px rgba(0,217,255,0.25);
}

.mode-icon {
    font-size: 20px;
    line-height: 1;
}

.mode-label {
    font-size: 10px;
    font-weight: bold;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Input - ista visina */
.scan-form-with-toggle input[type="text"],
.scan-form-with-toggle input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0 20px;
    height: 55px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: border-color 0.3s;
}

.scan-form-with-toggle input:focus {
    outline: none;
    border-color: #00d9ff;
}

/* Dugme - ista visina */
.scan-form-with-toggle .btn-search {
    padding: 0 30px;
    height: 55px;
    font-size: 15px;
    background: #00d9ff;
    color: #1a1a2e;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.scan-form-with-toggle .btn-search:hover {
    background: #00b8d9;
}

@media (max-width: 768px) {
    .scan-form-with-toggle {
        gap: 8px;
    }
    .mode-toggle {
        min-width: 60px;
        padding: 0 10px;
        height: 50px;
    }
    .scan-form-with-toggle input {
        height: 50px;
        font-size: 14px;
    }
    .scan-form-with-toggle .btn-search {
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
    }
}

/* ============================================
   Email breach rezultati
   ============================================ */

.email-breach-warning {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 2px solid #d9534f;
}

.email-breach-warning h2 {
    color: #c33;
}

.breach-summary {
    text-align: center;
    padding: 20px;
}

.breach-count {
    display: inline-block;
    text-align: center;
}

.breach-number {
    font-size: 72px;
    font-weight: bold;
    color: #d9534f;
    line-height: 1;
}

.breach-label {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.breach-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.breach-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #d9534f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.breach-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.breach-header h3 {
    color: #1a1a2e;
    font-size: 17px;
    margin: 0;
}

.breach-date {
    color: #666;
    font-size: 13px;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 6px;
}

.breach-fields {
    margin-top: 10px;
}

.breach-fields strong {
    display: block;
    margin-bottom: 10px;
    color: #1a1a2e;
    font-size: 14px;
}

.field-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.field-tag {
    background: #ffe8e8;
    color: #c33;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

/* Safe (nije kompromitovan) */
.email-safe {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fff0 100%);
    border: 2px solid #0a7d4d;
    text-align: center;
}

.email-safe h2 {
    color: #0a7d4d;
}

.safe-icon {
    font-size: 80px;
    margin: 20px 0;
}

.safe-message {
    font-size: 16px;
    color: #1a1a2e;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 30px;
}

.safe-recommendations {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    margin-top: 20px;
    border-left: 4px solid #0a7d4d;
}

.safe-recommendations h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 16px;
}

.safe-recommendations ul {
    list-style: none;
    padding: 0;
}

.safe-recommendations li {
    padding: 8px 0;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.safe-recommendations li:last-child {
    border-bottom: none;
}

/* ============================================
   Atribucija izvora podataka
   ============================================ */

.source-attribution {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    background: #f8fbff;
    border-radius: 10px;
    border: 1px dashed #d0eaff;
    font-size: 13px;
    color: #666;
}

.source-label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
}

.source-link {
    color: #00d9ff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.source-link:hover {
    color: #00a8cc;
    text-decoration: underline;
}

.source-link strong {
    color: #1a1a2e;
}


/* ============================================
   ✨ FINALNA LEPOTA - Polish v1.0
   ============================================ */

/* --- Google Font primena --- */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-feature-settings: 'cv11', 'ss01';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif !important;
    letter-spacing: -0.02em;
}

h1 { letter-spacing: -0.03em !important; font-weight: 800 !important; }
h2 { letter-spacing: -0.02em !important; font-weight: 700 !important; }

/* --- Sticky Header --- */
header {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(26, 26, 46, 0.95) !important;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

/* --- Custom scrollbar --- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00d9ff 0%, #00a8cc 100%);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00a8cc 0%, #0088aa 100%);
}

/* --- Selekcija teksta --- */
::selection { background: #00d9ff; color: #1a1a2e; }
::-moz-selection { background: #00d9ff; color: #1a1a2e; }

/* --- Fade-in animacija --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Dugmad - poboljšanja --- */
.btn-search,
.btn-cta,
.btn-back,
.btn-pricing,
.btn-pricing-sm,
.btn-pdf {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-search:hover,
.btn-cta:hover,
.btn-pricing-sm.btn-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,217,255,0.4) !important;
}

.btn-search:active,
.btn-cta:active {
    transform: translateY(0);
}

/* --- Input polja --- */
input[type="text"],
input[type="email"],
textarea {
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    box-shadow: 0 0 0 4px rgba(0,217,255,0.15);
    transform: translateY(-1px);
}

/* --- Kartice - hover lift --- */
.pricing-card-sm:hover,
.recent-card:hover,
.about-card:hover,
.feature-sm:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1) !important;
}

/* --- Result sections - hover --- */
.result-section {
    transition: all 0.3s ease;
}

.result-section:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

/* --- Toggle kockice - hover --- */
.mode-toggle {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mode-toggle:hover {
    transform: translateY(-3px) scale(1.05);
}

.mode-toggle.active {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(0,217,255,0.25); }
    50% { box-shadow: 0 6px 25px rgba(0,217,255,0.45); }
}

/* --- Score krug - rotirajući prsten --- */
.score-circle {
    transition: all 0.5s ease;
    position: relative;
}

.score-circle::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(0,217,255,0.3);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Linkovi --- */
a { transition: all 0.2s ease; }

/* --- Sekcije - prostor --- */
.result-section {
    padding: 25px !important;
    margin-bottom: 20px !important;
}

/* --- Recent row - hover --- */
.recent-row {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.recent-row:hover {
    transform: translateX(6px) !important;
    box-shadow: 0 4px 12px rgba(0,217,255,0.15);
}

/* --- Subdomain tagovi --- */
.subdomain-list code {
    transition: all 0.2s ease;
    cursor: default;
}

.subdomain-list code:hover {
    background: #00d9ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,217,255,0.3);
}

/* --- Method badge --- */
.method-badge {
    transition: all 0.2s ease;
}

.method-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,217,255,0.3);
}

/* --- Loading spinner --- */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 70px;
    height: 70px;
    border: 4px solid rgba(0,217,255,0.2);
    border-top-color: #00d9ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    color: #00d9ff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* --- Scroll to top dugme --- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d9ff 0%, #00a8cc 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,217,255,0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0,217,255,0.6);
}

/* --- Kod tipografija --- */
code, pre {
    font-family: 'Courier New', 'Consolas', monospace;
    font-feature-settings: 'liga' 0;
}

/* --- Mobile poboljšanja --- */
@media (max-width: 768px) {
    h1 { font-size: 26px !important; }
    h2 { font-size: 20px !important; }
    h3 { font-size: 16px !important; }
    
    .result-section { padding: 18px !important; }
    .score-number { font-size: 42px !important; }
    .grade-letter { font-size: 56px !important; }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* --- Print styles --- */
@media print {
    header, footer, .btn-pdf, .btn-back, .cta-section, .scroll-top, .loading-overlay {
        display: none !important;
    }
    body { background: white; }
    .result-section {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}

/* Povećaj logo - konačna verzija */
header .logo img {
    height: 90px !important;
    width: auto !important;
    display: block;
}

@media (max-width: 900px) {
    header .logo img {
        height: 70px !important;
    }
}

@media (max-width: 600px) {
    header .logo img {
        height: 55px !important;
    }
}

/* ============================================
   KOMPAKTNO ZAGLAVLJE sa velikim logom
   ============================================ */

header {
    padding: 5px 0 !important;
}

header .container {
    padding: 0 20px !important;
    min-height: auto !important;
}

header .logo img {
    height: 75px !important;
    width: auto !important;
    display: block;
    margin: -10px 0 !important;
}

header nav ul {
    margin: 0 !important;
}

@media (max-width: 900px) {
    header .logo img {
        height: 60px !important;
        margin: -8px 0 !important;
    }
}

@media (max-width: 600px) {
    header .logo img {
        height: 45px !important;
        margin: -5px 0 !important;
    }
}

/* Zaštita - logo ne sme da se menja na hover */
header .logo img,
header .logo img:hover,
header .logo a:hover img,
header .logo a:hover {
    transform: none !important;
    scale: none !important;
    transition: none !important;
}

/* ============================================
   FAQ stranica
   ============================================ */

.faq-search {
    max-width: 600px;
    margin: 0 auto 40px;
}

.faq-search input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    outline: none;
    border-color: #00d9ff;
    box-shadow: 0 0 0 4px rgba(0,217,255,0.15);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #00d9ff;
    display: inline-block;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: #e0f2ff;
}

.faq-item.open {
    border-color: #00d9ff;
    box-shadow: 0 8px 25px rgba(0,217,255,0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: #00d9ff;
}

.faq-icon {
    font-size: 24px;
    color: #00d9ff;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.faq-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
}

.faq-cta h3 {
    color: #00d9ff;
    font-size: 24px;
    margin-bottom: 15px;
}

.faq-cta p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 15px 18px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 18px 18px 18px;
        padding-top: 18px;
        font-size: 14px;
    }
    
    .faq-category h2 {
        font-size: 18px;
    }
}

/* ============================================
   Error stranice (404, 500)
   ============================================ */

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.error-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.error-code {
    font-size: 140px;
    font-weight: 900;
    color: #00d9ff;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -5px;
    text-shadow: 0 4px 20px rgba(0,217,255,0.3);
    animation: floatError 3s ease-in-out infinite;
}

.error-code.error-500 {
    color: #d9534f;
    text-shadow: 0 4px 20px rgba(217,83,79,0.3);
}

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

.error-title {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 800;
}

.error-message {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.error-actions .btn-cta,
.error-actions .btn-back {
    padding: 15px 30px;
    font-size: 15px;
}

.error-suggestions,
.error-info {
    background: #f8fbff;
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 4px solid #00d9ff;
    text-align: left;
    margin-top: 30px;
}

.error-info {
    border-left-color: #d9534f;
    background: #fff8f8;
}

.error-suggestions h3,
.error-info strong {
    color: #1a1a2e;
    margin-bottom: 15px;
    display: block;
    font-size: 16px;
}

.error-suggestions ul,
.error-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-suggestions li,
.error-info li {
    padding: 8px 0;
    color: #555;
    font-size: 15px;
    border-bottom: 1px solid #e8f4ff;
}

.error-suggestions li:last-child,
.error-info li:last-child {
    border-bottom: none;
}

.error-suggestions a {
    color: #00d9ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.error-suggestions a:hover {
    color: #00a8cc;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 90px;
    }
    
    .error-title {
        font-size: 26px;
    }
    
    .error-message {
        font-size: 15px;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .error-actions .btn-cta,
    .error-actions .btn-back {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   Blog
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-top: 4px solid #00d9ff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,217,255,0.15);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.blog-icon {
    font-size: 36px;
    line-height: 1;
}

.blog-category {
    background: #e6f7ff;
    color: #0088aa;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-card-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #00d9ff;
}

.blog-card-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 12px;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.blog-read-more {
    color: #00d9ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-read-more:hover {
    color: #00a8cc;
    transform: translateX(5px);
}

/* ============================================
   Pojedinačni članak
   ============================================ */

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #00d9ff;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.article-icon {
    font-size: 48px;
    line-height: 1;
}

.article-category {
    background: #e6f7ff;
    color: #0088aa;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.article-title {
    font-size: 38px;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.article-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: #999;
    font-size: 14px;
}

.article-content {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 26px;
    color: #1a1a2e;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e6f7ff;
    font-weight: 700;
}

.article-content h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin: 30px 0 15px 0;
    font-weight: 700;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-content a {
    color: #00d9ff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #00d9ff;
    transition: all 0.2s ease;
}

.article-content a:hover {
    color: #00a8cc;
    border-bottom-style: solid;
}

.article-content code {
    background: #f0f9ff;
    color: #c33;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.article-content pre {
    background: #1a1a2e;
    color: #00d9ff;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    font-size: 13px;
    line-height: 1.6;
    margin: 25px 0;
}

.article-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.article-content strong {
    color: #1a1a2e;
    font-weight: 700;
}

.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.blog-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 14px;
    text-align: center;
    margin-top: 40px;
}

.blog-cta h3 {
    color: #00d9ff;
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-cta p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 26px;
    }
    
    .article-content h2 {
        font-size: 22px;
    }
    
    .article-content h3 {
        font-size: 18px;
    }
    
    .article-content {
        font-size: 15px;
    }
    
    .blog-card {
        padding: 22px;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
}

/* ============================================
   Cookie Consent Banner (GDPR)
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
    z-index: 9998;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
    animation: cookieFloat 3s ease-in-out infinite;
}

@keyframes cookieFloat {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(-5px); }
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h3 {
    color: #1a1a2e;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.cookie-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-link {
    color: #00d9ff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #00d9ff;
    margin-left: 5px;
}

.cookie-link:hover {
    color: #00a8cc;
    border-bottom-style: solid;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 22px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept-all {
    background: #00d9ff;
    color: #1a1a2e;
    border-color: #00d9ff;
}

.cookie-accept-all:hover {
    background: #00a8cc;
    border-color: #00a8cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,217,255,0.4);
}

.cookie-accept-necessary {
    background: white;
    color: #1a1a2e;
    border-color: #ddd;
}

.cookie-accept-necessary:hover {
    border-color: #00d9ff;
    color: #00a8cc;
}

.cookie-decline {
    background: transparent;
    color: #999;
    border-color: transparent;
    text-decoration: underline;
}

.cookie-decline:hover {
    color: #c33;
}

@media (max-width: 768px) {
    .cookie-content {
        padding: 20px;
        gap: 15px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-icon {
        font-size: 36px;
        text-align: center;
    }
    
    .cookie-text h3 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 14px;
    }
}

/* ============================================
   First Clients Section
   ============================================ */

.first-clients-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.first-clients-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.first-clients-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.first-clients-box h2 {
    color: #00d9ff;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 800;
}

.first-clients-box > p {
    color: #ccc;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.first-clients-box > p strong {
    color: #00d9ff;
    font-weight: 800;
}

.first-clients-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,217,255,0.2);
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.benefit:hover {
    background: rgba(0,217,255,0.1);
    border-color: #00d9ff;
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 32px;
    line-height: 1;
}

.benefit strong {
    color: #00d9ff;
    font-size: 16px;
    font-weight: 700;
}

.benefit span {
    color: #aaa;
    font-size: 13px;
}

.first-clients-btn {
    display: inline-block;
    padding: 18px 45px;
    background: #00d9ff;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0,217,255,0.4);
    letter-spacing: 0.5px;
}

.first-clients-btn:hover {
    background: #00b8d9;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,217,255,0.6);
}

.first-clients-note {
    color: #888;
    font-size: 13px;
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .trust-section,
    .first-clients-section {
        padding: 40px 15px;
    }
    
    .first-clients-box h2 {
        font-size: 24px;
    }
    
    .first-clients-box > p {
        font-size: 15px;
    }
    
    .first-clients-icon {
        font-size: 48px;
    }
    
    .trust-item {
        padding: 22px 18px;
    }
    
    .trust-icon {
        font-size: 32px;
    }
}

/* ============================================
   Trust Signals (male kockice)
   ============================================ */

.trust-section {
    padding: 40px 20px 50px;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1100px;
    margin: 30px auto 0;
}

.trust-item {
    background: white;
    padding: 12px 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-top: 3px solid #00d9ff;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,217,255,0.15);
}

.trust-item h3 {
    color: #1a1a2e;
    font-size: 13px;
    margin: 0 0 4px 0;
    font-weight: 700;
}

.trust-item p {
    color: #888;
    font-size: 11px;
    margin: 0;
    line-height: 1.4;
}

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

/* ============================================
   ✨ SELEKTIVNI NEON EFEKTI
   ============================================ */

/* --- Logo - suptilan neon --- */
.logo img {
    filter: drop-shadow(0 0 10px rgba(0,217,255,0.2));
    transition: filter 0.3s ease;
}

.logo a:hover img {
    filter: drop-shadow(0 0 20px rgba(0,217,255,0.5));
}

/* --- Accent linije ispod naslova --- */
.col-title,
.faq-category h2,
.section-title::after {
    position: relative;
}

.col-title::after,
.faq-category h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00d9ff 0%, transparent 100%);
    box-shadow: 0 0 10px rgba(0,217,255,0.5);
    border-radius: 2px;
}

/* --- Aktivni mode toggle - neon --- */
.mode-toggle.active {
    box-shadow: 0 4px 15px rgba(0,217,255,0.25), 0 0 25px rgba(0,217,255,0.2) !important;
}

/* --- Dugmad - jači neon na hover --- */
.btn-search:hover,
.btn-cta:hover,
.btn-pricing-sm.btn-pro:hover,
.first-clients-btn:hover {
    box-shadow: 0 8px 25px rgba(0,217,255,0.5), 0 0 40px rgba(0,217,255,0.25) !important;
}

/* --- Kartice - neon na hover --- */
.feature-sm:hover,
.trust-item:hover,
.pricing-card-sm:hover,
.blog-card:hover,
.about-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1), 0 0 30px rgba(0,217,255,0.15) !important;
}

/* --- Recent row - neon na hover --- */
.recent-row:hover {
    box-shadow: 0 4px 15px rgba(0,217,255,0.2), 0 0 20px rgba(0,217,255,0.1) !important;
}

/* --- FAQ item - neon na open --- */
.faq-item.open {
    box-shadow: 0 8px 25px rgba(0,217,255,0.15), 0 0 30px rgba(0,217,255,0.1) !important;
}

/* --- Score krug - neon u boji ocjene --- */
.score-circle {
    filter: drop-shadow(0 0 15px currentColor);
}

/* --- Subdomain tagovi - neon na hover --- */
.subdomain-list code:hover {
    box-shadow: 0 4px 12px rgba(0,217,255,0.4), 0 0 20px rgba(0,217,255,0.3);
}

/* --- Method badge - neon na hover --- */
.method-badge:hover {
    box-shadow: 0 4px 12px rgba(0,217,255,0.4), 0 0 20px rgba(0,217,255,0.3);
}

/* --- Nav linkovi - neon na hover --- */
header nav a:hover {
    text-shadow: 0 0 15px rgba(0,217,255,0.6);
}

/* --- Language switcher aktivan - neon --- */
.lang-switcher a.active {
    text-shadow: 0 0 15px rgba(0,217,255,0.6);
}

/* --- Trust icon - suptilan neon --- */
.trust-item h3 {
    text-shadow: 0 0 10px rgba(0,217,255,0.1);
}

/* --- First clients naslov - neon --- */
.first-clients-box h2 {
    text-shadow: 0 0 25px rgba(0,217,255,0.4);
}

/* --- Rocket ikona - neon --- */
.first-clients-icon {
    filter: drop-shadow(0 0 20px rgba(0,217,255,0.4));
}

/* --- Cookie banner - neon --- */
.cookie-accept-all {
    box-shadow: 0 4px 15px rgba(0,217,255,0.3);
}

.cookie-accept-all:hover {
    box-shadow: 0 6px 25px rgba(0,217,255,0.6), 0 0 40px rgba(0,217,255,0.3);
}

/* --- H1 naslovi - suptilan neon --- */
h1 {
    text-shadow: 0 0 20px rgba(0,217,255,0.1);
}

/* --- Section title - suptilan --- */
.section-title {
    text-shadow: 0 0 20px rgba(0,217,255,0.15);
}

/* --- SMANJI neon na light mode --- */
:root:not([data-theme="dark"]) .hero h1,
:root:not([data-theme="dark"]) h1 {
    text-shadow: none;
}

:root:not([data-theme="dark"]) .logo img {
    filter: none;
}

:root:not([data-theme="dark"]) .first-clients-icon {
    filter: none;
}

:root:not([data-theme="dark"]) .score-circle {
    filter: none;
}

:root:not([data-theme="dark"]) .first-clients-box h2 {
    text-shadow: none;
}

/* ============================================
   Theme Switcher - PILL SWITCH dizajn
   ============================================ */

.theme-switcher {
    display: flex;
    align-items: center;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.theme-toggle {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

.theme-toggle-track {
    display: flex;
    align-items: center;
    position: relative;
    width: 76px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 6px;
    justify-content: space-between;
}

.theme-toggle:hover .theme-toggle-track {
    border-color: #00d9ff;
    box-shadow: 0 0 20px rgba(0,217,255,0.4);
}

/* Klizni krug (thumb) */
.theme-toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(251,191,36,0.5);
    z-index: 1;
}

/* U dark modu thumb ide desno i postaje cyan */
[data-theme="dark"] .theme-toggle-thumb {
    left: calc(100% - 30px);
    background: linear-gradient(135deg, #00d9ff 0%, #0088aa 100%);
    box-shadow: 0 2px 8px rgba(0,217,255,0.6), 0 0 15px rgba(0,217,255,0.4);
}

/* Ikone sunca i meseca */
.theme-toggle-sun,
.theme-toggle-moon {
    font-size: 14px;
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 0;
    position: relative;
}

.theme-toggle-sun {
    margin-left: 4px;
    opacity: 1;
    transform: scale(1);
}

.theme-toggle-moon {
    margin-right: 4px;
    opacity: 0.5;
    transform: scale(0.9);
}

/* U dark modu - mesec je aktivan, sunce je bledo */
[data-theme="dark"] .theme-toggle-sun {
    opacity: 0.5;
    transform: scale(0.9);
}

[data-theme="dark"] .theme-toggle-moon {
    opacity: 1;
    transform: scale(1);
}

/* Tooltip */
.theme-toggle::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: #1a1a2e;
    color: #00d9ff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,217,255,0.3);
}

.theme-toggle:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

@media (max-width: 768px) {
    .theme-switcher {
        margin-left: 10px;
        padding-left: 10px;
    }
    
    .theme-toggle-track {
        width: 64px;
        height: 32px;
    }
    
    .theme-toggle-thumb {
        width: 24px;
        height: 24px;
    }
    
    [data-theme="dark"] .theme-toggle-thumb {
        left: calc(100% - 26px);
    }
    
    .theme-toggle-sun,
    .theme-toggle-moon {
        font-size: 12px;
    }
}

/* ============================================
   Donut Chart i Progress Bars
   ============================================ */

.score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 30px 0;
}

.donut-chart {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.donut-chart svg {
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
}





.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.donut-score {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 0 15px currentColor;
}

.donut-total {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    font-weight: 600;
}

.score-grade {
    text-align: center;
}

.grade-letter {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 25px currentColor;
}

.grade-label {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
    font-weight: 700;
}

/* Progress bars */
.chart-breakdown {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.chart-subtitle {
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.progress-item {
    margin-bottom: 18px;
}

.progress-item:last-child {
    margin-bottom: 0;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.progress-label {
    color: #1a1a2e;
    font-weight: 600;
}

.progress-value {
    font-weight: 700;
    font-size: 14px;
}

.progress-value strong {
    font-weight: 800;
}

.progress-bar-track {
    background: rgba(0,0,0,0.06);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 1s ease-out;
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    .score-display {
        gap: 30px;
    }
    
    .donut-chart {
        width: 160px;
        height: 160px;
    }
    
    .donut-score {
        font-size: 42px;
    }
    
    .grade-letter {
        font-size: 60px;
    }
    
    .progress-label {
        font-size: 13px;
    }
    
    .progress-value {
        font-size: 13px;
    }
}

/* ============================================
   Donut chart - finalna verzija
   ============================================ */

.donut-chart svg {
    display: block;
    margin: 0 auto;
}

.donut-chart svg circle {
    transition: stroke-dashoffset 1.5s ease-out;
}

/* ============================================
   PDF dugme - poboljšano
   ============================================ */

.btn-pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #d9534f 0%, #c9302c 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217,83,79,0.3);
    border: 2px solid transparent;
}

.btn-pdf:hover {
    background: linear-gradient(135deg, #c9302c 0%, #a02522 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217,83,79,0.5), 0 0 30px rgba(217,83,79,0.3);
    border-color: rgba(255,255,255,0.2);
}

.btn-pdf:active {
    transform: translateY(0);
}

.btn-pdf svg {
    flex-shrink: 0;
}

/* U dark mode - neon glow */
[data-theme="dark"] .btn-pdf {
    box-shadow: 0 4px 15px rgba(217,83,79,0.4), 0 0 20px rgba(217,83,79,0.2);
}

[data-theme="dark"] .btn-pdf:hover {
    box-shadow: 0 8px 25px rgba(217,83,79,0.6), 0 0 40px rgba(217,83,79,0.4);
}

/* ============================================
   MOBILNI HAMBURGER MENI
   ============================================ */

/* Desktop - sakrij mobilne kontrole */
.mobile-controls {
    display: none;
}

.mobile-menu {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

/* ============================================
   MOBILE (max 900px)
   ============================================ */

@media (max-width: 900px) {
    
    /* Sakrij desktop navigaciju */
    .desktop-nav {
        display: none !important;
    }
    
    /* Prikaži mobilne kontrole */
    .mobile-controls {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    /* Theme toggle - mobilna verzija (samo ikona) */
    .theme-toggle-mobile {
        background: rgba(255,255,255,0.1);
        border: 2px solid rgba(255,255,255,0.2);
        border-radius: 50%;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 18px;
        transition: all 0.3s ease;
        padding: 0;
        font-family: inherit;
    }
    
    .theme-toggle-mobile:hover {
        background: rgba(0,217,255,0.2);
        border-color: #00d9ff;
        box-shadow: 0 0 15px rgba(0,217,255,0.4);
    }
    
    .theme-toggle-mobile:active {
        transform: scale(0.95);
    }
    
    [data-theme="dark"] .theme-toggle-mobile {
        background: rgba(0,217,255,0.1);
        border-color: rgba(0,217,255,0.3);
    }
    
    /* Hamburger dugme */
    .hamburger {
        background: transparent;
        border: 2px solid rgba(255,255,255,0.2);
        border-radius: 8px;
        width: 42px;
        height: 42px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        padding: 0;
        transition: all 0.3s ease;
    }
    
    .hamburger:hover {
        border-color: #00d9ff;
        box-shadow: 0 0 15px rgba(0,217,255,0.3);
    }
    
    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Slide-in meni */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: #1a1a2e;
        z-index: 10001;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 30px rgba(0,0,0,0.5);
        overflow-y: auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }
    
    [data-theme="dark"] .mobile-menu {
        background: #0f0f1e;
        border-left: 1px solid rgba(0,217,255,0.15);
    }
    
    .mobile-menu.open {
        transform: translateX(0);
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 18px;
        margin-bottom: 10px;
        border-bottom: 2px solid rgba(0,217,255,0.3);
    }
    
    .mobile-menu-title {
        color: #00d9ff;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    .mobile-menu-close {
        background: rgba(255,255,255,0.1);
        border: none;
        color: #ffffff;
        font-size: 18px;
        cursor: pointer;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        font-family: inherit;
    }
    
    .mobile-menu-close:hover {
        background: rgba(217,83,79,0.3);
        color: #ff6b6b;
    }
    
    .mobile-menu-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .mobile-menu-nav a {
        display: block;
        color: #ffffff;
        text-decoration: none;
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
    }
    
    .mobile-menu-nav a:hover,
    .mobile-menu-nav a:active {
        background: rgba(0,217,255,0.1);
        border-left-color: #00d9ff;
        color: #00d9ff;
        padding-left: 20px;
    }
    
    .mobile-menu-divider {
        height: 1px;
        background: rgba(0,217,255,0.2);
        margin: 20px 0;
    }
    
    .mobile-menu-lang-label {
        color: #b0b0c0;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    
    .mobile-menu-lang-buttons {
        display: flex;
        gap: 8px;
    }
    
    .mobile-menu-lang-buttons a {
        flex: 1;
        text-align: center;
        padding: 12px;
        background: rgba(255,255,255,0.05);
        border: 2px solid rgba(255,255,255,0.1);
        border-radius: 8px;
        color: #ffffff;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        transition: all 0.2s;
    }
    
    .mobile-menu-lang-buttons a:hover {
        border-color: rgba(0,217,255,0.5);
    }
    
    .mobile-menu-lang-buttons a.active {
        background: rgba(0,217,255,0.15);
        border-color: #00d9ff;
        color: #00d9ff;
        box-shadow: 0 0 15px rgba(0,217,255,0.3);
    }
    
    /* Overlay */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.7);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }
    
    /* Header na mobilnom */
    header {
        padding: 10px 0;
    }
    
    header .container {
        padding: 0 15px;
    }
    
    header .logo img {
        height: 45px !important;
        margin: 0 !important;
    }
}

/* ============================================
   EXTRA MALI EKRANI (max 480px)
   ============================================ */

@media (max-width: 480px) {
    header .logo img {
        height: 38px !important;
    }
    
    .hamburger {
        width: 38px;
        height: 38px;
    }
    
    .hamburger span {
        width: 20px;
    }
    
    .theme-toggle-mobile {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-menu-nav a {
        font-size: 15px;
        padding: 12px 14px;
    }
}

/* HITNA POPRAVKA - sakrij mobilni meni na desktopu */
@media (min-width: 901px) {
    .mobile-menu,
    .mobile-menu-overlay,
    .mobile-controls {
        display: none !important;
    }
}

/* ============================================
   FINALNA POPRAVKA - Mobile Menu
   ============================================ */

/* Desktop - sakrij mobilni meni (obavezno) */
@media (min-width: 901px) {
    .mobile-menu,
    .mobile-menu-overlay,
    .mobile-controls,
    #mobile-menu,
    #mobile-menu-overlay {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Mobile - prikaži pravilno */
@media (max-width: 900px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-controls {
        display: flex !important;
        visibility: visible !important;
    }
    
    .mobile-menu {
        display: flex !important;
        visibility: visible !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 320px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        background: #1a1a2e !important;
        z-index: 10001 !important;
        transform: translateX(100%) !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: -4px 0 30px rgba(0,0,0,0.5) !important;
        overflow-y: auto !important;
        padding: 20px !important;
        flex-direction: column !important;
        margin: 0 !important;
    }
    
    [data-theme="dark"] .mobile-menu {
        background: #0f0f1e !important;
    }
    
    .mobile-menu.open {
        transform: translateX(0) !important;
    }
}

/* ============================================
   FIX - Horizontalni overflow na mobilnom
   ============================================ */

/* Globalno - spreči horizontalno skrolovanje */
html {
    overflow-x: hidden !important;
    max-width: 100%;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    position: relative;
}

@media (max-width: 900px) {
    /* Svi glavni kontejneri */
    body,
    html,
    main,
    section,
    .container,
    .hero,
    .features-bar,
    .two-cols-section,
    .trust-section,
    .first-clients-section,
    .scan-result,
    .page-content,
    .result-section,
    .result-header {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box;
    }
    
    /* Loading overlay - spreči širenje */
    .loading-overlay {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }
    
    /* Score display (donut chart) */
    .score-display {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        padding: 20px 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .donut-chart {
        width: 160px !important;
        height: 160px !important;
        max-width: 100% !important;
        flex-shrink: 0;
    }
    
    .donut-chart svg {
        width: 100% !important;
        height: 100% !important;
        max-width: 160px !important;
    }
    
    /* Progress bars */
    .progress-item,
    .progress-header,
    .progress-bar-track {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Tabele - horizontalno skrolovanje unutar tabele */
    .result-table {
        display: block !important;
        overflow-x: auto !important;
        max-width: 100% !important;
        white-space: nowrap;
    }
    
    /* Code tagovi mogu da se prelome */
    code, pre {
        max-width: 100% !important;
        overflow-x: auto !important;
        word-break: break-word !important;
    }
    
    /* Subdomain list */
    .subdomain-list {
        max-width: 100% !important;
    }
    
    .subdomain-list code {
        max-width: 100% !important;
        word-break: break-all !important;
        display: inline-block;
    }
    
    /* Result header - PDF dugme */
    .result-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
    
    .btn-pdf {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        justify-content: center !important;
    }
    
    /* Cookie banner */
    .cookie-banner {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Mobile menu */
    .mobile-menu {
        max-width: 85vw !important;
        box-sizing: border-box !important;
    }
    
    /* Images */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Pre-formatted code blokovi */
    pre {
        white-space: pre-wrap !important;
        word-wrap: break-word !important;
    }
    
    /* Scan form */
    .scan-form-with-toggle {
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    .scan-form-with-toggle input {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Za veoma male ekrane */
@media (max-width: 480px) {
    .score-display {
        padding: 15px 5px !important;
    }
    
    .donut-chart {
        width: 140px !important;
        height: 140px !important;
    }
    
    .donut-chart svg {
        max-width: 140px !important;
    }
    
    .donut-score {
        font-size: 36px !important;
    }
}

/* ============================================
   Cooperation stranica
   ============================================ */

.coop-why-section {
    margin: 50px 0;
}

.coop-why-section h2,
.coop-types-section h2 {
    font-size: 26px;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 3px solid #00d9ff;
    display: inline-block;
}

.coop-why-section h2,
.coop-types-section h2 {
    display: block;
    text-align: center;
    border-bottom: none;
    position: relative;
}

.coop-why-section h2::after,
.coop-types-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00d9ff, transparent);
    margin: 12px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0,217,255,0.5);
}

.coop-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.coop-why-card {
    background: white;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-top: 4px solid #00d9ff;
    transition: all 0.3s ease;
}

.coop-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,217,255,0.15);
}

.coop-why-icon {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1;
}

.coop-why-card h3 {
    color: #1a1a2e;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
}

.coop-why-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Tipovi saradnje */
.coop-types-section {
    margin: 60px 0;
}

.coop-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.coop-type-card {
    background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
    padding: 25px 22px;
    border-radius: 12px;
    border-left: 4px solid #00d9ff;
    transition: all 0.3s ease;
    cursor: default;
}

.coop-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,217,255,0.15);
    background: linear-gradient(135deg, #f0faff 0%, #e6f7ff 100%);
}

.coop-type-icon {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1;
}

.coop-type-card h3 {
    color: #1a1a2e;
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 700;
}

.coop-type-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Forma */
.coop-form-section {
    max-width: 800px;
    margin: 60px auto 0;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    border-top: 4px solid #00d9ff;
}

.coop-form-section h2 {
    color: #1a1a2e;
    font-size: 24px;
    margin-bottom: 12px;
    text-align: center;
}

.coop-form-intro {
    color: #666;
    font-size: 15px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.coop-form .form-group {
    margin-bottom: 20px;
}

.coop-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.coop-form label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 14px;
}

.coop-form input,
.coop-form textarea,
.coop-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.coop-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.coop-form input:focus,
.coop-form textarea:focus,
.coop-form select:focus {
    outline: none;
    border-color: #00d9ff;
    box-shadow: 0 0 0 4px rgba(0,217,255,0.15);
}

.coop-form textarea {
    resize: vertical;
    min-height: 120px;
}

.coop-form .btn-cta {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

/* CTA na kraju */
.coop-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
}

.coop-cta h3 {
    color: #00d9ff;
    font-size: 22px;
    margin-bottom: 12px;
}

.coop-cta p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Dark mode override */
[data-theme="dark"] .coop-why-card,
[data-theme="dark"] .coop-form-section {
    background: #1e1e30 !important;
    border-top-color: #00d9ff !important;
}

[data-theme="dark"] .coop-why-card h3,
[data-theme="dark"] .coop-form-section h2,
[data-theme="dark"] .coop-form label {
    color: #ffffff !important;
}

[data-theme="dark"] .coop-type-card {
    background: linear-gradient(135deg, rgba(0,217,255,0.05) 0%, rgba(0,217,255,0.1) 100%) !important;
    border-left-color: #00d9ff !important;
}

[data-theme="dark"] .coop-type-card h3 {
    color: #ffffff !important;
}

[data-theme="dark"] .coop-type-card p,
[data-theme="dark"] .coop-why-card p,
[data-theme="dark"] .coop-form-intro {
    color: #b0b0c0 !important;
}

[data-theme="dark"] .coop-form input,
[data-theme="dark"] .coop-form textarea,
[data-theme="dark"] .coop-form select {
    background: #0f0f1e !important;
    color: #ffffff !important;
    border-color: #2a2a40 !important;
}

[data-theme="dark"] .coop-form input::placeholder,
[data-theme="dark"] .coop-form textarea::placeholder {
    color: #808090 !important;
}

[data-theme="dark"] .coop-form select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300d9ff' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e") !important;
}

[data-theme="dark"] .coop-why-section h2,
[data-theme="dark"] .coop-types-section h2 {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .coop-form-section {
        padding: 25px 20px;
    }
    
    .coop-why-grid,
    .coop-types-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Cooperation - 4 kartice + Ostalo
   ============================================ */

.coop-types-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Ostali oblici saradnje - box */
.coop-other-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #f0faff 0%, #e6f7ff 100%);
    padding: 25px 30px;
    border-radius: 12px;
    border: 2px dashed rgba(0,217,255,0.4);
    margin-top: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.coop-other-box:hover {
    border-color: #00d9ff;
    box-shadow: 0 8px 25px rgba(0,217,255,0.15);
}

.coop-other-icon {
    font-size: 36px;
    line-height: 1;
    flex-shrink: 0;
}

.coop-other-box h3 {
    color: #1a1a2e;
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 700;
}

.coop-other-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Dark mode */
[data-theme="dark"] .coop-other-box {
    background: linear-gradient(135deg, rgba(0,217,255,0.05) 0%, rgba(0,217,255,0.1) 100%) !important;
    border-color: rgba(0,217,255,0.4) !important;
}

[data-theme="dark"] .coop-other-box h3 {
    color: #ffffff !important;
}

[data-theme="dark"] .coop-other-box p {
    color: #b0b0c0 !important;
}

@media (max-width: 768px) {
    .coop-other-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .coop-other-icon {
        font-size: 42px;
    }
}


/* ============================================
   HOSTING - Kartice + Modal
   ============================================ */

.hosting-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 40px 0 35px;
}

.hosting-filter {
    padding: 10px 22px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #1a1a2e;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.hosting-filter:hover {
    border-color: #00d9ff;
    transform: translateY(-2px);
}

.hosting-filter.active {
    background: #00d9ff;
    border-color: #00d9ff;
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0,217,255,0.4);
}

/* GRID - kompaktne kartice */
.hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.hosting-card-compact {
    background: white;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-top: 4px solid #00d9ff;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hosting-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,217,255,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.hosting-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,217,255,0.2);
    border-top-color: #00b8d9;
}

.hosting-card-compact:hover::before {
    opacity: 1;
}

.hcc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.hcc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.hcc-flag {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.hcc-name {
    color: #1a1a2e;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hcc-rating {
    display: flex;
    align-items: baseline;
    gap: 2px;
    background: rgba(0,217,255,0.12);
    padding: 5px 10px;
    border-radius: 8px;
    flex-shrink: 0;
}

.hcc-rating-value {
    font-size: 16px;
    font-weight: 900;
    color: #00d9ff;
}

.hcc-rating-max {
    font-size: 11px;
    color: #666;
    font-weight: 600;
}

.hcc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.hcc-country,
.hcc-price,
.hcc-type {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    padding: 3px 10px;
    background: #f5f7fa;
    border-radius: 6px;
}

.hcc-price {
    color: #00d9ff;
}

.hcc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.hcc-feature {
    font-size: 11px;
    color: #555;
    padding: 3px 8px;
    background: #f0f9ff;
    border: 1px solid #d0eaff;
    border-radius: 5px;
    font-weight: 600;
}

.hcc-details-btn {
    margin-top: auto;
    padding: 10px 16px;
    background: linear-gradient(135deg, #00d9ff 0%, #00b8d9 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hosting-card-compact:hover .hcc-details-btn {
    box-shadow: 0 6px 20px rgba(0,217,255,0.5);
}

/* MODAL */
.hosting-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9998;
    backdrop-filter: blur(6px);
}

.hosting-modal-overlay.active {
    display: block;
}

.hosting-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0,217,255,0.3);
}

.hosting-modal.active {
    display: block;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translate(-50%, -45%) scale(0.95); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.hm-header {
    padding: 30px 30px 20px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-radius: 20px 20px 0 0;
}

.hm-title-block {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.hm-flag {
    font-size: 48px;
    line-height: 1;
}

.hm-title {
    color: #1a1a2e;
    font-size: 26px;
    margin: 0 0 5px 0;
    font-weight: 900;
}

.hm-country {
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.hm-close {
    background: #f5f7fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    font-family: inherit;
    transition: all 0.2s;
    flex-shrink: 0;
}

.hm-close:hover {
    background: #fee;
    color: #f87171;
    transform: rotate(90deg);
}

.hm-body {
    padding: 25px 30px 30px;
}

.hm-rating-block {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f0faff 0%, #e6f7ff 100%);
    padding: 20px 25px;
    border-radius: 14px;
    margin-bottom: 25px;
    border-left: 4px solid #00d9ff;
}

.hm-rating-value {
    font-size: 42px;
    font-weight: 900;
    color: #00d9ff;
    line-height: 1;
}

.hm-rating-info {
    flex: 1;
}

.hm-rating-info strong {
    display: block;
    color: #1a1a2e;
    font-size: 14px;
    margin-bottom: 4px;
}

.hm-rating-info span {
    color: #666;
    font-size: 13px;
}

.hm-section {
    margin-bottom: 22px;
}

.hm-section-title {
    color: #1a1a2e;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    margin: 0 0 12px 0;
}

.hm-description {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.hm-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.hm-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fbff;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 13px;
    color: #333;
    font-weight: 600;
    border-left: 3px solid #00d9ff;
}

.hm-price-block {
    background: #f5f7fa;
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.hm-price-label {
    color: #666;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hm-price-value {
    color: #00d9ff;
    font-size: 22px;
    font-weight: 900;
}

.hm-source {
    background: #fff8e6;
    border-left: 4px solid #fbbf24;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 13px;
    color: #8a6d00;
    margin-bottom: 22px;
}

.hm-source strong {
    color: #8a6d00;
}

.hm-visit-btn {
    display: block;
    text-align: center;
    padding: 16px 25px;
    background: linear-gradient(135deg, #00d9ff 0%, #00b8d9 100%);
    color: #1a1a2e !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 900;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,217,255,0.4);
}

.hm-visit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,217,255,0.6);
}

.hm-affiliate-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 12px;
    font-style: italic;
}

/* DARK MODE */
[data-theme="dark"] .hosting-filter {
    background: #1e1e30;
    color: #ffffff;
    border-color: #2a2a40;
}

[data-theme="dark"] .hosting-filter.active {
    background: #00d9ff;
    border-color: #00d9ff;
    color: #1a1a2e;
}

[data-theme="dark"] .hosting-card-compact {
    background: #1e1e30;
    border-top-color: #00d9ff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

[data-theme="dark"] .hosting-card-compact:hover {
    box-shadow: 0 15px 40px rgba(0,217,255,0.3);
}

[data-theme="dark"] .hcc-name {
    color: #ffffff;
}

[data-theme="dark"] .hcc-country,
[data-theme="dark"] .hcc-price,
[data-theme="dark"] .hcc-type {
    background: rgba(255,255,255,0.05);
    color: #b0b0c0;
}

[data-theme="dark"] .hcc-price {
    color: #00d9ff;
}

[data-theme="dark"] .hcc-feature {
    background: rgba(0,217,255,0.08);
    border-color: rgba(0,217,255,0.2);
    color: #00d9ff;
}

[data-theme="dark"] .hosting-modal {
    background: #1e1e30;
    box-shadow: 0 25px 80px rgba(0,217,255,0.4);
}

[data-theme="dark"] .hm-header {
    background: #1e1e30;
    border-bottom-color: rgba(0,217,255,0.15);
}

[data-theme="dark"] .hm-title {
    color: #ffffff;
}

[data-theme="dark"] .hm-country {
    color: #b0b0c0;
}

[data-theme="dark"] .hm-close {
    background: rgba(255,255,255,0.05);
    color: #b0b0c0;
}

[data-theme="dark"] .hm-rating-block {
    background: linear-gradient(135deg, rgba(0,217,255,0.1) 0%, rgba(0,217,255,0.05) 100%);
}

[data-theme="dark"] .hm-rating-info strong {
    color: #ffffff;
}

[data-theme="dark"] .hm-rating-info span {
    color: #b0b0c0;
}

[data-theme="dark"] .hm-section-title {
    color: #00d9ff;
}

[data-theme="dark"] .hm-description {
    color: #b0b0c0;
}

[data-theme="dark"] .hm-feature-item {
    background: rgba(0,217,255,0.05);
    color: #e0e0f0;
}

[data-theme="dark"] .hm-price-block {
    background: rgba(255,255,255,0.05);
}

[data-theme="dark"] .hm-price-label {
    color: #b0b0c0;
}

[data-theme="dark"] .hm-source {
    background: rgba(251,191,36,0.1);
    color: #fbbf24;
}

[data-theme="dark"] .hm-source strong {
    color: #fbbf24;
}

@media (max-width: 768px) {
    .hosting-grid {
        grid-template-columns: 1fr;
    }
    
    .hosting-modal {
        width: 95%;
        max-height: 90vh;
    }
    
    .hm-header {
        padding: 20px;
    }
    
    .hm-flag {
        font-size: 36px;
    }
    
    .hm-title {
        font-size: 20px;
    }
    
    .hm-body {
        padding: 20px;
    }
    
    .hm-rating-block {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


/* ============================================
   HOSTING - "Kako biramo" kompaktna traka
   ============================================ */

.hosting-why-section {
    margin-top: 50px;
    padding: 28px 35px;
    background: linear-gradient(135deg, rgba(0,217,255,0.06) 0%, rgba(0,217,255,0.02) 100%);
    border-radius: 16px;
    border: 1.5px solid rgba(0,217,255,0.2);
    position: relative;
    overflow: hidden;
}

.hosting-why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00d9ff 0%, transparent 100%);
}

.hosting-why-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,217,255,0.15);
}

.hosting-why-icon-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00d9ff 0%, #00b8d9 100%);
    border-radius: 12px;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,217,255,0.35);
}

.hosting-why-header-text h2 {
    color: #1a1a2e;
    font-size: 18px;
    margin: 0 0 4px 0;
    font-weight: 800;
}

.hosting-why-header-text p {
    color: #666;
    font-size: 12.5px;
    margin: 0;
    line-height: 1.5;
}

.hosting-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.hosting-why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.hosting-why-item:hover {
    background: rgba(0,217,255,0.1);
    transform: translateX(3px);
}

.hosting-why-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,217,255,0.12);
    border-radius: 8px;
}

.hosting-why-item-text h3 {
    color: #1a1a2e;
    font-size: 13px;
    margin: 0 0 2px 0;
    font-weight: 700;
}

.hosting-why-item-text p {
    color: #666;
    font-size: 11px;
    margin: 0;
    line-height: 1.4;
}

/* DARK MODE */
[data-theme="dark"] .hosting-why-section {
    background: linear-gradient(135deg, rgba(0,217,255,0.04) 0%, rgba(0,217,255,0.01) 100%);
    border-color: rgba(0,217,255,0.25);
}

[data-theme="dark"] .hosting-why-header {
    border-bottom-color: rgba(0,217,255,0.15);
}

[data-theme="dark"] .hosting-why-header-text h2 {
    color: #ffffff;
}

[data-theme="dark"] .hosting-why-header-text p {
    color: #b0b0c0;
}

[data-theme="dark"] .hosting-why-item {
    background: rgba(255,255,255,0.03);
}

[data-theme="dark"] .hosting-why-item:hover {
    background: rgba(0,217,255,0.1);
}

[data-theme="dark"] .hosting-why-icon {
    background: rgba(0,217,255,0.15);
}

[data-theme="dark"] .hosting-why-item-text h3 {
    color: #ffffff;
}

[data-theme="dark"] .hosting-why-item-text p {
    color: #9090a0;
}

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

@media (max-width: 600px) {
    .hosting-why-section {
        padding: 20px 18px;
    }
    
    .hosting-why-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .hosting-why-grid {
        grid-template-columns: 1fr;
    }
}
