﻿:root {
    --navy-deepest: #050F22;
    --navy-deep: #081A36;
    --navy: #0C2449;
    --navy-mid: #153567;
    --navy-light: #1E4580;
    --teal: #2DD9B3;
    --teal-bright: #3BE8C1;
    --teal-dim: #1FA98A;
    --teal-shadow: rgba(45, 217, 179, 0.25);
    --white: #FFFFFF;
    --paper: #F4F7FB;
    --gray-100: #E6ECF4;
    --gray-200: #C8D3E2;
    --gray-400: #7A8CA6;
    --gray-600: #3D5172;
    --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-body: 'Manrope', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 24px;
    --section-y: clamp(60px, 8vw, 120px);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background: var(--navy-deep);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

    .container.thin {
        max-width: 840px;
        margin: 0 auto;
    }

input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    outline: none;
}

input::placeholder {
    color: var(--gray-400);
}

input:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

input:focus {
    background: rgba(8, 26, 54, 0.8);
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-shadow);
}

.section-basic {
    padding: var(--section-y) 0;
    background: var(--navy);
    position: relative;
}

.section-basic-second {
    padding: var(--section-y) 0;
    background: var(--navy-deep);
}

.text-right{
    text-align:right;
}

/* ═══════════════════════ NAV ═══════════════════════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 26, 54, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.logo img{
    vertical-align: middle;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    font-size: 14.5px;
    font-weight: 500;
}

    .nav-links a {
        color: var(--gray-200);
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--teal);
        }

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal);
    color: var(--navy-deepest);
    box-shadow: 0 4px 24px var(--teal-shadow);
}

    .btn-primary:hover {
        background: var(--teal-bright);
        transform: translateY(-1px);
        box-shadow: 0 8px 32px var(--teal-shadow);
    }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

    .btn-outline:hover {
        border-color: var(--teal);
        color: var(--teal);
    }

.btn-lg {
    padding: 15px 30px;
    font-size: 16px;
}

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }

    .logo img{
        width: 70px;
    }

    .nav-cta{
        gap: 10px;
    }

    .btn{
        padding: 8px 16px;
    }

    .btn-lg{
        padding: 10px 20px;
    }
}

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background: radial-gradient(ellipse 1000px 600px at 85% 20%, rgba(45,217,179,0.12), transparent 60%), radial-gradient(ellipse 1200px 700px at 10% 90%, rgba(30,69,128,0.4), transparent 60%), linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
        background-size: 64px 64px;
        mask-image: radial-gradient(ellipse 800px 500px at 50% 50%, black 40%, transparent 80%);
        -webkit-mask-image: radial-gradient(ellipse 800px 500px at 50% 50%, black 40%, transparent 80%);
        pointer-events: none;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: rgba(45,217,179,0.1);
    border: 1px solid rgba(45,217,179,0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.7s cubic-bezier(.2,.8,.2,1) both;
}

    .eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--teal);
        box-shadow: 0 0 10px var(--teal);
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    font-size: clamp(42px, 6.2vw, 84px);
    font-weight: 700;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.1s cubic-bezier(.2,.8,.2,1) both;
}

    .hero h1 .accent {
        color: var(--teal);
        font-style: italic;
        font-weight: 300;
    }

.hero p.lead {
    font-size: clamp(17px, 1.3vw, 20px);
    color: var(--gray-200);
    max-width: 540px;
    margin-bottom: 36px;
    font-weight: 400;
    animation: fadeUp 0.8s 0.2s cubic-bezier(.2,.8,.2,1) both;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeUp 0.8s 0.3s cubic-bezier(.2,.8,.2,1) both;
}

.demo-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-200);
    font-size: 14px;
    font-weight: 500;
    margin-top: -28px;
    margin-bottom: 36px;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    padding-bottom: 2px;
    transition: all 0.2s;
    width: fit-content;
    animation: fadeUp 0.8s 0.35s cubic-bezier(.2,.8,.2,1) both;
}

    .demo-link:hover {
        color: var(--teal);
        border-bottom-color: var(--teal);
    }

    .demo-link svg {
        transition: transform 0.2s;
    }

    .demo-link:hover svg {
        transform: translateX(3px);
    }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    animation: fadeUp 0.8s 0.4s cubic-bezier(.2,.8,.2,1) both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 500;
}

    .hero-badge svg {
        flex-shrink: 0;
        color: var(--teal);
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 1s 0.4s cubic-bezier(.2,.8,.2,1) both;
}

.hero-laptop-img {
    width: 150%;
    max-width: 55vw;
    height: auto;
    display: block;
}


@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;  
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-laptop-img {
        width: 100%;
        max-width: 500px;
    }
}



/* ═══════════════════════ INTRO SECTION ═══════════════════════ */
.intro-section {
    padding: var(--section-y) 0;
    background: var(--navy);
    position: relative;
}

    .intro-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(45,217,179,0.4), transparent);
    }

.section-header {
    margin-bottom: 60px;
    max-width: 780px;
}

.section-label {
    display: inline-block;
    color: var(--teal);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

h2 {
    font-size: clamp(32px, 4vw, 54px);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

    h2 .accent {
        color: var(--teal);
        font-style: italic;
        font-weight: 300;
    }

.section-lead {
    font-size: 18px;
    color: var(--gray-200);
    max-width: 680px;
}

    .section-lead strong {
        color: var(--white);
        font-weight: 600;
    }

/* Benefits grid — 6 cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

    .benefit:hover {
        border-color: rgba(45,217,179,0.4);
        transform: translateY(-4px);
        background: linear-gradient(180deg, rgba(45,217,179,0.06), rgba(255,255,255,0.02));
    }

.benefit-number {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: 0.1em;
}

.benefit h3 {
    font-size: 22px;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.benefit p {
    color: var(--gray-200);
    font-size: 14.5px;
    line-height: 1.65;
}

.benefit-quote {
    background: linear-gradient(135deg, var(--teal-dim), var(--teal));
    color: var(--navy-deepest);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .benefit-quote h3 {
        font-size: 26px;
        font-style: italic;
        font-weight: 500;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    .benefit-quote p {
        color: rgba(5,15,34,0.7);
        font-weight: 500;
        margin-top: 12px;
    }

@media (max-width: 860px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════ AUTOMATION ═══════════════════════ */
.automation {
    padding: var(--section-y) 0;
    background: radial-gradient(circle at 80% 30%, rgba(45,217,179,0.08), transparent 50%), var(--navy-deep);
}

.automation-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    align-items: start;
}

.automation-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
}

.automation-item {
    background: var(--navy);
    padding: 26px 28px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    align-items: start;
    transition: background 0.3s;
}

    .automation-item:hover {
        background: var(--navy-mid);
    }

.automation-icon {
    width: 44px;
    height: 44px;
    background: rgba(45,217,179,0.12);
    border: 1px solid rgba(45,217,179,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.automation-item h4 {
    font-size: 17px;
    margin-bottom: 6px;
    font-weight: 700;
}

.automation-item p {
    color: var(--gray-200);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 860px) {
    .automation-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════ WHAT'S NEW in 5.0 ═══════════════════════ */
.whats-new {
    padding: var(--section-y) 0;
    background: var(--navy);
}

.new-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.new-card {
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(21,53,103,0.5), rgba(12,36,73,0.5));
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}

    .new-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(45,217,179,0.08), transparent 70%);
        pointer-events: none;
    }

    .new-card .icon-lg {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, var(--teal), var(--teal-dim));
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy-deepest);
        margin-bottom: 24px;
        box-shadow: 0 10px 30px rgba(45,217,179,0.25);
    }

    .new-card h3 {
        font-size: 24px;
        margin-bottom: 14px;
        letter-spacing: -0.01em;
    }

    .new-card p {
        color: var(--gray-200);
        font-size: 15px;
        line-height: 1.65;
    }

@media (max-width: 860px) {
    .new-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════ PRICING ═══════════════════════ */
.pricing {
    padding: var(--section-y) 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

    .pricing-header h2 {
        margin-bottom: 16px;
    }

    .pricing-header p {
        color: var(--gray-200);
        font-size: 18px;
        max-width: 640px;
        margin: 0 auto 36px;
    }

.pricing-switch {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    margin-bottom: 50px;
}

.switch-btn {
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-200);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .switch-btn.active {
        background: var(--teal);
        color: var(--navy-deepest);
    }

.save-pill {
    font-size: 11px;
    padding: 2px 8px;
    background: var(--navy-deepest);
    color: var(--teal);
    border-radius: 100px;
    font-weight: 700;
}

.switch-btn.active .save-pill {
    background: rgba(5,15,34,0.2);
    color: var(--navy-deepest);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.tier {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

    .tier:hover, .addon-card:hover {
        transform: translateY(-6px);
        border-color: rgba(45,217,179,0.4);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .tier.featured, .addon-card.featured {
        background: linear-gradient(180deg, rgba(45,217,179,0.12), rgba(45,217,179,0.02));
        border: 1px solid rgba(45,217,179,0.5);
        position: relative;
        transform: scale(1.04);
    }

        .tier.featured:hover, .addon-card.featured:hover {
            transform: scale(1.04) translateY(-6px);
        }

        .tier.featured::before, .addon-card.featured::before {
            content: 'Doporučujeme';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--teal);
            color: var(--navy-deepest);
            padding: 5px 14px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.04em;
            white-space: nowrap;
            text-transform: uppercase;
        }

.tier-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

    .tier-name .prefix {
        opacity: 0.5;
        font-weight: 400;
    }

.tier-desc {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 22px;
    min-height: 34px;
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

    .tier-price .amount {
        font-family: var(--font-display);
        font-size: 34px;
        font-weight: 700;
        letter-spacing: -0.03em;
    }

    .tier-price .unit {
        font-size: 13px;
        color: var(--gray-200);
    }

.tier-price-sub {
    font-size: 12.5px;
    color: var(--gray-400);
    margin-bottom: 22px;
    min-height: 18px;
}

.tier-price-yearly {
    display: none;
    font-size: 12.5px;
    color: var(--gray-400);
    margin-top: -6px;
    margin-bottom: 22px;
    line-height: 1.7;
}

    .tier-price-yearly strong {
        color: var(--white);
        font-weight: 600;
    }

    .tier-price-yearly .savings {
        color: var(--teal);
        font-weight: 600;
    }

body.period-year .tier-price-yearly {
    display: block;
}

body.period-year .tier-price-sub {
    display: none;
}

.tier-cta {
    width: 100%;
    justify-content: center;
    padding: 11px;
    margin-bottom: 22px;
}

.tier-features {
    list-style: none;
    font-size: 13.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .tier-features li {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        padding-bottom: 10px;
        border-bottom: 1px dashed rgba(255,255,255,0.08);
        color: var(--gray-200);
    }

        .tier-features li:last-child {
            border-bottom: none;
        }

        .tier-features li strong {
            color: var(--white);
            font-weight: 700;
        }

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tier.featured {
        transform: none;
    }

        .tier.featured:hover {
            transform: translateY(-6px);
        }
}

@media (max-width: 760px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.all-features-banner {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(45,217,179,0.1), rgba(45,217,179,0.03));
    border: 1px solid rgba(45,217,179,0.2);
    border-radius: var(--radius);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

    .all-features-banner strong {
        color: var(--teal);
    }

/* Add-on modules */
.addons {
    padding: var(--section-y) 0;
    background: var(--navy-deep);
}

.addon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.addon-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s;
}

    .addon-card h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .addon-card .desc {
        color: var(--gray-200);
        font-size: 14.5px;
        margin-bottom: 26px;
        line-height: 1.65;
    }

.addon-price-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.addon-price-col {
    padding: 16px 18px;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

    .addon-price-col .label {
        font-size: 11px;
        color: var(--gray-400);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 6px;
    }

    .addon-price-col .value {
        font-family: var(--font-display);
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

        .addon-price-col .value .small {
            font-size: 12px;
            color: var(--gray-400);
            font-weight: 400;
        }

@media (max-width: 760px) {
    .addon-grid {
        grid-template-columns: 1fr;
    }

    .addon-card{
        padding: 20px;
    }

    .addon-price-col{
        padding: 10px 12px;
    }
}

/* ═══════════════════════ FEATURES LIST ═══════════════════════ */
.features {
    padding: var(--section-y) 0;
    background: radial-gradient(circle at 20% 50%, rgba(45,217,179,0.06), transparent 50%), var(--navy);
}

.features-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.features-list {
    column-count: 2;
    column-gap: 30px;
}

    .features-list li {
        list-style: none;
        break-inside: avoid;
        padding: 9px 0 9px 28px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: 14px;
        color: var(--gray-100);
        position: relative;
        line-height: 1.4;
    }

        .features-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 14px;
            width: 16px;
            height: 16px;
            background: var(--teal);
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
            -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
            mask-size: contain;
            -webkit-mask-size: contain;
            mask-repeat: no-repeat;
            -webkit-mask-repeat: no-repeat;
        }

@media (max-width: 860px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        column-count: 1;
    }
}

/* ═══════════════════════ SUPPORT ═══════════════════════ */
.support {
    padding: var(--section-y) 0;
    background: var(--navy-deep);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}

.support-card {
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: all 0.3s;
}

    .support-card:hover {
        border-color: rgba(45,217,179,0.3);
        background: var(--navy-mid);
    }

    .support-card .icon-wrap {
        width: 52px;
        height: 52px;
        background: rgba(45,217,179,0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--teal);
        margin-bottom: 22px;
    }

    .support-card h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .support-card p {
        color: var(--gray-200);
        font-size: 14.5px;
        line-height: 1.6;
    }

.support-tag {
    display: inline-block;
    padding: 4px 11px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 14px;
}

    .support-tag.free {
        background: rgba(45,217,179,0.15);
        color: var(--teal);
        border: 1px solid rgba(45,217,179,0.3);
    }

    .support-tag.included {
        background: rgba(255,255,255,0.06);
        color: var(--gray-100);
        border: 1px solid rgba(255,255,255,0.15);
    }

    .support-tag.separate {
        background: rgba(255, 165, 0, 0.08);
        color: #FFB94D;
        border: 1px solid rgba(255, 185, 77, 0.25);
    }

@media (max-width: 860px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

/* Support hours table */
.support-hours {
    margin-top: 32px;
    background: linear-gradient(135deg, rgba(45,217,179,0.06), rgba(45,217,179,0.01));
    border: 1px solid rgba(45,217,179,0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.support-hours-label {
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.support-hours-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.support-hours-item {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
    transition: all 0.3s;
}

    .support-hours-item:hover {
        border-color: rgba(45,217,179,0.25);
        transform: translateY(-2px);
    }

    .support-hours-item.highlight {
        background: linear-gradient(180deg, rgba(45,217,179,0.18), rgba(45,217,179,0.04));
        border-color: rgba(45,217,179,0.4);
    }

.support-hours-tier {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gray-200);
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.support-hours-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.support-hours-item .support-hours-value.zero {
    color: var(--gray-400);
    font-weight: 400;
}

.support-hours-item.highlight .support-hours-value {
    color: var(--teal);
}

@media (max-width: 760px) {
    .support-hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-hours {
        padding: 24px 20px;
    }
}

@media (max-width: 380px) {
    .support-hours-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════ REFERENCES ═══════════════════════ */
.references {
    padding: var(--section-y) 0;
    background: var(--navy);
}

.ref-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.ref-card {
    background: linear-gradient(135deg, rgba(21,53,103,0.3), transparent);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 32px 30px;
}

    .ref-card blockquote {
        font-size: 15.5px;
        line-height: 1.7;
        color: var(--gray-100);
        margin-bottom: 24px;
        font-style: italic;
    }

.ref-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
}

.ref-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dim));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--navy-deepest);
    font-family: var(--font-display);
    flex-shrink: 0;
}

.ref-name {
    font-weight: 700;
    font-size: 15px;
}

.ref-company {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 2px;
}

@media (max-width: 760px) {
    .ref-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════ EXISTING CUSTOMERS ═══════════════════════ */
.existing {
    padding: 60px 0;
    background: var(--navy-deep);
}

.existing-card {
    background: linear-gradient(135deg, rgba(45,217,179,0.06), rgba(45,217,179,0.01));
    border: 1px solid rgba(45,217,179,0.2);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.existing-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(45,217,179,0.12);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.existing h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.existing p {
    color: var(--gray-200);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 760px) {
    .existing-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }
}

/* ═══════════════════════ CTA ═══════════════════════ */
.cta {
    padding: var(--section-y) 0;
    background: radial-gradient(circle at 50% 50%, rgba(45,217,179,0.15), transparent 60%), linear-gradient(135deg, var(--navy-deep), var(--navy));
    text-align: center;
}

    .cta h2 {
        font-size: clamp(36px, 5vw, 64px);
        margin-bottom: 20px;
    }

    .cta p {
        font-size: 19px;
        color: var(--gray-200);
        max-width: 620px;
        margin: 0 auto 36px;
    }

.cta-buttons {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    color: var(--gray-200);
    font-size: 14.5px;
    font-weight: 500;
    border-bottom: 1px dashed rgba(255,255,255,0.25);
    padding-bottom: 2px;
    transition: all 0.2s;
}

    .cta-secondary-link:hover {
        color: var(--teal);
        border-bottom-color: var(--teal);
    }

    .cta-secondary-link svg {
        transition: transform 0.2s;
    }

    .cta-secondary-link:hover svg {
        transform: translateX(3px);
    }


/* ═══════════════════════ POPTÁVKOVÝ FORMULÁŘ ═══════════════════════ */
.request-section {
    padding: var(--section-y) 0;
    background: var(--navy-deep);
}

.contact-form {
    width: 100%;
    max-width: 720px;
    margin: 0 auto; /* Vystředění uvnitř .container */
    background: linear-gradient(135deg, rgba(45,217,179,0.06), rgba(45,217,179,0.01));
    border: 1px solid rgba(45, 217, 179, 0.2);
    border-radius: var(--radius-lg);
    padding: 56px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
}

    .contact-form h2 {
        text-align: center;
        margin-bottom: 40px;
    }

/* Rozložení formuláře pomocí CSS Gridu */
#section-request-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

    #section-request-panel input {
        width: 100%;
    }

    /* Tlačítko - roztáhnout na celou šířku */
    #section-request-panel button.btn {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 12px;
    }

       
/* Hláška po úspěšném odeslání */
#section-request-done {
    grid-column: 1 / -1;
    background: rgba(45, 217, 179, 0.1);
    color: var(--teal);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    animation: fadeUp 0.5s ease-out both;
}

@media (max-width: 680px) {
    .contact-form {
        padding: 40px 24px;
    }

    #section-request-panel {
        grid-template-columns: 1fr;
    }
}



/* ═══════════════════════ FOOTER ═══════════════════════ */
footer {
    background: var(--navy-deepest);
    padding: 70px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.foot-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
    align-items: start;
}

.foot-about {
    color: var(--gray-200);
    font-size: 15px;
    line-height: 1.65;
    margin: 18px 0;
    max-width: 420px;
}

.foot-meta {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.7;
}

.foot-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

    .foot-legal a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 16px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 100px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--gray-100);
        transition: all 0.25s;
    }

        .foot-legal a:hover {
            border-color: rgba(45,217,179,0.4);
            color: var(--teal);
            background: rgba(45,217,179,0.06);
        }

        .foot-legal a svg {
            color: var(--gray-400);
            transition: color 0.25s;
        }

        .foot-legal a:hover svg {
            color: var(--teal);
        }

.foot-contact-box {
    background: linear-gradient(135deg, rgba(45,217,179,0.08), rgba(45,217,179,0.02));
    border: 1px solid rgba(45,217,179,0.2);
    border-radius: var(--radius-lg);
    padding: 32px 34px;
}

.foot-contact-label {
    font-size: 12px;
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.foot-contact-list {
    list-style: none;
    margin-bottom: 24px;
}

    .foot-contact-list li {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 8px 0;
    }

    .foot-contact-list .ic {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(45,217,179,0.1);
        color: var(--teal);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .foot-contact-list a {
        font-family: var(--font-display);
        font-size: 22px;
        font-weight: 600;
        color: var(--white);
        letter-spacing: -0.01em;
        transition: color 0.2s;
        line-height:20px;
    }

        .foot-contact-list a:hover {
            color: var(--teal);
        }

.foot-contact-cta {
    width: 100%;
    justify-content: center;
}

.foot-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray-400);
    flex-wrap: wrap;
    gap: 16px;
}

.foot-mini-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    list-style: none;
}

    .foot-mini-nav a {
        color: var(--gray-400);
        transition: color 0.2s;
    }

        .foot-mini-nav a:hover {
            color: var(--teal);
        }

@media (max-width: 860px) {
    .foot-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .foot-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .foot-contact-list a {
        font-size: 19px;
    }
}

/* Utility */
.text-center {
    text-align: center;
}
