.info-box {
    margin-top: 20px;
    padding: 20px;
    border-radius: var(--radius-md);
    background-color: rgba(224, 122, 95, 0.08);
    border: 1px solid rgba(224, 122, 95, 0.14);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.feature-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.step-card,
.mount-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 50%;
    background-color: rgba(111, 143, 114, 0.12);
    color: var(--color-green);
    font-weight: 700;
}

.mount-subtitle {
    margin-bottom: 16px;
    color: rgba(47, 47, 47, 0.72);
    font-weight: 600;
}

.mount-list {
    display: grid;
    gap: 12px;
}

.mount-list li {
    position: relative;
    padding-left: 18px;
}

.mount-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-terracotta);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-graphite);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background-color: var(--color-terracotta);
    color: var(--color-white);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.4);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.sticky-cta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.sticky-cta--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 0;
    object-fit: contain;
}

.button,
.mobile-menu-btn,
.sticky-cta {
    cursor: pointer;
}

.button-ghost {
    background-color: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    padding: 13px 28px;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

.button-ghost:hover {
    background-color: var(--color-white);
    color: var(--color-graphite);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.feature-card,
.step-card,
.mount-card,
.why-card,
.pricing-card,
.for-whom-item,
.contact-item,
.gallery-item,
.testimonial-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.step-card:hover,
.mount-card:hover,
.why-card:hover,
.pricing-card:hover,
.for-whom-item:hover,
.contact-item:hover,
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.button-primary {
    background-color: var(--color-white);
    color: var(--color-graphite);
    border: 1.5px solid var(--color-white);
    padding: 13px 28px;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    min-width: fit-content;

}

.button-primary:hover {
    font-weight: 800;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.button-secondary {
    background-color: var(--color-beige);
    color: var(--color-graphite);
    border: 1.5px solid var(--color-beige);
    padding: 13px 28px;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    min-width: fit-content;

}

.button-secondary:hover {
    font-weight: 800;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(20, 20, 20, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.is-open {
    display: flex;
    opacity: 1;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
}

.lightbox-close {
    top: 24px;
    right: 24px;
    font-size: 2.2rem;
}

.lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
}

.lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.08);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.08);
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

.breadcrumbs {
    background-color: var(--color-beige);
    padding: 16px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(47, 47, 47, 0.06);
}

.breadcrumbs a {
    color: rgba(47, 47, 47, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--color-terracotta);
}

.breadcrumbs-sep {
    margin: 0 10px;
    color: rgba(47, 47, 47, 0.3);
}

.breadcrumbs-current {
    color: var(--color-graphite);
    font-weight: 600;
}

.page-hero-section {
    background-color: var(--color-beige);
    padding: 32px 0 56px;
}

.header-cta {
    display: inline-flex;
}