@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --color-primary: #004aad;
    --color-secondary: #5dc9e6;
    --color-accent: #ffd600;
    --primary-gradient: linear-gradient(135deg, #5dc9e6 0%, #004aad 100%);
    --header-gradient: linear-gradient(90deg, #004aad 0%, #5dc9e6 100%);

    --color-bg-base: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-bg-dark: #121826;

    --color-text-main: #2d3748;
    --color-text-light: #718096;
    --color-text-white: #ffffff;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-bg-base);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-alt {
    background-color: var(--color-bg-alt);
}

/* Header & Navigation */
.header {
    background: var(--header-gradient);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    flex-direction: column;
    color: var(--color-text-white);
    text-decoration: none;
    z-index: 1001;
}

.logo-main {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    display: inline-block;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--color-accent);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent);
    transition: width var(--transition-fast);
}

.nav-links li a:hover::after, .nav-links li a.active::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--color-text-white);
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.4);
    color: var(--color-text-white);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-text-main);
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
    color: var(--color-text-main);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--color-bg-alt);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(93, 201, 230, 0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 650px;
    height: 650px;
    background-image:
        radial-gradient(var(--color-primary) 2px, transparent 2px),
        radial-gradient(var(--color-secondary) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    animation: floatPattern 15s ease-in-out infinite;
}

@keyframes floatPattern {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Cards (Services, Blog, Case Studies) */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

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

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

.card {
    background: var(--color-bg-base);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(93, 201, 230, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
    flex-grow: 1;
}

.card-link {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    color: var(--color-secondary);
}

/* Blog Cards Specific */
.blog-card {
    padding: 0;
}

.blog-img {
    width: 100%;
    height: 200px;
    background-color: var(--color-bg-alt);
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
}

.blog-meta span.category {
    color: var(--color-primary);
    font-weight: 600;
}

/* Case Study Specific */
.case-study-header {
    background-color: var(--color-bg-dark);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.case-study-header h1 {
    color: white;
}

.case-study-header p {
    color: rgba(255,255,255,0.8);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.result-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--border-radius-md);
}

.result-card h4 {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--color-bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h3, .footer h4 {
    color: var(--color-text-white);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
}

.footer-bottom a:hover {
    color: var(--color-accent);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-pattern.fade-in-up.visible {
    opacity: 0.15;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    background: var(--color-bg-base);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-card.active {
    border-color: rgba(93, 201, 230, 0.5);
    box-shadow: var(--shadow-md);
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-main);
    font-weight: 600;
    font-size: 1.05rem;
    font-family: inherit;
    text-align: left;
    transition: background var(--transition-fast);
}

.faq-toggle:hover {
    background: rgba(0,0,0,0.01);
}

.faq-question {
    padding-right: 1.5rem;
    color: var(--color-primary);
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-card.active .faq-content-inner {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}

/* ================================================
   Sluzby (Services) Page Styles
   ================================================ */
.service-row {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.feature-check {
    color: var(--color-primary);
    font-weight: bold;
    background: rgba(0, 74, 173, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.visual-box {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.visual-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.visual-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .mobile-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .mobile-reverse>div {
        width: 100%;
    }
}

/* ================================================
   Sluzba Detail Page Styles
   ================================================ */
.detail-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg-base) 100%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Benefits Check List */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefit-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    color: white;
    background: var(--primary-gradient);
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 0.2rem;
}

/* Process Steps */
.process-steps {
    position: relative;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.step-content {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    flex-grow: 1;
    border-left: 4px solid var(--color-secondary);
}

/* Pricing Table */
.pricing-card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 6px solid var(--color-primary);
    transition: transform var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin: 1.5rem 0 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--color-text-light);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: '\2713';
    color: var(--color-primary);
    font-weight: bold;
}

/* FAQ Items (sluzba-detail page) */
.faq-item {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ================================================
   Case Studies Listing Page
   ================================================ */
.case-studies-list {
    max-width: 900px;
    margin: 0 auto;
}

.case-study-card {
    display: block;
    background: var(--color-bg-base);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition-normal);
    text-decoration: none;
    color: inherit;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(93, 201, 230, 0.3);
}

.case-study-card-label {
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.case-study-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
}

.case-study-card-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.case-study-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
}

/* ================================================
   Blog Post Template Styles
   ================================================ */

/* Blog Post Header */
.blog-post-header {
    background-color: var(--color-bg-dark);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.blog-post-header h1 {
    color: white;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.blog-post-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    border: 1px solid rgba(255,255,255,0.15);
}

/* Blog Post Layout */
.blog-post-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* Table of Contents */
.toc {
    position: sticky;
    top: 100px;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--color-primary);
}

.toc-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

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

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-link {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    border-left: 2px solid transparent;
    padding-left: 0.75rem;
    transition: all var(--transition-fast);
}

.toc-link:hover,
.toc-link.active {
    color: var(--color-primary);
    border-left-color: var(--color-primary);
}

/* Blog Post Body */
.blog-post-body {
    max-width: 800px;
    font-size: 1.1rem;
    color: var(--color-text-main);
    line-height: 1.8;
}

.blog-post-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    scroll-margin-top: 100px;
}

.blog-post-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    scroll-margin-top: 100px;
}

.blog-post-body p {
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-post-body img {
    width: 100%;
    border-radius: var(--border-radius-sm);
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.blog-post-body figure {
    margin: 2rem 0;
}

.blog-post-body figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Lists in blog post */
.blog-post-body ul,
.blog-post-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-post-body ul li,
.blog-post-body ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.blog-post-body ul li {
    list-style-type: disc;
}

/* Code Block */
.code-block {
    background: var(--color-bg-dark);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    overflow-x: auto;
    position: relative;
}

.code-block-label {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 0 var(--border-radius-sm) 0 var(--border-radius-sm);
    font-family: monospace;
}

.code-block code {
    color: #e2e8f0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    white-space: pre;
}

/* Inline code */
.blog-post-body code {
    background: rgba(0, 74, 173, 0.08);
    color: var(--color-primary);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'Courier New', Courier, monospace;
}

.code-block code {
    background: none;
    color: #e2e8f0;
    padding: 0;
}

/* CTA Box inside blog post */
.blog-cta-box {
    background: linear-gradient(135deg, rgba(93, 201, 230, 0.1) 0%, rgba(0, 74, 173, 0.1) 100%);
    border: 1px solid rgba(0, 74, 173, 0.15);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.blog-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-cta-box p {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
}

/* Blockquote in blog */
.blockquote {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-left: 4px solid var(--color-primary);
    margin: 3rem 0;
    font-style: italic;
}

.blockquote-author {
    margin-top: 1rem;
    font-weight: bold;
    font-style: normal;
}

/* Blog post tags at bottom */
.blog-post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.blog-post-tags span {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--color-bg-alt);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.blog-post-tags span:hover {
    background: rgba(0, 74, 173, 0.1);
    color: var(--color-primary);
}

/* ================================================
   Cookies Page Styles
   ================================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

/* ================================================
   404 Page Styles
   ================================================ */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-code {
    font-size: 10rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-page h2 {
    margin-bottom: 1rem;
}

.error-page p {
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* ================================================
   Utility Classes
   ================================================ */

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

.mt-1 { margin-top: 1rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-1-5 { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-2-5 { margin-bottom: 2.5rem; }
.mb-3 { margin-bottom: 3rem; }
.w-full { width: 100%; }

.align-center {
    align-items: center;
}

.delay-01 { transition-delay: 0.1s; }
.delay-02 { transition-delay: 0.2s; }
.delay-03 { transition-delay: 0.3s; }

.footer-description {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
    margin-top: 1rem;
}

.page-title-section {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.page-title-section-sm {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.page-subtitle {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.25rem;
}

.page-subtitle-sm {
    max-width: 600px;
    margin: 0 auto;
}

.about-visual-box {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-visual-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.btn-mt { margin-top: 1rem; }
.btn-mr { margin-right: 1rem; }

.visual-box-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.visual-box-text {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Case Study Header */
.case-study-label {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.case-study-title {
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
}

.case-study-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.case-study-results-section {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.case-study-content-section {
    padding-top: 2rem;
}

.result-card-highlight {
    border-bottom: 4px solid var(--color-secondary);
}

.result-label {
    font-weight: 600;
    color: var(--color-text-main);
}

.case-study-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

.case-study-heading {
    margin-top: 3rem;
}

.case-study-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.case-study-cta-box {
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: var(--color-bg-alt);
    border-radius: 16px;
}

/* Blog Card Styles */
.blog-title-link {
    color: var(--color-text-main);
}

/* Kontakt (Contact) Page */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
}

.form-textarea {
    resize: vertical;
}

/* Sluzby CTA Section */
.sluzby-cta-section {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.sluzby-cta-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.sluzby-cta-text {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
}

.sluzby-cta-btn {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

/* Sluzba Detail Page - Hero badge */
.detail-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 74, 173, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 74, 173, 0.2);
}

.detail-hero-title {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.detail-hero-subtitle {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.25rem;
}

.detail-section-heading {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.benefit-list-spacing {
    margin-top: 3rem;
}

.benefit-heading {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-text {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Use Cases Dark Box */
.use-cases-box {
    background: var(--color-bg-dark);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    color: white;
    box-shadow: var(--shadow-hover);
}

.use-cases-title {
    color: white;
    margin-bottom: 2rem;
}

.use-case-item {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
}

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

.use-case-item--secondary {
    border-left: 3px solid var(--color-secondary);
}

.use-case-item--primary {
    border-left: 3px solid var(--color-primary);
}

.use-case-item--accent {
    border-left: 3px solid var(--color-accent);
}

.use-case-heading--secondary {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.use-case-heading--cyan {
    color: #5dc9e6;
    margin-bottom: 0.5rem;
}

.use-case-heading--accent {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.use-case-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.process-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card-name {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.pricing-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.pricing-card--featured {
    transform: scale(1.05);
    border-color: var(--color-accent);
    z-index: 10;
}

.pricing-featured-badge {
    background: var(--color-accent);
    color: var(--color-text-main);
    font-weight: bold;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
}

.faq-item-text {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Detail CTA Section */
.detail-cta-section {
    background: var(--color-bg-dark);
    color: white;
}

.detail-cta-heading {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.detail-cta-text {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
}

.detail-cta-btn {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-main);
}

.faq-section-heading {
    margin-bottom: 3rem;
}

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

/* ================================================
   Mobile Responsiveness
   ================================================ */
@media (max-width: 900px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    .hero { min-height: 60vh; padding: 4rem 0; }
    .hero h1 { font-size: 2.8rem; }
    .section { padding: 4rem 0; }

    .blog-post-layout {
        grid-template-columns: 1fr;
    }

    .toc {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }

    .mobile-menu-btn { display: block; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-bg-base);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-links.open {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links li a {
        display: block;
        padding: 1.5rem;
        color: var(--color-text-main);
        width: 100%;
    }

    .nav-links li a::after {
        display: none;
    }

    .nav-links li a:hover, .nav-links li a.active {
        background: var(--color-bg-alt);
        color: var(--color-primary);
    }

    h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }

    .section { padding: 3rem 0; }

    .case-study-header { padding: 3rem 0; }
    .blog-post-header { padding: 3rem 0 2rem; }
    .results-grid { gap: 1rem; }
    .result-card { padding: 1.5rem; }
    .result-card h4 { font-size: 2.5rem; }

    .process-step { flex-direction: column; gap: 1rem; }
    .step-number { width: 50px; height: 50px; min-width: 50px; font-size: 1.25rem; }

    .detail-hero-title { font-size: 2.5rem; }

    .error-code { font-size: 6rem; }
}
