:root {
	--site-primary: #0f766e;
	--site-primary-dark: #0b5e58;
	--site-text: #1f2937;
	--site-muted: #6b7280;
	--site-bg: #f6f8fa;
	--site-line: #e5e7eb;
	--bs-body-font-family: 'DM Sans', sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	color: var(--site-text);
	background: #fff;
}

.topbar {
	background: #0b3d3a;
	color: #fff;
	font-size: 0.8rem;
}

.topbar a {
	color: #fff;
	text-decoration: none;
}

.topbar a:hover {
	opacity: 0.85;
}

.navbar-brand {
	font-weight: 700;
	letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
	font-weight: 500;
}

.navbar-nav .nav-link.active {
	color: var(--site-primary);
	font-weight: 700;
}

.btn-primary-custom {
	background: var(--site-primary);
	border-color: var(--site-primary);
	color: #fff;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
	background: var(--site-primary-dark);
	border-color: var(--site-primary-dark);
	color: #fff;
}

.btn-outline-primary-custom {
	color: var(--site-primary);
	border-color: var(--site-primary);
}

.btn-outline-primary-custom:hover,
.btn-outline-primary-custom:focus {
	background: var(--site-primary);
	border-color: var(--site-primary);
	color: #fff;
}

.hero {
	background: linear-gradient(135deg, rgba(15,118,110,0.08), rgba(255,255,255,0.95));
	padding: 5rem 0 4rem;
}

.hero h1 {
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1.1;
/*	font-weight: 700; */
	letter-spacing: -0.03em;
}
h1, h2, h3 {
	font-family: 'Bitter', serif;
}

.hero .lead {
	color: var(--site-muted);
	font-weight: inherit;
}

.hero-benefits {
	padding-left: 0;
	margin: 1.5rem 0 2rem;
	list-style: none;
}

.hero-benefits li {
	position: relative;
	padding-left: 1.8rem;
	margin-bottom: 0.7rem;
}

.hero-benefits li::before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: var(--site-primary);
	font-weight: 700;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--site-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.phone-icon {
    color: #facc15;
    margin-right: 0.45rem;
}

.info-card,
.faq-item,
.reference-card,
.blog-card {
	border: 1px solid var(--site-line);
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}

.hero-card {
	transition: 0.3s ease;
	border: 1px solid #fed7aa;
	background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
	box-shadow: 0 20px 50px rgba(249, 115, 22, 0.2);
	position: relative;
}

.reference-card img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-bottom: 1px solid var(--site-line);
}

.reference-card .card-body {
	padding: 1.5rem;
}

.hero-card::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	height: 5px;
	background: linear-gradient(90deg, #f97316, #fb923c);
	border-radius: 1rem 1rem 0 0;
}

.hero-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 70px rgba(249, 115, 22, 0.25);
}

.problem-box {
	border: 1px solid var(--site-line);
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}


.section-padding {
	padding: 4.5rem 0;
}

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

.section-title {
	margin-bottom: 1rem;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.section-intro {
	max-width: 760px;
	color: var(--site-muted);
	margin: 0 auto 2.5rem;
}


/* Kontejner pro tabulku se stínem a zaoblením */
.comparison-wrapper {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid #e0e6ed;
}

/* Základní styl tabulky */
.premium-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Hlavička tabulky */
.premium-table thead tr {
    background-color: #0056b3; /* Vaše hlavní modrá */
    color: #ffffff;
    text-align: left;
}

.premium-table th, 
.premium-table td {
    padding: 18px 25px;
    border-bottom: 1px solid #f0f4f8;
}

/* Zvýraznění sloupce s vaší metodou (Frézování) */
.premium-table td:nth-child(2), 
.premium-table th:nth-child(2) {
    background-color: rgba(0, 86, 179, 0.03);
/*     font-weight: 500; */
}

/* Jemný přechod při najetí myší na řádek */
.premium-table tbody tr {
    transition: all 0.3s ease;
}

.premium-table tbody tr:hover {
    background-color: #f8fbff;
    transform: scale(1.005);
    box-shadow: inset 4px 0 0 #0056b3; /* Modrá linka na začátku řádku */
}

/* Styl pro mobilní zařízení - posuvník */
@media (max-width: 768px) {
    .comparison-wrapper {
        overflow-x: auto;
    }
    .premium-table {
        min-width: 600px; /* Aby se tabulka na mobilu nesrazila */
    }
}

/* Barevné odlišení textů */
.text-success-custom { color: #28a745; font-weight: bold; }
.text-danger-custom { color: #dc3545; font-weight: bold; }

.icon-circle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(15,118,110,0.1);
	color: var(--site-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.7rem;
	margin-bottom: 1rem;
}

.price-card {
	border: 1px solid var(--site-line);
	border-radius: 1rem;
	background: #fff;
	height: 100%;
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}

.price-card.featured {
	border-color: var(--site-primary);
}

.price-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--site-primary);
}

.faq-item {
	padding: 1.4rem 1.5rem;
}

.faq-item h3 {
	font-size: 1.1rem;
	margin-bottom: 0.6rem;
}

.faq-item p:last-child {
	margin-bottom: 0;
	color: var(--site-muted);
}

.reference-card,
.blog-card {
	overflow: hidden;
	height: 100%;
}

.reference-card .card-body,
.blog-card .card-body {
	padding: 1.5rem;
}

.reference-meta {
	color: var(--site-primary);
	font-weight: 600;
	font-size: 0.95rem;
}

.reference-stars {
	margin-bottom: 0.9rem;
	color: #f59e0b;
	font-size: 0.7rem;
	line-height: 1;
	letter-spacing: 0.08em;
}

.cta-section {
	background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
	color: #fff;
}

.cta-section .section-title,
.cta-section .section-intro {
	color: #fff;
}

.cta-section .section-intro {
	opacity: 0.9;
}


.breadcrumb-item a {
	color: var(--site-primary);
	text-decoration: none;
}

.breadcrumb-item.active {
	color: var(--site-muted);
}

footer.site-footer {
	background: #111827;
	color: rgba(255,255,255,0.82);
}

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

footer.site-footer a:hover {
	color: #fff;
}


.navbar-toggler {
	border: none;
	background: transparent;
	padding: 0;
	width: 32px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: none !important;
}

.hamburger {
	position: relative;
	display: block;
	width: 28px;
	height: 3px;
	background: #111;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
	content: "";
	position: absolute;
	left: 0;
	width: 28px;
	height: 3px;
	background: #111;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger::before {
	top: -8px;
}

.hamburger::after {
	top: 8px;
}

.navbar-toggler.active .hamburger {
	background: transparent;
}

.navbar-toggler.active .hamburger::before {
	top: 0;
	transform: rotate(45deg);
}

.navbar-toggler.active .hamburger::after {
	top: 0;
	transform: rotate(-45deg);
}

.anchor-section
{
	scroll-margin-top: 40px;
}

.contact-form-box .form-label {
	font-weight: 600;
	color: var(--site-text);
}

.contact-form-box .form-control {
	padding: 0.85rem 1rem;
	border-radius: 0.75rem;
	border: 1px solid var(--site-line);
}

.contact-form-box .form-control:focus {
	border-color: var(--site-primary);
	box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.15);
}

.contact-form-box .form-text {
	color: var(--site-muted);
}

.cta-section .contact-form-box {
	color: var(--site-text);
}


.contact-info {
    line-height: 1.7;
    opacity: 0.95;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 991.98px) {
	.navbar-collapse {
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid var(--site-line);
	}

	.navbar .btn {
		width: 100%;
		margin-top: 0.5rem;
	}

	.hero {
		padding: 4rem 0 3rem;
	}

	.anchor-section
	{
		scroll-margin-top: 280px;
	}
}


