/* ============================================
   DANTOA - Main Stylesheet
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

:root {
    --primary: #2D214F;
    --accent: #44B978;
    --accent-pink: #E91E63;
    --accent-light: #F48FB1;
    --accent-blue: #0066FF;
    --accent-cyan: #00BCD4;
    --text: #2D3748;
    --text-light: #66728A;
    --bg-light: #F5F6F8;
    --box-bg: #FAFBFC;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --success: #44B978;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-light);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: .75rem;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: .5rem;
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: .5rem;
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ============================================
   CONTAINERS
   ============================================ */

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   CONTENT WRAPPER - Pro stránky se sticky menu
   ============================================ */

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 260px 40px 40px;
}

@media (max-width: 1024px) {
    .content-wrapper {
        padding: 40px 20px;
    }
}

@media (max-width: 640px) {
    .content-wrapper {
        padding: 30px 15px;
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: .7rem;
    transition: transform 0.3s;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 0.75rem 0;
    margin: 0.5rem 0 0 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--box-bg);
    color: var(--accent);
    padding-left: 2rem;
}

.dropdown-menu .dropdown-header {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--box-bg);
    border-bottom: 1px solid var(--border);
    pointer-events: none;
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.phone-number {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-number:hover {
    color: var(--primary);
}

/* ============================================
   VÝRAZNÉ CTA TLAČÍTKO V HEADERU
   ============================================ */

.nav-cta .btn-pink,
.nav-cta .btn.btn-pink,
.nav-cta a.btn-pink {
    background: linear-gradient(135deg, #52C97D, #44B978) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(68, 185, 120, 0.35);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-cta .btn-pink:hover,
.nav-cta .btn.btn-pink:hover,
.nav-cta a.btn-pink:hover {
    background: linear-gradient(135deg, #44B978, #3a9d64) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68, 185, 120, 0.45);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-cta-mobile {
    display: none;
}

/* ============================================
   MOBILNÍ MENU - OPRAVENO
   ============================================ */

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 100px 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 1rem 0;
        width: 100%;
        font-size: 1.125rem;
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--box-bg);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin: 0;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 800px;
        padding: 0.5rem 0;
    }

    .dropdown-menu li {
        border-bottom: none;
    }

    .dropdown-menu a {
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
        display: block;
    }

    .dropdown-menu a:hover {
        padding-left: 1.5rem;
    }

    .dropdown-menu .dropdown-header {
        padding: 0.5rem 1rem;
    }

    .nav-cta-mobile {
        display: block;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-cta-mobile .phone-number {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
    }

    .nav-cta-mobile .btn {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .nav-cta-mobile .btn-pink,
    .nav-cta-mobile .btn.btn-pink,
    .nav-cta-mobile a.btn-pink {
        background: linear-gradient(135deg, #52C97D, #44B978) !important;
        color: var(--white) !important;
        box-shadow: 0 4px 15px rgba(68, 185, 120, 0.4);
    }

    .nav-cta-mobile .btn-pink:hover,
    .nav-cta-mobile .btn.btn-pink:hover,
    .nav-cta-mobile a.btn-pink:hover {
        background: linear-gradient(135deg, #44B978, #3a9d64) !important;
        box-shadow: 0 6px 25px rgba(68, 185, 120, 0.5);
    }

    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 400px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

@media (max-width: 640px) {
    .main-nav {
        padding: 1.25rem 1.5rem;
    }

    .logo img {
        height: 32px;
    }

    .nav-menu {
        max-width: 100%;
        padding: 90px 1.5rem 2rem;
    }

    .nav-menu.active::before {
        right: 0;
    }
}

/* ============================================
   STICKY SIDE NAVIGATION
   ============================================ */

.side-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 999;
    max-width: 220px;
    transition: all 0.3s ease;
}

.side-nav-header {
    display: none;
}

.side-nav-title {
    display: none;
}

.side-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    padding: 0;
}

.side-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.side-nav-link {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: .75rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.side-nav-link:hover {
    background: var(--box-bg);
    color: var(--accent);
    transform: translateX(-3px);
}

.side-nav-link.active {
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(68, 185, 120, 0.3);
}

.side-nav-link.active .side-nav-icon {
    transform: scale(1.1);
}

.side-nav-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.side-nav-text {
    white-space: nowrap;
    line-height: 1.2;
}

.side-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent);
    border-radius: 3px;
    transition: height 0.3s ease;
}

.side-nav-link.active::before {
    height: 100%;
}

.side-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1400px) {
    .side-nav {
        right: 1rem;
        max-width: 56px;
        padding: 0.75rem .5rem;
    }

    .side-nav-toggle {
        display: block;
        margin: 0 auto .5rem;
    }

    .side-nav-text {
        display: none;
    }

    .side-nav-link {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 0.65rem 0.5rem;
    }

    .side-nav-icon {
        width: 28px;
        height: 28px;
        font-size: 1.15rem;
    }

    .side-nav.expanded {
        max-width: 220px;
        padding: 1rem;
    }

    .side-nav.expanded .side-nav-text {
        display: block;
    }

    .side-nav.expanded .side-nav-link {
        grid-template-columns: 32px 1fr;
        justify-items: start;
        padding: 0.75rem;
    }

    .side-nav.expanded .side-nav-icon {
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }
}

@media (max-width: 968px) {
    .side-nav {
        bottom: 1rem;
        top: auto;
        right: 1rem;
        left: 1rem;
        transform: none;
        max-width: none;
        padding: 0.75rem .5rem;
    }

    .side-nav-toggle {
        display: none;
    }

    .side-nav-list {
        flex-direction: row;
        overflow-x: auto;
        gap: 0.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .side-nav-list::-webkit-scrollbar {
        display: none;
    }

    .side-nav-link {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 0.25rem;
        padding: 0.65rem 0.75rem;
        min-width: 70px;
        justify-items: center;
    }

    .side-nav-text {
        display: block;
        font-size: 0.7rem;
        text-align: center;
    }

    .side-nav-icon {
        font-size: 1.35rem;
        width: auto;
        height: auto;
    }

    .side-nav.expanded {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .side-nav {
        padding: 0.65rem 0.4rem;
    }

    .side-nav-link {
        min-width: 62px;
        padding: 0.55rem 0.65rem;
    }

    .side-nav-icon {
        font-size: 1.2rem;
    }

    .side-nav-text {
        font-size: 0.65rem;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    text-align: center;
}

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

.btn-primary:hover {
    background: #3a9d64;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(68, 185, 120, 0.3);
}

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

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

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

.btn-white:hover {
    background: var(--box-bg);
    transform: translateY(-2px);
}

.btn-pink {
    background: var(--accent);
    color: var(--white);
}

.btn-pink:hover {
    background: #3a9d64;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(68, 185, 120, 0.3);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2D214F 0%, #1a1535 100%);
    color: var(--white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-full-width {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(68, 185, 120, 0.15), transparent 70%);
}

.hero.hero-clinic::before {
    background: radial-gradient(circle at top right, rgba(68, 185, 120, 0.15), transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-compact {
    min-height: 70vh;
    padding-top: 140px;
}

@media (max-width: 968px) {
    .hero-compact {
        padding-top: 120px;
    }
}

@media (max-width: 640px) {
    .hero-compact {
        padding-top: 100px;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(68, 185, 120, 0.2);
    color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge.badge-pink {
    background: rgba(68, 185, 120, 0.2);
    color: #6dd49a;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero h1 .highlight-pink {
    color: #6dd49a;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 6rem 0;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* MOBILNÍ OPTIMALIZACE - KOMPAKTNĚJŠÍ ROZESTUPY */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 1rem;
        line-height: 1.5;
    }

    p {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }

    h3 {
        margin-bottom: 0.5rem;
    }

    h4 {
        margin-bottom: 0.4rem;
    }
}

/* ============================================
   SEKCE: KDE BUDETE VIDĚT (NOVÁ KOMPAKTNÍ VERZE)
   ============================================ */

.platform-row {
    margin-bottom: 3rem;
}

.platform-row-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
}

.platform-row-icons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.platform-icon-small {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    border-radius: 10px;
}

.platform-row-info {
    flex: 1;
}

.platform-row-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.platform-row-info p {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.format-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.format-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #3a9d64);
}

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

.format-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.format-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.format-preview {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.google-ad-preview {
    background: var(--box-bg);
    padding: 0.875rem;
    border-radius: 6px;
    border-left: 3px solid #1A73E8;
}

.ad-tag-small {
    display: inline-block;
    background: #5F6368;
    color: white;
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.ad-title-small {
    color: #1A0DAB;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.ad-desc-small {
    color: #4D5156;
    font-size: 0.8rem;
    line-height: 1.4;
}

.display-preview {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    border: 2px solid var(--border);
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: .75rem;
    min-height: 100px;
}

.display-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.display-text {
    font-size: 0.8rem;
    line-height: 1.4;
}

.display-text strong {
    display: block;
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.remarketing-preview {
    background: linear-gradient(135deg, #FFF5F5 0%, #FED7D7 100%);
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid #FC8181;
    min-height: 100px;
}

.remarketing-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.remarketing-text {
    font-size: 0.8rem;
    line-height: 1.4;
}

.remarketing-text strong {
    display: block;
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.social-preview {
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: .875rem;
}

.social-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: .75rem;
}

.social-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.social-image {
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: white;
    padding: 1.5rem .75rem;
    text-align: center;
    font-size: 1rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.social-text {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text);
}

.social-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.reels-preview {
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: white;
    padding: 1.5rem .875rem;
    border-radius: 6px;
    text-align: center;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reels-icon {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.reels-text {
    font-size: 0.8rem;
    line-height: 1.4;
}

.reels-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.leadads-preview {
    background: linear-gradient(135deg, #E6F7FF 0%, #BAE7FF 100%);
    border: 2px solid #1890FF;
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 100px;
}

.leadads-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.leadads-text {
    font-size: 0.8rem;
    line-height: 1.4;
}

.leadads-text strong {
    display: block;
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.platform-extras {
    text-align: center;
    padding: 0.875rem 1.25rem;
    background: var(--box-bg);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.platform-extras strong {
    color: var(--text);
    font-weight: 600;
}

.platform-conclusion {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.conclusion-text {
    font-size: 1.125rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.conclusion-text strong {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .platform-row-header {
        padding: 1rem 1.25rem;
    }

    .platform-icon-small {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }

    .platform-row-info h3 {
        font-size: 1.25rem;
    }

    .platform-row-info p {
        font-size: 0.95rem;
    }

    .format-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .format-card {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .platform-row {
        margin-bottom: 2rem;
    }

    .platform-row-header {
        flex-direction: column;
        text-align: center;
        padding: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .platform-row-icons {
        justify-content: center;
    }

    .platform-icon-small {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .platform-row-info h3 {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }

    .platform-row-info p {
        font-size: 0.875rem;
        line-height: 1.3;
    }

    .format-card {
        padding: 1rem;
    }

    .format-card h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .format-card p {
        font-size: 0.825rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .platform-conclusion {
        padding: 1.5rem 1rem;
        margin-top: 2.5rem;
    }

    .conclusion-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .platform-row-header {
        padding: 0.75rem;
    }

    .platform-icon-small {
        width: 36px;
        height: 36px;
        font-size: 1.35rem;
    }

    .format-card {
        padding: 0.875rem;
    }
}

/* ============================================
   AD EXAMPLES - STARÝ KOMPAKTNÍ DESIGN (ZACHOVÁN)
   ============================================ */

.platform-row-title {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.platform-logo {
    font-size: 2rem;
}

.platform-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.platform-row-grid-single {
    grid-template-columns: 1fr;
}

.ad-card-compact {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.ad-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.ad-card-wide {
    grid-column: 1 / -1;
}

.ad-card-header {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ad-preview-mini {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.ad-card-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.google-ad .ad-tag {
    display: inline-block;
    background: #4285F4;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.google-ad .ad-url {
    color: #1adab;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.google-ad .ad-headline {
    color: #1a0dab;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.google-ad .ad-description {
    color: #545454;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.ad-extensions-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.ad-extensions-mini span {
    background: #e8f0fe;
    padding: 3px 8px;
    border-radius: 4px;
    color: #1967d2;
}

.social-ad-mini {
    background: white;
    border: 1px solid #ddd;
}

.social-header-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.social-avatar-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.social-name-mini {
    font-weight: 700;
    font-size: 0.85rem;
    color: #262626;
}

.social-sponsored-mini {
    font-size: 0.75rem;
    color: #8e8e8e;
}

.social-image-mini {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin: 0 -1rem 0.75rem -1rem;
}

.social-text-mini {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: #262626;
}

.social-cta-mini {
    background: #0095f6;
    color: white;
    text-align: center;
    padding: .5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
}

.instagram-style .social-image-mini {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.reels-ad-mini {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.reels-icon-mini {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.reels-text-mini {
    padding: 0 1rem;
}

.reels-text-mini strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.reels-cta-mini {
    margin-top: 0.75rem;
    background: rgba(255,255,255,0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.youtube-ad-mini {
    background: white;
    border: 1px solid #ddd;
}

.youtube-player-mini {
    background: #000;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: -1rem -1rem 0.75rem -1rem;
}

.youtube-play-mini {
    width: 50px;
    height: 50px;
    background: rgba(255,0,0,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.youtube-label-mini {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.75rem;
}

.youtube-info-mini {
    font-size: 0.85rem;
    line-height: 1.4;
}

.youtube-info-mini strong {
    display: block;
    color: #030303;
    margin-bottom: 0.25rem;
}

.youtube-info-mini span {
    color: #606060;
}

.display-ad-mini {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
}

.display-content-mini {
    text-align: center;
}

.display-icon-mini {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.display-text-mini {
    margin-bottom: 0.75rem;
}

.display-text-mini strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.display-cta-mini {
    background: white;
    color: #667eea;
    padding: .5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
}

.remarketing-ad-mini {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.remarketing-icon-mini {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.remarketing-text-mini strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 640px) {
    .platform-row-grid {
        grid-template-columns: 1fr;
    }

    .platform-row-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   SEKCE: ZNÁTE TO? (S PNG IKONAMI)
   ============================================ */

.problems-section {
    padding: 6rem 0;
    background: var(--white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #3a9d64);
}

.problem-icon-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.2rem;
    display: block;
    object-fit: contain;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .8rem;
    line-height: 1.3;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.problems-cta {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.08), rgba(68, 185, 120, 0.03));
    border-radius: 16px;
    border: 2px dashed var(--accent);
}

.problems-cta p {
    font-size: 1.125rem;
    color: var(--text);
    margin: 0;
}

.problems-cta strong {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   SEKCE: JAK TO DĚLÁME
   ============================================ */

.solution-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.solution-steps {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.solution-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.solution-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--accent), #3a9d64);
    border-radius: 16px  0 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-step:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(68, 185, 120, 0.15);
}

.solution-step:hover::before {
    opacity: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(68, 185, 120, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0.3;
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-content > p {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.step-content ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.step-content li {
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.step-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(68, 185, 120, 0.1);
    border-radius: 50%;
}

.solution-result {
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(68, 185, 120, 0.3);
    position: relative;
    overflow: hidden;
}

.solution-result::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.solution-result .result-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}

.solution-result h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.solution-result p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   SEKCE: NA KOHO CÍLÍME VAŠE REKLAMY
   ============================================ */

.targeting-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.targeting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.targeting-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.targeting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #3a9d64);
}

.targeting-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.2rem;
    display: block;
    object-fit: contain;
}

.targeting-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.targeting-list {
    list-style: none;
    text-align: left;
    display: grid;
    gap: .75rem;
}

.targeting-list li {
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.6;
}

.targeting-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(68, 185, 120, 0.1);
    border-radius: 50%;
}

.targeting-note {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.08), rgba(68, 185, 120, 0.03));
    border-radius: 16px;
    border: 2px dashed var(--accent);
}

.targeting-note p {
    font-size: 1.125rem;
    color: var(--text);
    margin: 0;
}

.targeting-note strong {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .solution-step {
        grid-template-columns: 70px 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .step-content > p {
        font-size: 1rem;
    }

    .targeting-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .targeting-card {
        padding: 1.75rem 1.25rem;
    }

    .targeting-icon {
        width: 70px;
        height: 70px;
    }

    .targeting-card h3 {
        font-size: 1.125rem;
    }

    .targeting-list li {
        font-size: 0.9rem;
    }
}

/* ============================================
   RESPONSIVE - MOBIL - KOMPAKTNĚJŠÍ
   ============================================ */

@media (max-width: 640px) {
    .problems-section,
    .solution-section,
    .targeting-section {
        padding: 3rem 0;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .problem-card {
        padding: 1.25rem 1rem;
    }

    .problem-icon-img {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }

    .problem-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .problem-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .problems-cta {
        padding: 1.25rem 1rem;
    }

    .problems-cta p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .solution-steps {
        gap: 1.5rem;
    }

    .solution-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem 1rem;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.65rem;
        margin: 0 auto;
    }

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

    .step-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.65rem;
    }

    .step-content > p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .step-content ul {
        text-align: left;
        gap: 0.5rem;
    }

    .step-content li {
        font-size: 0.875rem;
        line-height: 1.5;
        padding-left: 1.75rem;
    }

    .step-content li::before {
        width: 20px;
        height: 20px;
        font-size: 1.1rem;
    }

    .solution-result {
        padding: 2rem 1.25rem;
    }

    .solution-result .result-icon {
        font-size: 2.75rem;
        margin-bottom: 0.75rem;
    }

    .solution-result h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .solution-result p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .targeting-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .targeting-card {
        padding: 1.25rem 1rem;
    }

    .targeting-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }

    .targeting-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .targeting-list {
        gap: 0.5rem;
    }

    .targeting-list li {
        font-size: 0.875rem;
        line-height: 1.5;
        padding-left: 1.75rem;
    }

    .targeting-list li::before {
        width: 20px;
        height: 20px;
        font-size: 1.1rem;
    }

    .targeting-note {
        padding: 1.25rem 1rem;
    }

    .targeting-note p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 375px) {
    .problem-card {
        padding: 1rem 0.875rem;
    }

    .solution-step {
        padding: 1rem 0.875rem;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .targeting-card {
        padding: 1rem 0.875rem;
    }

    .targeting-note {
        padding: 1rem 0.875rem;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: .75rem;
}

.service-card h3.small {
    font-size: 1.25rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   TARGET AUDIENCE SECTION
   ============================================ */

.target-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.target-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.target-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.target-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.target-list {
    list-style: none;
}

.target-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.target-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.5rem;
}

.target-summary {
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.1) 0%, rgba(68, 185, 120, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.target-summary h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.target-summary p {
    margin: 0;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .target-audience-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CAMPAIGN PLAN
   ============================================ */

.campaign-plan-simple {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.plan-header-simple {
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.plan-header-simple.plan-pink {
    background: linear-gradient(135deg, var(--accent), #3a9d64);
}

.plan-header-simple h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.plan-header-simple p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin: 0;
}

.plan-body-simple {
    padding: 2rem;
}

.plan-phase-simple {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--border);
}

.plan-phase-simple:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.phase-header-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.phase-badge-simple {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--accent);
    color: var(--white);
}

.phase-badge-simple.badge-pink {
    background: var(--accent);
}

.phase-title-simple {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.phase-list-simple {
    list-style: none;
    margin-bottom: 1.5rem;
}

.phase-list-simple li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.phase-list-simple li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.25rem;
}

.phase-result-simple {
    background: var(--box-bg);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--success);
}

.phase-result-simple strong {
    color: var(--primary);
}

.phase-result-highlight {
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.1) 0%, rgba(68, 185, 120, 0.2) 100%);
    border-left-color: var(--success);
}

/* ============================================
   RESULTS SECTION
   ============================================ */

.results-visual {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-box {
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-label-top {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-number-big {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
}

.result-description {
    font-size: 1.125rem;
    opacity: 0.95;
}

.result-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.result-metric {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.result-metric-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.result-metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.result-metric-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.roi-calculator {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.roi-calculator h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.roi-calc-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.roi-calc-input,
.roi-calc-output {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.roi-input-group,
.roi-output-item {
    padding: 1rem;
    background: var(--box-bg);
    border-radius: 8px;
}

.roi-input-group label,
.roi-output-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.roi-value,
.roi-output-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.roi-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.roi-calc-arrow {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
}

.roi-output-main {
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.1) 0%, rgba(68, 185, 120, 0.2) 100%);
    border: 2px solid var(--success);
}

.roi-output-roi {
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.2) 0%, rgba(68, 185, 120, 0.3) 100%);
}

.roi-highlight {
    color: var(--success);
    font-size: 2rem;
}

.roi-success {
    color: var(--success);
}

.roi-calc-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

@media (max-width: 1024px) {
    .results-visual {
        grid-template-columns: 1fr;
    }

    .result-metrics {
        grid-template-columns: 1fr;
    }

    .roi-calc-content {
        grid-template-columns: 1fr;
    }

    .roi-calc-arrow {
        transform: rotate(90deg);
        text-align: center;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid var(--accent);
    transform: scale(1.05);
}

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

.pricing-card.featured.featured-pink {
    border-color: var(--accent);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    background: var(--accent);
    color: var(--white);
}

.pricing-badge.badge-pink {
    background: var(--accent);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.pricing-price small {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-platform {
    background: var(--box-bg);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-platform strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.pricing-purpose {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--box-bg);
    border-radius: 8px;
}

.pricing-cta {
    margin-top: auto;
}

/* Premium Card */
.pricing-card-premium {
    background: linear-gradient(135deg, var(--primary) 0%, #1a1535 100%);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 8px 32px rgba(45, 33, 79, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(68, 185, 120, 0.1) 0%, transparent 70%);
}

.pricing-premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(68, 185, 120, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
}

.pricing-premium-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.pricing-premium-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-premium-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-premium-tagline {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.pricing-premium-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.price-from {
    font-size: 1rem;
    opacity: 0.8;
}

.price-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.price-period {
    font-size: 1.125rem;
    opacity: 0.8;
}

.pricing-premium-budget {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.pricing-premium-platforms {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 8px;
}

.pricing-premium-right h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-premium-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.premium-feature {
    display: flex;
    gap: 1rem;
}

.premium-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.premium-feature-content strong {
    display: block;
    color: white;
    margin-bottom: 0.25rem;
}

.premium-feature-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin: 0;
}

.pricing-premium-footer {
    margin-top: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-premium-quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--box-bg);
    border-radius: 8px;
}

.onetime-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.onetime-service {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.onetime-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.onetime-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.onetime-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.onetime-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.onetime-price {
    margin-top: auto;
}

.price-free {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
    display: block;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.25rem;
}

@media (max-width: 1024px) {
    .pricing-grid-three {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .pricing-premium-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-premium-features {
        grid-template-columns: 1fr;
    }

    .onetime-services {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-premium-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .price-value {
        font-size: 2.25rem;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-list {
    max-width: 800px;
    margin: 3rem auto ;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--box-bg);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    display: none;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--box-bg);
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
}

.cta-section.cta-gradient {
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: var(--white);
}

.cta-section.cta-pink {
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: var(--white);
}

.cta-section h2,
.cta-section h3 {
    margin-bottom: 1rem;
}

.cta-section.cta-gradient h2,
.cta-section.cta-gradient h3,
.cta-section.cta-pink h2,
.cta-section.cta-pink h3 {
    color: var(--white);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section.cta-gradient p,
.cta-section.cta-pink p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-standalone {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

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

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

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

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
    text-align: center;
}

footer p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

footer a:hover {
    color: var(--white);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

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

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .container,
    .container-wide,
    .container-narrow {
        padding: 0 1.5rem;
    }
}

/* ============================================
   HOMEPAGE SPECIFIC STYLES
   ============================================ */

/* 1️⃣ HERO HOMEPAGE */
.hero-homepage {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2D214F 0%, #1a1535 100%);
    color: var(--white);
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-homepage::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(68, 185, 120, 0.15), transparent 70%);
}

.hero-homepage .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: left;
}

.hero-homepage h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-homepage .highlight-green {
    color: var(--accent);
}

.hero-subtitle-large {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
}

/* Value bullets */
.value-bullets {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
    max-width: 650px;
}

.value-bullets li {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    padding-left: 0;
}

/* Hero CTA group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* 2️⃣ PROBLEM CARDS HOMEPAGE */
.problem-cards-grid-homepage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.problem-card-homepage {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.problem-card-homepage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #3a9d64);
}

.problem-card-homepage:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(68, 185, 120, 0.15);
    border-color: var(--accent);
}

.problem-icon-homepage {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.problem-card-homepage h3 {
    font-size: 1.15rem;
    color: var(--primary);
    line-height: 1.5;
    margin: 0;
    font-weight: 700;
}

.section-note-homepage {
    margin-top: 3rem;
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.7;
    text-align: center;
}

.section-note-homepage strong {
    color: var(--primary);
    font-weight: 700;
}

/* 3️⃣ INDUSTRIES GRID HOMEPAGE */
.industries-grid-homepage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.industry-card-homepage {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.industry-card-homepage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #3a9d64);
}

.industry-card-homepage:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(68, 185, 120, 0.2);
}

.industry-icon-homepage {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.industry-title-homepage {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.industry-description-homepage {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.industry-cta-homepage {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.industry-card-homepage:hover .industry-cta-homepage {
    color: var(--primary);
}

.industries-cta-homepage {
    margin-top: 3rem;
    text-align: center;
}

.industries-note-homepage {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.industries-note-homepage strong {
    color: var(--primary);
    font-weight: 700;
}

/* 4️⃣ POSITIONING SECTION */
.positioning-content-homepage {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.text-large-homepage {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text);
}

.text-large-homepage strong {
    color: var(--primary);
    font-weight: 700;
}

.text-highlight-homepage {
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.1), rgba(68, 185, 120, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    color: var(--text);
}

/* 5️⃣ PROCESS FLOW HOMEPAGE */
.process-flow-homepage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.process-step-homepage {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
}

.process-step-homepage:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(68, 185, 120, 0.15);
    border-color: var(--accent);
}

.process-number-homepage {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(68, 185, 120, 0.3);
}

.process-icon-homepage {
    font-size: 3rem;
    margin: 1rem 0;
}

.process-step-homepage h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.process-step-homepage p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.process-arrow-homepage {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
    padding: 0 0.5rem;
}

/* 6️⃣ TRUST SECTION */
.trust-content-homepage {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.trust-list-homepage {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    text-align: left;
    display: inline-block;
}

.trust-list-homepage li {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 1rem;
    padding-left: 0;
}

/* 7️⃣ FINAL CTA HOMEPAGE */
.final-cta-box-homepage {
    text-align: center;
    padding: 3rem 2rem;
}

.final-cta-box-homepage h2 {
    margin-bottom: 2.5rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.final-cta-buttons-homepage {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.final-cta-note-homepage {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2rem;
    line-height: 1.6;
}

.final-cta-note-homepage strong {
    color: var(--white);
}

/* ============================================
   RESPONSIVE - HOMEPAGE
   ============================================ */

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

    .process-flow-homepage {
        flex-direction: column;
    }

    .process-arrow-homepage {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hero-homepage {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-homepage .hero-content {
        text-align: center;
    }

    .hero-homepage h1 {
        font-size: 2rem;
    }

    .hero-subtitle-large {
        font-size: 1.15rem;
        margin-left: auto;
        margin-right: auto;
    }

    .value-bullets {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .value-bullets li {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 400px;
    }

    .problem-cards-grid-homepage {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-card-homepage {
        padding: 2rem 1.5rem;
    }

    .problem-icon-homepage {
        font-size: 3rem;
    }

    .problem-card-homepage h3 {
        font-size: 1.05rem;
    }

    .industries-grid-homepage {
        grid-template-columns: 1fr;
    }

    .industry-card-homepage {
        padding: 1.75rem 1.5rem;
    }

    .text-large-homepage {
        font-size: 1.15rem;
    }

    .text-highlight-homepage {
        font-size: 1.05rem;
        padding: 1.25rem;
    }

    .process-step-homepage {
        padding: 1.75rem 1.25rem;
    }

    .process-icon-homepage {
        font-size: 2.5rem;
    }

    .trust-list-homepage li {
        font-size: 1rem;
    }

    .final-cta-buttons-homepage {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons-homepage .btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .hero-homepage {
        padding: 5rem 0 3rem;
    }

    .hero-homepage h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle-large {
        font-size: 1.05rem;
    }

    .value-bullets li {
        font-size: 0.95rem;
    }

    .section-note-homepage {
        font-size: 1rem;
    }

    .problem-card-homepage {
        padding: 1.5rem 1.25rem;
    }

    .problem-icon-homepage {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .problem-card-homepage h3 {
        font-size: 1rem;
    }

    .industry-card-homepage {
        padding: 1.5rem 1.25rem;
    }

    .industry-icon-homepage {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .industry-title-homepage {
        font-size: 1.125rem;
    }

    .industry-description-homepage {
        font-size: 0.9rem;
    }

    .text-large-homepage {
        font-size: 1.05rem;
    }

    .text-highlight-homepage {
        font-size: 1rem;
        padding: 1.25rem 1rem;
    }

    .process-step-homepage {
        padding: 1.5rem 1rem;
    }

    .process-number-homepage {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .process-icon-homepage {
        font-size: 2.25rem;
    }

    .process-step-homepage h3 {
        font-size: 1.05rem;
    }

    .process-step-homepage p {
        font-size: 0.9rem;
    }

    .trust-list-homepage li {
        font-size: 0.95rem;
    }

    .final-cta-box-homepage {
        padding: 2rem 1.5rem;
    }

    .final-cta-note-homepage {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-homepage h1 {
        font-size: 1.5rem;
    }

    .problem-card-homepage {
        padding: 1.25rem 1rem;
    }

    .industry-card-homepage {
        padding: 1.25rem 1rem;
    }

    .process-step-homepage {
        padding: 1.25rem .875rem;
    }

    .final-cta-box-homepage {
        padding: 1.75rem 1.25rem;
    }
}

/* ============================================
   BLOG LAYOUT
   ============================================ */

/* Kategorie (filtry) */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.category-btn {
    background: var(--white);
    color: var(--text);
    border: 2px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Grid článků */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Blog karta */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Obrázek článku */
.blog-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

/* Kategorie badge */
.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Obsah karty */
.blog-card-content {
    padding: 1.5rem;
}

.blog-card-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .75rem;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Meta informace */
.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-author,
.blog-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Mobilní optimalizace */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-categories {
        gap: 0.75rem;
    }
    
    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .blog-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    background: var(--box-bg);
    padding: 1rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumbs span {
    color: var(--text-light);
    margin: 0 0.5rem;
}

/* ============================================
   ČLÁNEK - LAYOUT
   ============================================ */
.blog-article {
    padding: 4rem 0;
    background: var(--white);
}

/* Hlavička článku */
.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-category {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Meta informace */
.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-light);
}

.article-author,
.article-date,
.article-reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Perex */
.article-perex {
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.1), rgba(68, 185, 120, 0.05));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-bottom: 3rem;
}

.article-perex p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
    font-weight: 500;
}

/* Obsah článku */
.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content strong {
    color: var(--primary);
    font-weight: 600;
}

/* Tip box */
.article-tip {
    background: #FFF9E6;
    border-left: 4px solid #FFB800;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.05rem;
}

.article-tip strong {
    color: #FFB800;
}

/* Benefits grid */
.article-benefits {
    display: grid;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.benefit-item {
    background: var(--box-bg);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 1rem;
    margin: 0;
}

/* Závěr článku */
.article-conclusion {
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.article-conclusion p {
    color: white;
    margin-bottom: 0.75rem;
}

.article-conclusion p:last-child {
    margin-bottom: 0;
}

/* Autor box */
.article-author-box {
    background: var(--box-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.author-box-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-box-icon {
    font-size: 3rem;
}

.author-box-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.author-box-role {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Sdílení článku */
.article-share {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border);
}

.article-share h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.share-facebook {
    background: #1877F2;
    color: white;
}

.share-facebook:hover {
    background: #145dbf;
    transform: translateY(-2px);
}

.share-twitter {
    background: #1DA1F2;
    color: white;
}

.share-twitter:hover {
    background: #1a8cd8;
    transform: translateY(-2px);
}

.share-linkedin {
    background: #0A66C2;
    color: white;
}

.share-linkedin:hover {
    background: #084d94;
    transform: translateY(-2px);
}

.share-email {
    background: var(--text-light);
    color: white;
}

.share-email:hover {
    background: var(--text);
    transform: translateY(-2px);
}

/* Mobilní optimalizace */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 1.75rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .article-perex p {
        font-size: 1.05rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.25rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   STRÁNKA REFERENCÍ - STYLY
   ============================================ */

/* ===== SEKCE 1: DETAILNÍ REFERENCE ===== */

.reference-detail {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--accent);
}

.reference-detail-header {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.reference-logo-large {
    width: 150px;
    height: 150px;
    background: var(--box-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.reference-logo-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.reference-header-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.reference-industry,
.reference-location {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.reference-detail-content {
    display: grid;
    gap: 2.5rem;
}

.reference-challenge,
.reference-solution,
.reference-results,
.reference-screenshots,
.reference-why-it-worked {
    background: var(--box-bg);
    padding: 2rem;
    border-radius: 12px;
}

.reference-challenge h4,
.reference-solution h4,
.reference-results h4,
.reference-screenshots h4,
.reference-why-it-worked h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.reference-challenge p,
.reference-solution p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

/* Výsledkové boxy */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.result-box-ref {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.result-box-ref:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(68, 185, 120, 0.2);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: .5rem;
    line-height: 1;
}

.result-label {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* Screenshoty */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.screenshots-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.screenshot-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(68, 185, 120, 0.3);
}

.screenshot-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.screenshot-caption {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

.screenshot-caption strong {
    color: var(--primary);
    display: block;
    margin-top: 0.25rem;
}

/* Citace */
.reference-quote {
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.1), rgba(68, 185, 120, 0.05));
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.reference-quote blockquote {
    margin: 0;
    position: relative;
    z-index: 1;
}

.reference-quote p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1rem;
}

.reference-quote cite {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
}

/* ===== SEKCE 2: ŘEKLI O NÁS (TESTIMONIALS) ===== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Poslední (5.) box na střed */
.testimonials-grid .testimonial-card:nth-child(5) {
    grid-column: 2 / 3;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.testimonial-logo {
    width: 100%;
    height: 80px;
    background: var(--box-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.testimonial-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.testimonial-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== SEKCE 3: LOGA KLIENTŮ ===== */

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.client-logo-box {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.client-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.client-logo-wrapper {
    width: 100%;
    height: 100px;
    background: var(--box-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.client-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

/* ===== LIGHTBOX ===== */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ===== RESPONZIVNÍ DESIGN ===== */

@media (max-width: 1024px) {
    .reference-detail {
        padding: 2rem;
    }

    .reference-detail-header {
        grid-template-columns: 120px 1fr;
        gap: 1.5rem;
    }

    .reference-logo-large {
        width: 120px;
        height: 120px;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshots-grid,
    .screenshots-grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid .testimonial-card:nth-child(5) {
        grid-column: 1 / -1;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .reference-detail {
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .reference-detail-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .reference-logo-large {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .reference-header-info h3 {
        font-size: 1.5rem;
    }

    .reference-challenge,
    .reference-solution,
    .reference-results,
    .reference-screenshots,
    .reference-why-it-worked {
        padding: 1.5rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .screenshots-grid,
    .screenshots-grid-2col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .screenshot-item img {
        height: 200px;
    }

    .reference-quote {
        padding: 1.5rem;
    }

    .reference-quote p {
        font-size: 1.05rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid .testimonial-card:nth-child(5) {
        grid-column: 1;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .reference-detail {
        padding: 1.25rem;
    }

    .reference-challenge,
    .reference-solution,
    .reference-results,
    .reference-screenshots,
    .reference-why-it-worked {
        padding: 1.25rem;
    }

    .result-number {
        font-size: 2rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .client-logo-box {
        padding: 1.5rem 1.25rem;
    }
}

/* ============================================
   AUDIT PPC KAMPANÍ - JEDNODUCHÁ VERZE
   ============================================ */

/* Problémy - 3 boxy */
.audit-problems-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0 2rem;
}

.audit-problem-simple {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.audit-problem-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #3a9d64);
}

.audit-problem-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(68, 185, 120, 0.15);
    border-color: var(--accent);
}

.audit-problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
    object-fit: contain;
}

.audit-problem-simple h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.audit-problem-simple p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.audit-problems-cta {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.08), rgba(68, 185, 120, 0.03));
    border-radius: 16px;
    border: 2px dashed var(--accent);
}

.audit-problems-cta p {
    font-size: 1.125rem;
    color: var(--text);
    margin: 0;
}

.audit-problems-cta strong {
    color: var(--primary);
    font-weight: 700;
}

/* Proces - 3 kroky s šipkami */
.audit-process-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.audit-step-simple {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.audit-step-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(68, 185, 120, 0.15);
    border-color: var(--accent);
}

.audit-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(68, 185, 120, 0.3);
}

.audit-step-icon {
    font-size: 3.5rem;
    margin: 1rem 0 1.5rem;
}

.audit-step-simple h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: .75rem;
    font-weight: 700;
}

.audit-step-simple p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.audit-arrow-simple {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
}

.audit-process-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.08), rgba(68, 185, 120, 0.03));
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.audit-process-note p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.audit-process-note strong {
    color: var(--primary);
}

/* Benefity - 3 boxy */
.audit-benefits-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.audit-benefit-simple {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.audit-benefit-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(68, 185, 120, 0.15);
    border-color: var(--accent);
}

.audit-benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.audit-benefit-simple h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.audit-benefit-simple p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Formulář - checkbox group */
.form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.form-checkbox-group label {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    font-size: 1rem;
}

.form-checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* ============================================
   RESPONSIVE - AUDIT
   ============================================ */

@media (max-width: 1024px) {
    .audit-problems-simple,
    .audit-benefits-simple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .audit-process-simple {
        flex-direction: column;
    }

    .audit-arrow-simple {
        transform: rotate(90deg);
    }

    .audit-step-simple {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .audit-problem-simple,
    .audit-benefit-simple {
        padding: 2rem 1.5rem;
    }

    .audit-problem-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .audit-problem-simple h3,
    .audit-benefit-simple h3 {
        font-size: 1.125rem;
    }

    .audit-problem-simple p,
    .audit-benefit-simple p {
        font-size: 0.95rem;
    }

    .audit-step-simple {
        padding: 2rem 1.5rem;
    }

    .audit-step-icon {
        font-size: 3rem;
    }

    .audit-problems-cta {
        padding: 1.5rem 1.25rem;
    }

    .audit-problems-cta p {
        font-size: 1rem;
    }

    .audit-process-note {
        padding: 1.5rem;
    }

    .audit-process-note p {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .audit-problem-simple,
    .audit-benefit-simple,
    .audit-step-simple {
        padding: 1.75rem 1.25rem;
    }

    .audit-problem-icon {
        width: 60px;
        height: 60px;
    }

    .audit-step-icon {
        font-size: 2.5rem;
    }
}

/* ============================================
   GDPR / ZÁSADY ZPRACOVÁNÍ OSOBNÍCH ÚDAJŮ
   ============================================ */

.gdpr-content {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gdpr-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--box-bg);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.gdpr-content h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent);
}

.gdpr-content h2:first-of-type {
    margin-top: 2rem;
}

.gdpr-content h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.gdpr-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.gdpr-content strong {
    color: var(--primary);
    font-weight: 700;
}

.gdpr-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.gdpr-list li {
    padding-left: 2rem;
    position: relative;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.gdpr-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ============================================
   RESPONSIVE - GDPR
   ============================================ */

@media (max-width: 768px) {
    .gdpr-content {
        padding: 2rem 1.5rem;
    }

    .gdpr-intro {
        font-size: 0.95rem;
        padding: 1.25rem;
    }

    .gdpr-content h2 {
        font-size: 1.5rem;
        margin: 2.5rem 0 1.25rem;
    }

    .gdpr-content h3 {
        font-size: 1.2rem;
        margin: 1.75rem 0 0.875rem;
    }

    .gdpr-content p {
        font-size: 0.95rem;
    }

    .gdpr-list li {
        font-size: 0.95rem;
        padding-left: 1.75rem;
    }
}

@media (max-width: 640px) {
    .gdpr-content {
        padding: 1.5rem 1.25rem;
    }

    .gdpr-content h2 {
        font-size: 1.35rem;
    }

    .gdpr-content h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   BLOG LAYOUT - UNIKÁTNÍ CSS PRO ČLÁNKY
   Všechny třídy začínají na "article-"
   ============================================ */

/* ===== ZÁKLADNÍ WRAPPER ===== */

.article-wrapper {
    padding: 8rem 0 4rem 0; /* ✅ Přidán padding-top 8rem (128px) pro odsazení od headeru */
    background: var(--white);
    position: relative;
    z-index: 1;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HLAVIČKA ČLÁNKU ===== */

.article-header-block {
    margin-bottom: 3rem;
    text-align: center;
}

.article-category-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.article-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1; /* ✅ DŮLEŽITÉ - nižší než header (který má z-index: 1000) */
}

.article-meta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-light);
}

.article-author-name,
.article-publish-date,
.article-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== PEREX ===== */

.article-perex-block {
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.1), rgba(68, 185, 120, 0.05));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-bottom: 3rem;
}

.article-perex-block p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
    font-weight: 500;
}

/* ===== OBSAH ČLÁNKU ===== */

.article-body-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
}

.article-section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-subsection-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-text-paragraph {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ===== OBRÁZKY ===== */

/* 1 obrázek na celou šířku */
.article-image-full {
    margin: 2.5rem 0;
}

.article-image-full img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.article-image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    font-style: italic;
}

/* 2 obrázky vedle sebe */
.article-images-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.article-image-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 3 obrázky vedle sebe */
.article-images-three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.article-images-three-col .article-image-box img {
    height: 200px;
}

/* 2 obrázky s textem pod nimi */
.article-images-with-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.article-image-text-box {
    background: var(--box-bg);
    padding: 1.5rem;
    border-radius: 12px;
}

.article-image-text-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.article-image-text-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.article-image-text-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== DVA BLOKY TEXTU VEDLE SEBE ===== */

.article-text-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.article-text-col-box {
    background: var(--box-bg);
    padding: 2rem;
    border-radius: 12px;
}

.article-text-col-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.article-text-col-paragraph {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* ===== SPECIÁLNÍ BOXY ===== */

/* Tip box (žlutý) */
.article-tip-box {
    background: #FFF9E6;
    border-left: 4px solid #FFB800;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-tip-icon {
    color: #FFB800;
    font-weight: 700;
    display: block;
    margin-bottom: .5rem;
}

.article-tip-text {
    font-size: 1.05rem;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

/* Varování (červený) */
.article-warning-box {
    background: #FFF5F5;
    border-left: 4px solid #E53E3E;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-warning-icon {
    color: #E53E3E;
    font-weight: 700;
    display: block;
    margin-bottom: .5rem;
}

.article-warning-text {
    font-size: 1.05rem;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

/* Úspěch (zelený) */
.article-success-box {
    background: #F0FFF4;
    border-left: 4px solid var(--success);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-success-icon {
    color: var(--success);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.article-success-text {
    font-size: 1.05rem;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

/* Info box (modrý) */
.article-info-box {
    background: #EBF8FF;
    border-left: 4px solid #3182CE;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-info-icon {
    color: #3182CE;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.article-info-text {
    font-size: 1.05rem;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

/* Zvýrazněný text */
.article-highlight-box {
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.15), rgba(68, 185, 120, 0.08));
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--accent);
    margin: 2.5rem 0;
    text-align: center;
}

.article-highlight-text {
    font-size: 1.2rem;
    color: var(--text);
    margin: 0;
    line-height: 1.7;
}

/* ===== CITACE ===== */

.article-quote-block {
    background: linear-gradient(135deg, rgba(68, 185, 120, 0.1), rgba(68, 185, 120, 0.05));
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    position: relative;
    margin: 2.5rem 0;
}

.article-quote-icon {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.article-quote-content {
    margin: 0;
    position: relative;
    z-index: 1;
}

.article-quote-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1rem;
}

.article-quote-author {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
}

/* ===== VIDEO ===== */

.article-video-embed {
    margin: 2.5rem 0;
}

.article-video-embed iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.article-video-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    font-style: italic;
}

/* ===== BENEFITY S IKONAMI ===== */

.article-benefits-list {
    display: grid;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.article-benefit-item {
    background: var(--box-bg);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.article-benefit-item:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.article-benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.article-benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.article-benefit-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===== KROKY S ČÍSLY ===== */

.article-steps-list {
    display: grid;
    gap: 2rem;
    margin: 2.5rem 0;
}

.article-step-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: start;
    background: var(--box-bg);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.article-step-item:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.article-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(68, 185, 120, 0.3);
}

.article-step-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.article-step-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===== SROVNÁVACÍ TABULKA ===== */

.article-comparison-table {
    margin: 2.5rem 0;
    overflow-x: auto;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.article-table-head {
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: white;
}

.article-table-head th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
}

.article-table-body td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

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

.article-table-body tr:hover {
    background: var(--box-bg);
}

/* ===== GALERIE OBRÁZKŮ ===== */

.article-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.article-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.article-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.article-gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* ===== SEZNAMY ===== */

.article-bullet-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-bullet-item {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text);
}

.article-numbered-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-numbered-item {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text);
}

/* ===== CTA BOX ===== */

.article-cta-box {
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 8px 24px rgba(68, 185, 120, 0.3);
}

.article-cta-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.article-cta-text {
    color: rgba(255,255,255,0.95);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.article-cta-button {
    display: inline-block;
    background: white;
    color: var(--accent);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.article-cta-button:hover {
    background: var(--box-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===== ZÁVĚR ČLÁNKU ===== */

.article-conclusion-block {
    background: linear-gradient(135deg, var(--accent), #3a9d64);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.article-conclusion-text {
    color: white;
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ===== AUTOR ČLÁNKU ===== */

.article-author-block {
    background: var(--box-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.article-author-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.article-author-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.article-author-name-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.article-author-role {
    font-size: .95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.article-author-bio {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===== SDÍLENÍ ČLÁNKU ===== */

.article-share-block {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border);
}

.article-share-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.article-share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.article-share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.article-share-facebook {
    background: #1877F2;
    color: white;
}

.article-share-facebook:hover {
    background: #145dbf;
    transform: translateY(-2px);
}

.article-share-twitter {
    background: #1DA1F2;
    color: white;
}

.article-share-twitter:hover {
    background: #1a8cd8;
    transform: translateY(-2px);
}

.article-share-linkedin {
    background: #0A66C2;
    color: white;
}

.article-share-linkedin:hover {
    background: #084d94;
    transform: translateY(-2px);
}

.article-share-email {
    background: var(--text-light);
    color: white;
}

.article-share-email:hover {
    background: var(--text);
    transform: translateY(-2px);
}

/* ===== SOUVISEJÍCÍ ČLÁNKY ===== */

.article-related-block {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border);
}

.article-related-title {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
}

.article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.article-related-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.article-related-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.article-related-content {
    padding: 1.5rem;
}

.article-related-category {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.article-related-heading {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-weight: 700;
}

.article-related-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   RESPONSIVE - BLOG LAYOUT
   ============================================ */

@media (max-width: 1024px) {
    .article-images-three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-video-embed iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .article-wrapper {
        padding: 3rem 0;
    }

    .article-container {
        padding: 0 1.5rem;
    }

    .article-main-title {
        font-size: 1.75rem;
    }

    .article-meta-info {
        flex-direction: column;
        gap: .75rem;
        align-items: center;
    }

    .article-perex-block p {
        font-size: 1.05rem;
    }

    .article-body-content {
        font-size: 1rem;
    }

    .article-section-heading {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .article-subsection-heading {
        font-size: 1.25rem;
    }

    .article-images-two-col,
    .article-images-three-col,
    .article-images-with-text,
    .article-text-two-col {
        grid-template-columns: 1fr;
    }

    .article-gallery-grid {
        grid-template-columns: 1fr;
    }

    .article-step-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .article-step-number {
        margin: 0 auto 1rem;
    }

    .article-benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .article-comparison-table {
        font-size: 0.85rem;
    }

    .article-table-head th,
    .article-table-body td {
        padding: 0.75rem .5rem;
    }

    .article-related-grid {
        grid-template-columns: 1fr;
    }

    .article-share-buttons {
        flex-direction: column;
    }

    .article-share-btn {
        width: 100%;
        justify-content: center;
    }

    .article-video-embed iframe {
        height: 300px;
    }

    .article-cta-box {
        padding: 2rem 1.5rem;
    }

    .article-cta-title {
        font-size: 1.5rem;
    }

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

@media (max-width: 640px) {
    .article-header-block {
        margin-bottom: 2rem;
    }

    .article-perex-block {
        padding: 1.5rem;
    }

    .article-tip-box,
    .article-warning-box,
    .article-success-box,
    .article-info-box {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .article-quote-block {
        padding: 1.5rem;
    }

    .article-quote-text {
        font-size: 1.05rem;
    }

    .article-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .article-benefit-icon {
        font-size: 2rem;
    }

    .article-video-embed iframe {
        height: 250px;
    }
}
@media (max-width: 768px) {
    .article-wrapper {
        padding: 6rem 0 3rem 0; /* ✅ Na mobilu menší padding-top */
    }
    
    /* ... zbytek mobilního CSS ... */
}

@media (max-width: 640px) {
    .article-wrapper {
        padding: 5rem 0 2rem 0; /* ✅ Na malých mobilech ještě menší */
    }
    
    /* ... zbytek CSS ... */
}
