/* ============================================
   SEO Pricing Landings — стили для price/* страниц
   ============================================ */

.seo-section {
    padding: 60px 0;
    background: #fff;
}

.seo-section--alt {
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
}

.seo-section-sub {
    text-align: center;
    color: #64748b;
    font-size: 1.05rem;
    margin: -8px auto 32px;
    max-width: 720px;
}

/* === TYPES GRID === */
.seo-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.seo-type-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px 20px;
    text-decoration: none;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.seo-type-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--c, #7c3aed);
}

.seo-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(124, 58, 237, .12);
    border-color: var(--c, #7c3aed);
}

.seo-type-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--c, #7c3aed) 15%, transparent);
    color: var(--c, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.seo-type-name {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
}

.seo-type-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c, #7c3aed);
}

.seo-type-cta {
    margin-top: auto;
    color: #64748b;
    font-size: .9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}

.seo-type-card:hover .seo-type-cta {
    color: var(--c, #7c3aed);
}

/* === ROOMS GRID === */
.seo-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.seo-room-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    text-decoration: none;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all .2s;
}

.seo-room-card:hover {
    border-color: #7c3aed;
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, .08);
}

.seo-room-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ede9fe, #cffafe);
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.seo-room-info {
    flex: 1;
    min-width: 0;
}

.seo-room-name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 2px;
}

.seo-room-area {
    font-size: .85rem;
    color: #64748b;
}

.seo-room-arrow {
    color: #94a3b8;
    transition: all .2s;
}

.seo-room-card:hover .seo-room-arrow {
    color: #7c3aed;
    transform: translateX(4px);
}

/* === BUDGETS GRID === */
.seo-budgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.seo-budget-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px;
    text-decoration: none;
    color: #0f172a;
    transition: all .25s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-budget-card:hover {
    transform: translateY(-3px);
    border-color: #06b6d4;
    box-shadow: 0 16px 36px rgba(6, 182, 212, .1);
}

.seo-budget-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ecfdf5, #cffafe);
    color: #06b6d4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.seo-budget-name {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
}

.seo-budget-desc {
    color: #64748b;
    font-size: .9rem;
    margin: 0;
    line-height: 1.5;
}

.seo-budget-cta {
    margin-top: auto;
    color: #06b6d4;
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* === CITIES GRID (pills) === */
.seo-cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.seo-city-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 999px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    transition: all .2s;
}

.seo-city-pill:hover {
    border-color: #7c3aed;
    background: #faf5ff;
    color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(124, 58, 237, .12);
}

.seo-city-pill i:first-child {
    color: #94a3b8;
}

.seo-city-pill:hover i:first-child {
    color: #7c3aed;
}

.seo-city-badge {
    padding: 2px 8px;
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 700;
    background: #fef3c7;
    color: #b45309;
}

.seo-city-badge--hot {
    background: linear-gradient(135deg, #fee2e2, #fef3c7);
    color: #b91c1c;
}

/* === PRICE TABLE === */
.seo-price-table {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .04);
}

.seo-price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr 32px;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: #0f172a;
    align-items: center;
    transition: background .15s;
}

.seo-price-row:last-child {
    border-bottom: none;
}

.seo-price-row:not(.seo-price-row--head):hover {
    background: #faf5ff;
}

.seo-price-row--head {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    font-weight: 700;
    font-size: .85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .5px;
    pointer-events: none;
}

.seo-price-city {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.seo-price-city i {
    color: #7c3aed;
}

.seo-price-m2 {
    color: #64748b;
    font-weight: 600;
}

.seo-price-total {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.05rem;
}

.seo-price-days {
    color: #64748b;
    font-size: .9rem;
}

.seo-price-arrow {
    color: #94a3b8;
    text-align: right;
}

.seo-price-row:hover .seo-price-arrow {
    color: #7c3aed;
}

@media (max-width: 768px) {
    .seo-price-row {
        grid-template-columns: 1.5fr 1fr 24px;
        font-size: .9rem;
    }
    .seo-price-row .seo-price-m2,
    .seo-price-row .seo-price-days {
        display: none;
    }
}

/* === SAMPLES (3 areas) === */
.seo-samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.seo-sample-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 22px;
    transition: all .25s;
    position: relative;
}

.seo-sample-card--main {
    border-color: #7c3aed;
    box-shadow: 0 16px 36px rgba(124, 58, 237, .15);
    transform: scale(1.02);
}

.seo-sample-card--main::before {
    content: 'Популярный выбор';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap;
}

.seo-sample-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.seo-sample-area {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
}

.seo-sample-tag {
    background: #ede9fe;
    color: #6d28d9;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
}

.seo-sample-price {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.seo-sample-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.seo-sample-meta span {
    color: #64748b;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.seo-sample-meta i {
    color: #7c3aed;
}

.seo-sample-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f8fafc;
    color: #7c3aed;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: .9rem;
    transition: all .2s;
}

.seo-sample-cta:hover {
    background: #ede9fe;
    color: #6d28d9;
}

/* === INCLUDED GRID === */
.seo-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.seo-included-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px;
    transition: all .2s;
}

.seo-included-card:hover {
    border-color: #c4b5fd;
    box-shadow: 0 8px 24px rgba(124, 58, 237, .08);
}

.seo-included-card i {
    font-size: 2rem;
    color: #7c3aed;
    margin-bottom: 12px;
}

.seo-included-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 8px;
}

.seo-included-card p {
    color: #64748b;
    font-size: .92rem;
    line-height: 1.6;
    margin: 0;
}

/* === CALC BLOCK === */
.seo-calc-block {
    background: linear-gradient(135deg, #faf5ff, #ecfeff);
    border-radius: 24px;
    padding: 36px 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: center;
    border: 1px solid rgba(124, 58, 237, .15);
}

.seo-calc-text h2 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #0f172a;
}

.seo-calc-text p {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 18px;
}

.seo-calc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-calc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-weight: 500;
}

.seo-calc-list i {
    color: #10b981;
    font-size: 1.1rem;
}

.seo-calc-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 28px;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(124, 58, 237, .3);
    transition: all .25s;
    text-align: center;
}

.seo-calc-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 24px 56px rgba(124, 58, 237, .42);
    color: #fff;
}

.seo-calc-cta i {
    font-size: 2.2rem;
    margin-bottom: 4px;
}

.seo-calc-cta span {
    font-size: 1.1rem;
    font-weight: 800;
}

.seo-calc-cta small {
    opacity: .85;
    font-size: .85rem;
}

@media (max-width: 768px) {
    .seo-calc-block {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

/* === FAQ === */
.seo-faq {
    max-width: 800px;
    margin: 24px auto 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 22px;
    transition: all .2s;
}

.seo-faq-item[open] {
    border-color: #c4b5fd;
    box-shadow: 0 8px 24px rgba(124, 58, 237, .08);
}

.seo-faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.02rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.seo-faq-item summary::-webkit-details-marker {
    display: none;
}

.seo-faq-item summary::after {
    content: '+';
    color: #7c3aed;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform .2s;
}

.seo-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.seo-faq-item p {
    margin: 12px 0 0;
    color: #475569;
    line-height: 1.65;
}

/* === BUDGET INFO === */
.seo-budget-info > p {
    text-align: center;
    color: #475569;
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .seo-section { padding: 40px 0; }
    .seo-types-grid,
    .seo-budgets-grid,
    .seo-included-grid,
    .seo-samples-grid {
        grid-template-columns: 1fr;
    }
}


/* === WORKS-CTA-CARD light variant for light pages === */
.works-cta-card--light {
    background: linear-gradient(135deg, #faf5ff 0%, #ecfeff 100%) !important;
    border: 1px solid rgba(124, 58, 237, .15);
    box-shadow: 0 8px 30px rgba(124, 58, 237, .08);
}
.works-cta-card--light .works-cta-title {
    color: #0f172a !important;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.works-cta-card--light .works-cta-sub {
    color: #475569 !important;
}
.works-cta-card--light::before {
    background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%) !important;
}

/* === Underline-fix: убрать подчёркивания у ссылок-кнопок и SEO-карточек === */
.seo-type-card,
.seo-room-card,
.seo-budget-card,
.seo-city-pill,
.seo-price-row,
.seo-sample-cta,
.seo-calc-cta,
.kalk-result-cta {
    text-decoration: none !important;
}
.seo-type-card:hover,
.seo-room-card:hover,
.seo-budget-card:hover,
.seo-city-pill:hover,
.seo-price-row:hover {
    text-decoration: none !important;
}

/* === Брендированный gradient для главных hero-заголовков === */
.kalk-hero-title {
    color: #0f172a;
}
.kalk-hero-grad {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Точка-разделитель в hero-trust для лучшей читаемости */
.kalk-hero-trust span {
    color: #475569;
}
.kalk-hero-trust i {
    color: #7c3aed;
}
