@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* ============================================
   modern-ui.css — Polished styles for new elements
   Blog, Article, Reviews page, Benefits page,
   Compact reviews/benefits blocks on service pages
   ============================================ */

/* ============================================================
   Trust Strip — Social Proof Bar
   ============================================================ */
.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,.07);
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
    color: rgba(255,255,255,.7);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.trust-strip__stars {
    color: #fbbf24;
    font-weight: 700;
}

.trust-strip__sep {
    color: rgba(255,255,255,.3);
    font-size: 10px;
}

.trust-strip__item {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .trust-strip {
        font-size: 11px;
        gap: 6px;
        padding: 6px 12px;
        flex-wrap: wrap;
    }
}

/* ============================================================
   Reviews Compact Section (on service pages)
   ============================================================ */
.reviews-compact-section {
    padding: 40px 0;
    margin: 20px 0;
}

.reviews-compact-section .title-sections {
    margin-bottom: 28px;
}

.reviews-compact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.review-compact-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #0871e0;
    padding: 22px 22px 22px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    position: relative;
}

.review-compact-item:hover {
    box-shadow: 0 6px 20px rgba(8,113,224,.12);
    transform: translateY(-2px);
}

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

.review-compact-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.review-compact-rating {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 1px;
}

.review-compact-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.reviews-compact-cta {
    text-align: center;
    margin-top: 24px;
}

.reviews-compact-cta .btn-grs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

/* ============================================================
   Benefits Compact Section (on service pages)
   ============================================================ */
.benefits-compact-section {
    padding: 40px 0;
    margin: 20px 0;
}

.benefits-compact-section .title-sections {
    margin-bottom: 28px;
}

.benefits-compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.benefits-compact-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 3px solid transparent;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
    transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.benefits-compact-item:hover {
    box-shadow: 0 6px 20px rgba(8,113,224,.10);
    transform: translateY(-2px);
    border-top-color: #0871e0;
}

.benefits-compact-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, rgba(8,113,224,.08), rgba(8,113,224,.04));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(8,113,224,.12);
}

.benefits-compact-icon img {
    width: 28px;
    height: 28px;
}

.benefits-compact-item h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px;
}

.benefits-compact-item p {
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   Blog Page — Hero
   ============================================================ */
.blog-hero {
    background: linear-gradient(135deg, #0871e0 0%, #065cb8 100%);
    color: #fff;
    padding: 36px 28px;
    margin-bottom: 24px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    pointer-events: none;
}

.blog-hero h1 {
    font-size: 22px;
    margin: 0 0 8px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.blog-hero p {
    font-size: 14px;
    opacity: 0.85;
    margin: 0 auto;
    max-width: 560px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ============================================================
   Blog Page — Filters
   ============================================================ */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    padding: 0 0 20px;
    border-bottom: 2px solid #f1f5f9;
}

.blog-filter-btn,
.blog-filter {
    padding: 7px 18px;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.blog-filter-btn:hover,
.blog-filter:hover {
    border-color: #0871e0;
    color: #0871e0;
    background: rgba(8,113,224,.04);
}

.blog-filter-btn.active,
.blog-filter.active {
    background: #0871e0;
    color: #fff;
    border-color: #0871e0;
}

/* ============================================================
   Blog Page — Cards Grid
   ============================================================ */
.blog-articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.blog-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.blog-card:hover {
    box-shadow: 0 8px 28px rgba(8,113,224,.14);
    transform: translateY(-3px);
    border-color: #93c5fd;
}

.blog-card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #f1f5f9;
}

.blog-card__image-placeholder {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(145deg, #e8f0fe 0%, #d0e3ff 50%, #b8d4fe 100%);
    color: #3b82f6;
    border-bottom: 1px solid #dbeafe;
    position: relative;
    flex-shrink: 0;
}

.blog-card__content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #94a3b8;
    flex-wrap: wrap;
}

.blog-card__category {
    background: #0871e0;
    color: #fff;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.blog-card__date,
.blog-card__reading-time {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    color: #94a3b8;
}

.blog-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card__title {
    color: #0871e0;
}

.blog-card__excerpt {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0871e0;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.blog-card__link:hover {
    gap: 10px;
}

/* ============================================================
   Blog Article Page
   ============================================================ */

/* Blog back-button */
.blog-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.article-page {
    max-width: 100%;
    margin: 0;
    padding: 20px 0 32px;
}

/* Hide article breadcrumbs — site shell already has them */
.article-page .article-page__breadcrumbs {
    display: none;
}

.article-page__header {
    margin-bottom: 32px;
}

.article-page__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #94a3b8;
}

.article-page__breadcrumbs a {
    color: #0871e0;
    text-decoration: none;
}

.article-page__breadcrumbs a:hover {
    text-decoration: underline;
}

.article-page__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #94a3b8;
}

.article-page__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-page__title {
    font-size: 28px;
    line-height: 1.25;
    color: #111827;
    margin: 0 0 16px;
    font-weight: 800;
}

.article-page__lead {
    font-size: 17px;
    color: #334155;
    line-height: 1.65;
    padding: 18px 22px;
    background: linear-gradient(135deg, #f8fafc, #f0f7ff);
    border-left: 4px solid #0871e0;
    margin: 0 0 32px;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.article-content h2 {
    font-size: 22px;
    margin: 40px 0 16px;
    color: #111827;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}

.article-content h3 {
    font-size: 18px;
    margin: 32px 0 12px;
    color: #111827;
    font-weight: 700;
}

.article-content p {
    margin: 0 0 16px;
}

.article-content ul,
.article-content ol {
    padding-left: 24px;
    margin: 0 0 16px;
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-content blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    font-style: italic;
    color: #166534;
}

.article-content .info-box {
    margin: 24px 0;
    padding: 22px 24px;
    background: linear-gradient(135deg, #eff6ff 0%, #e8f2ff 100%);
    border: 1px solid #bfdbfe;
    border-left: 4px solid #3b82f6;
    position: relative;
}

.article-content .info-box h4 {
    color: #1d4ed8;
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
}

.article-content .tip-box {
    margin: 24px 0;
    padding: 22px 24px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #bbf7d0;
    border-left: 4px solid #22c55e;
    position: relative;
}

.article-content .tip-box h4 {
    color: #15803d;
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
}

.article-content .warning-box {
    margin: 24px 0;
    padding: 22px 24px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    position: relative;
}

.article-content .warning-box h4 {
    color: #b45309;
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
}

.article-content a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s;
}
.article-content a:hover {
    color: #1d4ed8;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}
.article-content th,
.article-content td {
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    text-align: left;
}
.article-content th {
    background: #f1f5f9;
    font-weight: 600;
}
.article-content tr:hover td {
    background: #f8fafc;
}

.article-page__toc {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 22px 26px;
    margin: 0 0 32px;
}

.article-page__toc h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #111827;
}

.article-page__toc ol {
    margin: 0;
    padding-left: 20px;
}

.article-page__toc li {
    margin-bottom: 6px;
}

.article-page__toc a {
    color: #0871e0;
    text-decoration: none;
    font-size: 14px;
}

.article-page__toc a:hover {
    text-decoration: underline;
}

.article-page__share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 2px solid #f1f5f9;
    margin-top: 40px;
}

.article-page__cta {
    background: linear-gradient(135deg, #0871e0 0%, #065cb8 100%);
    color: #fff;
    padding: 40px 36px;
    text-align: center;
    margin: 40px 0 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(8,113,224,.25);
    border-radius: 16px;
}

.article-page__cta::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    pointer-events: none;
}

.article-page__cta h3 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 10px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.article-page__cta p {
    color: rgba(255,255,255,0.85);
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}

.article-page__cta .btn-grs--three {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 240px;
    position: relative;
    z-index: 1;
    background: #fff !important;
    color: #0871e0 !important;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.article-page__cta .btn-grs--three:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,.2);
}

.article-page__cta + div {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 16px;
}

.article-page__cta + div .btn-grs,
.blog-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 200px;
    background: #f1f5f9 !important;
    color: #374151 !important;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: none;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}

.article-page__cta + div .btn-grs:hover,
.blog-back-btn:hover {
    background: #e2e8f0 !important;
    border-color: #cbd5e1;
}

/* ============================================================
   Reviews Page — Hero
   ============================================================ */
.reviews-page-hero {
    background: linear-gradient(135deg, #0871e0 0%, #065cb8 100%);
    color: #fff;
    padding: 28px 24px 16px;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    pointer-events: none;
}

.reviews-page-hero h1 {
    font-size: 22px;
    margin: 0 0 8px;
    color: #fff;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.reviews-page-hero p {
    font-size: 15px;
    opacity: 0.85;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================================
   Reviews Page — Stats
   ============================================================ */
.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding: 28px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.reviews-stat,
.reviews-stats__item {
    text-align: center;
    min-width: 100px;
}

.reviews-stat__number,
.reviews-stats__number {
    font-size: 32px;
    font-weight: 800;
    display: block;
    line-height: 1;
    color: #0871e0;
    margin-bottom: 6px;
}

.reviews-stat__label,
.reviews-stats__label {
    font-size: 12px;
    color: #64748b;
    margin-top: 0;
}

/* ============================================================
   Reviews Page — Cards Grid
   ============================================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #0871e0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.review-card:hover {
    box-shadow: 0 6px 24px rgba(8,113,224,.12);
    transform: translateY(-2px);
}

.review-card:hover::before {
    opacity: 1;
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0871e0, #065cb8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.5px;
}

.review-card__info {
    flex: 1;
    min-width: 0;
}

.review-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.review-card__service {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 1px;
}

.review-card__date {
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
}

.review-card__rating,
.review-card__stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.review-card__text {
    font-size: 13.5px;
    line-height: 1.65;
    color: #475569;
    margin: 0;
}

/* ============================================================
   Benefits Page — Hero
   ============================================================ */
.benefits-page-hero {
    background: linear-gradient(135deg, #0871e0 0%, #065cb8 100%);
    color: #fff;
    padding: 28px 24px;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefits-page-hero::before {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    pointer-events: none;
}

.benefits-page-hero h1 {
    font-size: 22px;
    margin: 0 0 8px;
    color: #fff;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.benefits-page-hero p {
    font-size: 15px;
    opacity: 0.85;
    margin: 0 auto;
    max-width: 560px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ============================================================
   Benefits Page — Full Cards Grid
   ============================================================ */
.benefits-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card-full {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.benefit-card-full:hover {
    box-shadow: 0 8px 28px rgba(8,113,224,.12);
    transform: translateY(-3px);
    border-color: #0871e0;
}

.benefit-card-full__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    border: 1px solid #bfdbfe;
}

.benefit-card-full__icon img {
    width: 28px;
    height: 28px;
}

.benefit-card-full__content h3,
.benefit-card-full__title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px;
}

.benefit-card-full__content p,
.benefit-card-full__text {
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
    margin: 0;
}

/* ============================================================
   Benefits Page — Numbers
   ============================================================ */
.benefits-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 40px 0;
}

.benefits-number-item,
.benefits-number__item {
    background: #fff;
    padding: 28px 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.benefits-number-item__value,
.benefits-number__value {
    font-size: 34px;
    font-weight: 800;
    color: #0871e0;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.benefits-number-item__label,
.benefits-number__label {
    font-size: 12.5px;
    color: #64748b;
}

/* ============================================================
   Responsive: Tablets (640px+)
   ============================================================ */
@media (min-width: 640px) {
    .reviews-compact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-compact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-articles-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-numbers {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-hero h1,
    .reviews-page-hero h1,
    .benefits-page-hero h1 {
        font-size: 28px;
    }

    .article-page__title {
        font-size: 34px;
    }

    .reviews-stats {
        gap: 48px;
    }
}

/* ============================================================
   Responsive: Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
    .reviews-compact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid-full {
        grid-template-columns: 1fr 1fr;
    }

    .blog-hero h1,
    .reviews-page-hero h1,
    .benefits-page-hero h1 {
        font-size: 32px;
    }

    .blog-hero {
        padding: 32px 40px;
    }

    .reviews-page-hero {
        padding: 36px 40px 20px;
    }

    .benefits-page-hero {
        padding: 36px 40px;
    }

    .article-page__title {
        font-size: 40px;
    }

    .blog-card__image,
    .blog-card__image-placeholder {
        height: 200px;
    }

    .review-compact-item {
        padding: 24px 24px 24px 22px;
    }

    .benefits-compact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reviews-stats {
        gap: 56px;
    }
}

/* ============================================================
   Service Pages: Advantages Section
   ============================================================ */
/* Header z-index: raise so dropdown menu is above page content */
.header {
    z-index: 10 !important;
}

.advantages-section {
    padding: 24px 0 32px;
    margin-bottom: 8px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.advantages-item {
    background: #fff;
    border-radius: 0;
    padding: 24px 20px;
    border: 1px solid #e8ecf1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    transition: transform .25s ease, box-shadow .25s ease;
    text-align: center;
}

.advantages-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(8, 113, 224, .12);
}

.advantages-item h3 {
    font-size: 16px;
    color: #1a1a2e;
    margin: 10px 0 6px;
}

.advantages-item p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.advantages-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f4fd 0%, #d1ecf9 100%);
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}

/* Service Pages: Our Services (dynamic submenu) */
.our-services {
    margin-bottom: 24px;
}

/* Service Pages: Article Wrapper */
.article-wrapper {
    margin-bottom: 24px;
    padding: 0 20px;
}

/* Service Pages: Prices Container */
.main-header-conteiner {
    /* padding: 0 20px; */
}

.list-services .btn-prices,
.list-services .link-prices {
    line-height: 3;
}

/* ============================================================
   Service Pages: Responsive
   ============================================================ */
@media (min-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .advantages-item {
        padding: 28px 22px;
    }
}

@media (min-width: 1170px) {
    .main-header-conteiner,
    .article-wrapper {
        /* padding: 0 50px; */
    }
}

/* ============================================================
   Urgency floating bar (bottom notification)
   ============================================================ */
.urgency-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: transform .5s cubic-bezier(.4,0,.2,1), opacity .5s ease, visibility .5s ease;
    pointer-events: none;
}
.urgency-bar--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.urgency-bar__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.1), 0 4px 16px rgba(0,0,0,.06);
    padding: 14px 24px;
    white-space: nowrap;
}
.urgency-bar__dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34,197,94,.5);
    flex-shrink: 0;
    animation: urgencyPulse 2s ease-in-out infinite;
}
@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 6px rgba(34,197,94,.5); }
    50% { box-shadow: 0 0 12px rgba(34,197,94,.7); }
}
.urgency-bar__text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #374151;
}
.urgency-bar__title {
    font-weight: 600;
    color: #111827;
}
.urgency-bar__sep {
    color: #9ca3af;
}
.urgency-bar__minutes {
    font-weight: 700;
    color: #2563eb;
}
.urgency-bar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: background .2s ease;
    flex-shrink: 0;
}
.urgency-bar__btn:hover {
    background: #1d4ed8;
}
.urgency-bar__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    font-size: 20px;
    line-height: 1;
    padding: 4px;
    flex-shrink: 0;
    transition: color .2s ease;
}
.urgency-bar__close:hover {
    color: #4b5563;
}

/* Urgency bar — mobile */
@media (max-width: 767px) {
    .urgency-bar {
        bottom: 16px;
        left: 16px;
        right: 16px;
        transform: translateX(0) translateY(120%);
        width: auto;
    }
    .urgency-bar--visible {
        transform: translateX(0) translateY(0);
    }
    .urgency-bar__inner {
        gap: 10px;
        padding: 12px 16px;
        border-radius: 14px;
        white-space: normal;
    }
    .urgency-bar__text {
        font-size: 13px;
        flex-wrap: wrap;
        gap: 4px;
    }
    .urgency-bar__btn {
        font-size: 13px;
        padding: 7px 14px;
        border-radius: 10px;
    }
    .urgency-bar__sep {
        display: none;
    }
    .urgency-bar__time {
        display: block;
    }
}

/* ============================================================
   Service Cards — light polish (matches original design)
   ============================================================ */
.link__card {
    border-radius: 6px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.link__card:hover {
    background: #fafbfc;
}

/* ============================================================
   Overrides — Blog CTA button & text colors
   ============================================================ */
.blog-articles-grid ~ .cta .btn-grs,
.article-page .cta .btn-grs,
section.article .cta .btn-grs {
    background: linear-gradient(135deg, #63c329, #4da820);
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.blog-articles-grid ~ .cta .btn-grs:hover,
.article-page .cta .btn-grs:hover,
section.article .cta .btn-grs:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ============================================================
   Benefits grid: 2 columns on tablets too (640px+)
   ============================================================ */
@media (min-width: 640px) {
    .benefits-grid-full {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   Header & Footer — Business Polish
   ============================================================ */

/* --- HEADER: clean up desktop nav spacing --- */
@media (min-width: 1024px) {
    .desktop-nav-wrapper {
        padding: 12px 0 !important;
    }
    .desktop-nav-wrapper .nav {
        gap: 4px;
    }
    .desktop-nav-wrapper .nav__link {
        font-size: 13px;
        letter-spacing: .6px;
        margin-right: 18px;
    }
}

/* --- DISCLAIMER: blend into footer --- */
.disclaimer-bar {
    background: #f7f8f9;
    padding: 12px 0;
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    line-height: 1.5;
    border-top: 1px solid #e5e7eb;
}

/* --- FOOTER: white bg, polished layout --- */

/* Services strip at top of footer */
.conteiner__menu-services-footer {
    padding: 12px 0 !important;
}
.conteiner__menu-services-footer .services__link {
    font-size: 13px;
    letter-spacing: .3px;
    transition: color .2s ease;
}
.conteiner__menu-services-footer .services__link:hover {
    color: #63c329 !important;
}

/* Contact section — more breathing room */
.nav-contacts__footer {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
}

/* Green CTA text — make it stand out */
.nav-contacts__footer .box-text-phone .title {
    font-size: 15px !important;
    font-weight: 500;
    color: #1a8f4a !important;
    line-height: 1.4;
}

/* Payment methods — neat row */
.payment-methods span {
    font-size: 13px;
    color: #6b7280;
}
.payment-methods img {
    border-radius: 4px;
    vertical-align: middle;
}

/* Working hours — clean block */
.box__working-time {
    text-align: center;
    padding: 0 24px;
}
.box__working-time .working-time {
    display: block;
    font-size: 15px;
    line-height: 1.6;
    color: #1f2937;
}
.box__working-time .working-time:first-child {
    font-weight: 700;
    color: #0871e0;
}

/* Footer nav links — better weight & spacing */
.nav__footer .nav__link-footer {
    font-size: 12px !important;
    color: #4b5563 !important;
    transition: color .2s ease;
}
.nav__footer .nav__link-footer:hover {
    color: #0871e0 !important;
}

/* --- COPYRIGHT bar — refined dark bottom --- */
.section-copywriting {
    background: #111827 !important;
    padding: 20px !important;
}
.copywriting {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.copywriting .copywriting__item {
    color: #9ca3af;
    font-size: 13px;
}
.copywriting .box__link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 20px;
}
.copywriting .box__link .link {
    color: #9ca3af;
    font-size: 12px;
    transition: color .2s ease;
}
.copywriting .box__link .link:hover {
    color: #e5e7eb;
}
.copywriting .box__link .link-mail {
    color: #63c329;
}
.copywriting .box__link .link-mail:hover {
    color: #7ee04a;
}

/* Footer disclaimer inside copyright */
.footer-disclaimer {
    color: rgba(156, 163, 175, .5) !important;
    border-top-color: rgba(255, 255, 255, .06) !important;
}

/* --- Responsive --- */
@media (min-width: 1024px) {
    .copywriting {
        flex-direction: row;
        justify-content: space-between;
    }
    .nav-contacts__footer {
        align-items: flex-start !important;
    }
}

/* Service menu — Bootstrap Icons override */
.menu__services-mobile .box__services__link[class*="bi-"]::before {
    color: #63c329;
    font-size: 22px;
}
