/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: clamp(64px, 8vw, 120px) 0;
    background: var(--color-graphite);
    position: relative;
    overflow: hidden;
}

.final-cta-inner {
    max-width: calc(var(--container) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

/* Left: form */
.final-cta-form {
    max-width: 480px;
}

.final-cta-title {
    font-family: var(--font-accent);
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1.1;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 0 0 12px;
}

.final-cta-desc {
    font-family: var(--font-main);
    font-size: clamp(14px, 1vw, 16px);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
    margin: 0 0 clamp(28px, 3vw, 40px);
}

.final-cta-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
}

.final-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.final-cta-input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.final-cta-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.final-cta-input:focus {
    border-color: rgba(255, 255, 255, 0.25);
}

.final-cta-phone-row {
    display: flex;
    gap: 8px;
}

.final-cta-phone-prefix {
    width: 90px;
    flex-shrink: 0;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-main);
    font-size: 15px;
    text-align: center;
}

/* Messenger buttons */
.final-cta-messenger-label {
    display: block;
    font-family: var(--font-main);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
}

.final-cta-messenger-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.final-cta-messenger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-main);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.final-cta-messenger-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.final-cta-messenger-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.final-cta-messenger-btn.active {
    background: rgba(105, 123, 97, 0.25);
    border-color: var(--color-green);
    color: var(--color-white);
}

.final-cta-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 20px;
}

.final-cta-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    flex-shrink: 0;
    accent-color: var(--color-green);
    cursor: pointer;
}

.final-cta-checkbox span {
    font-family: var(--font-main);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
}

.final-cta-checkbox a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
}

/* ===== CUSTOM SELECT ===== */
.custom-select {
    position: relative;
}

.custom-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-family: var(--font-main);
}

.custom-select-trigger:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
}

.custom-select.is-open .custom-select-trigger {
    border-color: var(--color-beige);
    background: rgba(255, 255, 255, 0.09);
}

.custom-select-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.custom-select-label.has-value {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-select-label.has-value svg {
    width: 18px;
    height: 18px;
}

.custom-select-arrow {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.custom-select.is-open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #3a3a3a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 6px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
}

.custom-select.is-open .custom-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: background 0.15s, color 0.15s;
    text-align: left;
}

.custom-select-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
}

.custom-select-option.is-selected {
    background: rgba(105, 123, 97, 0.2);
    color: var(--color-white);
}

.custom-select-option svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.6;
}

.custom-select-option:hover svg,
.custom-select-option.is-selected svg {
    opacity: 1;
}

.final-cta-submit {
    width: 100%;
    padding: 18px;
    background: var(--color-green);
    border: none;
    border-radius: 12px;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: opacity 0.2s;
}

.final-cta-submit:hover {
    opacity: 0.9;
}

/* Right: photo cards + promise */
.final-cta-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.final-cta-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.final-cta-photo {
    aspect-ratio: 4/3;
    border-radius: 14px;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 14px;
    position: relative;
    overflow: hidden;
}

.final-cta-photo-label {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.final-cta-promise {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: clamp(20px, 2vw, 28px);
    display: flex;
    align-items: center;
    gap: 16px;
}

.final-cta-promise-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(105, 123, 97, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.final-cta-promise-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-green);
}

.final-cta-promise-text {
    font-family: var(--font-main);
    font-size: clamp(14px, 1vw, 16px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.final-cta-promise-text strong {
    color: var(--color-white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .final-cta-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .final-cta-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .final-cta-row {
        grid-template-columns: 1fr;
    }

    .final-cta-phone-row {
        flex-direction: column;
    }

    .final-cta-phone-prefix {
        width: 100%;
    }

    .final-cta-photos {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA POPUP ===== */
.cta-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
}

.cta-popup-overlay.is-open {
    display: flex;
}

.cta-popup {
    position: relative;
    background: var(--color-graphite);
    border-radius: 24px;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(32px, 4vw, 56px);
    animation: popupIn 0.3s ease;
}

@keyframes popupIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.cta-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 1;
}

.cta-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-popup-close svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.cta-popup-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
}

.cta-popup-title {
    font-family: var(--font-accent);
    font-size: clamp(22px, 2.5vw, 32px);
    color: var(--color-white);
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.cta-popup-desc {
    font-family: var(--font-main);
    font-size: clamp(14px, 1vw, 16px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 24px;
}

/* ===== CATALOG POPUP (two-column) ===== */
.catalog-popup {
    position: relative;
    background: var(--color-white);
    border-radius: 24px;
    max-width: 760px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 300px;
    overflow: hidden;
    animation: popupIn 0.3s ease;
}

.catalog-popup-left {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catalog-popup-photo {
    position: relative;
    overflow: hidden;
}

.catalog-popup-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-popup-title {
    font-family: var(--font-accent);
    font-size: clamp(22px, 2.5vw, 28px);
    color: var(--color-graphite);
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.catalog-popup-desc {
    font-family: var(--font-main);
    font-size: 14px;
    color: rgba(36, 35, 36, 0.5);
    line-height: 1.6;
    margin: 0 0 24px;
}

.catalog-popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.catalog-popup-phone {
    display: flex;
    align-items: center;
    background: #f5f2ee;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.catalog-popup-phone:focus-within {
    border-color: var(--color-beige);
}

.catalog-popup-prefix {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-graphite);
    padding: 0 4px 0 20px;
    flex-shrink: 0;
}

.catalog-popup-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 18px 20px 18px 8px;
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--color-graphite);
    outline: none;
}

.catalog-popup-input::placeholder {
    color: rgba(36, 35, 36, 0.3);
}

.catalog-popup-submit {
    width: 100%;
    padding: 16px;
    background: var(--color-graphite);
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.catalog-popup-submit:hover {
    background: #3a393a;
}

.catalog-popup-submit:active {
    transform: scale(0.98);
}

.catalog-popup-agree {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 12px;
    color: rgba(36, 35, 36, 0.4);
    text-align: left;
    cursor: pointer;
}

.catalog-popup-agree a {
    color: rgba(36, 35, 36, 0.5);
    text-decoration: underline;
}

.catalog-popup-agree input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.catalog-popup .cta-popup-close {
    background: rgba(36, 35, 36, 0.06);
}

.catalog-popup .cta-popup-close:hover {
    background: rgba(36, 35, 36, 0.12);
}

.catalog-popup .cta-popup-close svg {
    color: var(--color-graphite);
}

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

    .catalog-popup-photo {
        display: none;
    }

    .catalog-popup-left {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .cta-popup-body {
        grid-template-columns: 1fr;
    }

    .cta-popup-right {
        display: none;
    }

    .cta-popup {
        padding: 24px;
    }
}
