:root {
    --lp-blue-50: #f0f9ff;
    --lp-blue-100: #ddf1fd;
    --lp-blue-300: #65c6f4;
    --lp-blue-500: #1899db;
    --lp-blue-700: #0670ad;
    --lp-blue-900: #0a4d81;
    --lp-teal: #46b8a8;
    --lp-teal-50: #edf8f6;
    --lp-teal-100: #d2ede9;
    --lp-teal-700: #318176;
    --lp-ink: #12304d;
    --lp-ink-soft: #456e92;
    --lp-white: #ffffff;
    --lp-space-1: 0.5rem;
    --lp-space-2: 1rem;
    --lp-space-3: 1.5rem;
    --lp-space-4: 2rem;
    --lp-space-5: 3rem;
    --lp-space-6: 4.5rem;
    --lp-space-7: 6.5rem;
    --lp-container: 1180px;
    --lp-radius-s: 12px;
    --lp-radius-m: 18px;
    --lp-radius-l: 26px;
    --lp-shadow-sm: 0 2px 12px rgba(10, 77, 129, 0.07);
    --lp-shadow-md: 0 12px 32px rgba(10, 77, 129, 0.11);
    --lp-shadow-lg: 0 28px 64px -18px rgba(10, 77, 129, 0.24);
}

.lp-home {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--lp-ink);
    background: var(--lp-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.lp-home h1,
.lp-home h2,
.lp-home h3,
.lp-home p,
.lp-home figure {
    margin: 0;
}

.lp-home ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-home img,
.lp-home svg {
    display: block;
    max-width: 100%;
}

.lp-home a {
    color: inherit;
    text-decoration: none;
}

.lp-home button,
.lp-home input,
.lp-home textarea {
    font-family: inherit;
}

.lp-home :focus-visible {
    outline: 3px solid var(--lp-blue-700);
    outline-offset: 3px;
    border-radius: 4px;
}

.lp-container {
    width: 100%;
    max-width: var(--lp-container);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    padding: 0.45em 0.95em;
    border-radius: 999px;
    background: var(--lp-blue-100);
    color: var(--lp-blue-900);
    font-size: 0.82rem;
    font-weight: 700;
}

.lp-pill-ghost {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.lp-hero-banner .lp-pill-ghost {
    margin-bottom: 2rem;
}

.lp-section-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.85rem, 1.4rem + 1.5vw, 2.45rem);
    line-height: 1.18;
    color: var(--lp-ink);
    max-width: 24ch;
}

.lp-section-lead {
    margin-top: var(--lp-space-2);
    font-size: 1.03rem;
    color: var(--lp-ink-soft);
}

.lp-icon-circle {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.lp-icon-circle-lg {
    width: 80px;
    height: 80px;
    margin-bottom: var(--lp-space-4);
}

.lp-icon-circle-lg .lp-icon {
    width: 40px;
    height: 40px;
}

.lp-icon-circle-md {
    width: 56px;
    height: 56px;
}

.lp-icon-circle-md .lp-icon {
    width: 28px;
    height: 28px;
}

.lp-icon-circle-blue {
    background: var(--lp-blue-700);
}

.lp-icon-circle-pale {
    background: var(--lp-blue-100);
}

.lp-icon-circle-teal {
    background: var(--lp-teal);
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    padding: 0.85em 1.6em;
    border-radius: var(--lp-radius-m);
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.96rem;
    border: 1.5px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.lp-btn:active {
    transform: translateY(1px);
}

.lp-btn-primary {
    background: var(--lp-white);
    color: var(--lp-blue-900);
    box-shadow: var(--lp-shadow-md);
}

.lp-btn-primary:hover {
    background: var(--lp-blue-50);
}

.lp-btn-solid {
    background: var(--lp-blue-700);
    color: #fff;
    box-shadow: var(--lp-shadow-md);
}

.lp-btn-solid:hover {
    background: var(--lp-blue-900);
}

.lp-btn-teal {
    background: var(--lp-white);
    border-color: var(--lp-teal);
    box-shadow: var(--lp-shadow-md);
}

.lp-btn-teal:hover {
    background: var(--lp-teal-50);
    border-color: var(--lp-teal-700);
}

.lp-btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.lp-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
}

.lp-btn-small {
    padding: 0.6em 1.2em;
    font-size: 0.88rem;
}

.lp-btn .lp-icon {
    width: 18px;
    height: 18px;
}

.lp-top-bar {
    background: var(--lp-blue-900);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
}

.lp-top-bar .lp-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 0.5rem;
    gap: var(--lp-space-3);
    flex-wrap: wrap;
}

.lp-top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.45em;
}

.lp-top-bar-item .lp-icon {
    width: 18px;
    height: 18px;
    opacity: 0.85;
    flex-shrink: 0;
}

.lp-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--lp-blue-100);
}

.lp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--lp-space-2);
    gap: var(--lp-space-3);
}

.lp-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6em;
}

.lp-nav-brand-logo {
    height: 36px;
    width: auto;
    display: block;
}

.lp-nav-brand-tag {
    font-size: 0.72rem;
    color: var(--lp-ink-soft);
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: var(--lp-space-4);
}

.lp-nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lp-ink-soft);
}

.lp-nav-link:hover {
    color: var(--lp-ink);
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: var(--lp-space-2);
}

.lp-nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.lp-nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--lp-ink);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.lp-nav-open .lp-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lp-nav-open .lp-nav-toggle span:nth-child(2) {
    opacity: 0;
}

.lp-nav-open .lp-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.lp-hero-banner {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.44) 55%, rgba(0, 0, 0, 0.56) 100%),
        url('https://images.unsplash.com/photo-1770096679844-57ca92c2b64b?auto=format&fit=crop&w=2400&q=80') center 30% / cover no-repeat;
    padding-top: clamp(3rem, 5vw, 5rem);
    padding-bottom: 6.5rem;
    text-align: center;
}

.lp-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.lp-hero-shape-1 {
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.07);
    top: -140px;
    left: -100px;
}

.lp-hero-shape-2 {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.09);
    bottom: -120px;
    right: 6%;
}

.lp-hero-shape-3 {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.06);
    top: 30%;
    right: -60px;
}

.lp-hero-banner .lp-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-hero-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem);
    line-height: 1.12;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: none;
    margin-inline: auto;
}

.lp-hero-lead {
    margin-top: var(--lp-space-3);
    font-size: 1.12rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.86);
    width: 100%;
    max-width: none;
    margin-inline: auto;
}

.lp-hero-actions {
    margin-top: var(--lp-space-4);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--lp-space-2);
}

.lp-stats-float {
    position: relative;
    margin-top: -56px;
    background: var(--lp-white);
    border-radius: var(--lp-radius-l);
    box-shadow: var(--lp-shadow-lg);
    padding: var(--lp-space-4);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--lp-space-3);
    z-index: 2;
}

.lp-stat {
    display: flex;
    align-items: center;
    gap: var(--lp-space-2);
    text-align: left;
}

.lp-stat-value {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--lp-blue-900);
    line-height: 1.1;
}

.lp-stat-label {
    font-size: 0.85rem;
    color: var(--lp-ink-soft);
    margin-top: 2px;
}

.lp-section {
    padding-block: var(--lp-space-7);
}

.lp-section-alt {
    background: var(--lp-blue-50);
}

.lp-about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--lp-space-5);
    align-items: start;
    margin-top: var(--lp-space-4);
}

.lp-photo-card {
    width: min(100%, 360px);
    aspect-ratio: 1;
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--lp-white);
    box-shadow: var(--lp-shadow-lg);
    background: var(--lp-blue-100);
}

.lp-photo-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 14%;
}

.lp-about-bio p + p {
    margin-top: var(--lp-space-2);
}

.lp-about-bio p {
    color: var(--lp-ink-soft);
    font-size: 1.04rem;
}

.lp-about-bio strong {
    color: var(--lp-ink);
}

.lp-about-pills {
    margin-top: var(--lp-space-3);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6em;
}

.lp-services-grid {
    margin-top: var(--lp-space-4);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--lp-space-4);
}

.lp-tile {
    border-radius: var(--lp-radius-l);
    padding: var(--lp-space-4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-tile-pale {
    background: var(--lp-white);
    box-shadow: var(--lp-shadow-sm);
}

.lp-tile-blue {
    background: var(--lp-blue-50);
    box-shadow: var(--lp-shadow-sm);
}

.lp-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-md);
}

.lp-tile:hover .lp-icon-circle {
    transform: scale(1.06);
}

.lp-tile-title {
    margin-top: 0;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.18rem;
}

.lp-tile-text {
    margin-top: 0.2em;
    font-size: 0.97rem;
    color: var(--lp-ink-soft);
}

.lp-clinic-grid {
    margin-top: var(--lp-space-4);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--lp-space-4);
    align-items: stretch;
}

.lp-info-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius-l);
    box-shadow: var(--lp-shadow-md);
    padding: var(--lp-space-4);
    display: flex;
    flex-direction: column;
    gap: var(--lp-space-3);
}

.lp-info-row {
    display: flex;
    gap: var(--lp-space-3);
    align-items: center;
}

.lp-info-row-title {
    font-weight: 700;
    font-size: 0.97rem;
}

.lp-info-row-text {
    color: var(--lp-ink-soft);
    font-size: 0.94rem;
    margin-top: 2px;
}

.lp-map-card {
    border-radius: var(--lp-radius-l);
    overflow: hidden;
    box-shadow: var(--lp-shadow-md);
    min-height: 320px;
    background: var(--lp-white);
}

.lp-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.lp-contact-grid {
    margin-top: var(--lp-space-4);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--lp-space-5);
    align-items: start;
}

.lp-contact-cta-card {
    background: linear-gradient(150deg, var(--lp-teal) 0%, var(--lp-blue-900) 100%);
    border-radius: var(--lp-radius-l);
    box-shadow: var(--lp-shadow-lg);
    padding: var(--lp-space-4);
    color: #fff;
}

.lp-contact-cta-card .lp-section-title {
    color: #fff;
    font-size: 1.5rem;
}

.lp-contact-cta-card p {
    margin-top: var(--lp-space-2);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.97rem;
}

.lp-contact-cta-card .lp-btn {
    margin-top: var(--lp-space-3);
}

.lp-form-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius-l);
    box-shadow: var(--lp-shadow-md);
    padding: var(--lp-space-4);
}

.lp-field {
    margin-bottom: var(--lp-space-3);
}

.lp-field-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5em;
}

.lp-field-input,
.lp-field-textarea {
    width: 100%;
    padding: 0.85em 1em;
    border-radius: var(--lp-radius-s);
    border: 1.5px solid var(--lp-blue-100);
    background: var(--lp-blue-50);
    color: var(--lp-ink);
    transition: border-color 0.15s ease, background 0.15s ease;
}

.lp-field-input:focus,
.lp-field-textarea:focus {
    outline: 0;
    border-color: var(--lp-blue-500);
    background: var(--lp-white);
}

.lp-field-textarea {
    min-height: 120px;
    resize: vertical;
}

.lp-field-checkbox {
    display: flex;
    gap: 0.7em;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.lp-field-checkbox input {
    margin-top: 0.3em;
    width: 18px;
    height: 18px;
    accent-color: var(--lp-teal);
    flex-shrink: 0;
}

.lp-field-checkbox label {
    font-size: 0.86rem;
    color: var(--lp-ink-soft);
}

.lp-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lp-form-notice {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-block-end: 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

.lp-form-notice-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.lp-form-notice-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.lp-form-notice-warning {
    background: #fef9c3;
    color: #854d0e;
    border: 1px solid #fef08a;
}

.lp-form-sent-hint {
    color: var(--lp-ink-soft);
    font-size: 0.9375rem;
    margin-block-start: 0.5rem;
    text-align: center;
}

.lp-site-footer {
    background: var(--lp-blue-900);
    color: rgba(255, 255, 255, 0.82);
    padding-block: var(--lp-space-5);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--lp-space-4);
    text-align: center;
}

.lp-footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 640px) {
    .lp-footer-grid {
        grid-template-columns: 1fr;
    }
}

.lp-footer-brand {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.lp-footer-brand-sub {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
}

.lp-footer-col {
    font-size: 0.92rem;
    line-height: 1.8;
}

.lp-footer-bottom {
    margin-top: var(--lp-space-4);
    padding-top: var(--lp-space-3);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.58);
    text-align: center;
}

.lp-footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lp-footer-link:hover {
    color: #fff;
}

.lp-fab {
    position: fixed;
    right: var(--lp-space-3);
    bottom: var(--lp-space-3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--lp-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--lp-shadow-lg);
    z-index: 60;
    transition: transform 0.15s ease, background 0.15s ease;
}

.lp-fab:hover {
    transform: scale(1.07);
    background: var(--lp-teal-700);
}

.lp-fab .lp-icon {
    width: 26px;
    height: 26px;
}

.lp-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp-reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

#o-mnie,
#uslugi,
#gabinet,
#kontakt {
    scroll-margin-top: 90px;
}

@media (prefers-reduced-motion: reduce) {
    .lp-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 900px) {
    .lp-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--lp-blue-100);
        flex-direction: column;
        align-items: center;
        padding: var(--lp-space-3) clamp(1.25rem, 4vw, 2.5rem) calc(var(--lp-space-4) + 0.5rem);
        gap: calc(var(--lp-space-2) + 0.2rem);
    }

    .lp-nav-links > li {
        width: min(100%, 340px);
    }

    .lp-nav-links .lp-nav-link {
        display: block;
        width: 100%;
        padding: 0.6rem 1rem;
        border-radius: 10px;
        text-align: center;
        transition: background-color 0.18s ease, color 0.18s ease;
    }

    .lp-nav-links .lp-nav-link:hover,
    .lp-nav-links .lp-nav-link:focus-visible,
    .lp-nav-links .lp-nav-link:active {
        background-color: var(--lp-blue-50);
        color: var(--lp-blue-700);
    }

    .lp-nav-open .lp-nav-links {
        display: flex;
    }

    .lp-nav-toggle {
        display: flex;
    }

    .lp-stats-float {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }

    .lp-about-grid,
    .lp-clinic-grid,
    .lp-contact-grid {
        grid-template-columns: 1fr;
    }

    .lp-photo-card {
        max-width: 280px;
        aspect-ratio: 1;
        margin-inline: auto;
        border-width: 6px;
    }

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

@media (max-width: 700px) {
    .lp-top-bar {
        display: none;
    }
}

@media (max-width: 560px) {
    .lp-services-grid {
        grid-template-columns: 1fr;
    }

    .lp-section {
        padding-block: var(--lp-space-6);
    }

    .lp-icon-circle-lg {
        width: 68px;
        height: 68px;
    }

    .lp-icon-circle-lg .lp-icon {
        width: 34px;
        height: 34px;
    }
}
