/* ===== PANDA CLINIC — style.css ===== */

/* --- CSS Variables --- */
:root {
    --bamboo:      #94B638;
    --bamboo-dark: #7fa030;
    --dark-green:  #577948;
    --anthracite:  #3C3C3B;
    --light-bg:    #f5f7f2;
    --tint:        #e8ede0;
    --border:      #e0e0d8;
    --white:       #ffffff;
    --shadow:      rgba(60, 60, 59, 0.08);
    --radius:      12px;
    --transition:  0.3s ease;
    --max-width:   1200px;
    --header-h:    72px;
}

/* --- Fonts --- */
@font-face {
    font-family: 'Museo Sans';
    src: url('../fonts/MuseoSans-300.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Museo Sans';
    src: url('../fonts/MuseoSans_700.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    font-family: 'Museo Sans', 'Segoe UI', system-ui, sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    color: var(--anthracite);
    background: var(--light-bg);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Utility --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 80px 0; }
.section--alt { background: var(--tint); }
.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 16px;
}
.section-subtitle {
    text-align: center;
    color: var(--anthracite);
    opacity: 0.7;
    max-width: 660px;
    margin: 0 auto 48px;
    font-size: 1.2rem;
}

/* --- Fade-in animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Button --- */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: background var(--transition), transform var(--transition);
    border: none;
}
.btn--primary {
    background: var(--bamboo);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--bamboo-dark);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    color: var(--bamboo);
    border: 2px solid var(--bamboo);
}
.btn--outline:hover {
    background: var(--bamboo);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--small {
    padding: 12px 28px;
    font-size: 1rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    background: var(--white);
    z-index: 1000;
    transition: box-shadow var(--transition);
}
.header.scrolled {
    box-shadow: 0 2px 20px var(--shadow);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.header__logo img {
    height: 36px;
    width: auto;
}
.header__nav { display: flex; align-items: center; gap: 8px; }
.header__nav a {
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 300;
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
}
.header__nav a:hover {
    background: var(--tint);
    color: var(--dark-green);
}
.header__cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--anthracite);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    margin-top: var(--header-h);
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--dark-green) 0%, #6a8f4e 50%, var(--bamboo) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero__claim {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero__sub {
    font-size: 1.45rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}
.hero .btn--primary {
    background: var(--white);
    color: var(--dark-green);
}
.hero .btn--primary:hover {
    background: var(--tint);
}

/* ============================================
   JAK TO FUNGUJE (Steps)
   ============================================ */
.steps { display: grid; grid-template-columns: 1fr; gap: 32px; }
.step {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow);
}
.step__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--tint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.step__num {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: var(--bamboo);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
}
.step__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
}
.step__text {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.7;
}

/* ============================================
   DR. LEO
   ============================================ */
.dr-leo__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.dr-leo__avatar {
    text-align: center;
}
.dr-leo__avatar img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bamboo);
    margin: 0 auto;
}
.dr-leo__content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 16px;
}
.dr-leo__content p {
    margin-bottom: 16px;
    font-size: 1.15rem;
    line-height: 1.85;
}
.dr-leo__disclaimer {
    background: var(--tint);
    border-left: 4px solid var(--bamboo);
    padding: 16px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 1.05rem;
    opacity: 0.85;
    margin-top: 24px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing { display: grid; grid-template-columns: 1fr; gap: 24px; }
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow);
}
.pricing-card--featured {
    border-color: var(--bamboo);
    box-shadow: 0 4px 20px rgba(148, 182, 56, 0.15);
}
.pricing-card--featured::before {
    content: 'Oblíbené';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bamboo);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}
.pricing-card__name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
}
.pricing-card__price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 4px;
}
.pricing-card__period {
    font-size: 1.05rem;
    opacity: 0.6;
    margin-bottom: 24px;
}
.pricing-card__features {
    text-align: left;
    margin-bottom: 32px;
}
.pricing-card__features li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: var(--bamboo);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ============================================
   O NÁS (About)
   ============================================ */
.about__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.about__content p {
    margin-bottom: 20px;
    font-size: 1.3rem;
    line-height: 1.9;
}
.values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}
.value {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
}
.value__icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.value__title {
    font-weight: 700;
    color: var(--dark-green);
    font-size: 1.25rem;
    margin-bottom: 6px;
}
.value__text {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark-green);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 300;
    background: var(--white);
    transition: border-color var(--transition);
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--bamboo);
}
.contact-form textarea { min-height: 120px; }
.contact-info { line-height: 2; }
.contact-info a {
    color: var(--bamboo);
    font-weight: 700;
}
.contact-info a:hover { text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--anthracite);
    color: var(--white);
    padding: 48px 0 32px;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.footer__logo img {
    height: 28px;
    /* Invert to white for dark background */
    filter: brightness(0) invert(1);
}
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__links a {
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.footer__links a:hover { opacity: 1; }
.footer__copy {
    font-size: 0.9rem;
    opacity: 0.5;
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
    margin-top: var(--header-h);
    padding: 64px 0 56px;
    background: var(--tint);
    text-align: center;
}
.page-hero__title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 12px;
}
.page-hero__sub {
    font-size: 1.4rem;
    opacity: 0.7;
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ============================================
   FEATURE GRID (karta.html — co karta obsahuje)
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.feature-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform var(--transition), box-shadow var(--transition);
}
.feature-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow);
}
.feature-block__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--tint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-block__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 6px;
}
.feature-block__text {
    font-size: 1.15rem;
    opacity: 0.75;
    line-height: 1.75;
}

/* ============================================
   CARD MOCKUP (karta.html — vizuální ukázka)
   ============================================ */
.card-mockup {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 24px var(--shadow);
}
.card-mockup__header {
    background: var(--dark-green);
    color: var(--white);
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-mockup__patient-name {
    font-size: 1.3rem;
    font-weight: 700;
}
.card-mockup__patient-meta {
    font-size: 0.95rem;
    opacity: 0.8;
}
.card-mockup__status {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(148, 182, 56, 0.25);
    color: var(--bamboo);
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    background: var(--light-bg);
}
.tabs__tab {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--anthracite);
    opacity: 0.5;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: opacity var(--transition), border-color var(--transition);
}
.tabs__tab:hover {
    opacity: 0.75;
}
.tab-panel {
    display: none;
}
.tab-panel--active {
    display: block;
}
.tabs__tab--active {
    opacity: 1;
    color: var(--dark-green);
    border-bottom-color: var(--bamboo);
}

/* Card mockup body */
.card-mockup__body {
    padding: 28px;
}
.card-mockup__section {
    margin-bottom: 24px;
}
.card-mockup__section:last-child {
    margin-bottom: 0;
}
.card-mockup__label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bamboo);
    margin-bottom: 8px;
}
.card-mockup__value {
    font-size: 1.15rem;
    line-height: 1.75;
}

/* Diagnosis tags */
.diagnosis-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 4px 6px 4px 0;
}
.diagnosis-tag--primary {
    background: rgba(87, 121, 72, 0.12);
    color: var(--dark-green);
    border: 1px solid rgba(87, 121, 72, 0.3);
}
.diagnosis-tag--secondary {
    background: rgba(148, 182, 56, 0.1);
    color: var(--bamboo-dark);
    border: 1px solid rgba(148, 182, 56, 0.25);
}

/* Therapy items */
.therapy-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 1.15rem;
}
.therapy-item__dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--bamboo);
}

/* Progress bar */
.progress-bar {
    height: 10px;
    background: var(--border);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 8px;
}
.progress-bar__fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.6s ease;
}
.progress-bar__fill--green {
    background: var(--bamboo);
}
.progress-bar__fill--yellow {
    background: #d4a647;
}
.progress-bar__meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-top: 6px;
    opacity: 0.6;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 28px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: var(--border);
}
.timeline__item {
    position: relative;
    padding-bottom: 20px;
}
.timeline__item:last-child {
    padding-bottom: 0;
}
.timeline__item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid var(--bamboo);
    background: var(--white);
}
.timeline__item--active::before {
    background: var(--bamboo);
}
.timeline__date {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-green);
}
.timeline__text {
    font-size: 1rem;
    opacity: 0.75;
}

/* ============================================
   ARTICLE GRID (poradna.html)
   ============================================ */
.article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
.article-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow);
}
.article-card__img {
    height: 180px;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.article-card__img--1 { background: linear-gradient(135deg, #577948 0%, #94B638 100%); }
.article-card__img--2 { background: linear-gradient(135deg, #6a8f4e 0%, #9cc44a 100%); }
.article-card__img--3 { background: linear-gradient(135deg, #94B638 0%, #d4a647 100%); }
.article-card__img--4 { background: linear-gradient(135deg, #577948 0%, #6a8f4e 100%); }
.article-card__img--5 { background: linear-gradient(135deg, #3C3C3B 0%, #577948 100%); }
.article-card__img--6 { background: linear-gradient(135deg, #7fa030 0%, #577948 100%); }
.article-card__tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-green);
}
.article-card__body {
    padding: 24px;
}
.article-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
    line-height: 1.4;
}
.article-card__excerpt {
    font-size: 1.15rem;
    opacity: 0.7;
    line-height: 1.75;
}

/* ============================================
   LEGAL CONTENT (gdpr.html)
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-green);
    margin: 48px 0 16px;
    padding-top: 24px;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--anthracite);
    margin: 32px 0 12px;
}
.legal-content p {
    margin-bottom: 16px;
    line-height: 1.85;
}
.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.legal-content .legal-note {
    background: var(--tint);
    border-left: 4px solid var(--bamboo);
    padding: 16px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
    font-size: 1.05rem;
}
.legal-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.legal-nav a {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-green);
    transition: background var(--transition), border-color var(--transition);
}
.legal-nav a:hover {
    background: var(--tint);
    border-color: var(--bamboo);
}

/* Security block (karta.html) */
.security-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--tint);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 8px;
}
.security-block__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.security-block__title {
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 4px;
}
.security-block__text {
    font-size: 1.15rem;
    opacity: 0.75;
    line-height: 1.75;
}

/* Article detail (expandable) */
.article-card { cursor: pointer; }
.article-card__detail {
    display: none;
    padding: 0 24px 24px;
    border-top: 1px solid var(--border);
}
.article-card__detail p {
    margin-bottom: 14px;
    line-height: 1.85;
    font-size: 1.1rem;
}
.article-card__detail h4 {
    font-weight: 700;
    color: var(--dark-green);
    font-size: 1.15rem;
    margin: 20px 0 8px;
}
.article-card__detail ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 14px;
}
.article-card__detail ul li {
    margin-bottom: 6px;
    line-height: 1.7;
    font-size: 1.1rem;
}
.article-card__detail .legal-note {
    background: var(--tint);
    border-left: 4px solid var(--bamboo);
    padding: 14px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 16px 0;
    font-size: 1.05rem;
}
.article-card--open .article-card__detail {
    display: block;
}
.article-card--open {
    grid-column: 1 / -1;
}
.article-card__toggle {
    display: block;
    text-align: center;
    padding: 10px 24px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bamboo);
}

/* CTA section */
.cta-section {
    text-align: center;
}
.cta-section p {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 24px;
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 8px 30px var(--shadow);
    z-index: 999;
    flex-direction: column;
    padding: 16px 24px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.1rem;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (min-width: 768px) {
    .steps { grid-template-columns: repeat(3, 1fr); }
    .pricing { grid-template-columns: repeat(3, 1fr); }
    .dr-leo__inner { grid-template-columns: 280px 1fr; }
    .contact__inner { grid-template-columns: 1fr 1fr; }
    .hero__claim { font-size: 3.6rem; }
    .section { padding: 100px 0; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .article-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero { padding: 80px 0 64px; }
    .page-hero__title { font-size: 3rem; }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero { padding: 120px 0 100px; }
    .hero__claim { font-size: 3.8rem; }
    .section-title { font-size: 2.8rem; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .article-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile */
@media (max-width: 767px) {
    :root { --header-h: 64px; }
    body { font-size: 1.05rem; }
    .header__nav { display: none; }
    .header__cta { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 64px 0 56px; }
    .hero__claim { font-size: 2.4rem; }
    .hero__sub { font-size: 1.2rem; }
    .section { padding: 56px 0; }
    .section-title { font-size: 2rem; }
    .values { grid-template-columns: 1fr; }
    .dr-leo__avatar img { width: 160px; height: 160px; }
    .pricing-card { padding: 32px 20px; }
    .page-hero__title { font-size: 2.2rem; }
    .tabs__tab { padding: 10px 14px; font-size: 0.9rem; }
    .card-mockup__header { flex-direction: column; gap: 8px; align-items: flex-start; }
    .legal-nav { flex-direction: column; }
    .feature-block { flex-direction: column; text-align: center; align-items: center; }
}
