/* ============================================================
   FYZIOTERAPIE MGR. ALENA BÍNOVÁ — Thiraphy-Inspired Design
   Deep teal + warm accents, serif headings, rounded elements
   ============================================================ */

/* ---------- Variables ---------- */
:root {
    /* Deep Teal palette */
    --teal-900: #092E2E;
    --teal-800: #0C3D3D;
    --teal-700: #0F5757;
    --teal-600: #147070;
    --teal-500: #1B8A8A;
    --teal-400: #2DB5A8;
    --teal-300: #5CD4C4;
    --teal-200: #A1E8DE;
    --teal-100: #D4F5EF;
    --teal-50:  #EFF9F7;

    /* Accent — Amber/Gold */
    --accent-500: #E8A838;
    --accent-400: #F0BC5E;
    --accent-300: #F5D08A;

    /* Neutrals */
    --white:    #FFFFFF;
    --gray-50:  #F7F9F9;
    --gray-100: #EEF2F2;
    --gray-200: #D8E0E0;
    --gray-300: #B4C0C0;
    --gray-400: #8A9A9A;
    --gray-500: #627070;
    --gray-600: #4A5656;
    --gray-700: #354040;
    --gray-800: #1F2B2B;
    --gray-900: #131C1C;

    /* Typography */
    --ff-serif: 'DM Serif Display', Georgia, serif;
    --ff-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Sizing */
    --header-h: 4.5rem;
    --max-w: 1200px;
    --radius: 14px;
    --radius-sm: 8px;
    --radius-full: 9999px;

    /* Shadows */
    --sh-sm: 0 2px 8px rgba(9,46,46,0.06);
    --sh-md: 0 8px 24px rgba(9,46,46,0.08);
    --sh-lg: 0 16px 48px rgba(9,46,46,0.12);

    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --dur: 300ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    font-family: var(--ff-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; font-size: inherit; }

/* ---------- Utility ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

.tag {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal-400);
    margin-bottom: 0.75rem;
}
.tag--light { color: var(--teal-200); }

.section-title {
    font-family: var(--ff-serif);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--teal-900);
    margin-bottom: 1rem;
}
.section-title em {
    font-style: italic;
    color: var(--teal-600);
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--teal-200); }


/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--ff-sans);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
    cursor: pointer;
}

.btn--accent {
    background: var(--teal-400);
    color: var(--white);
}
.btn--accent:hover {
    background: var(--teal-500);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43,181,168,0.3);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--outline-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn--teal-outline {
    background: transparent;
    color: var(--teal-700);
    border: 1.5px solid var(--teal-200);
}
.btn--teal-outline:hover {
    border-color: var(--teal-400);
    background: var(--teal-50);
}

.btn--full { width: 100%; }


/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section--gray { background: var(--gray-50); }
.section--teal { background: var(--teal-800); }

.section__head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3rem;
}

.section__desc {
    color: var(--gray-400);
    font-size: 1.05rem;
    line-height: 1.8;
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    transition: background var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
}

.header--scrolled {
    background: rgba(9,46,46,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav__logo-img {
    height: 36px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter var(--dur) var(--ease);
}

.header--scrolled .nav__logo-img {
    filter: brightness(0) invert(1);
}

/* Hamburger */
.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 0.5rem;
}
.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--dur) var(--ease);
    transform-origin: center;
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--teal-900);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 1.5rem;
    transition: right 0.45s var(--ease);
    z-index: 1000;
    overflow-y: auto;
}
.nav__menu.open { right: 0; }

.nav__link {
    display: block;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--teal-200);
    transition: color 0.15s;
}
.nav__link:hover,
.nav__link.active { color: var(--white); }

.nav__link--cta {
    display: inline-flex;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: var(--teal-400);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    justify-content: center;
}
.nav__link--cta:hover { background: var(--teal-500); }

.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(9,46,46,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur) var(--ease);
}
.nav__overlay.visible { opacity: 1; pointer-events: auto; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(160deg, var(--teal-900) 0%, var(--teal-800) 50%, var(--teal-700) 100%);
    padding-top: var(--header-h);
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3.5rem;
    padding-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.hero__content {
    opacity: 0;
    transform: translateY(24px);
    animation: heroIn 0.7s var(--ease) 0.2s forwards;
}

.hero__title {
    font-family: var(--ff-serif);
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.hero__title em {
    font-style: italic;
    color: var(--teal-300);
}

.hero__desc {
    font-size: 1.05rem;
    color: var(--teal-200);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 1.75rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

/* Social proof */
.hero__proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.hero__avatars {
    display: flex;
}

.hero__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--teal-600);
    color: var(--teal-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    border: 2px solid var(--teal-800);
    margin-left: -8px;
}
.hero__avatar:first-child { margin-left: 0; }

.hero__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__stars {
    display: flex;
    gap: 2px;
    color: var(--accent-400);
}

.hero__rating-text {
    font-size: 0.8rem;
    color: var(--teal-300);
}

/* Hero photo */
.hero__visual {
    display: none;
    opacity: 0;
    transform: translateY(24px);
    animation: heroIn 0.7s var(--ease) 0.4s forwards;
}

.hero__photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    background: var(--teal-700);
}

.hero__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Curve divider */
.hero__curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    color: var(--white);
    line-height: 0;
    z-index: 3;
}
.hero__curve svg {
    width: 100%;
    height: 50px;
}

@keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   STATS
   ============================================================ */
.stats {
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats__number {
    display: block;
    font-family: var(--ff-serif);
    font-size: 2.2rem;
    color: var(--teal-700);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.stats__number small {
    font-size: 0.6em;
}

.stats__label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about__img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sh-md);
}

.about__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about__name {
    font-family: var(--ff-serif);
    font-size: 1.1rem;
    color: var(--teal-600);
    margin-bottom: 1rem;
}

.about__bio {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.about__bio a {
    color: var(--teal-500);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}
.about__bio a:hover {
    color: var(--teal-700);
}

.about__certs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.cert {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal-700);
}


/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.svc-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all var(--dur) var(--ease);
    box-shadow: var(--sh-sm);
    border: 1px solid var(--gray-100);
}

.svc-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
    border-color: var(--teal-200);
}

.svc-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.svc-card__title {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--teal-900);
    margin-bottom: 0.5rem;
}

.svc-card__text {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.svc-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal-500);
    transition: color 0.2s;
}
.svc-card__link:hover { color: var(--teal-700); }

/* Services List (simple) */
.services__list {
    max-width: 680px;
    margin: 0 auto 2rem;
}
.services__items {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
.services__items li {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--teal-800);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    position: relative;
    padding-left: 2.5rem;
}
.services__items li::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    color: var(--teal-400);
    font-weight: 700;
}

/* Two-column pricing */
.pricing__grid--two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .pricing__grid--two { grid-template-columns: repeat(2, 1fr); }
    .services__items { grid-template-columns: repeat(2, 1fr); }
}

/* Methods / Techniques */
.services__methods {
    margin-top: 3rem;
    text-align: center;
}

.services__methods-title {
    font-family: var(--ff-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--teal-900);
    margin-bottom: 1.5rem;
}

.services__methods-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.method-tag {
    background: var(--white);
    border: 1px solid var(--teal-200);
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    transition: all var(--dur) var(--ease);
    box-shadow: var(--sh-sm);
}

.method-tag:hover {
    background: var(--teal-500);
    border-color: var(--teal-500);
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
}

.method-tag__name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--teal-700);
    transition: color var(--dur) var(--ease);
}

.method-tag:hover .method-tag__name {
    color: var(--white);
}


/* ============================================================
   PROCESS
   ============================================================ */
.process__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.process__desc {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.8;
}

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

.process__step {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 1.75rem;
    border-left: 3px solid var(--teal-400);
    transition: all var(--dur) var(--ease);
}

.process__step:hover {
    background: var(--teal-50);
    border-left-color: var(--teal-600);
}

.process__step:nth-child(even) {
    border-left-color: var(--accent-400);
}
.process__step:nth-child(even):hover {
    border-left-color: var(--accent-500);
}

.process__num {
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    color: var(--teal-300);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.process__step-title {
    font-family: var(--ff-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--teal-900);
    margin-bottom: 0.4rem;
}

.process__step-text {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.75;
}


/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.review-card {
    background: var(--teal-700);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid rgba(255,255,255,0.06);
    margin: 0;
    transition: all var(--dur) var(--ease);
}
.review-card:hover {
    background: var(--teal-600);
    transform: translateY(-3px);
}

.review-card__stars {
    display: flex;
    gap: 2px;
    color: var(--accent-400);
    margin-bottom: 1rem;
}

.review-card__text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--teal-100);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal-500);
    color: var(--teal-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-card__author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.review-card__author span {
    font-size: 0.75rem;
    color: var(--teal-300);
}


/* ============================================================
   PRICING
   ============================================================ */
.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all var(--dur) var(--ease);
}

.price-card:hover {
    border-color: var(--teal-300);
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
}

.price-card--featured {
    background: var(--teal-800);
    border-color: var(--teal-800);
    color: var(--teal-100);
}
.price-card--featured:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
}

.price-card__badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.2rem 0.85rem;
    background: var(--accent-400);
    color: var(--teal-900);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-card__title {
    font-family: var(--ff-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--teal-900);
    margin-bottom: 0.15rem;
}
.price-card--featured .price-card__title { color: var(--white); }

.price-card__sub {
    font-size: 0.8rem;
    color: var(--gray-400);
}
.price-card--featured .price-card__sub { color: var(--teal-300); }

.price-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 1.25rem 0 0.4rem;
}

.price-card__amount {
    font-family: var(--ff-serif);
    font-size: 2.75rem;
    color: var(--teal-700);
    line-height: 1;
}
.price-card--featured .price-card__amount { color: var(--white); }

.price-card__curr {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-400);
}
.price-card--featured .price-card__curr { color: var(--teal-300); }

.price-card__dur {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}
.price-card--featured .price-card__dur {
    color: var(--teal-400);
    border-bottom-color: rgba(255,255,255,0.1);
}

.price-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.price-card__list li {
    font-size: 0.875rem;
    color: var(--gray-600);
    padding-left: 1.5rem;
    position: relative;
}
.price-card--featured .price-card__list li { color: var(--teal-200); }

.price-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231B8A8A' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.price-card--featured .price-card__list li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235CD4C4' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* GDPR Checkbox */
.form__group--checkbox {
    margin-bottom: 1rem;
}
.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}
.form__checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--teal-500);
    min-width: 16px;
    min-height: 16px;
}
.form__checkbox a {
    color: var(--teal-400);
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--teal-900);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-banner__content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-banner__content p {
    flex: 1;
    margin: 0;
    font-size: 0.85rem;
    color: var(--teal-200);
    line-height: 1.5;
}
.cookie-banner__content a {
    color: var(--teal-300);
    text-decoration: underline;
}
.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Contact Info — flex column for map stretch */
.contact__info {
    display: flex;
    flex-direction: column;
}

/* Contact Map */
.contact__map {
    margin-top: 2.5rem;
    flex: 1;
    min-height: 220px;
}
.contact__map iframe {
    width: 100%;
    height: 100%;
    min-height: 220px;
}

/* Pricing Table */
.pricing__table-wrap {
    overflow-x: auto;
    margin: 0 auto 1rem;
    max-width: 900px;
}
.pricing__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.pricing__table thead {
    background: var(--teal-700);
    color: var(--white);
}
.pricing__table th {
    padding: 0.85rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pricing__table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-400);
}
.pricing__table tbody tr:hover {
    background: var(--teal-50);
}
.pricing__table td:nth-child(2),
.pricing__table th:nth-child(2) {
    text-align: center;
    white-space: nowrap;
}
.pricing__table td:nth-child(3),
.pricing__table th:nth-child(3) {
    text-align: right;
    white-space: nowrap;
}
.pricing__table td:nth-child(4) {
    font-size: 0.85rem;
    color: var(--gray-300);
    font-style: italic;
}

.pricing__note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-300);
    margin-top: 1.5rem;
    max-width: 500px;
    margin-inline: auto;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact__desc {
    font-size: 1rem;
    color: var(--teal-200);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact__items {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact__row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--teal-200);
    transition: color 0.15s;
}
.contact__row svg { color: var(--teal-400); flex-shrink: 0; }
a.contact__row:hover { color: var(--white); }

/* Form */
.contact__form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
}

.contact__form-title {
    font-family: var(--ff-serif);
    font-size: 1.3rem;
    color: var(--teal-800);
    margin-bottom: 1.25rem;
}

.form__group { margin-bottom: 1rem; }

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

.form__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
}

.form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-700);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form__input::placeholder { color: var(--gray-300); }
.form__input:focus {
    border-color: var(--teal-400);
    box-shadow: 0 0 0 3px rgba(27,138,138,0.1);
}

.form__textarea { resize: vertical; min-height: 120px; }

.form__note {
    font-size: 0.75rem;
    color: var(--gray-300);
    text-align: center;
    margin-top: 0.75rem;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--teal-900);
    color: var(--teal-300);
    padding: 4rem 0 1.5rem;
}

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

.footer .nav__logo--footer {
    margin-bottom: 1rem;
}

.footer__desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 280px;
}

.footer__col h4 {
    font-family: var(--ff-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-200);
    margin-bottom: 0.75rem;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer__col li,
.footer__col a {
    font-size: 0.85rem;
    color: var(--gray-500);
    transition: color 0.15s;
}
.footer__col a:hover { color: var(--teal-300); }

.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.footer__bottom p {
    font-size: 0.75rem;
    color: var(--gray-500);
}
.footer__credit {
    margin-top: 0.4rem;
    font-size: 0.7rem !important;
    opacity: 0.6;
}
.footer__credit a {
    color: var(--teal-300);
    text-decoration: none;
}
.footer__credit a:hover {
    text-decoration: underline;
}


/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-700);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--sh-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--dur) var(--ease);
    z-index: 900;
}
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--teal-600); transform: translateY(-3px); }


/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
[data-animate].animated { opacity: 1; transform: translateY(0); }
[data-animate]:nth-child(2) { transition-delay: 80ms; }
[data-animate]:nth-child(3) { transition-delay: 160ms; }
[data-animate]:nth-child(4) { transition-delay: 240ms; }
[data-animate]:nth-child(5) { transition-delay: 320ms; }
[data-animate]:nth-child(6) { transition-delay: 400ms; }


/* ============================================================
   RESPONSIVE — Tablet (>= 640px)
   ============================================================ */
@media (min-width: 640px) {
    .container { padding: 0 2rem; }

    .hero__title { font-size: 3.2rem; }

    .stats__grid { grid-template-columns: repeat(4, 1fr); }

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

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

    .reviews__grid { grid-template-columns: repeat(2, 1fr); }
    .reviews__grid .review-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        justify-self: center;
    }

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

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

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


/* ============================================================
   RESPONSIVE — Desktop (>= 1024px)
   ============================================================ */
@media (min-width: 1024px) {
    .section-title { font-size: 2.75rem; }

    /* Nav desktop */
    .nav__toggle { display: none; }
    .nav__menu {
        position: static;
        width: auto; height: auto;
        background: transparent;
        flex-direction: row;
        align-items: center;
        gap: 0.25rem;
        padding: 0;
        overflow: visible;
    }
    .nav__link {
        padding: 0.4rem 0.75rem;
        border-radius: var(--radius-sm);
        font-size: 0.85rem;
    }
    .nav__link:hover,
    .nav__link.active {
        background: rgba(255,255,255,0.08);
        color: var(--white);
    }
    .nav__link--cta { margin-top: 0; padding: 0.5rem 1rem; }

    /* Hero */
    .hero__container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        min-height: calc(100vh - var(--header-h));
        align-items: center;
    }
    .hero__visual { display: block; }
    .hero__title { font-size: 3.5rem; }

    /* About */
    .about__layout { grid-template-columns: 1fr 1.15fr; }

    /* Services */
    .services__grid { grid-template-columns: repeat(3, 1fr); }

    /* Process */
    .process__top {
        grid-template-columns: 1.3fr 1fr;
        gap: 3rem;
        align-items: end;
    }
    .process__steps { grid-template-columns: repeat(4, 1fr); }
    .process__step { border-left: none; border-top: 3px solid var(--teal-400); }
    .process__step:hover { border-top-color: var(--teal-600); }
    .process__step:nth-child(even) { border-top-color: var(--accent-400); }
    .process__step:nth-child(even):hover { border-top-color: var(--accent-500); }

    /* Reviews */
    .reviews__grid { grid-template-columns: repeat(3, 1fr); }
    .reviews__grid .review-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    /* Contact */
    .contact__layout { grid-template-columns: 1fr 1.2fr; }

    /* Footer */
    .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}


/* ============================================================
   RESPONSIVE — Large (>= 1280px)
   ============================================================ */
@media (min-width: 1280px) {
    :root { --max-w: 1260px; }
    .hero__title { font-size: 4rem; }
}


/* ============================================================
   ORDINACE / GALLERY
   ============================================================ */
.ordinace__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .ordinace__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ordinace__item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sh-md);
}

.ordinace__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ordinace__item:hover .ordinace__img {
    transform: scale(1.03);
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    [data-animate] { opacity: 1; transform: none; }
    .hero__content, .hero__visual { opacity: 1; transform: none; animation: none; }
}
