/* ZÁKLADNÍ PROMĚNNÉ A RESET */
:root {
    --primary: #0d9488; 
    --primary-dark: #0f766e;
    --accent: #f43f5e;
    --accent-hover: #e11d48;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc; 
    --border: #e2e8f0;
    --radius: 12px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 30px rgba(13, 148, 136, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 

    /* Pro Firefox */
    scrollbar-width: thin;
    scrollbar-color: #042f2e rgba(13, 148, 136, 0.15);
}

/* Pro Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    /* Jemná průhledná tyrkysová (15% opacita) */
    background-color: rgba(13, 148, 136, 0.15); 
}

::-webkit-scrollbar-thumb {
    background-color: #042f2e;
    border-radius: 10px;
    /* Trik pro zúžení bez plné barvy okraje */
    border: 4px solid transparent; 
    background-clip: padding-box; 
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-dark);
}

/* VLASTNÍ BARVA OZNAČENÍ TEXTU */
::selection {
    background-color: rgba(13, 148, 136, 0.25);
    color: inherit;
}

/* Pro starší verze Firefoxu */
::-moz-selection {
    background-color: rgba(13, 148, 136, 0.25);
    color: inherit;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

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

ul {
    list-style: none;
}

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

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

section {
    padding: 6rem 0;
}

.w-full {
    width: 100%;
}

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

/* ANIMACE - SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* BADGE */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(13, 148, 136, 0.1);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.badge:hover {
    background-color: rgba(13, 148, 136, 0.15);
}

.badge svg {
    color: var(--primary);
}

/* TLAČÍTKA */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(244, 63, 94, 0.25);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(13, 148, 136, 0.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* NAVIGACE */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #042f2e;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    background-color: rgba(4, 47, 46, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}


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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #ffffff; 
}

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


.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-logo-img {
    height: 45px; /* Zvětší výšku kapky */
    width: auto;
    display: block;
}

.nav-cta {
    justify-self: end;
}

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


.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, width 0.2s ease;
    transform-origin: center;
}

/* Křížek pro obě varianty tříd (is-active i active) */
.hamburger.active span:nth-child(1),
.hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3),
.hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* NOVÝ HERO GRID LAYOUT */
.hero {
    display: grid;
    grid-template-columns: minmax(2rem, 1fr) minmax(0, 568px) minmax(0, 568px) minmax(2rem, 1fr);
    height: 100vh;
    min-height: 700px;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    overflow: hidden;
    position: relative; 
}

.hero-content-wrapper {
    grid-column: 2 / 3; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 0; 
}

.hero-content {
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    grid-column: 3 / 5; 
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

/* SCROLL INDICATOR (MYŠKA) */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    z-index: 10;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-dark);
    border-radius: 15px;
    position: relative;
    margin-bottom: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-dark);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
    transform: rotate(45deg);
    margin-top: -3px;
    animation: scrollArrow 2s infinite;
}

.arrow:nth-child(1) { animation-delay: 0s; }
.arrow:nth-child(2) { animation-delay: 0.15s; }
.arrow:nth-child(3) { animation-delay: 0.3s; }

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

@keyframes scrollArrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* S ČÍM POMÁHÁM */
.section-header {
    margin-bottom: 4rem;
    max-width: 650px;
}

.section-header.center {
    text-align: center;
    margin: 0 auto 4rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
}

.method-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch; /* Vynutí stejnou výšku obou karet */
}

.method-cards-grid .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* O MNĚ */
.about-container {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.about-image picture,
.about-image {
    flex: 1;
    position: sticky;
    top: 120px;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.about-content {
    flex: 1.2;
}

.quote-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

.quote-box p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.secondary-quote {
    border-left-color: var(--primary);
    background-color: rgba(13, 148, 136, 0.05);
}

/* JAK TO PROBÍHÁ */
.process-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-step {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-number {
    width: 56px;
    height: 56px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

/* CENÍK */
.pricing-table {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    overflow: hidden;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    transition: background-color 0.2s ease;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background-color: #fcfdfd;
}

.price-main {
    flex: 1;
}

.price-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.35rem;
}

.price-title-wrap h4 {
    margin-bottom: 0;
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Štítek s časem */
.price-time-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    background-color: rgba(13, 148, 136, 0.08);
    color: var(--primary-dark);
    border-radius: 6px;
    letter-spacing: 0.02em;
}

.price-desc {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.45;
}

/* Částka */
.price-amount {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.price-from .from-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin-right: 2px;
}

/* UPOZORNĚNÍ POD CENÍKEM */
.pricing-note {
    max-width: 760px;
    margin: 1.25rem auto 0 auto;
    padding: 1rem 1.5rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.pricing-note-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(13, 148, 136, 0.08);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-note-text {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.pricing-note-text a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
}

.pricing-note-text a:hover {
    color: var(--accent);
}

/* KONTAKT SEKCE */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Kontaktní tlačítka / karty vlevo */
.contact-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.contact-btn:hover {
    border-color: var(--primary);
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.contact-text strong {
    color: var(--text-dark);
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

/* Karta s mapou vpravo */
.contact-map-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.map-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 0.25rem;
}

.map-address {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.ico-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
}

.map-placeholder {
    width: 100%;
    height: 280px;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* FLOATING CTA BUTTON S BUBLINOU */
.floating-cta-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-tooltip {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
}


.cta-tooltip.show-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.cta-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--bg-white);
}


.floating-cta {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

/* PRÉMIOVÝ FOOTER */
.modern-footer {
    background-color: #042f2e; /* Temně tyrkysová pro vysoký kontrast */
    color: #ffffff;
    padding: 8rem 0 2rem 0;
}

.footer-hero-text {
    max-width: 600px;
}

.footer-subheadline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.footer-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 5rem;
}

.footer-headline {
    font-size: 4.5rem;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    max-width: 700px;
    letter-spacing: -0.03em;
}

.footer-btn {
    background: #ffffff;
    color: #042f2e;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background-color: #f8fafc;
    color: var(--primary-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 350px;
}

.footer-nav {
    display: flex;
    gap: 6rem;
    justify-content: flex-end;
}

.nav-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-title {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.nav-col a, .nav-col span {
    color: #ffffff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    flex-wrap: wrap; /* Umožní rozlomení na více řádků, pokud by se nevešlo */
    gap: 1.5rem;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

.legal-separator {
    color: rgba(255, 255, 255, 0.2);
}

.developer-credit {
    margin: 0;
}

.footer-legal .developer-link {
    color: #ffffff;
    font-weight: 600;
}

/* RESPONSIVITA */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
    }
    
    .hero-content-wrapper {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        padding: 3rem 2rem; 
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        grid-column: 1 / -1;
        order: -1;
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-image {
        -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%);
        mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%);
    }

    /* Skrytí myšky na mobilech a tabletech */
    .desktop-only {
        display: none !important;
    }

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

    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }

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

    .about-image {
        position: relative;
        top: 0;
    }
    
    .process-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .footer-headline {
        font-size: 3.5rem;
    }

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

    .footer-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 4rem;
    }

    .nav-container {
        display: flex; /* Návrat k flexboxu pro mobilní zobrazení */
        justify-content: space-between;
    }

    .nav-links, .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-links.is-open {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #042f2e;
        padding: 2rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        gap: 1.5rem;
    }

    .nav-links.is-open a {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

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

    .method-pillars {
        grid-template-columns: 1fr !important; /* Bezpečně vynutí jeden sloupec pod sebou */
        gap: 2rem;
        padding-top: 0;
    }

    .pillar-card.featured {
        transform: none !important; /* Na mobilu zruší odskočení nahoru, aby karta nelezla do textu */
    }

    .pillar-card.featured:hover {
        transform: translateY(-8px) !important; /* Vrátí standardní hover efekt i pro tmavou kartu */
    }

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

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

@media (max-width: 768px) {
    .grid-6, .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-links-wrapper {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .footer-cta h2 {
        font-size: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    /* Úprava plovoucího tlačítka pro mobily (aby nepřekáželo palci) */
    .floating-cta {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .footer-headline {
        font-size: 2.5rem;
    }

    .footer-legal {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .legal-separator {
        display: none; /* Na mobilech oddělovače schováme pro čistší vzhled na více řádcích */
    }

    /* Úprava plovoucího tlačítka a bubliny pro mobily */
    .floating-cta-wrapper {
        bottom: 20px;
        right: 20px;
    }
    
    .cta-tooltip {
        display: none; /* Na mobilech bublinu skryjeme, zabírá moc místa */
    }

    .floating-cta {
        width: 55px;
        height: 55px;
    }

    .method-cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1.25rem;
        gap: 1.25rem;
    }

    .method-cta-info {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .method-cta-btn {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .price-row {
        padding: 1.25rem 1.25rem;
    }

    .price-header-wrap h4 {
        font-size: 1.05rem;
    }

    .price-amount {
        font-size: 1.15rem;
    }

    .price-desc {
        font-size: 0.88rem;
    }

    .pricing-note {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .pricing-note-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .pricing-note-text {
        font-size: 0.88rem;
    }
}


/* NOVÉ ROZLOŽENÍ PILÍŘŮ (METODA) */
.method-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: start;
    padding-top: 2rem; /* Dáváme prostor pro povyskočenou střední kartu */
}

.pillar-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pillar-card h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Ikony v kartách */
.pillar-icon {
    width: 64px;
    height: 64px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

/* ZVÝRAZNĚNÁ PROSTŘEDNÍ KARTA */
.pillar-card.featured {
    background: #042f2e; /* Temná tyrkysová pro silný kontrast */
    color: white;
    transform: translateY(-2rem); /* Povyskočení karty nahoru */
    box-shadow: 0 20px 40px rgba(4, 47, 46, 0.2);
    border: none;
}

/* Úprava hover efektu pro již posunutou kartu */
.pillar-card.featured:hover {
    transform: translateY(-2.5rem); 
}

/* Změna barev uvnitř tmavé karty */
.pillar-card.featured h3 {
    color: white;
}

.pillar-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.pillar-card.featured .pillar-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-veterinarian-box {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.about-veterinarian-box p {
    margin-bottom: 1.5rem;
}

/* KOMPAKTNÍ CTA PRUH METODY */
.method-cta-bar {
    background: #042f2e;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: var(--shadow);
}

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

.method-cta-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.method-cta-info strong {
    display: block;
    font-size: 1.05rem;
    color: white;
    line-height: 1.2;
}

.method-cta-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.method-cta-btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem 1.25rem;
    }

    .price-title-wrap {
        flex-wrap: wrap;
    }

    .price-title-wrap h4 {
        font-size: 1.05rem;
    }

    .price-amount {
        align-self: flex-start;
        font-size: 1.25rem;
    }

    .pricing-note {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }

    .pricing-note-text {
        font-size: 0.85rem;
    }

    .contact-btn {
        padding: 1.1rem 1.25rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .contact-text strong {
        font-size: 1.05rem;
    }

    .contact-map-card {
        padding: 1.25rem;
    }

    .map-card-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .map-placeholder {
        height: 240px;
    }
}