body {
 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  color: #333;
  padding: 0;
  margin: 0;
  font-weight: 400;
}


:root {
    --brand: #00c4cc;        /* tyrkys z loga */
    --brand-dark: #0295a0;
    --ink: #111827;
    --bg-dark: #293948;
}

/* Obecný container */
.page {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
}

/* TOP BAR – jednoduchej, neutrální */
.topbar {
    background: #f9fafb;
    color: #4b5563;
    /*font-size: 12px;*/
    border-bottom: 1px solid #e5e7eb;
}
.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.topbar-pill {
    padding: 3px 8px;
    /*
	border-radius: 999px;
    background: var(--brand);
    */
	color: #022c22;
    font-weight: 600;
}
.topbar-right a {
    color: #4b5563;
    text-decoration: none;
}
.topbar-right a:hover {
    color: var(--brand-dark);
}
.topbar-sep {
    opacity: 0.6;
    margin: 0 4px;
}

/* HLAVIČKA – bílý pozadí, logo se hodí */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}
.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-logo img {
    height: 40px;
    display: block;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    /* font-size: 14px; */
}
.site-nav a {
    color: #111827;
    text-decoration: none;
}
.site-nav a:hover {
    color: var(--brand);
}
.site-nav .nav-cta {
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--brand);
    color: #ffffff;
    font-weight: 600;
    border: 1px solid transparent;
}
.site-nav .nav-cta:hover {
    background: var(--brand-dark);
}

/* Layouty */
.layout-narrow .content {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 16px;
}

.layout-wide .content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px;
}

/* HERO – může zůstat tmavý, tyrkys použijeme jako akcent */
.home-hero {
    /* background: #0f172a; */
	/* background: #020617; */
	background: var(--bg-dark);
    color: #e5e7eb;
    padding-top: 40px;
    padding-bottom: 32px;
}
.home-hero .eyebrow {
    text-transform: uppercase;
    /* font-size: 12px; */
    letter-spacing: 0.12em;
    color: var(--brand);
    margin-bottom: 8px;
}
.home-hero h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
}
.home-hero .hero-text {
    /*font-size: 15px; */
    line-height: 1.5;
    margin-bottom: 16px;
    color: #e5e7eb;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.hero-mini {
    font-size: 13px;
    color: #9ca3af;
}

/* Tlačítka – primární tyrkys, sekundární outline */
.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    /*
	font-size: 14px;
    */
	text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
}
.btn-primary {
    background: var(--brand);
    color: #ffffff;
    font-weight: 600;
}
.btn-primary:hover {
    background: var(--brand-dark);
}
.btn-secondary {
    background: transparent;
    color: #e5e7eb;
    border-color: #4b5563;
}
.btn-secondary:hover {
    background: #111827;
}

/* Segmenty */
.home-segments {
    background: #f9fafb;
}
.segments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.segment-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #e5e7eb;
}
.segment-card h2 {
    font-size: 18px;
    margin-bottom: 6px;
}
.segment-card p {
    /* font-size: 14px; */
    margin-bottom: 10px;
}
.segment-link {
    /* font-size: 14px; */
    color: var(--brand-dark);
    text-decoration: none;
}
.segment-link:hover {
    text-decoration: underline;
}

/* Katalog */
.home-catalog .section-header h2 {
    font-size: 20px;
    margin-bottom: 4px;
}
.home-catalog .section-header p {
    /* font-size: 14px; */
    color: #4b5563;
    margin-bottom: 16px;
}
.home-catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.product-card {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 14px;
    background: #ffffff;
}
.product-card a {
    text-decoration: none;
    color: inherit;
}
.product-title {
    font-weight: 600;
    margin-bottom: 4px;
}
.product-meta {
	/*
    font-size: 13px;
    */
	color: #6b7280;
    margin-bottom: 8px;
}
.product-price {
	/*
    font-size: 14px;
    */
	font-weight: 600;
    margin-bottom: 6px;
}
.product-cta {
    /* font-size: 13px; */
    color: var(--brand-dark);
}
.home-catalog-more {
    margin-top: 16px;
}
.link-more {
	/*
    font-size: 14px;
    */
	color: var(--brand-dark);
    text-decoration: none;
}
.link-more:hover {
    text-decoration: underline;
}

/* Jak to funguje */
.home-how h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
.how-steps {
    padding-left: 18px;
    /* font-size: 14px;
	*/
}
.how-steps li {
    margin-bottom: 8px;
}

/* Značky */
.home-brands {
    background: #f3f4f6;
}
.home-brands h2 {
    font-size: 18px;
    margin-bottom: 12px;
}
.brands-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}
.brands-row span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    /*
	font-size: 13px;
	*/
	}
.brands-note {
    /* font-size: 13px; */
    color: #4b5563;
}

/* Video */
.home-video h2 {
    font-size: 18px;
    margin-bottom: 6px;
}
.video-wrapper {
    margin-top: 10px;
}
.yt-lazy {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    background: #000;
}
.yt-lazy iframe,
.yt-lazy .yt-thumb {
    position: absolute;
    inset: 0;
}
.yt-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
}
.yt-play {
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    /* font-size: 14px; */
    cursor: pointer;
}

/* Články */
.home-articles h2 {
    font-size: 18px;
    margin-bottom: 8px;
}
.article-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.article-list li {
    margin-bottom: 6px;
}
.article-list a {
	/*
    font-size: 14px;
    */
	color: #111827;
    text-decoration: none;
}
.article-list a:hover {
    color: var(--brand);
}
.articles-more {
    margin-top: 8px;
}

/* SEO text */
.home-seo h2 {
    font-size: 18px;
    margin-bottom: 8px;
}
.home-seo p {
    /* font-size: 14px; */
    line-height: 1.6;
    margin-bottom: 8px;
}


/* Responsivita */
@media (max-width: 900px) {
    .segments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .site-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-nav {
        flex-wrap: wrap;
        row-gap: 8px;
    }
}
@media (max-width: 640px) {
    .segments-grid,
    .home-catalog-grid {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .site-footer-inner {
        grid-template-columns: 1fr;
    }
}