/* ============================================================
   ARSEN STROY — PAGES STYLES v2.0
   All inner pages and homepage sections
   ============================================================ */

/* ── VARIABLES (inherit from style.css) ─────────────────── */
:root {
    --green: #2E7D32;
    --green-light: #43A047;
    --green-dark: #1B5E20;
    --green-bg: #F1F8E9;
    --text: #1a1a1a;
    --text-muted: #666;
    --border: #e0e0e0;
    --bg: #fff;
    --bg-light: #f8f9fa;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --container: 1200px;
    --section-pad: 72px 0;
}

/* ── PAGE BANNER ─────────────────────────────────────────── */
.page-banner {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    background: #1a2b1a;
}
.page-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.page-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 100%);
    z-index: 1;
}
.page-banner__inner {
    position: relative;
    z-index: 2;
    padding-top: 48px;
    padding-bottom: 48px;
}
.page-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 12px;
}
.page-banner__title span { color: var(--green-light); }
.page-banner__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,.82);
    margin: 0;
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 16px;
}
.breadcrumb__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}
.breadcrumb__item { display: flex; align-items: center; gap: 4px; }
.breadcrumb__item + .breadcrumb__item::before {
    content: '/';
    color: rgba(255,255,255,.5);
    font-size: 13px;
}
.breadcrumb__item a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
}
.breadcrumb__item a:hover { color: #fff; }
.breadcrumb__item--current {
    color: rgba(255,255,255,.9);
    font-size: 13px;
}

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header.section-header--left { text-align: left; }
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 12px;
    line-height: 1.25;
}
.section-title span { color: var(--green); }
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}
.section-header--left .section-subtitle { margin: 0; }

/* ── HOMEPAGE: SERVICES SECTION ──────────────────────────── */
.services-section {
    padding: var(--section-pad);
    background: var(--bg-light);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service-card__img-wrap {
    height: 190px;
    overflow: hidden;
    background: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.service-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.service-card:hover .service-card__img-wrap img { transform: scale(1.04); }
.service-card__icon-placeholder {
    font-size: 48px;
    line-height: 1;
}
.service-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card__title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.3;
}
.service-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
    margin: 0 0 12px;
}
.service-card__price {
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
}
.service-card__arrow {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
}
.service-card__arrow svg { transition: transform .2s; }
.service-card:hover .service-card__arrow svg { transform: translateX(4px); }

/* ── ADVANTAGES SECTION ──────────────────────────────────── */
.advantages-section {
    padding: var(--section-pad);
    background: #fff;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.advantage-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: border-color .2s, box-shadow .2s;
}
.advantage-card:hover {
    border-color: var(--green-light);
    box-shadow: var(--shadow);
}
.advantage-card__icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}
.advantage-card__title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
}
.advantage-card__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── PROCESS SECTION ─────────────────────────────────────── */
.process-section {
    padding: var(--section-pad);
    background: var(--green-bg);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--green) 0, var(--green) 8px, transparent 8px, transparent 16px);
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--green);
}
.process-step__title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
}
.process-step__desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ── PORTFOLIO PREVIEW SECTION ───────────────────────────── */
.portfolio-preview-section {
    padding: var(--section-pad);
    background: #fff;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.portfolio-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}
.portfolio-item__category {
    background: var(--green);
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 600;
    position: absolute;
    top: 10px;
    left: 10px;
}
.portfolio-grid--large .portfolio-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}
.portfolio-section__actions {
    text-align: center;
}

/* ── PRICES PREVIEW SECTION ──────────────────────────────── */
.prices-preview-section {
    padding: var(--section-pad);
    background: var(--bg-light);
}
.prices-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.price-preview-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    transition: border-color .2s, box-shadow .2s;
    text-decoration: none;
    color: var(--text);
    display: block;
}
.price-preview-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
}
.price-preview-card__category {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}
.price-preview-card__price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 4px;
}
.price-preview-card__unit {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.price-preview-card__desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

/* ── REVIEWS SECTION ─────────────────────────────────────── */
.reviews-section {
    padding: var(--section-pad);
    background: var(--green-bg);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.review-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--green-bg);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-card__name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.review-card__meta {
    font-size: 12px;
    color: var(--text-muted);
}
.review-card__stars {
    margin-bottom: 12px;
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
}
.review-card__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin: 0;
}
.review-card__service {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
}

/* ── QUIZ SECTION ────────────────────────────────────────── */
.quiz-section {
    padding: var(--section-pad);
    background: var(--text);
}
.quiz-section .section-title { color: #fff; }
.quiz-section .section-subtitle { color: rgba(255,255,255,.7); }
.quiz-placeholder {
    background: rgba(255,255,255,.08);
    border: 2px dashed rgba(255,255,255,.3);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.quiz-placeholder__icon { font-size: 48px; margin-bottom: 16px; }
.quiz-placeholder__text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: rgba(255,255,255,.9);
    margin: 0 0 8px;
}
.quiz-placeholder__hint { font-size: 13px; color: rgba(255,255,255,.55); margin: 0; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
    padding: var(--section-pad);
    background: var(--green);
}
.cta-section__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-section__title {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.cta-section__subtitle { font-size: 15px; color: rgba(255,255,255,.85); margin: 0; }
.cta-section__actions { display: flex; gap: 16px; align-items: center; flex-shrink: 0; flex-wrap: wrap; }
.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,.7);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-lg { padding: 14px 32px !important; font-size: 15px !important; }

/* ── LEAD FORM SECTION ───────────────────────────────────── */
.lead-form-section {
    padding: var(--section-pad);
    background: var(--bg-light);
}
.lead-form-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.lead-form-section__title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 12px;
}
.lead-form-section__subtitle { font-size: 15px; color: var(--text-muted); margin: 0 0 24px; }
.lead-form-section__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lead-form-section__benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}
.lead-form-section__benefits li span {
    width: 22px;
    height: 22px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.lead-form-section__form {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-form__field input,
.lead-form__field select,
.lead-form__field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: #fff;
    transition: border-color .2s;
    box-sizing: border-box;
}
.lead-form__field input:focus,
.lead-form__field select:focus,
.lead-form__field textarea:focus {
    border-color: var(--green);
    outline: none;
}
.lead-form__privacy { font-size: 11px; color: var(--text-muted); text-align: center; margin: 0; }
.lead-form__privacy a { color: var(--green); }

/* ── SERVICES CATALOG PAGE ───────────────────────────────── */
.services-catalog { padding: var(--section-pad); }
.services-catalog__intro {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 0 48px;
}
.services-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── SERVICE CATEGORY PAGE ───────────────────────────────── */
.service-intro-section { padding: var(--section-pad); }
.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.service-intro__title {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    margin: 0 0 20px;
    color: var(--text);
}
.service-intro__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
}
.service-intro__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.service-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 380px;
}
.sub-services-section {
    padding: var(--section-pad);
    background: var(--bg-light);
}
.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sub-service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
}
.sub-service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sub-service-card__img {
    height: 160px;
    overflow: hidden;
    background: var(--green-bg);
}
.sub-service-card__img img { width: 100%; height: 100%; object-fit: cover; }
.sub-service-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.sub-service-card__title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text);
}
.sub-service-card__desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; flex: 1; margin: 0 0 10px; }
.sub-service-card__price { font-size: 13px; color: var(--green); font-weight: 600; }

/* ── PRICE TABLE ─────────────────────────────────────────── */
.price-table-section { padding: var(--section-pad); }
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.price-table thead tr {
    background: var(--green);
    color: #fff;
}
.price-table th {
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}
.price-table tbody tr { border-bottom: 1px solid var(--border); transition: background .2s; }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--green-bg); }
.price-table td { padding: 14px 20px; font-size: 14px; color: var(--text); }
.price-table td:first-child a { color: var(--green); text-decoration: none; font-weight: 500; }
.price-table td:first-child a:hover { text-decoration: underline; }
.price-table td.price-cell {
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}
.price-table td.unit-cell { color: var(--text-muted); font-size: 13px; }

/* ── PRICES PAGE SECTIONS ────────────────────────────────── */
.prices-page { padding: var(--section-pad); }
.prices-page__intro {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 720px;
}
.price-section { margin-bottom: 48px; }
.price-section__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--green);
    display: inline-block;
}
.price-section__title a {
    color: var(--green);
    text-decoration: none;
}
.price-section__title a:hover { text-decoration: underline; }

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.faq-section { padding: var(--section-pad); background: var(--bg-light); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}
.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color .2s;
}
.faq-item__question:hover { color: var(--green); }
.faq-item__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .3s;
}
.faq-item.active .faq-item__icon { background: var(--green); transform: rotate(45deg); }
.faq-item__icon svg { width: 14px; height: 14px; }
.faq-item.active .faq-item__icon svg { stroke: #fff; }
.faq-item__answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-item.active .faq-item__answer {
    max-height: 500px;
    padding-bottom: 20px;
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-intro-section { padding: var(--section-pad); }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-intro__content .section-title { text-align: left; }
.about-intro__content .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
    margin-top: 12px;
}
.about-points { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.about-points li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-top: 6px;
}
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img {
    width: 100%;
    display: block;
    max-height: 480px;
    object-fit: cover;
}
.stats-section { padding: 48px 0; background: var(--green); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item__value {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item__label { font-size: 13px; color: rgba(255,255,255,.8); }
.why-us-section { padding: var(--section-pad); background: var(--bg-light); }
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-us-card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.why-us-card__icon { font-size: 36px; margin-bottom: 14px; }
.why-us-card__title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
}
.why-us-card__text { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── REVIEWS PAGE ────────────────────────────────────────── */
.reviews-page { padding: var(--section-pad); }
.video-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}
.video-review-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
}
.video-review-card video,
.video-review-card iframe {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
}
.video-review-card__info {
    background: #fff;
    padding: 16px;
}
.video-review-card__name { font-weight: 700; font-size: 14px; margin: 0 0 4px; }
.video-review-card__service { font-size: 13px; color: var(--text-muted); margin: 0; }
.text-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── PORTFOLIO PAGE ──────────────────────────────────────── */
.portfolio-page { padding: var(--section-pad); }
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}
.portfolio-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.portfolio-page-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.portfolio-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.portfolio-page-item:hover img { transform: scale(1.05); }
.portfolio-page-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity .3s;
}
.portfolio-page-item:hover .portfolio-page-item__overlay { opacity: 1; }
.portfolio-page-item__title { color: #fff; font-size: 13px; font-weight: 600; text-align: center; }
.portfolio-page-item__cat {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 600;
}

/* ── CONTACTS PAGE ───────────────────────────────────────── */
.contacts-page { padding: var(--section-pad); }
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
}
.contacts-info { display: flex; flex-direction: column; gap: 20px; }
.contact-block__title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
}
.contact-item:hover { border-color: var(--green); box-shadow: var(--shadow); }
.contact-item__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}
.contact-item__icon--phone { background: #E8F5E9; }
.contact-item__icon--wa    { background: #E8F5E9; }
.contact-item__icon--tg    { background: #E3F2FD; }
.contact-item__icon--max   { background: #EDE7F6; }
.contact-item__icon--viber { background: #F3E5F5; }
.contact-item__icon--email { background: #FFF8E1; }
.contact-item__icon--address { background: #FFEBEE; }
.contact-item__icon svg { display: block; }
.contact-item__label { font-size: 11px; color: var(--text-muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .4px; }
.contact-item__value { font-size: 15px; font-weight: 600; color: var(--text); }
.contacts-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}
.contacts-form__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px;
}
.contacts-form__subtitle { font-size: 13px; color: var(--text-muted); margin: 0 0 24px; }
.contacts-map { border-radius: var(--radius-lg); overflow: hidden; height: 100%; min-height: 300px; }
.contacts-map iframe { width: 100%; height: 100%; border: none; display: block; min-height: 300px; }
.contacts-map__placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border);
    height: 300px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-align: center;
    padding: 20px;
}

/* ── SINGLE SERVICE / BLOG POST ──────────────────────────── */
.single-content { padding: var(--section-pad); }
.single-content__grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}
.single-content__main h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin: 32px 0 16px;
}
.single-content__main p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin: 0 0 16px; }
.single-content__main ul {
    padding-left: 20px;
    margin: 0 0 20px;
}
.single-content__main ul li { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }
.single-cover {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}
.single-cover img { width: 100%; display: block; max-height: 460px; object-fit: cover; }
.features-list {
    background: var(--green-bg);
    border-radius: var(--radius);
    padding: 20px 20px 20px 40px;
    margin: 20px 0;
}
.features-list li {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 8px;
}
.features-list li::marker { color: var(--green); }

/* Sidebar */
.single-sidebar { position: sticky; top: 90px; }
.sidebar-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}
.sidebar-card__title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.sidebar-price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 4px;
}
.sidebar-price-unit { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.sidebar-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.sidebar-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    transition: color .2s;
}
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links li a:hover { color: var(--green); }

/* ── BLOG ────────────────────────────────────────────────── */
.blog-page { padding: var(--section-pad); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__img {
    height: 190px;
    overflow: hidden;
    background: var(--green-bg);
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card__date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card__title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin: 0 0 10px;
    flex: 1;
}
.blog-card__excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0 0 14px; }
.blog-card__more { font-size: 13px; color: var(--green); font-weight: 600; }

/* ── 404 PAGE ────────────────────────────────────────────── */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}
.error-page__num {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 800;
    color: var(--green-bg);
    line-height: 1;
    margin-bottom: 8px;
}
.error-page__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px;
}
.error-page__text { font-size: 16px; color: var(--text-muted); margin: 0 0 32px; }

/* ── UTILITIES ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 32px; }
.mb-8  { margin-bottom: 32px; }
.section-actions { margin-top: 40px; text-align: center; }
.btn-group { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid, .advantages-grid, .reviews-grid,
    .prices-preview-grid, .services-catalog-grid,
    .sub-services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .portfolio-grid, .portfolio-page-grid { grid-template-columns: repeat(3, 1fr); }
    .contacts-grid { grid-template-columns: 1fr 1fr; }
    .single-content__grid { grid-template-columns: 1fr; }
    .single-sidebar { position: static; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .about-intro-grid, .service-intro-grid, .lead-form-section__inner { grid-template-columns: 1fr; gap: 40px; }
    .cta-section__inner { flex-direction: column; text-align: center; }
    .cta-section__actions { justify-content: center; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --section-pad: 48px 0; }
    .services-grid, .advantages-grid, .reviews-grid,
    .prices-preview-grid, .services-catalog-grid,
    .sub-services-grid, .blog-grid, .video-reviews-grid,
    .text-reviews-grid, .why-us-grid { grid-template-columns: 1fr; }
    .portfolio-grid, .portfolio-page-grid { grid-template-columns: repeat(2, 1fr); }
    .contacts-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lead-form-section__form { padding: 24px; }
    .contacts-form-wrap { padding: 24px; }
    .sidebar-card { display: none; }
    .price-table { font-size: 13px; }
    .price-table th, .price-table td { padding: 10px 12px; }
}
@media (max-width: 480px) {
    .portfolio-grid, .portfolio-page-grid { grid-template-columns: 1fr; }
    .page-banner { min-height: 200px; }
    .process-steps { grid-template-columns: 1fr; }
    .portfolio-grid--large .portfolio-item:first-child { grid-column: span 1; grid-row: span 1; }
}

/* ── SERVICE GALLERY ─────────────────────────────────────── */
.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}
.service-gallery__item {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-bg-alt, #f5f5f5);
    cursor: pointer;
    text-decoration: none;
}
.service-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.service-gallery__item:hover img { transform: scale(1.05); }
.service-gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.0);
    transition: background .25s;
}
.service-gallery__item:hover::after { background: rgba(0,0,0,.15); }
.service-gallery__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 8px 10px;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    z-index: 1;
}

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}
.lightbox-caption {
    color: #ccc;
    font-size: 13px;
    margin-top: 12px;
    text-align: center;
    min-height: 20px;
}
.lightbox-close {
    position: absolute;
    top: 16px; right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    opacity: .8;
    transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 36px;
    width: 56px; height: 72px;
    cursor: pointer;
    border-radius: 6px;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center;
    z-index: 10001;
    line-height: 1;
    user-select: none;
}
.lightbox-btn:hover { background: rgba(255,255,255,.28); }
.lightbox-btn--prev { left: 20px; }
.lightbox-btn--next { right: 20px; }

@media (max-width: 768px) {
    .service-gallery { grid-template-columns: repeat(2, 1fr); }
    .lightbox-btn--prev { left: 8px; }
    .lightbox-btn--next { right: 8px; }
}
@media (max-width: 480px) {
    .service-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .lightbox-btn { width: 40px; height: 56px; font-size: 28px; }
    .lightbox-btn--prev { left: 4px; }
    .lightbox-btn--next { right: 4px; }
}

/* ── HOME GALLERY SECTION ────────────────────────────────── */
.home-gallery-section { padding: var(--section-pad); background: var(--color-bg); }
.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.home-gallery__item {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #e8e8e8;
    cursor: pointer;
    text-decoration: none;
}
.home-gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.home-gallery__item:hover img { transform: scale(1.06); }
.home-gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .25s;
}
.home-gallery__item:hover::after { background: rgba(0,0,0,.12); }
.home-gallery__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 8px 10px;
    font-size: 12px; color: #fff;
    background: linear-gradient(transparent, rgba(0,0,0,.6));
    z-index: 1;
}
/* First item spans 2 cols for visual variety */
.home-gallery__item:first-child { grid-column: span 2; grid-row: span 2; }

@media (max-width: 1024px) {
    .home-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .home-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .home-gallery__item:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 480px) {
    .home-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .home-gallery__item:first-child { grid-column: span 2; grid-row: span 1; }
}
