* { box-sizing: border-box; }

:root {
    --bg: #f7f9fc;
    --surface: #ffffff;
    --surface-alt: #f2f5fb;
    --text: #101828;
    --muted: #667085;
    --primary: #153e9f;
    --primary-2: #2458d3;
    --border: #e4e7ec;
    --success: #0f9d58;
    --danger: #d92d20;
    --shadow: 0 20px 40px rgba(16, 24, 40, 0.08);
    --radius: 22px;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(228, 231, 236, 0.8);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.08rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(21, 62, 159, 0.25);
}

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

.nav a {
    color: #344054;
    font-weight: 500;
    transition: color .2s ease;
}

.nav a:hover { color: var(--primary); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 14px 30px rgba(21, 62, 159, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 18px 34px rgba(21, 62, 159, 0.33);
}

.btn-secondary {
    background: white;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-light {
    background: white;
    color: var(--primary);
}

/* CTA Navbar - premium look */

.btn-nav {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    margin-left: 12px;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
    transition: all 0.25s ease;
    position: relative;
}

/* Hover effect */
.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* Subtle pulse animation */
.btn-nav::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
    animation: pulse 2.2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.hero {
    padding: 72px 0 48px;
    background:
        radial-gradient(circle at top right, rgba(36, 88, 211, 0.1), transparent 34%),
        radial-gradient(circle at top left, rgba(21, 62, 159, 0.09), transparent 28%);
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 520px;
}

.hero .btn-primary {
    font-size: 1.05rem;
    padding: 14px 22px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(21, 62, 159, 0.08);
    color: var(--primary);
    font-size: .9rem;
    font-weight: 700;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-subtitle,
.page-hero p {
    margin: 20px 0 0;
    max-width: 680px;
    color: var(--muted);
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
    color: var(--muted);
    font-size: .95rem;
}

.hero-meta span::before {
    content: "•";
    margin-right: 8px;
    color: var(--primary);
}

.dashboard-card {
    background: white;
    border: 1px solid rgba(228, 231, 236, 0.85);
    border-radius: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.dashboard-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    color: white;
    background: linear-gradient(135deg, #0f2b6d, #173f9d);
    font-weight: 600;
}

.status-pill {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    font-size: .85rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 18px;
}

.stat-box {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #fbfcff);
}

.stat-box small {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
}

.stat-box strong {
    display: block;
    font-size: 1.85rem;
    line-height: 1.1;
}

.stat-box span {
    display: block;
    margin-top: 6px;
    color: var(--success);
    font-size: .88rem;
}

.stat-box.danger span { color: var(--danger); }

.dashboard-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 18px 18px;
}

.mini-chart, .line-chart {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    background: #fff;
}

.chart-title {
    margin-bottom: 14px;
    font-weight: 700;
}

.bar-row {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    font-size: .9rem;
    color: var(--muted);
}

.bar {
    height: 10px;
    border-radius: 999px;
    background: #edf1f7;
    overflow: hidden;
}

.bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #214dbb, #5f8dff);
}

.line-svg {
    width: 100%;
    height: 140px;
    fill: none;
    stroke: #214dbb;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.line-svg .green {
    stroke: #12b76a;
}

.section {
    padding: 84px 0;
}

.muted-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(242,245,251,0.85));
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.feature-card, .step-card, .price-card, .about-card {
    background: white;
    border: 1px solid rgba(228, 231, 236, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover, .step-card:hover, .price-card:hover, .about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(16, 24, 40, 0.11);
}

.feature-card {
    padding: 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(21, 62, 159, 0.08);
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.feature-card h3, .step-card h3, .price-card h3, .about-card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.feature-card p, .step-card p, .price-card p, .about-card p {
    margin: 0;
    color: var(--muted);
}

.steps-grid, .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step-card, .price-card {
    padding: 28px;
}

.step-no {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
    font-weight: 800;
}

.results-section {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: center;
}

.result-main, .result-points {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.result-main strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.result-main span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 1.02rem;
}

.result-points {
    display: grid;
    gap: 12px;
}

.result-points div {
    padding-left: 18px;
    position: relative;
    font-weight: 600;
}

.result-points div::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.proof {
    margin-top: 24px;
    text-align: center;
    color: #475467;
    font-style: italic;
    font-size: 1.02rem;
}

.featured {
    position: relative;
    border-color: rgba(36, 88, 211, 0.3);
    background: linear-gradient(180deg, #fff, #f8fbff);
}

.badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(36, 88, 211, 0.12);
    color: var(--primary);
    font-size: .8rem;
    font-weight: 800;
}

.cta-section {
    padding-top: 0;
}

.cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding: 48px 48px;
    border-radius: 28px;
    color: white;
    background: linear-gradient(135deg, #0e2b73, #2458d3);
    box-shadow: 0 26px 50px rgba(21, 62, 159, 0.24);
}

.cta-box h2 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-box p {
    margin: 0;
    opacity: .92;
}

.page-hero.small {
    padding: 72px 0 22px;
}

.about-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: start;
}

.about-copy h2 {
    margin-top: 0;
    font-size: 2rem;
}

.about-card {
    padding: 28px;
    text-align: center;
}

.avatar-circle {
    display: grid;
    place-items: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 18px;
    border-radius: 999px;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.clean-list {
    padding-left: 20px;
    color: var(--muted);
}

.clean-list li {
    margin-bottom: 10px;
}

.contact-form {
    background: white;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    font: inherit;
    color: var(--text);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(36, 88, 211, 0.5);
    box-shadow: 0 0 0 4px rgba(36, 88, 211, 0.1);
}

.form-btn {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.muted {
    color: var(--muted);
}

.flash-wrap {
    padding-top: 14px;
}

.flash {
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.flash-close {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
    padding: 0 4px;
    flex-shrink: 0;
}

.flash.success {
    color: #065f46;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
}

.flash.error {
    color: #7a271a;
    background: #fee4e2;
    border: 1px solid #fda29b;
}

.site-footer {
    margin-top: 28px;
    border-top: 1px solid var(--border);
    background: white;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 0;
}

.footer-text {
    color: var(--muted);
    margin: 10px 0 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #344054;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

.floating {
    animation: floaty 5s ease-in-out infinite;
}

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

@media (max-width: 1080px) {
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-grid,
    .results-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .cta-box { flex-direction: column; align-items: center; }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
    .nav-wrap {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        gap: 0;
    }
    .nav-toggle { display: flex; }
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 4px;
        padding: 12px 0 8px;
    }
    .nav.open { display: flex; }
    .nav a {
        padding: 10px 4px;
        border-bottom: 1px solid var(--border);
    }
    .nav .btn-nav {
        margin-top: 8px;
        text-align: center;
        border-bottom: none;
    }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid,
    .pricing-grid,
    .dashboard-bottom,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .hero { padding-top: 48px; }
}

@media (max-width: 560px) {
    .container { width: min(100% - 24px, 1180px); }
    .feature-grid { grid-template-columns: 1fr; }
    .btn { width: 100%; }
    .hero-actions { flex-direction: column; }
    .numbers, .result-points { gap: 12px; }
    .footer-wrap {
        flex-direction: column;
        padding: 24px 0;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 12px;
    }
    .section {
        padding: 48px 0;
    }
    .hero h1,
    .page-hero h1 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }
    .analiza-grid {
        gap: 28px;
    }
    .cta-box {
        padding: 32px 20px;
    }
    .contact-form {
        padding: 20px 16px;
    }
}


.audience-grid,
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.audience-card,
.deliverable-card {
    position: relative;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.98));
    border: 1px solid rgba(228, 231, 236, 0.95);
    box-shadow: 0 18px 34px rgba(16, 24, 40, 0.06), inset 0 1px 0 rgba(255,255,255,0.9);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
}

.audience-card::before,
.deliverable-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    opacity: .9;
}

.audience-card:hover,
.deliverable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 46px rgba(16, 24, 40, 0.11), 0 10px 20px rgba(36, 88, 211, 0.08);
    border-color: rgba(36, 88, 211, 0.25);
}

.audience-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(21, 62, 159, 0.10), rgba(36, 88, 211, 0.16));
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.audience-card h3,
.deliverable-card h3 {
    margin: 0 0 10px;
    font-size: 1.28rem;
}

.audience-card p,
.deliverable-card p {
    margin: 0;
    color: var(--muted);
}

.deliverable-no {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(21, 62, 159, 0.08);
    color: var(--primary);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.urgency-note {
    margin-top: 22px;
    text-align: center;
    color: #475467;
    font-style: italic;
    font-size: 1.02rem;
}

@media (max-width: 820px) {
    .audience-grid,
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
}
/* Upload premium */

.upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fafafa;
}

.upload-area:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

.upload-area.dragover {
    border-color: #2563eb;
    background: #eef2ff;
}

.upload-content {
    pointer-events: none;
}

.upload-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.upload-area input {
    display: none;
}

.file-name {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #374151;
}

.file-wrapper.dragover {
    outline: 2px dashed #2563eb;
    outline-offset: 4px;
    background: rgba(37, 99, 235, 0.05);
}

/* layout analiza */

.analiza-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

/* upload premium */

.file-upload {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    background: #fff;
    transition: all 0.2s ease;
}

.file-upload:hover {
    border-color: var(--primary);
}

.file-upload.dragover {
    border-color: var(--primary);
    background: #f0f7ff;
}

.file-upload input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-ui {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-btn {
    background: var(--primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.file-text {
    font-size: 0.9rem;
    color: var(--muted);
}

.file-name {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #374151;
}

.cta-center {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* GDPR Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1e293b;
    color: #f1f5f9;
    padding: 16px 24px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-banner a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.cookie-btn-decline {
    background: transparent;
    border: 1px solid #475569;
    color: #cbd5e1;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}

.cookie-btn-accept {
    background: #2458d3;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 560px) {
    .cookie-banner {
        padding: 14px 16px;
    }
    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
    .cookie-btn-decline,
    .cookie-btn-accept {
        flex: 1;
        text-align: center;
    }
}