/* Ремонт под ключ */
.remont-page { padding-top: 0; }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(14, 17, 23, 0.95) 0%, rgba(14, 17, 23, 0.85) 50%, rgba(14, 17, 23, 0.95) 100%);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, #131722 0%, transparent 100%);
    z-index: 2; pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 140px 0 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #c9a962;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Sections */
.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 3rem; }
.section-title { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.125rem; color: var(--text-muted); }

/* Tariffs Grid */
.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 3rem;
}
.tariff-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: border-color 0.4s ease;
    position: relative;
}
.tariff-card:hover { border-color: rgba(200, 169, 110, 0.3); }
.tariff-card.recommended {
    border-color: rgba(200, 169, 110, 0.5);
    background: rgba(200, 169, 110, 0.05);
}
.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #C8A96E;
    color: #0E1117;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
}
.tariff-name { font-size: 1.5rem; margin-bottom: 0.5rem; }
.tariff-price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #C8A96E;
    margin-bottom: 0.5rem;
}
.tariff-target {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.tariff-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}
.tariff-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: rgba(var(--text-main-rgb), 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.tariff-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #C8A96E;
    border-radius: 50%;
}
.tariff-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}
.tariff-card .btn { margin-top: 1rem; width: 100%; }

/* Comparison Table */
.comparison-table {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 2rem;
    position: relative;
}
@media (max-width: 768px) {
    .comparison-table::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 40px;
        background: linear-gradient(to left, #1a1f2e, transparent);
        pointer-events: none;
    }
}
.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    align-items: center;
}
.comparison-header {
    background: rgba(255, 255, 255, 0.04);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.comparison-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 15px;
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row span:first-child { color: rgba(var(--text-main-rgb), 0.9); }
.comparison-row span:not(:first-child) {
    text-align: center;
    color: var(--text-muted);
}
.comparison-row .mark { color: #C8A96E; font-weight: 600; }

/* Stages Timeline */
.stages-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.stage-item {
    position: relative;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    text-align: center;
}
.stage-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #C8A96E;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}
.stage-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.stage-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.stage-time {
    font-size: 0.8rem;
    color: #C8A96E;
    font-weight: 600;
}
.stages-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2rem;
}
.portfolio-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.portfolio-card:hover { transform: translateY(-4px); }
.portfolio-image {
    position: relative;
    aspect-ratio: 4/3;
}
.portfolio-image img {
    width: 100%; height: 100%; object-fit: cover;
}
.portfolio-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(200, 169, 110, 0.2);
    color: #C8A96E;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
}
.portfolio-content { padding: 1.5rem; }
.portfolio-content h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.portfolio-content p { font-size: 0.9rem; color: var(--text-muted); }

/* FAQ */
.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;
    gap: 20px;
    padding: 24px 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
}
.faq-question:hover { color: #C8A96E; }
.faq-question svg {
    flex-shrink: 0;
    width: 20px; height: 20px;
    color: #C8A96E;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 8px 24px;
    font-size: 15px;
    color: rgba(var(--text-main-rgb), 0.7);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1f2e 0%, #131722 50%, #1a1f2e 100%);
    text-align: center;
    position: relative;
}
.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 { position: relative; z-index: 1; }
.cta-content h2 { margin-bottom: 1rem; }
.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* SEO Text */
.seo-text { padding: 40px 0; font-size: 14px; color: rgba(var(--text-main-rgb), 0.5); text-align: center; }
.seo-text p { max-width: 700px; margin: 0 auto; line-height: 1.7; }

/* Responsive */
@media (max-width: 1024px) {
    .hero { min-height: 100dvh; }
    .tariffs-grid { grid-template-columns: 1fr; }
    .stages-timeline { grid-template-columns: repeat(3, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero { min-height: 100dvh; }
    .hero-content { padding: 100px 0 60px; }
    .comparison-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .comparison-header,
    .comparison-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; font-size: 13px; min-width: 500px; }
    .stages-timeline { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .tariff-card { padding: 32px 24px; }
}