.furnishing-page {
    padding-top: 0;
    position: relative;
}

.furnishing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.furnishing-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.furnishing-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1920&q=80') center/cover no-repeat;
}

.furnishing-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, 
        rgba(26, 31, 46, 0.92) 0%, 
        rgba(26, 31, 46, 0.85) 50%,
        rgba(19, 23, 34, 0.95) 85%, 
        #131722 100%
    );
}

.furnishing-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #131722 0%, transparent 100%);
    z-index: 4;
    pointer-events: none;
}

.furnishing-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 140px 0 80px;
    opacity: 1;
    transform: none;
}

.furnishing-hero h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.furnishing-hero h1 .accent {
    background: linear-gradient(135deg, #c9a962 0%, #e5c988 50%, #c9a962 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.furnishing-hero-subtitle {
    font-size: 20px;
    color: rgba(var(--text-main-rgb), 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.section-dark {
    background: #131722;
}

.section-alt {
    background: #1a1f2e;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(var(--text-main-rgb), 0.65);
    line-height: 1.7;
    font-weight: 400;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: #1a1f2e;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover {
    border-color: rgba(201, 169, 98, 0.35);
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.problem-card:hover .problem-image {
    transform: scale(1.08);
}

.problem-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.problem-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(26, 31, 46, 0.2) 0%, 
        rgba(26, 31, 46, 0.05) 40%,
        rgba(26, 31, 46, 0.7) 100%
    );
}

.problem-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c9a962 0%, #d4b872 100%);
    border-radius: 14px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #1a1f2e;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

.problem-content {
    padding: 28px;
}

.problem-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 14px;
    line-height: 1.3;
}

.problem-desc {
    font-size: 15px;
    color: rgba(var(--text-main-rgb), 0.65);
    line-height: 1.75;
}

.steps-grid {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.step-card {
    flex: 1;
    max-width: 240px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c9a962;
    background-image: none;
    border-radius: 50%;
    color: #1a1f2e;
    -webkit-text-fill-color: #1a1f2e;
    text-fill-color: #1a1f2e;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 6px rgba(201, 169, 98, 0.15);
    position: relative;
    z-index: 1;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    -webkit-text-fill-color: var(--text-main);
}

.step-desc {
    font-size: 14px;
    color: rgba(var(--text-main-rgb), 0.6);
    line-height: 1.6;
    -webkit-text-fill-color: rgba(var(--text-main-rgb), 0.6);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    text-align: left;
}

.category-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.category-sub {
    display: block;
    font-size: 12px;
    color: rgba(var(--text-main-rgb), 0.7);
    line-height: 1.3;
}

.pricing-benefit {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.06) 0%, rgba(201, 169, 98, 0.02) 100%);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: 28px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.pricing-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-text p {
    font-size: 16px;
    color: rgba(var(--text-main-rgb), 0.7);
    line-height: 1.8;
    margin-bottom: 28px;
}

.pricing-highlight {
    display: inline-block;
    padding: 16px 28px;
    background: rgba(201, 169, 98, 0.12);
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    color: #c9a962;
}

.pricing-table {
    background: rgba(26, 31, 46, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

.pricing-row {
    display: flex;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.header {
    position: static;
    background: rgba(201, 169, 98, 0.08);
    font-weight: 600;
}

.pricing-item {
    flex: 2;
    color: rgba(var(--text-main-rgb), 0.75);
}

.pricing-retail {
    flex: 1;
    color: rgba(var(--text-main-rgb), 0.4);
    text-decoration: line-through;
    text-align: right;
}

.pricing-our {
    flex: 1;
    color: #c9a962;
    font-weight: 600;
    text-align: right;
}

.pricing-row.header .pricing-item {
    color: rgba(201, 169, 98, 0.95);
}

.pricing-row.header .pricing-retail,
.pricing-row.header .pricing-our {
    color: rgba(201, 169, 98, 0.95);
    text-decoration: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-card-overlay {
    opacity: 1;
}

.portfolio-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.portfolio-card-desc {
    font-size: 14px;
    color: rgba(var(--text-main-rgb), 0.8);
    margin-bottom: 12px;
    line-height: 1.6;
}

.portfolio-card-budget {
    font-size: 14px;
    color: #c9a962;
    font-weight: 700;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 24px;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
}

.faq-question:hover {
    color: #c9a962;
}

.faq-question span {
    flex: 1;
    text-align: center;
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #c9a962;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    text-align: left;
    padding: 0 24px 32px;
    font-size: 16px;
    color: rgba(var(--text-main-rgb), 0.7);
    line-height: 1.8;
}

.cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1f2e 0%, #131722 50%, #1a1f2e 100%);
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.6), transparent);
}

.cta-section::before { top: 0; }
.cta-section::after { bottom: 0; }

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    color: rgba(var(--text-main-rgb), 0.7);
    margin-bottom: 40px;
    line-height: 1.75;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-link-card:hover {
    background: rgba(201, 169, 98, 0.08);
    border-color: rgba(201, 169, 98, 0.25);
    transform: translateY(-4px);
}

.related-link-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    color: #c9a962;
    flex-shrink: 0;
}

.related-link-content {
    flex: 1;
    min-width: 0;
}

.related-link-content h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.related-link-content p {
    font-size: 13px;
    color: rgba(var(--text-main-rgb), 0.6);
    line-height: 1.5;
}

.related-link-arrow {
    color: rgba(201, 169, 98, 0.5);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.related-link-card:hover .related-link-arrow {
    transform: translateX(4px);
    color: #c9a962;
}

@media (max-width: 1024px) {
    .furnishing-hero {
        min-height: 100dvh;
        padding: 130px 0 90px;
    }
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        flex-wrap: wrap;
        gap: 32px;
        justify-content: center;
        padding: 0;
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .step-card {
        flex: 0 0 calc(50% - 16px);
        max-width: none;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-benefit {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .furnishing-hero {
        min-height: 100dvh;
        padding: 90px 0 80px;
    }
    
    .furnishing-hero h1 {
        font-size: 32px;
    }
    
    .furnishing-hero-subtitle {
        font-size: 16px;
    }
    
    .furnishing-hero-content {
        padding: 100px 0 60px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-image-wrapper {
        height: 180px;
    }
    
    .problem-content {
        padding: 24px;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 32px;
        padding: 0;
    }
    
    .step-card {
        flex: none;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        max-width: none;
    }
    
    .step-number {
        flex-shrink: 0;
        margin: 0 !important;
    }
    
    .step-content {
        flex: 1;
    }
    
    .step-title {
        margin-bottom: 8px !important;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        aspect-ratio: 1;
    }
    
    .category-overlay {
        padding: 12px;
    }
    
    .category-name {
        font-size: 13px;
    }
    
    .category-sub {
        font-size: 11px;
    }
    
    .pricing-benefit {
        padding: 32px 24px;
        gap: 32px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .related-links-grid {
        grid-template-columns: 1fr;
    }
    
    .related-link-card {
        padding: 24px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .furnishing-hero h1 {
        font-size: 26px;
    }
    
    .furnishing-hero-content {
        padding: 80px 0 40px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-row {
        font-size: 13px;
        padding: 14px 16px;
    }
    
    .pricing-highlight {
        font-size: 15px;
        padding: 12px 18px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}
