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

:root {
    --primary-color: #1a1a1a;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --spacing-unit: 1rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--accent-color);
    color: #fff;
}

.btn-accept:hover {
    background: #c0392b;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-minimal {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.editorial-flow {
    max-width: 100%;
}

.hero-editorial {
    padding: 4rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
}

.hero-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-intro {
    background: var(--light-bg);
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.inline-cta-section {
    padding: 2rem 2rem;
}

.cta-inline-box {
    background: var(--accent-color);
    color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.cta-inline-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.btn-inline {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: #fff;
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s;
}

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

.problem-reveal h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.emphasis-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 2rem;
}

.visual-break {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.visual-break img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.insight-section {
    background: var(--primary-color);
    color: #fff;
}

.insight-section h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.insight-quote {
    margin: 3rem 0;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.15rem;
    font-style: italic;
}

.trust-build {
    background: var(--light-bg);
}

.case-story {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.case-story h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

.method-reveal h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.method-grid {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.method-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem 2rem;
    z-index: 99;
    display: none;
}

.sticky-cta.active {
    display: block;
}

.sticky-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.sticky-inner span {
    color: #fff;
    font-weight: 600;
}

.btn-sticky {
    padding: 0.7rem 2rem;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-sticky:hover {
    background: #c0392b;
}

.services-preview {
    background: var(--light-bg);
}

.services-preview h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

.service-block {
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: #fff;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.service-block.featured {
    border-color: var(--accent-color);
    position: relative;
}

.service-block.featured:before {
    content: "NEJOBLÍBENĚJŠÍ";
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--accent-color);
    color: #fff;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-block h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.urgency-section {
    padding: 3rem 2rem;
}

.urgency-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.urgency-stat {
    margin-top: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-section {
    background: var(--light-bg);
}

.form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
}

.final-thought {
    padding: 4rem 2rem;
    background: var(--primary-color);
}

.closing-text {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #fff;
    text-align: center;
    font-style: italic;
}

.site-footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

.standard-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.standard-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.standard-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.standard-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.standard-page p {
    margin-bottom: 1.2rem;
}

.standard-page ul,
.standard-page ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.standard-page li {
    margin-bottom: 0.8rem;
}

.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info strong {
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.btn-back {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-back:hover {
    background: #c0392b;
}

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-narrow {
        padding: 2rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .sticky-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .nav-links {
        font-size: 0.85rem;
        gap: 0.8rem;
    }

    .hero-editorial h1 {
        font-size: 1.6rem;
    }

    .editorial-form {
        padding: 2rem 1.5rem;
    }
}
