/* Self-hosted Poppins — latin-ext (česká diakritika) + latin */
@font-face { font-family:'Poppins'; font-style:normal; font-weight:300; font-display:swap; src:url('../fonts/poppins-300-latin-ext.woff2') format('woff2'); unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:300; font-display:swap; src:url('../fonts/poppins-300-latin.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:400; font-display:swap; src:url('../fonts/poppins-400-latin-ext.woff2') format('woff2'); unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:400; font-display:swap; src:url('../fonts/poppins-400-latin.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:600; font-display:swap; src:url('../fonts/poppins-600-latin-ext.woff2') format('woff2'); unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:600; font-display:swap; src:url('../fonts/poppins-600-latin.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:700; font-display:swap; src:url('../fonts/poppins-700-latin-ext.woff2') format('woff2'); unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:700; font-display:swap; src:url('../fonts/poppins-700-latin.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }

/* Základní reset a proměnné */
:root {
    --primary-color: #0066cc;
    --secondary-color: #ff6600;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --grey-color: #f1f1f1;
    --text-color: #333;
    --light-text: #fff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-contact {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.section-header.light h2,
.section-header.light p {
    color: var(--light-text);
}

.section-header.light h2::after {
    background: var(--light-text);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 102, 204, 0.3);
}

.primary-btn {
    background: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.primary-btn:hover {
    box-shadow: 0 8px 15px rgba(255, 102, 0, 0.3);
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
	background-color: #1a1a1a;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 0px 0;
	opacity: 0.9;
}

#main-header.scrolled {
    padding: 4px 0;
    background-color: #1a1a1a;
	opacity: 0.9;
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
	line-height: 0;
}

.logo img {
    max-height: 100px;
    transition: var(--transition);
}

.scrolled .logo img {
    max-height: 60px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px 0;
    transition: var(--transition);
	background: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero-bg.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--light-text);
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.hero .btn {
    animation: fadeIn 1s ease 0.6s;
    animation-fill-mode: both;
}

/* Services Section */
.services {
    padding: 50px 0 50px;
    background-color: var(--light-color);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 30px;
    transition: var(--transition);
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
    transition: transform 0.8s, background-color 0.3s, color 0.3s;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-item p {
    color: #666;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/repair-small.jpeg') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: var(--light-text);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--grey-color);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.fact {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.fact h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
	background: linear-gradient(rgb(14 34 59 / 80%), rgb(26 26 26)), url('../img/contact-bg.jpeg') no-repeat center center / cover;
    color: var(--light-text);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info, .contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
}
a.contact-item:hover .contact-icon {
    background-color: #fff;
    color: var(--secondary-color);
}
a.contact-item:hover {
    opacity: .85;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--light-text);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-family: 'Poppins', Arial, sans-serif;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-container textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.visible {
    animation: fadeIn 1s ease;
}

/* Custom PC Section */
.custom-pc {
    padding: 100px 0;
    background-color: var(--light-color);
}

.custom-pc-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.custom-pc-image {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
	display: flex;
    align-items: center;
    justify-content: center;
}

.custom-pc-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.custom-pc-text {
    flex: 1;
    min-width: 300px;
}

.custom-pc-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.custom-pc-text h3 {
    font-size: 1.8rem;
    margin: 5px 0 20px;
    color: var(--dark-color);
}

.custom-pc-benefits {
    margin-bottom: 30px;
}

.custom-pc-benefits li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.custom-pc-benefits i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Custom web-dev Section */
.web-dev {
    padding: 100px 0;
    background-color: var(--light-color);
}

.web-dev-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    flex-direction: row-reverse; /* Opačné pořadí oproti custom-pc */
}

.web-dev-image {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-dev-text {
    flex: 1;
    min-width: 300px;
}

.web-dev-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.web-dev-text h3 {
    font-size: 1.8rem;
    margin: 5px 0 20px;
    color: var(--dark-color);
}

.web-dev-services {
    margin-bottom: 30px;
}

.web-dev-services li {
    margin-bottom: 15px; /* Stejné mezery jako .custom-pc-benefits */
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    line-height: 1.6; /* Zmenšení mezery mezi řádky, aby odpovídalo */
}

.web-dev-benefits i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.web-dev-services {
    margin-bottom: 30px;
}

.right-faj {
	margin-right: 10px;
}

.custom-pc-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
}

.custom-pc-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq {
    padding: 100px 0; /* Přidá padding top a bottom */
}

.faq-question {
    cursor: pointer;
}

.faq-item {
    margin-bottom: 10px;
}

/* Video CTA Section */
.video-cta-wrapper {
    padding: 0px; /* Přidá padding top a bottom */
    background: white; /* Pokud chceš zachovat barvu v okolí videa */
}

.video-cta {
    padding: 0; /* Remove padding */
    background: var(--dark-color);
    position: relative; /* Position relative for child positioning */
    height: 29vh; /* Set height to 80% of viewport height */
    overflow: hidden; /* Hide overflow */
}

.video-cta .container {
    width: 100%;
    max-width: 100%; /* Remove max-width constraint */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    height: 100%; /* Full height */
}

.video-cta video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover ensures video fills container */
    display: block;
    border-radius: 0; /* Remove border radius */
    box-shadow: none; /* Remove shadow */
    position: absolute; /* Position absolutely */
    top: 0;
    left: 0;
}

.powered {
    color: white;
}
.powered :hover {
    color: #ff6600;
}

/* FAQ akordeon */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 0;
}
.faq-answer p {
    padding: 12px 0 16px;
}
.faq-question .fa-chevron-down {
    transition: transform 0.3s ease;
}
.faq-question.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Stav kontaktního formuláře */
#form-status {
    display: none;
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
}
#form-status:not(:empty) {
    display: block;
}
.form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 875px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #1a1a1a;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
        padding: 80px 0;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
	
	.menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-content, .contact-wrapper {
        flex-direction: column;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
	
	.web-dev-content {
		flex-direction: column;
    }
	
	.custom-pc-content {
        flex-direction: column;
    }
	
	nav ul li a {
		color: white;
	}
}

@media (max-width: 576px) {
    #main-header .container {
        width: 95%;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* =====================================================
   Podstránky — page-hero, page-section, service grid
   ===================================================== */
.page-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a2535 100%);
    padding: 130px 0 60px;
    color: #fff;
    text-align: center;
}
.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.page-hero p {
    font-size: 1.1rem;
    opacity: .85;
    max-width: 600px;
    margin: 0 auto;
}
.page-section {
    padding: 80px 0;
}
.service-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.service-page-grid h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}
.service-page-grid p {
    color: #555;
    line-height: 1.75;
}
@media (max-width: 768px) {
    .page-hero h1 { font-size: 1.8rem; }
    .service-page-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* =====================================================
   Tlačítko secondary-btn
   ===================================================== */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
@media (max-width: 415px) {
    .btn-group { gap: 18px; }
}
.secondary-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    font-family: inherit;
}
.secondary-btn:hover {
    background: var(--primary-color);
    color: #fff;
}
.contact-teaser .secondary-btn {
    border-color: rgba(255,255,255,.7);
    color: #fff;
}
.contact-teaser .secondary-btn:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
}

/* =====================================================
   Kontaktní sekce na homepage (zjednodušená)
   ===================================================== */
.contact-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 36px auto 0;
}
.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.9);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}
.contact-quick-item i {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.contact-quick-item:hover { color: #fff; }
.contact-quick-item:hover i { background: rgba(255,255,255,.22); }

/* =====================================================
   Patička — legal links
   ===================================================== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
    color: rgba(255,255,255,.6);
}
.footer-legal-links {
    display: flex;
    gap: 16px;
}
.footer-legal-links a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: var(--transition);
}
.footer-legal-links a:hover { color: var(--secondary-color); }
.footer-ext-link { color: rgba(255,255,255,.6); text-decoration: none; transition: var(--transition); }
.footer-ext-link:hover { color: var(--secondary-color); }

/* =====================================================
   Cookie bar
   ===================================================== */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark-color);
    color: #fff;
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.18);
    transition: transform .3s ease;
}
.cookie-bar.hidden {
    transform: translateY(110%);
    pointer-events: none;
}
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-inner .txt { flex: 1; min-width: 200px; }
.cookie-inner .t { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.cookie-inner .s { font-size: 13px; opacity: .8; }
.cookie-inner .s a { color: var(--secondary-color); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-soft {
    background: transparent;
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}
.btn-soft:hover { background: rgba(255,255,255,.1); }

/* =====================================================
   Právní stránky (GDPR, Cookies)
   ===================================================== */
.legal-body {
    max-width: 760px;
    margin: 60px auto 80px;
    padding: 0 24px;
}
.legal-body h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 36px 0 10px;
}
.legal-body p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}
.legal-body a { color: var(--primary-color); }
.legal-body .btn { color: #fff; }
.legal-updated {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}
.callout {
    background: #fff8e1;
    border-left: 4px solid #f5a623;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    color: #7a5500;
    margin: 20px 0;
}
.cookie-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 22px;
    margin: 20px 0;
}
.cookie-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.cookie-card-top h2 {
    margin: 0;
    font-size: 1.1rem;
}
.cookie-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 4px 12px;
    border-radius: 999px;
}
.cookie-tag-on  { background: #d4edda; color: #155724; }
.cookie-tag-opt { background: #fff3cd; color: #856404; }
