:root {
    --lp-cream: #fdf6ee;
    --lp-cream-dark: #f6ead9;
    --lp-accent: #d98757;
    --lp-accent-dark: #b96a3d;
    --lp-brown: #3f2f24;
    --lp-brown-soft: #6b5747;
    --lp-white: #ffffff;
    --lp-white-soft: rgba(255, 255, 255, 0.15);
    --lp-white-border: rgba(255, 255, 255, 0.6);
    --lp-white-border-strong: rgba(255, 255, 255, 0.8);
    --lp-white-glow-1: rgba(255, 255, 255, 0.15);
    --lp-white-glow-2: rgba(255, 255, 255, 0.12);
    --lp-hero-start: #e8b382;
    --lp-hero-mid: #d98757;
    --lp-hero-end: #b96a3d;
    --lp-shadow-soft: rgba(63, 47, 36, 0.08);
    --lp-shadow-hover: rgba(63, 47, 36, 0.14);
    --lp-card-border: rgba(217, 135, 87, 0.15);
    --lp-cta-start: #3f2f24;
    --lp-cta-end: #6b5747;
    --lp-overlay: rgba(63, 47, 36, 0.55);
    --lp-modal-shadow: rgba(63, 47, 36, 0.3);
    --lp-header-bg: rgba(63, 47, 36, 0.75);
    --lp-header-bg-scrolled: rgba(63, 47, 36, 0.92);
    --lp-header-text: rgba(255, 255, 255, 0.85);
    --lp-header-border: rgba(255, 255, 255, 0.15);
    --lp-surface: var(--lp-white);
    --lp-text: var(--lp-brown);
    --lp-text-soft: var(--lp-brown-soft);
}

@media (prefers-color-scheme: dark) {
    :root {
        --lp-cream: #17110c;
        --lp-cream-dark: #1f1710;
        --lp-surface: #271d15;
        --lp-text: #f3e8db;
        --lp-text-soft: #c9b6a3;
        --lp-accent-dark: #e0935f;
        --lp-shadow-soft: rgba(0, 0, 0, 0.45);
        --lp-shadow-hover: rgba(0, 0, 0, 0.6);
        --lp-card-border: rgba(217, 135, 87, 0.25);
        --lp-overlay: rgba(0, 0, 0, 0.75);
        --lp-modal-shadow: rgba(0, 0, 0, 0.6);
    }
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    color-scheme: light dark;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    color: var(--lp-text);
    background: var(--lp-cream);
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: var(--lp-header-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--lp-header-border);
    transition: background 0.3s ease;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 15px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.site-logo-img {
    display: block;
    height: auto;
    width: 100px;
    border-radius: 10px;
    padding: 3px 10px;
    object-fit: contain;
}

.nav-toggle {
    display: none;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--lp-header-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--lp-header-text);
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 600;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--lp-white);
    border-color: var(--lp-accent);
}

.nav-link-price {
    color: var(--lp-accent);
    margin-left: 6px;
    padding-left: 22px;
    position: relative;
}

.nav-link-price::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--lp-header-border);
}

.nav-link-price:hover {
    color: var(--lp-white);
    border-color: var(--lp-accent);
}

.site-header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-header-book {
    background: var(--lp-accent);
    color: var(--lp-white);
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-header-book:hover {
    background: var(--lp-accent-dark);
}

/* Hero */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--lp-hero-start) 0%, var(--lp-hero-mid) 55%, var(--lp-hero-end) 100%);
    color: var(--lp-white);
    padding: 150px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, var(--lp-white-glow-1), transparent 40%),
    radial-gradient(circle at 80% 80%, var(--lp-white-glow-2), transparent 45%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Decorative paw-print trail: runs the length of the page and leads to the CTA button */
.page-paw-wrapper {
    position: relative;
}

.page-paw-trail {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.paw-print {
    position: absolute;
}

.paw-print.paw-light {
    fill: rgba(255, 255, 255, 0.32);
    filter: drop-shadow(0 2px 4px rgba(63, 47, 36, 0.12));
}

.paw-print.paw-dark {
    fill: rgba(63, 47, 36, 0.13);
}

/* Trail across hero + light sections, drifting toward center as it nears the CTA */
.page-paw-trail .p1 { top: 3%;  left: 62%; width: 26px; transform: rotate(18deg); }
.page-paw-trail .p2 { top: 9%;  left: 54%; width: 30px; transform: rotate(-14deg); }
.page-paw-trail .p3 { top: 17%; left: 82%; width: 28px; transform: rotate(24deg); }
.page-paw-trail .p4 { top: 26%; left: 20%; width: 32px; transform: rotate(-20deg); }
.page-paw-trail .p5 { top: 36%; left: 80%; width: 30px; transform: rotate(16deg); }
.page-paw-trail .p6 { top: 47%; left: 18%; width: 34px; transform: rotate(-18deg); }
.page-paw-trail .p7 { top: 58%; left: 78%; width: 32px; transform: rotate(20deg); }
.page-paw-trail .p8 { top: 69%; left: 52%; width: 34px; transform: rotate(-12deg); }

/* Local trail inside the CTA box, tucked behind the heading/button, pointing at "Записаться онлайн" */
.cta-box {
    position: relative;
}

.cta-paw-trail {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.cta-paw-trail .cta-p1 { top: 4%;  left: 40%; width: 30px; transform: rotate(-16deg); }
.cta-paw-trail .cta-p2 { top: 22%; left: 58%; width: 34px; transform: rotate(14deg); }
.cta-paw-trail .cta-p3 { top: 42%; left: 44%; width: 38px; transform: rotate(-10deg); }

@media (max-width: 992px) {
    .page-paw-trail { display: none; }
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: Georgia, 'Times New Roman', serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn,
.btn-tg {
    min-width: 200px;
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
}

.btn-primary {
    background-color: var(--lp-brown);
    color: var(--lp-white);
}

.btn-outline-lg {
    background-color: transparent;
    color: var(--lp-white);
    border: 2px solid var(--lp-white-border-strong) !important;
}

.btn-tg {
    background-color: var(--lp-white-soft);
    color: var(--lp-white);
    border: 2px solid var(--lp-white-border) !important;
}

.hero-buttons .btn svg {
    margin-right: 8px;
    vertical-align: middle;
}

/* Advantages strip */
.advantages-strip {
    background: var(--lp-cream-dark);
    padding: 35px 0;
}

.advantage-item {
    color: var(--lp-text-soft);
    font-weight: 600;
}

.advantage-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

/* Section headings */
.section-eyebrow {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--lp-accent-dark);
    margin-bottom: 8px;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 45px;
    color: var(--lp-text);
    font-family: Georgia, 'Times New Roman', serif;
}

.about-content .section-eyebrow {
    text-align: left;
}

/* Services */
.services-section {
    padding: 70px 0;
    background-color: var(--lp-cream);
}

.service-card {
    background: var(--lp-surface);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 6px 18px var(--lp-shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--lp-card-border);
    flex: 0 0 calc(33.333% - 17px);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px var(--lp-shadow-hover);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 18px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--lp-text);
}

.service-description {
    color: var(--lp-text-soft);
    margin-bottom: 18px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-accent-dark);
    margin-bottom: 14px;
}

.service-more {
    margin-top: auto;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--lp-accent-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
}

.service-more:hover {
    color: var(--lp-text);
}

.service-more .arrow {
    transition: transform 0.2s ease;
    text-decoration: none;
}

.service-more:hover .arrow {
    transform: translateX(4px);
}

/* Service details modal */
.service-modal-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--lp-overlay);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.service-modal {
    background: var(--lp-surface);
    border-radius: 18px;
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 20px 50px var(--lp-modal-shadow);
    transform: translateY(24px) scale(0.97);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.3, 1), opacity 0.3s ease;
}

.service-modal-overlay.open .service-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.service-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--lp-cream-dark);
    color: var(--lp-text);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.service-modal-close:hover {
    background: var(--lp-accent);
    color: var(--lp-white);
}

.service-modal-body h4 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.6rem;
    margin-bottom: 14px;
    color: var(--lp-text);
}

.service-modal-body p {
    color: var(--lp-text-soft);
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-modal-body ul {
    margin: 0;
    padding-left: 20px;
    color: var(--lp-text);
}

.service-modal-body ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* About */
.about-section {
    padding: 80px 0;
    background: var(--lp-surface);
}

.about-gallery-wrap {
    position: relative;
    display: flex;
    gap: 12px;
}

.about-gallery {
    flex: 1 1 auto;
    height: 420px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    border-radius: 18px;
    scrollbar-width: thin;
    scrollbar-color: var(--lp-accent) var(--lp-cream-dark);
}

.about-gallery::-webkit-scrollbar {
    width: 6px;
}

.about-gallery::-webkit-scrollbar-track {
    background: var(--lp-cream-dark);
}

.about-gallery::-webkit-scrollbar-thumb {
    background: var(--lp-accent);
    border-radius: 10px;
}

.about-gallery-item {
    height: 420px;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-white);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.about-gallery-item.item-1 {
    background: linear-gradient(135deg, var(--lp-hero-start) 0%, var(--lp-hero-mid) 100%);
}

.about-gallery-item.item-2 {
    background: linear-gradient(135deg, var(--lp-hero-mid) 0%, var(--lp-hero-end) 100%);
}

.about-gallery-item.item-3 {
    background: linear-gradient(135deg, var(--lp-brown-soft) 0%, var(--lp-hero-end) 100%);
}

.about-gallery-item.item-4 {
    background: linear-gradient(135deg, var(--lp-hero-start) 0%, var(--lp-brown-soft) 100%);
}

.about-gallery-dots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    flex: 0 0 auto;
}

.about-gallery-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lp-cream-dark);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.about-gallery-dots .dot.active {
    background: var(--lp-accent-dark);
    transform: scale(1.3);
}

.about-content h3 {
    font-size: 2.1rem;
    margin-bottom: 20px;
    color: var(--lp-text);
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.25;
}

.about-content p {
    color: var(--lp-text-soft);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    padding: 8px 0;
    color: var(--lp-text);
    font-size: 1.05rem;
}

.about-features .check {
    color: var(--lp-accent-dark);
    font-weight: 700;
    margin-right: 6px;
}

/* Team */
.team-section {
    padding: 80px 0;
    background: var(--lp-cream);
}

.team-carousel {
    display: flex;
    align-items: center;
    gap: 15px;
}

.team-track-wrapper {
    flex: 1 1 auto;
    overflow: hidden;
}

.team-track {
    display: flex;
    gap: 25px;
    will-change: transform;
}

.team-nav {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--lp-card-border);
    background: var(--lp-surface);
    color: var(--lp-accent-dark);
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--lp-shadow-soft);
    transition: background 0.25s ease, color 0.25s ease;
}

.team-nav:hover {
    background: var(--lp-accent);
    color: var(--lp-white);
}

.team-card {
    background: var(--lp-surface);
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 18px var(--lp-shadow-soft);
    flex: 0 0 calc(33.333% - 17px);
}

.team-photo-placeholder {
    background: var(--lp-cream-dark);
    color: var(--lp-text-soft);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-weight: 600;
}

.team-photo {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    object-fit: cover;
    margin: 0 auto 18px;
    display: block;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--lp-text);
}

.team-role {
    color: var(--lp-accent-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-desc {
    color: var(--lp-text-soft);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background: var(--lp-surface);
}

.cta-box {
    background: linear-gradient(135deg, var(--lp-cta-start) 0%, var(--lp-cta-end) 100%);
    color: var(--lp-white);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: Georgia, 'Times New Roman', serif;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

.cta-box .btn-primary {
    background-color: var(--lp-accent);
}

.cta-contacts {
    margin-top: 35px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .team-card,
    .service-card {
        flex: 0 0 calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .site-header-inner {
        padding: 12px 15px;
    }

    .site-logo-img {
        height: 42px;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 15px;
        left: auto;
        width: 230px;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: var(--lp-header-bg-scrolled);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid var(--lp-header-border);
        border-radius: 16px;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
        padding: 8px;
        transform-origin: top right;
        transform: scale(0.9) translateY(-8px);
        opacity: 0;
        max-height: none;
        overflow: visible;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .site-nav.open {
        transform: scale(1) translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        width: 100%;
        padding: 12px 14px;
        font-size: 0.95rem;
        border-radius: 10px;
        border-bottom: 1px solid var(--lp-header-border);
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: transparent;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link-price {
        margin-left: 0;
        margin-top: 4px;
        padding-left: 14px;
    }

    .nav-link-price::before {
        display: none;
    }

    .btn-header-book {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero-section {
        padding-top: 130px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn,
    .btn-tg {
        width: 100%;
        max-width: 300px;
    }

    .about-gallery-wrap {
        margin-bottom: 30px;
    }

    .about-gallery,
    .about-gallery-item {
        height: 320px;
    }

    .team-card,
    .service-card {
        flex: 0 0 100%;
    }

    .team-nav {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .service-modal {
        padding: 30px 22px;
    }

    .cta-box {
        padding: 40px 20px;
    }
}

/* Site Footer */
.site-footer {
    background: var(--lp-brown);
    color: rgba(255, 255, 255, 0.8);
    padding: 30px 0;
}

.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 28px;
}

.site-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.site-footer-logo {
    width: 100px;
    height: auto;
    border-radius: 9px;
    object-fit: contain;
    padding: 4px;
}

.site-footer-phone {
    color: var(--lp-white);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-footer-phone:hover {
    color: var(--lp-accent);
}

.site-footer-links {
    display: flex;
    align-items: center;
    gap: 10px 24px;
    flex-wrap: wrap;
}

.site-footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.site-footer-link:hover {
    color: var(--lp-white);
    text-decoration: underline;
}

.site-footer-tg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--lp-accent);
    font-weight: 600;
}

.site-footer-tg:hover {
    color: var(--lp-white);
    text-decoration: none;
}

.site-footer-copy {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
    .site-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .site-footer-links {
        justify-content: center;
    }
}

/* Price Page */
.price-page {
    background: var(--lp-cream);
    min-height: 100vh;
    padding-top: 90px;
}

.price-header {
    background: linear-gradient(135deg, var(--lp-hero-start) 0%, var(--lp-hero-mid) 55%, var(--lp-hero-end) 100%);
    color: var(--lp-white);
    padding: 60px 0 50px;
}

.price-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.price-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: Georgia, 'Times New Roman', serif;
}

.price-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.btn-back {
    background: var(--lp-white-soft);
    color: var(--lp-white);
    border: 2px solid var(--lp-white-border);
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-back:hover {
    background: var(--lp-white);
    color: var(--lp-brown);
    border-color: var(--lp-white);
}

.price-content {
    padding: 60px 0;
}

.price-category {
    background: var(--lp-surface);
    border-radius: 18px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 6px 18px var(--lp-shadow-soft);
}

.price-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 30px;
    font-family: Georgia, 'Times New Roman', serif;
    border-bottom: 2px solid var(--lp-cream-dark);
    padding-bottom: 15px;
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: var(--lp-cream);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px var(--lp-shadow-soft);
}

.price-item-info {
    flex: 1 1 auto;
}

.price-item-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 5px;
}

.price-item-description {
    font-size: 0.95rem;
    color: var(--lp-text-soft);
    margin-bottom: 0;
}

.price-item-cost {
    flex: 0 0 auto;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lp-accent-dark);
    white-space: nowrap;
}

.price-note {
    background: var(--lp-cream-dark);
    border-radius: 18px;
    padding: 35px 40px;
    margin-bottom: 40px;
    border-left: 4px solid var(--lp-accent);
}

.price-note h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 20px;
    font-family: Georgia, 'Times New Roman', serif;
}

.price-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-note ul li {
    padding: 10px 0 10px 30px;
    color: var(--lp-text-soft);
    line-height: 1.6;
    position: relative;
}

.price-note ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--lp-accent-dark);
    font-weight: 700;
    font-size: 1.2rem;
}

.price-cta {
    background: linear-gradient(135deg, var(--lp-cta-start) 0%, var(--lp-cta-end) 100%);
    color: var(--lp-white);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
}

.price-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: Georgia, 'Times New Roman', serif;
}

.price-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .price-header-content {
        flex-direction: column;
    }

    .price-title {
        font-size: 2.2rem;
    }

    .price-category {
        padding: 25px 20px;
    }

    .price-category-title {
        font-size: 1.5rem;
    }

    .price-item {
        flex-direction: column;
        gap: 10px;
    }

    .price-item-cost {
        align-self: flex-start;
    }

    .price-note {
        padding: 25px 20px;
    }

    .price-cta {
        padding: 35px 20px;
    }
}