/* ============================================================
   БУДПРОФ — HOME PAGE STYLES
   /assets/css/home.css
============================================================ */

/* ===== RESET & BASE ===== */
:root{
  --bp-font-main: 'Montserrat', sans-serif;

  --bp-color-title: #1a1f2e;
  --bp-color-text: #5b6b82;
  --bp-color-text-soft: #6b7280;
  --bp-color-accent: #2171C7;
  --bp-color-accent-hover: #1558a8;

  --bp-color-bg: #fcfcfd;
  --bp-color-bg-soft: #f3f4f6;
  --bp-color-white: #ffffff;
  --bp-color-border: #e4e8f0;

  --bp-radius-lg: 20px;
  --bp-radius-xl: 28px;
  --bp-radius-pill: 100px;

  --bp-shadow-soft: 0 8px 40px rgba(0,0,0,0.07);
  --bp-shadow-accent: 0 4px 16px rgba(33,113,199,0.28);
  --bp-header-height: 102px;
  --bp-header-height-mobile: 64px;
  --bp-header-shadow: 0 2px 16px rgba(0,0,0,0.07);
  --bp-header-shadow-scrolled: 0 4px 28px rgba(0,0,0,0.12);
  --bp-dropdown-shadow: 0 8px 32px rgba(0,0,0,0.12);
  --bp-overlay-dark: rgba(10,20,40,0.55);
}
.bp-page *,
.bp-page *::before,
.bp-page *::after {
    box-sizing: border-box;
}
.bp-page {
    font-family: var(--bp-font-main);
    color: var(--bp-color-title);
    width: 100%;
    overflow-x: hidden;
    background: var(--bp-color-bg);
    min-height: 100vh;
}
.bp-page img { max-width: 100%; display: block; }
.bp-page a { text-decoration: none; color: inherit; }
.bp-page ul { list-style: none; padding: 0; margin: 0; }

/* ===== LAYOUT ===== */
.bp-wrap {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}
.bp-section { 
    padding: 80px 0; 
    background: #fcfcfd;
}
.bp-section-gray { 
    background: #f3f4f6;
}
/* ===== GLOBAL TYPOGRAPHY ===== */
.bp-title-1,
.bp-title-2,
.bp-title-3{
    margin: 0;
    font-family: var(--bp-font-main);
    color: var(--bp-color-title);
    letter-spacing: -0.02em;
}

.bp-title-1{
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
}

.bp-title-2{
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
}

.bp-title-3{
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.15;
    font-weight: 700;
}

.bp-text{
    margin: 0;
    font-family: var(--bp-font-main);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--bp-color-text);
}

.bp-text-sm{
    margin: 0;
    font-family: var(--bp-font-main);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--bp-color-text-soft);
}
@media (max-width: 991px){
    .bp-title-1{
        font-size: clamp(28px, 6vw, 40px);
    }

    .bp-title-2{
        font-size: clamp(24px, 5vw, 32px);
    }

    .bp-title-3{
        font-size: 20px;
    }

    .bp-text{
        font-size: 16px;
    }

    .bp-text-sm{
        font-size: 14px;
    }
}

@media (max-width: 767px){
    .bp-title-1{
        font-size: 30px;
        line-height: 1.08;
    }

    .bp-title-2{
        font-size: 26px;
        line-height: 1.1;
    }

    .bp-title-3{
        font-size: 18px;
    }

    .bp-text{
        font-size: 15px;
        line-height: 1.55;
    }

    .bp-text-sm{
        font-size: 13px;
        line-height: 1.45;
    }
}

/* ===== BUTTONS ===== */
.bp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bp-color-accent);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--bp-radius-pill);
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: var(--bp-shadow-accent);
    font-family: var(--bp-font-main);
    white-space: nowrap;
}

.bp-btn:hover {
    background: var(--bp-color-accent-hover);
    transform: translateY(-1px);
    color: #fff;
}

.bp-btn,
.bp-btn:link,
.bp-btn:visited,
.bp-btn:hover,
.bp-btn:active,
.bp-btn:focus {
    color: #fff;
    text-decoration: none;
}
.bp-btn-out {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--bp-color-accent);
    padding: 13px 26px;
    border-radius: var(--bp-radius-pill);
    font-size: 14px;
    font-weight: 700;
    border: 2px solid var(--bp-color-accent);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--bp-font-main);
    white-space: nowrap;
}
.bp-btn-out:hover {
    background: var(--bp-color-accent);
    color: #fff;
}

/* ===== SECTION LABELS ===== */
.bp-section-lbl {
    display: inline-block; background: #e8f1fb; color: #2171C7;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.bp-section-h {
    font-size: clamp(26px, 3vw, 40px); font-weight: 800;
    line-height: 1.15; color: #1a1f2e; margin-bottom: 14px; letter-spacing: -0.3px;
}
.bp-section-d {
    font-size: 15.5px; color: #6b7280; line-height: 1.7;
    max-width: 600px; margin: 0 auto;
}

/* ===== HERO ===== */
.bp-hero {
    display: grid; 
    grid-template-columns: 1fr 420px;
    gap: 28px; 
    align-items: stretch; 
    padding: 0;
    background-color: #fcfcfd;
}
.bp-hero-left {
    border-radius: 20px; overflow: hidden; position: relative;
    min-height: 460px;
    background: url('../img/header-3.webp') center/cover no-repeat;
}
.bp-hero-left::after {
    content: ''; 
    position: absolute; 
    inset: 0;
    background: linear-gradient(to right, rgba(10,20,40,0.15) 0%, rgba(10,20,40,0.10) 60%, transparent 100%);
}
.bp-hero-content {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0;
    padding: 36px 40px 200px; z-index: 1;
}
.bp-hero-content,
.bp-hero-content * {
    font-family: 'Montserrat', sans-serif !important;
}

.bp-hero-content h1,
.bp-hero-content h1 span,
.bp-hero-content .bp-blue-text {
    font-family: 'Montserrat', sans-serif !important;
}

.bp-hero-content h1 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800 !important;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bp-hero-content h1 span,
.bp-hero-content .bp-blue-text {
    color: #2171C7;
    font-weight: 800 !important;
}
.bp-hero-content p  { 
    font-size: 16px; 
    color: #fff;
    margin-bottom: 8px; 
}
.bp-hero-price { font-size: 26px; font-weight: 800; color: #5db0f8; margin-bottom: 28px; }
.bp-hero-btns  { display: flex; gap: 12px; flex-wrap: wrap; }
.bp-hero-btns .bp-btn-out { color: #fff; border-color: rgba(255,255,255,0.6); }
.bp-hero-btns .bp-btn-out:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.bp-hero-section {
    background: #fcfcfd;
    padding: 28px 0 36px;
}

/* Hero Calculator */
.bp-hero-calc {
    background: #2171C7;
    border-radius: 20px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bp-hero-calc h3 {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.bp-clbl {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

/* Общие стили select */
.bp-hero-calc .bp-csel,
.bp-hero-calc select {
    width: 100%;
    padding: 11px 14px;
    padding-right: 42px;
    border-radius: 10px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 13px center !important;
    background-size: 12px 8px !important;
}

/* Только input с площадью */
.bp-hero-calc .bp-cinp,
.bp-hero-calc input {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #2171C7 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.4;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Если есть textarea */
.bp-hero-calc textarea {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.bp-hero-calc .bp-csel:focus,
.bp-hero-calc select:focus,
.bp-hero-calc textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    background: rgba(255,255,255,0.22) !important;
}

.bp-hero-calc .bp-cinp:focus,
.bp-hero-calc input:focus {
    outline: none !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #2171C7 !important;
}

.bp-hero-calc .bp-cinp::placeholder,
.bp-hero-calc input::placeholder,
.bp-hero-calc textarea::placeholder {
    color: rgba(255,255,255,0.5) !important;
}

.bp-hero-calc .bp-csel option,
.bp-hero-calc select option {
    color: #1a1f2e !important;
    background: #fff !important;
}

.bp-cresult {
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.2);
}

.bp-cresult-lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
}

.bp-cresult-price {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
}

.bp-cresult-note {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-top: 3px;
}

.bp-cbtn {
    width: 100%;
    padding: 13px;
    background: #fff;
    color: #2171C7;
    border: none;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.bp-cbtn:hover {
    background: #f0f6ff;
    transform: translateY(-1px);
}

.bp-cbtn-wh {
    width: 100%;
    padding: 13px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.bp-cbtn-wh:hover {
    background: rgba(255,255,255,0.2);
}

/* Chrome autofill fix */
.bp-hero-calc input:-webkit-autofill,
.bp-hero-calc input:-webkit-autofill:hover,
.bp-hero-calc input:-webkit-autofill:focus {
    -webkit-text-fill-color: #2171C7 !important;
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    transition: background-color 9999s ease-in-out 0s;
}

.bp-hero-calc textarea:-webkit-autofill,
.bp-hero-calc select:-webkit-autofill {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,0.15) inset !important;
    transition: background-color 9999s ease-in-out 0s;
}

/* ===== TRUST STRIP ===== */
.bp-trust { background: #fff; padding: 26px 0; border-top: 1px solid #eaecf0; border-bottom: 1px solid #eaecf0; }
.bp-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bp-trust-item  { display: flex; align-items: center; gap: 14px; }
.bp-trust-icon  {
    width: 46px; height: 46px; border-radius: 12px; background: #e8f1fb;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bp-trust-icon svg { width: 22px; height: 22px; stroke: #2171C7; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bp-trust-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.bp-trust-item p  { font-size: 12px; color: #6b7280; line-height: 1.5; }

/* ===== PRICING CARDS ===== */
.bpp-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.bpp-title  { font-size: clamp(22px, 3vw, 36px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.3px; line-height: 1.1; }
.bpp-tabs   { display: flex; gap: 4px; background: #e8edf4; border-radius: 100px; padding: 4px; flex-shrink: 0; align-self: flex-start; margin-top: 4px; }
.bpp-tab    { padding: 8px 20px; border-radius: 100px; font-size: 14px; font-weight: 700; cursor: pointer; border: none; background: none; color: #6b7280; font-family: 'Montserrat', sans-serif; transition: all 0.2s; }
.bpp-tab.active { background: #2171C7; color: #fff; box-shadow: 0 2px 10px rgba(33,113,199,0.28); }
.bpp-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bpp-card   { background: #fff; border-radius: 18px; border: 1.5px solid #e4e8f0; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }
.bpp-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(33,113,199,0.1); }
.bpp-img    { position: relative; overflow: hidden; height: 210px; }
.bpp-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.bpp-card:hover .bpp-img img { transform: scale(1.05); }
.bpp-body   { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.bpp-name   { font-size: 16px; font-weight: 900; text-align: center; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid #eaecf0; }
.bpp-desc   { font-size: 13px; color: #555; line-height: 1.65; margin-bottom: 12px; }
.bpp-list   { margin: 0 0 4px; }
.bpp-list li{ font-size: 13px; color: #444; padding: 5px 0; border-bottom: 1px solid #f2f4f7; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.bpp-list li:last-child { border-bottom: none; }
.bpp-list li::before { content: '•'; color: #2171C7; font-weight: 900; font-size: 16px; line-height: 1.2; flex-shrink: 0; }
.bpp-more-wrap { text-align: center; margin: 12px 0 4px; }
.bpp-more-btn  { background: none; border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: #2171C7; padding: 8px 22px; border-radius: 100px; display: inline-flex; align-items: center; gap: 6px; transition: background 0.2s; }
.bpp-more-btn:hover { background: #dce9f8; }
.bpp-arr    { font-size: 11px; transition: transform 0.3s; display: inline-block; }
.bpp-more-btn.open .bpp-arr { transform: rotate(180deg); }
.bpp-extra  { display: none; }
.bpp-extra.visible { display: block; }
.bpp-footer { margin-top: auto; padding-top: 16px; }
.bpp-price  { font-size: 21px; font-weight: 800; color: #2171C7; margin-bottom: 12px; text-align: center; }
.bpp-order-btn { width: 100%; padding: 13px; background: #2171C7; color: #fff; border: none; border-radius: 100px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.bpp-order-btn:hover { background: #1558a8; transform: translateY(-1px); }

/* ===== FREE VISIT ===== */
.bp-visit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bp-visit-title { font-size: clamp(26px, 3vw, 42px); font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.bp-visit-title span { color: #2171C7; }
.bp-visit-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-bottom: 32px; }
.bp-visit-feat  { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: #333; font-weight: 500; line-height: 1.4; }
.bp-visit-feat::before { content: '|'; color: #2171C7; font-weight: 800; font-size: 18px; line-height: 1.2; flex-shrink: 0; }
.bp-visit-form  { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 8px 40px rgba(0,0,0,0.07); }
.bp-visit-form h3 { font-size: 19px; font-weight: 800; margin-bottom: 20px; }
.bp-ff { display: flex; flex-direction: column; margin-bottom: 13px; }
.bp-ff label { font-size: 12px; font-weight: 600; color: #555; margin-bottom: 5px; }
.bp-ff input, .bp-ff textarea {
    padding: 12px 15px; border-radius: 10px; border: 1.5px solid #d8dce5;
    font-family: 'Montserrat', sans-serif; font-size: 14px; background: #f8f9fb;
    transition: border-color 0.2s; resize: none; color: #1a1f2e;
}
.bp-ff input:focus, .bp-ff textarea:focus { border-color: #2171C7; outline: none; background: #fff; }
.bp-ff input::placeholder, .bp-ff textarea::placeholder { color: #aab0bb; }
.bp-fsubmit { width: 100%; padding: 14px; background: #2171C7; color: #fff; border: none; border-radius: 100px; font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 4px; transition: background 0.2s; }
.bp-fsubmit:hover { background: #1558a8; }
.bp-fnote { text-align: center; font-size: 11px; color: #aaa; margin-top: 10px; }

/* ===== STEPS ===== */
.bp-steps-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; text-transform: uppercase; color: #1a1f2e; letter-spacing: -0.5px; margin-bottom: 72px; line-height: 1; }
.bp-steps-tl    { position: relative; }
.bp-steps-top   { display: flex; justify-content: space-between; margin-bottom: 28px; }
.bp-steps-bot   { display: flex; justify-content: space-between; margin-top: 28px; }
.bp-slbl-t, .bp-slbl-b { flex: 1; text-align: center; font-size: 13px; font-weight: 500; color: #3a4252; line-height: 1.4; min-height: 18px; display: flex; justify-content: center; padding: 0 6px; }
.bp-slbl-t { align-items: flex-end; }
.bp-slbl-b { align-items: flex-start; }
.bp-slbl-b a { color: #2171C7; font-weight: 600; text-decoration: none; cursor: pointer; }
.bp-slbl-b a:hover { text-decoration: underline; }
.bp-steps-line  { position: relative; height: 1px; background: #c8d0dd; }
.bp-steps-line-active { position: absolute; left: 0; top: 0; height: 1px; width: 11%; background: #2171C7; }
.bp-steps-dots  { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; align-items: center; }
.bp-sdot        { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid #b0bac8; background: #fff; flex-shrink: 0; }
.bp-sdot.active { width: 16px; height: 16px; border: 2.5px solid #2171C7; background: #2171C7; box-shadow: 0 0 0 5px rgba(33,113,199,0.15); }

/* ===== PORTFOLIO ===== */
.bp-port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bp-port-card { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.25s, box-shadow 0.25s; cursor: pointer; }
.bp-port-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }
.bp-port-img  { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.bp-port-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.bp-port-card:hover .bp-port-img img { transform: scale(1.06); }
.bp-port-badge { position: absolute; top: 13px; left: 13px; background: #2171C7; color: #fff; font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 100px; letter-spacing: 0.8px; text-transform: uppercase; }
.bp-port-badge.premium { background: linear-gradient(135deg, #b8860b, #e8c84b); color: #1a0f00; }
.bp-port-body { background: #fff; padding: 18px 20px; }
.bp-port-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.bp-port-body p  { font-size: 13px; color: #6b7280; }

/* ===== FADE IN ===== */
.bp-fade { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.bp-fade.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .bp-hero { grid-template-columns: 1fr; }
    .bp-hero-calc { max-width: 500px; }
    .bp-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .bpp-grid { grid-template-columns: repeat(2, 1fr); }
    .bp-visit-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 700px) {
    .bp-section { padding: 52px 0; }
    .bpp-grid { grid-template-columns: 1fr; }
    .bp-port-grid { grid-template-columns: 1fr; }
    .bp-trust-grid { grid-template-columns: 1fr; }
    .bp-visit-feats { grid-template-columns: 1fr; }
    .bp-steps-top, .bp-steps-bot { flex-direction: column; gap: 0; }
}
/* =========================================
   BUDPROF FAQ STYLES
   ========================================= */

.budprof-faq-section {
    padding-top: 96px;
}

.budprof-section-title {
    margin: 0;
    text-align: left;
}

.budprof-section-title span {
    color: inherit;
}

.budprof-faq-wrap {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 24px;
    font-family: var(--bp-font-main);
}

.budprof-faq-head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 38px;
}

.budprof-faq-head__left {
    display: flex;
    align-items: flex-start;
}

.budprof-faq-head__right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.budprof-faq-head__text {
    max-width: 620px;
    margin: 0;
}

.budprof-faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.budprof-faq-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.budprof-faq-item {
    background: var(--bp-color-white);
    border: 1px solid var(--bp-color-border);
    border-radius: 22px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.budprof-faq-item:hover {
    border-color: var(--bp-color-accent);
    box-shadow: 0 8px 24px rgba(33, 113, 199, 0.08);
}

.budprof-faq-item[open] {
    border-color: var(--bp-color-accent);
    background: rgba(33, 113, 199, 0.02);
}

.budprof-faq-question {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    padding: 22px 26px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--bp-color-title);
    font-family: var(--bp-font-main);
    position: relative;
}

.budprof-faq-question::-webkit-details-marker {
    display: none;
}

.budprof-faq-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-right: 44px;
    width: 100%;
}

.budprof-faq-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #e8f1fb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.budprof-faq-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--bp-color-accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.budprof-faq-question::after {
    content: '+';
    position: absolute;
    right: 26px;
    top: 24px;
    font-size: 34px;
    line-height: 1;
    font-weight: 300;
    color: var(--bp-color-accent);
}

.budprof-faq-item[open] .budprof-faq-question::after {
    content: '−';
}

.budprof-faq-answer {
    padding: 0 26px 24px 102px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--bp-color-text);
    font-family: var(--bp-font-main);
}

@media (max-width: 1199px) {
    .budprof-faq-head {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
    }

    .budprof-faq-head__left {
        align-items: flex-start;
    }

    .budprof-faq-head__right {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .budprof-faq-head__text {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .budprof-faq-section {
        padding-top: 72px;
    }

    .budprof-faq {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .budprof-section-title {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .budprof-faq-section {
        padding-top: 56px;
    }

    .budprof-faq-wrap {
        padding: 0 14px;
    }

    .budprof-faq-head {
        margin-bottom: 26px;
    }

    .budprof-faq {
        gap: 14px;
    }

    .budprof-faq-column {
        gap: 14px;
    }

    .budprof-faq-item {
        border-radius: 18px;
    }

    .budprof-faq-question {
        font-size: 15px;
        padding: 18px 16px;
    }

    .budprof-faq-left {
        gap: 12px;
        padding-right: 34px;
    }

    .budprof-faq-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
    }

    .budprof-faq-icon svg {
        width: 20px;
        height: 20px;
    }

    .budprof-faq-question::after {
        right: 16px;
        top: 18px;
        font-size: 28px;
    }

    .budprof-faq-answer {
        padding: 0 16px 18px 72px;
        font-size: 14px;
        line-height: 1.6;
    }
}
/* =========================================================
   БЛОК: БЕЗКОШТОВНИЙ ВИЇЗД ЗАМІРНИКА
========================================================= */
.bp-measurer-style{
    background: var(--bp-color-bg);
}

.bp-measurer-style__inner{
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: start;
}

.bp-measurer-style__content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bp-measurer-style__title{
    margin-bottom: 28px;
}

.bp-measurer-style__title span{
    color: var(--bp-color-accent);
}

/* =========================================================
   ЛІВА ЧАСТИНА: ПЕРЕВАГИ
========================================================= */
.bp-measurer-style__advantages{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
}

.bp-measurer-style__advantage{
    position: relative;
    padding: 18px 20px 18px 22px;
    background: var(--bp-color-white);
    border: 1px solid var(--bp-color-border);
    border-radius: var(--bp-radius-lg);
    box-shadow: var(--bp-shadow-soft);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
    color: var(--bp-color-title);
    min-height: 108px;
    display: flex;
    align-items: flex-start;
}

.bp-measurer-style__advantage::before{
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 4px;
    border-radius: 4px;
    background: var(--bp-color-accent);
}

/* =========================================================
   ПРАВА ЧАСТИНА: ФОРМА
========================================================= */
.bp-measurer-style__card{
    display: flex;
    align-items: stretch;
}

.bp-measurer-style__card-inner{
    width: 100%;
    background: var(--bp-color-white);
    border: 1px solid var(--bp-color-border);
    border-radius: var(--bp-radius-xl);
    box-shadow: var(--bp-shadow-soft);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bp-measurer-style__card-title{
    margin-bottom: 24px;
    text-transform: uppercase;
}

.bp-measurer-style__form{
    width: 100%;
}

.bp-measurer-style__row{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 22px;
}

.bp-measurer-style__field{
    display: flex;
    flex-direction: column;
}

.bp-measurer-style__field label{
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--bp-color-text);
}

.bp-measurer-style__field label span{
    color: #ff5a52;
}

.bp-measurer-style__field input{
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid #d8dfec;
    border-radius: 999px;
    background: #edf3fc;
    font-family: var(--bp-font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--bp-color-title);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.bp-measurer-style__field input::placeholder{
    color: #9aa8c0;
}

.bp-measurer-style__field input:focus{
    outline: none;
    background: #fff;
    border-color: var(--bp-color-accent);
    box-shadow: 0 0 0 3px rgba(33,113,199,0.10);
}

.bp-measurer-style__btn{
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
}

.bp-measurer-style__policy{
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--bp-color-text);
}

.bp-measurer-style__policy a{
    color: var(--bp-color-accent);
    text-decoration: none;
}

.bp-measurer-style__policy a:hover{
    text-decoration: underline;
}

/* =========================================================
   АДАПТАЦІЯ: НОУТБУКИ / ПЛАНШЕТИ
========================================================= */
@media (max-width: 1199px){
    .bp-measurer-style__inner{
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* =========================================================
   АДАПТАЦІЯ: ПЛАНШЕТ
========================================================= */
@media (max-width: 991px){
    .bp-measurer-style__advantages{
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .bp-measurer-style__card-inner{
        padding: 28px 22px;
    }

    .bp-measurer-style__row{
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* =========================================================
   АДАПТАЦІЯ: ТЕЛЕФОН
========================================================= */
@media (max-width: 767px){
    .bp-measurer-style__title{
        margin-bottom: 18px;
    }

    .bp-measurer-style__advantages{
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bp-measurer-style__advantage{
        padding: 16px 16px 16px 20px;
        font-size: 15px;
        line-height: 1.5;
        min-height: auto;
    }

    .bp-measurer-style__advantage::before{
        left: 0;
        top: 18px;
        bottom: 18px;
        width: 4px;
        border-radius: 4px;
    }

    .bp-measurer-style__card-inner{
        padding: 22px 16px;
        border-radius: 22px;
    }

    .bp-measurer-style__card-title{
        margin-bottom: 18px;
    }

    .bp-measurer-style__field input{
        height: 54px;
        font-size: 15px;
    }

    .bp-measurer-style__btn{
        padding: 15px 20px;
        font-size: 15px;
    }

    .bp-measurer-style__policy{
        font-size: 11px;
        line-height: 1.55;
    }
}

/* =========================================================
   АДАПТАЦІЯ: МАЛЕНЬКИЙ ТЕЛЕФОН
========================================================= */
@media (max-width: 479px){
    .bp-measurer-style__advantage{
        font-size: 14px;
        padding: 14px 14px 14px 18px;
        border-radius: 16px;
        min-height: auto;
    }

    .bp-measurer-style__advantage::before{
        left: 0;
        top: 16px;
        bottom: 16px;
        width: 4px;
        border-radius: 4px;
    }

    .bp-measurer-style__card-inner{
        padding: 18px 14px;
    }

    .bp-measurer-style__field input{
        height: 52px;
        padding: 0 16px;
        font-size: 14px;
    }

    .bp-measurer-style__btn{
        font-size: 14px;
    }
}

/* =========================================
   BUDPROF ADVANTAGES SECTION
   ========================================= */

.bp-advantages{
    padding: 80px 0;
    background: var(--bp-color-bg);
}

.bp-advantages__head{
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 34px;
}

.bp-advantages__title{
    margin: 0;
}

.bp-advantages__title span{
    color: var(--bp-color-accent);
}

.bp-advantages__text{
    margin: 0;
    max-width: 760px;
}

.bp-advantages__grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bp-advantages__card{
    background: var(--bp-color-white);
    border: 1px solid var(--bp-color-border);
    border-radius: var(--bp-radius-xl);
    padding: 34px 24px 28px;
    box-shadow: var(--bp-shadow-soft);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bp-advantages__card:hover{
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(33,113,199,0.10);
    border-color: rgba(33,113,199,0.16);
}

.bp-advantages__icon{
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #e8f1fb;
    border: 2px solid var(--bp-color-accent);
    color: var(--bp-color-accent);
    transition: background 0.3s ease, color 0.3s ease, transform 0.4s ease;
}

.bp-advantages__card:hover .bp-advantages__icon{
    background: var(--bp-color-accent);
    color: var(--bp-color-white);
    transform: rotateY(180deg);
}

.bp-advantages__icon svg{
    width: 34px;
    height: 34px;
    transition: transform 0.4s ease;
}

.bp-advantages__card:hover .bp-advantages__icon svg{
    transform: rotateY(-180deg);
}

.bp-advantages__card-title{
    margin: 0 0 14px;
    color: var(--bp-color-title);
}

.bp-advantages__card-text{
    margin: 0;
}

@media (max-width: 1199px){
    .bp-advantages__grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px){
    .bp-advantages__head{
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }
}

@media (max-width: 700px){
    .bp-advantages{
        padding: 52px 0;
    }

    .bp-advantages__grid{
        grid-template-columns: 1fr;
    }

    .bp-advantages__card{
        padding: 28px 20px 24px;
    }
}
/* =========================================
   BUDPROF PRICING SECTION
   ========================================= */

#bp-pricing-block{
    color: var(--bp-color-title);
    background-color: var(--bp-color-bg);
    width: 100%;
}

.bpp-header{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.bpp-title{
    max-width: 700px;
    margin: 0;
}

.bpp-title span{
    color: var(--bp-color-accent);
}

.bpp-tabs{
    display: flex;
    gap: 4px;
    background: #e8edf4;
    border-radius: 100px;
    padding: 4px;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 6px;
}

.bpp-tab{
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: none;
    color: #6b7280;
    font-family: var(--bp-font-main);
    transition: all 0.2s;
}

.bpp-tab.active{
    background: var(--bp-color-accent);
    color: #fff;
    box-shadow: 0 2px 10px rgba(33,113,199,0.3);
}

.bpp-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.bpp-card{
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid var(--bp-color-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.bpp-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(33,113,199,0.11);
}

.bpp-img{
    position: relative;
    overflow: hidden;
    height: 280px;
}

.bpp-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    border-radius: 14px 14px 0 0;
}

.bpp-card:hover .bpp-img img{
    transform: scale(1.05);
}

.bpp-body{
    padding: 28px 28px 26px;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.bpp-name{
    font-size: 17px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eaecf0;
    color: var(--bp-color-title);
}

.bpp-desc{
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 14px;
}

.bpp-list{
    list-style: none;
    padding: 0;
    margin: 0 0 4px;
}

.bpp-list li{
    font-size: 13px;
    color: #444;
    padding: 5px 0;
    border-bottom: 1px solid #f2f4f7;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.bpp-list li:last-child{
    border-bottom: none;
}

.bpp-list li::before{
    content: '•';
    color: var(--bp-color-accent);
    font-weight: 900;
    font-size: 16px;
    line-height: 1.2;
    flex-shrink: 0;
}

.bpp-more-wrap{
    text-align: center;
    margin: 14px 0 6px;
}

.bpp-more-btn{
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--bp-font-main);
    font-size: 13px;
    font-weight: 600;
    color: var(--bp-color-accent);
    padding: 8px 22px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, color 0.2s;
}

.bpp-more-btn:hover{
    background: #dce9f8;
    color: var(--bp-color-accent-hover);
}

.bpp-arr{
    font-size: 11px;
    transition: transform 0.3s;
    display: inline-block;
}

.bpp-more-btn.open .bpp-arr{
    transform: rotate(180deg);
}

.bpp-extra{
    display: none;
}

.bpp-extra.visible{
    display: block;
}

.bpp-footer{
    margin-top: auto;
}

.bpp-price{
    font-size: 22px;
    font-weight: 800;
    color: var(--bp-color-accent);
    margin-bottom: 14px;
    text-align: center;
}

.bpp-order-btn{
    width: 100%;
    padding: 14px;
    background: var(--bp-color-accent);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--bp-font-main);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.bpp-order-btn:hover{
    background: var(--bp-color-accent-hover);
    transform: translateY(-1px);
}

.bpp-modal-overlay{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10,20,40,0.55);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bpp-modal-overlay.active{
    display: flex;
}

.bpp-modal{
    background: #fff;
    border-radius: 20px;
    padding: 44px 40px;
    max-width: 460px;
    width: 100%;
    position: relative;
    animation: bppMod 0.3s ease;
}

@keyframes bppMod{
    from{
        opacity: 0;
        transform: scale(0.95) translateY(16px);
    }
    to{
        opacity: 1;
        transform: none;
    }
}

.bpp-modal-close{
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f2f4f8;
    border: none;
    cursor: pointer;
    font-size: 17px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bpp-modal-close:hover{
    background: #e0e4ea;
}

.bpp-modal h3{
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    font-family: var(--bp-font-main);
}

.bpp-modal-service{
    font-size: 14px;
    color: var(--bp-color-accent);
    font-weight: 700;
    margin-bottom: 20px;
}

.bpp-mfield{
    margin-bottom: 13px;
}

.bpp-mfield input,
.bpp-mfield textarea{
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid #d8dce5;
    font-family: var(--bp-font-main);
    font-size: 14px;
    background: #f8f9fb;
    transition: border-color 0.2s;
    resize: none;
}

.bpp-mfield input:focus,
.bpp-mfield textarea:focus{
    border-color: var(--bp-color-accent);
    outline: none;
    background: #fff;
}

.bpp-msubmit{
    width: 100%;
    padding: 14px;
    background: var(--bp-color-accent);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--bp-font-main);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s;
}

.bpp-msubmit:hover{
    background: var(--bp-color-accent-hover);
}

.bpp-mnote{
    text-align: center;
    font-size: 11px;
    color: #aaa;
    margin-top: 10px;
}

@media (max-width: 900px){
    .bpp-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px){
    .bpp-grid{
        grid-template-columns: 1fr;
    }
}

/* =========================================
   BUDPROF PORTFOLIO SECTION
   ========================================= */

.bp-portfolio{
    background: var(--bp-color-bg);
}

.bp-portfolio__head{
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    column-gap: 98px;
    row-gap: 28px;
    align-items: start;
    margin-bottom: 34px;
}

.bp-portfolio__title{
    margin: 0;
}

.bp-portfolio__title span{
    color: var(--bp-color-accent);
}

.bp-portfolio__text{
    margin: 0;
    max-width: 760px;
}

.bp-portfolio__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bp-portfolio__card{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: bpPortfolioFadeUp 0.6s ease forwards;
}

.bp-portfolio__card:nth-child(1){
    animation-delay: 0.1s;
}

.bp-portfolio__card:nth-child(2){
    animation-delay: 0.22s;
}

.bp-portfolio__card:nth-child(3){
    animation-delay: 0.34s;
}

@keyframes bpPortfolioFadeUp{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.bp-portfolio__card:hover{
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.bp-portfolio__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(.22,.68,0,1.2);
}

.bp-portfolio__card:hover .bp-portfolio__img{
    transform: scale(1.06);
}

.bp-portfolio__overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 35%, rgba(0,0,0,0.15) 100%);
}

.bp-portfolio__badge{
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--bp-color-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}

.bp-portfolio__badge--premium{
    background: linear-gradient(135deg, #c9a227, #e8c84b);
    color: #1a1100;
}

.bp-portfolio__info{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 22px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.bp-portfolio__content{
    min-width: 0;
}

.bp-portfolio__name{
    margin: 0 0 6px;
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.bp-portfolio__desc{
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    line-height: 1.5;
}

.bp-portfolio__btn{
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bp-color-accent);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(33,113,199,0.4);
    text-decoration: none;
}

.bp-portfolio__btn:hover{
    background: var(--bp-color-accent-hover);
    transform: scale(1.1);
}

.bp-portfolio__btn svg{
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 860px){
    .bp-portfolio__head{
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }

    .bp-portfolio__grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-portfolio__card:nth-child(3){
        grid-column: span 2;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 520px){
    .bp-portfolio__grid{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bp-portfolio__card:nth-child(3){
        grid-column: auto;
        aspect-ratio: 3 / 4;
    }
}
/* =========================================
   BUDPROF SEO SECTION
   ========================================= */

.bp-seo{
    background: var(--bp-color-bg);
}

.bp-seo__box{
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.bp-seo__head{
    margin-bottom: 28px;
}

.bp-seo__title{
    margin: 0;
    max-width: 700px;
}

.bp-seo__title span{
    color: var(--bp-color-accent);
}

.bp-seo__content{
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.bp-seo__main{
    min-width: 0;
}

.bp-seo__subtitle{
    margin: 0 0 16px;
    color: var(--bp-color-title);
}

.bp-seo__text{
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--bp-color-text);
}

.bp-seo__text:last-child{
    margin-bottom: 0;
}

.bp-seo__side{
    min-width: 0;
}

.bp-seo__card{
    background: var(--bp-color-white);
    border: 1px solid var(--bp-color-border);
    border-radius: var(--bp-radius-xl);
    padding: 24px 22px;
    box-shadow: var(--bp-shadow-soft);
}

.bp-seo__card-title{
    margin: 0 0 14px;
    color: var(--bp-color-title);
}

.bp-seo__card-text{
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--bp-color-text);
}

.bp-seo__links{
    display: grid;
    gap: 10px;
}

.bp-seo__link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--bp-color-border);
    color: var(--bp-color-title);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bp-seo__link:hover{
    transform: translateX(4px);
    background: var(--bp-color-accent);
    border-color: var(--bp-color-accent);
    color: #fff;
}

.bp-seo__link::after{
    content: "→";
    flex-shrink: 0;
    font-size: 15px;
    line-height: 1;
}

.bp-seo__note{
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--bp-color-text-soft);
}

@media (max-width: 991px){
    .bp-seo__content{
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 700px){
    .bp-seo__title{
        max-width: 620px;
    }

    .bp-seo__text{
        font-size: 15px;
        line-height: 1.68;
    }

    .bp-seo__card{
        padding: 20px 16px;
        border-radius: 18px;
    }

    .bp-seo__link{
        padding: 12px 14px;
        border-radius: 14px;
    }
}

/* =========================================
   BUDPROF STEPS SECTION
   ========================================= */

.bp-steps{
    background: var(--bp-color-bg);
}

.bp-steps__head{
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 42px;
}

.bp-steps__title{
    margin: 0;
}

.bp-steps__title span{
    color: var(--bp-color-accent);
}

.bp-steps__text{
    margin: 0;
    max-width: 760px;
}

.bp-steps__timeline{
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    min-height: 200px;
    padding: 0 24px;
}

.bp-steps__line,
.bp-steps__line-active{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    border-radius: 100px;
}

.bp-steps__line{
    left: 24px;
    right: 24px;
    background: #c8d0dd;
}

.bp-steps__line-active{
    left: 24px;
    width: calc((100% - 48px) / 6 * 0.55);
    min-width: 88px;
    background: var(--bp-color-accent);
}

.bp-step{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.bp-step__dot{
    position: relative;
    width: 24px;
    height: 24px;
    border: 3px solid #b0bac8;
    border-radius: 50%;
    background: #fff;
    padding: 0;
    margin: 0;
    cursor: default;
    appearance: none;
    -webkit-appearance: none;
}

.bp-step--active .bp-step__dot{
    border-color: var(--bp-color-accent);
    cursor: pointer;
}

.bp-step--active .bp-step__dot::after{
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--bp-color-accent);
}

.bp-step__text{
    position: absolute;
    width: 220px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
    color: var(--bp-color-title);
    text-align: center;
    word-break: break-word;
}

.bp-step:nth-child(3) .bp-step__text,
.bp-step:nth-child(5) .bp-step__text,
.bp-step:nth-child(7) .bp-step__text{
    bottom: 42px;
}

.bp-step:nth-child(4) .bp-step__text,
.bp-step:nth-child(6) .bp-step__text,
.bp-step:nth-child(8) .bp-step__text{
    top: 42px;
}

.bp-step:not(:first-child):not(:last-child) .bp-step__text{
    left: 50%;
    transform: translateX(-50%);
}

.bp-step:first-child .bp-step__text{
    left: 50%;
    transform: translateX(-18%);
    text-align: left;
}

.bp-step:last-child .bp-step__text{
    right: 50%;
    transform: translateX(18%);
    text-align: right;
}

.bp-step__link{
    color: var(--bp-color-accent);
    text-decoration: none;
    font-weight: 700;
}

.bp-step__link:hover{
    text-decoration: underline;
}

.bp-steps-modal{
    position: fixed;
    inset: 0;
    display: none;
    z-index: 99999;
}

.bp-steps-modal.is-open{
    display: block;
}

.bp-steps-modal__overlay{
    position: absolute;
    inset: 0;
    background: rgba(22, 24, 29, 0.72);
    backdrop-filter: blur(4px);
}

.bp-steps-modal__dialog{
    position: relative;
    width: calc(100% - 30px);
    max-width: 760px;
    margin: 70px auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.bp-steps-modal__content{
    padding: 34px 30px 28px;
}

.bp-steps-modal__close{
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 1px solid #cfd4dc;
    border-radius: 50%;
    background: #fff;
    color: #7a7f87;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.bp-steps-modal__title{
    margin: 0 60px 24px 0;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.08;
    font-weight: 800;
    color: var(--bp-color-title);
    text-transform: uppercase;
}

.bp-steps-form__row{
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}

.bp-steps-form__field{
    flex: 1 1 0;
}

.bp-steps-form__field--full{
    margin-bottom: 18px;
}

.bp-steps-form__label{
    display: block;
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    color: #6b7280;
}

.bp-steps-form__label span{
    color: #e05656;
}

.bp-steps-form__input,
.bp-steps-form__textarea{
    width: 100%;
    border: 1px solid #d8dce5;
    outline: none;
    background: #f8f9fb;
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--bp-color-title);
    font-family: var(--bp-font-main);
    transition: border-color 0.2s, background 0.2s;
}

.bp-steps-form__input:focus,
.bp-steps-form__textarea:focus{
    border-color: var(--bp-color-accent);
    background: #fff;
}

.bp-steps-form__textarea{
    min-height: 132px;
    resize: vertical;
}

.bp-steps-form__submit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 16px 20px;
    border: none;
    border-radius: 999px;
    background: var(--bp-color-accent);
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.bp-steps-form__submit:hover{
    background: var(--bp-color-accent-hover);
}

.bp-steps-form__policy{
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--bp-color-text-soft);
}

.bp-steps-form__policy a{
    color: var(--bp-color-accent);
    text-decoration: none;
}

.bp-steps-form__policy a:hover{
    text-decoration: underline;
}

@media (max-width: 991px){
    .bp-steps__head{
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 34px;
    }

    .bp-steps__timeline{
        padding: 0 18px;
    }

    .bp-steps__line{
        left: 18px;
        right: 18px;
    }

    .bp-steps__line-active{
        left: 18px;
        width: calc((100% - 36px) / 6 * 0.55);
    }

    .bp-step__text{
        width: 170px;
        font-size: 14px;
    }

    .bp-step:first-child .bp-step__text{
        transform: translateX(-8%);
    }

    .bp-step:last-child .bp-step__text{
        transform: translateX(8%);
    }

    .bp-steps-form__row{
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 767px){
    .bp-steps__timeline{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        min-height: auto;
        padding: 0;
    }

    .bp-steps__line{
        position: absolute;
        left: 11px;
        top: 12px;
        width: 4px;
        height: calc(100% - 24px);
        background: #c8d0dd;
        transform: none;
        border-radius: 100px;
    }

    .bp-steps__line-active{
        position: absolute;
        left: 11px;
        top: 12px;
        width: 4px;
        height: 40px;
        min-width: 0;
        background: var(--bp-color-accent);
        transform: none;
        border-radius: 100px;
    }

    .bp-step{
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
        min-height: 58px;
        justify-content: flex-start;
    }

    .bp-step__dot{
        width: 22px;
        height: 22px;
        min-width: 22px;
        border-width: 3px;
        flex-shrink: 0;
        z-index: 2;
    }

    .bp-step--active .bp-step__dot::after{
        inset: 4px;
    }

    .bp-step__text{
        position: static !important;
        transform: none !important;
        width: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        text-align: left;
        font-size: 15px;
        line-height: 1.4;
        font-weight: 600;
        word-break: normal;
    }

    .bp-steps-modal__dialog{
        width: calc(100% - 20px);
        margin: 24px auto;
        border-radius: 22px;
    }

    .bp-steps-modal__content{
        padding: 24px 18px 20px;
    }

    .bp-steps-modal__close{
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .bp-steps-modal__title{
        margin-right: 44px;
    }

    .bp-steps-form__input,
    .bp-steps-form__textarea{
        padding: 14px 16px;
        border-radius: 16px;
        font-size: 14px;
    }
}
.bp-step__text .bp-step__link{
    color: var(--bp-color-accent) !important;
}

/* =========================================
   ЗНИЖКА 20
   ========================================= */

/* ===== MATERIALS DISCOUNT ===== */
.bp-materials-strip {
    background: var(--bp-color-bg);
    padding-top: 72px;
    padding-bottom: 72px;
}

.bp-materials-strip__head {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 42px;
}

.bp-materials-strip__left .bp-title-2 {
    margin: 0;
    max-width: 760px;
}

.bp-materials-strip__left .bp-title-2 span {
    color: var(--bp-color-accent);
}

.bp-materials-strip__right .bp-text {
    max-width: 760px;
}

.bp-materials-strip__right strong {
    color: var(--bp-color-title);
    font-weight: 700;
}

.bp-materials-strip__logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}

.bp-materials-strip__logo {
    height: 186px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 22px;
    border-radius: 16px;
    background: transparent;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bp-materials-strip__logo:hover {
    transform: translateY(-3px);
}

.bp-materials-strip__logo img {
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    max-width: 100%;
}

/* Індивідуальне вирівнювання логотипів */
.bp-materials-strip__logo--ceresit img {
    max-width: 313px;
    max-height: 99px;
}

.bp-materials-strip__logo--knauf img {
    max-width: 350px;
    max-height: 132px;
}

.bp-materials-strip__logo--rehau img {
    max-width: 294px;
    max-height: 85px;
}

.bp-materials-strip__logo--schneider img {
    max-width: 304px;
    max-height: 85px;
}

.bp-materials-strip__logo--soudal img {
    max-width: 313px;
    max-height: 95px;
}

.bp-materials-strip__logo--siltek img {
    max-width: 331px;
    max-height: 107px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .bp-materials-strip__head {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .bp-materials-strip__logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .bp-materials-strip__logo {
        height: 156px;
    }

    .bp-materials-strip__logo--ceresit img {
        max-width: 255px;
        max-height: 80px;
    }

    .bp-materials-strip__logo--knauf img {
        max-width: 285px;
        max-height: 107px;
    }

    .bp-materials-strip__logo--rehau img {
        max-width: 240px;
        max-height: 69px;
    }

    .bp-materials-strip__logo--schneider img {
        max-width: 248px;
        max-height: 69px;
    }

    .bp-materials-strip__logo--soudal img {
        max-width: 255px;
        max-height: 77px;
    }

    .bp-materials-strip__logo--siltek img {
        max-width: 272px;
        max-height: 87px;
    }
}

@media (max-width: 700px) {
    .bp-materials-strip {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .bp-materials-strip__head {
        margin-bottom: 24px;
    }

    .bp-materials-strip__logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bp-materials-strip__logo {
        height: 118px;
        padding: 14px 16px;
    }

    .bp-materials-strip__logo--ceresit img {
        max-width: 196px;
        max-height: 62px;
    }

    .bp-materials-strip__logo--knauf img {
        max-width: 219px;
        max-height: 83px;
    }

    .bp-materials-strip__logo--rehau img {
        max-width: 184px;
        max-height: 53px;
    }

    .bp-materials-strip__logo--schneider img {
        max-width: 190px;
        max-height: 53px;
    }

    .bp-materials-strip__logo--soudal img {
        max-width: 196px;
        max-height: 60px;
    }

    .bp-materials-strip__logo--siltek img {
        max-width: 207px;
        max-height: 67px;
    }
}
/* =========================================================
   БЛОК: РЕАЛЬНІ ТЕРМІНИ РЕМОНТУ КВАРТИРИ
========================================================= */
.bp-repair-time{
    background: var(--bp-color-bg);
}

.bp-repair-time__inner{
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 32px;
    align-items: start;
}

.bp-repair-time__content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bp-repair-time__title{
    margin-bottom: 22px;
}

.bp-repair-time__title span{
    color: var(--bp-color-accent);
}

.bp-repair-time__text{
    max-width: 760px;
    margin-bottom: 30px;
}

/* =========================================================
   ЛІВА ЧАСТИНА: ПЕРЕВАГИ
========================================================= */
.bp-repair-time__advantages{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
}

.bp-repair-time__advantage{
    position: relative;
    padding: 18px 20px 18px 22px;
    background: var(--bp-color-white);
    border: 1px solid var(--bp-color-border);
    border-radius: var(--bp-radius-lg);
    box-shadow: var(--bp-shadow-soft);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
    color: var(--bp-color-title);
}

.bp-repair-time__advantage::before{
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 4px;
    background: var(--bp-color-accent);
}

/* =========================================================
   ПРАВА ЧАСТИНА: КАРТКА З ТЕРМІНАМИ
========================================================= */
.bp-repair-time__card{
    display: flex;
    align-items: stretch;
}

.bp-repair-time__card-inner{
    width: 100%;
    background: var(--bp-color-white);
    border: 1px solid var(--bp-color-border);
    border-radius: var(--bp-radius-xl);
    box-shadow: var(--bp-shadow-soft);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bp-repair-time__card-title{
    margin-bottom: 24px;
}

.bp-repair-time__list{
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.bp-repair-time__item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bp-color-bg-soft);
    border-radius: 16px;
    border: 1px solid var(--bp-color-border);
}

.bp-repair-time__item-name{
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
    color: var(--bp-color-title);
}

.bp-repair-time__item-value{
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
    color: var(--bp-color-accent);
    text-align: right;
    flex-shrink: 0;
}

.bp-repair-time__note{
    margin-top: auto;
    margin-bottom: 22px;
}

.bp-repair-time__btn{
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* =========================================================
   АДАПТАЦІЯ: НОУТБУКИ / ПЛАНШЕТИ
========================================================= */
@media (max-width: 1199px){
    .bp-repair-time__inner{
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bp-repair-time__text{
        max-width: 100%;
    }
}

/* =========================================================
   АДАПТАЦІЯ: ПЛАНШЕТ
========================================================= */
@media (max-width: 991px){
    .bp-repair-time__advantages{
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .bp-repair-time__card-inner{
        padding: 28px 22px;
    }

    .bp-repair-time__item{
        padding: 14px 16px;
    }
}

/* =========================================================
   АДАПТАЦІЯ: ТЕЛЕФОН
========================================================= */
@media (max-width: 767px){
    .bp-repair-time__title{
        margin-bottom: 18px;
    }

    .bp-repair-time__text{
        margin-bottom: 22px;
    }

    .bp-repair-time__advantages{
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bp-repair-time__advantage{
        padding: 16px 16px 16px 20px;
        font-size: 15px;
        line-height: 1.5;
    }

    .bp-repair-time__card-inner{
        padding: 22px 16px;
        border-radius: 22px;
    }

    .bp-repair-time__card-title{
        margin-bottom: 18px;
    }

    .bp-repair-time__item{
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .bp-repair-time__item-value{
        text-align: left;
    }

    .bp-repair-time__note{
        margin-bottom: 18px;
    }
}

/* =========================================================
   АДАПТАЦІЯ: МАЛЕНЬКИЙ ТЕЛЕФОН
========================================================= */
@media (max-width: 479px){
    .bp-repair-time__advantage{
        font-size: 14px;
        padding: 14px 14px 14px 18px;
        border-radius: 16px;
    }

    .bp-repair-time__card-inner{
        padding: 18px 14px;
    }

    .bp-repair-time__item{
        padding: 12px 14px;
        border-radius: 14px;
    }

    .bp-repair-time__item-name,
    .bp-repair-time__item-value{
        font-size: 14px;
    }
}
/* ===== КОЛІР ЗАГОЛОВКА===== */
.bp-blue-text{
  color: var(--bp-color-accent) !important;
}
html {
    scroll-behavior: smooth;
}
/* =========================================
   BUDPROF РАЙОНИ КИЄВА
   ========================================= */

.bp-districts {
    background: var(--bp-color-bg);
}

.bp-districts__head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 38px;
}

.bp-districts__head-left {
    display: flex;
    align-items: flex-start;
}

.bp-districts__head-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.bp-districts__title {
    margin: 0;
    text-align: left;
    max-width: 720px;
}

.bp-districts__text {
    max-width: 620px;
    margin: 0;
}

.bp-districts__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.bp-districts__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    padding: 18px 20px;
    background: var(--bp-color-white);
    border: 1px solid var(--bp-color-border);
    border-radius: var(--bp-radius-lg);
    box-shadow: var(--bp-shadow-soft);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--bp-color-title);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.bp-districts__item:hover {
    transform: translateY(-4px);
    border-color: var(--bp-color-accent);
    box-shadow: 0 10px 28px rgba(33, 113, 199, 0.10);
    color: var(--bp-color-accent);
}

.bp-districts__actions {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
}

/* ===== Responsive ===== */

@media (max-width: 1199px) {
    .bp-districts__head {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .bp-districts__head-right {
        justify-content: flex-start;
    }

    .bp-districts__text {
        max-width: 100%;
    }

    .bp-districts__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .bp-districts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .bp-districts__item {
        min-height: 72px;
        font-size: 15px;
        padding: 16px 18px;
    }
}

@media (max-width: 767px) {
    .bp-districts__head {
        gap: 14px;
        margin-bottom: 24px;
    }

    .bp-districts__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bp-districts__item {
        justify-content: flex-start;
        text-align: left;
        min-height: auto;
        padding: 16px 18px;
        border-radius: 18px;
    }

    .bp-districts__actions {
        margin-top: 22px;
    }
}
/* ===== ВІДГУКИ ===== */


.bp-blue-text {
    color: #2171C7;
}

.bp-testimonials-section {
    background: #fcfcfd !important;
    padding: 80px 0;
    overflow: hidden;
}

.bp-testimonials-title {
    margin: 0;
}

.bp-testimonials-head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 38px;
}

.bp-testimonials-head__left {
    display: flex;
    align-items: flex-start;
}

.bp-testimonials-head__right {
    display: flex;
    justify-content: flex-end;
}

.bp-testimonials-text {
    max-width: 620px;
    margin: 0;
}

/* shortcode area */
.bp-testimonials-shortcode {
    margin-top: 10px;
    position: relative;
}

/* прибираємо зайву нижню висоту слайдера */
.bp-testimonials-shortcode .slick-slider,
.bp-testimonials-shortcode .slick-list,
.bp-testimonials-shortcode .slick-track {
    height: auto !important;
}

.bp-testimonials-shortcode .slick-track {
    display: flex !important;
    align-items: stretch;
}

.bp-testimonials-shortcode .slick-slide {
    height: auto !important;
    display: flex !important;
}

.bp-testimonials-shortcode .slick-slide > div {
    width: 100%;
    height: 100%;
}

/* card wrapper */
.bp-testimonials-shortcode .testimonial,
.bp-testimonials-shortcode .testimonial-item,
.bp-testimonials-shortcode .kt-testimonial-item,
.bp-testimonials-shortcode .testimonial-content,
.bp-testimonials-shortcode .slick-slide > div > * {
    box-sizing: border-box;
}

/* картка */
.bp-testimonials-shortcode .testimonial,
.bp-testimonials-shortcode .testimonial-item,
.bp-testimonials-shortcode .kt-testimonial-item,
.bp-testimonials-shortcode .slick-slide > div > * {
    background: #ffffff !important;
    border: 1.5px solid #e4e8f0 !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.05) !important;
    padding: 28px 28px 24px !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* hover */
.bp-testimonials-shortcode .testimonial:hover,
.bp-testimonials-shortcode .testimonial-item:hover,
.bp-testimonials-shortcode .kt-testimonial-item:hover,
.bp-testimonials-shortcode .slick-slide > div > *:hover {
    transform: translateY(-6px);
    border-color: #d7e6f7 !important;
    box-shadow: 0 16px 48px rgba(33,113,199,0.10) !important;
}

/* текст відгуку */
.bp-testimonials-shortcode p {
    font-family: var(--bp-font-main) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: #5b6b82 !important;
    margin: 0 0 18px !important;
}

/* ім'я */
.bp-testimonials-shortcode h3,
.bp-testimonials-shortcode h4,
.bp-testimonials-shortcode strong,
.bp-testimonials-shortcode .testimonial-name {
    font-family: var(--bp-font-main) !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    color: #1a1f2e !important;
    margin: 0 0 6px !important;
}

/* посада */
.bp-testimonials-shortcode .testimonial-position,
.bp-testimonials-shortcode .testimonial-job,
.bp-testimonials-shortcode .designation {
    font-family: var(--bp-font-main) !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #2171C7 !important;
}

/* аватар */
.bp-testimonials-shortcode img {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 4px solid #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* якщо є лапки */
.bp-testimonials-shortcode .fa-quote-left,
.bp-testimonials-shortcode .quote,
.bp-testimonials-shortcode .testimonial-quote {
    color: rgba(26,31,46,0.10) !important;
}

/* точки слайдера */
.bp-testimonials-shortcode .slick-dots {
    position: static !important;
    margin-top: 20px !important;
}

.bp-testimonials-shortcode .slick-dots li button:before {
    font-size: 12px !important;
    color: #2171C7 !important;
    opacity: 0.35 !important;
}

.bp-testimonials-shortcode .slick-dots li.slick-active button:before {
    opacity: 1 !important;
}

/* кнопка */
.bp-testimonials-more {
    text-align: center;
    margin-top: 28px;
}

.bp-testimonials-more .bp-btn {
    padding: 16px 36px;
    font-size: 15px;
    border-radius: 100px;
    box-shadow: 0 6px 20px rgba(33,113,199,0.25);
}

/* adaptive */
@media (max-width: 1199px) {
    .bp-testimonials-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bp-testimonials-head__right {
        justify-content: flex-start;
    }

    .bp-testimonials-text {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .bp-testimonials-section {
        padding: 52px 0;
    }

    .bp-testimonials-head {
        margin-bottom: 24px;
    }

    .bp-testimonials-shortcode .testimonial,
    .bp-testimonials-shortcode .testimonial-item,
    .bp-testimonials-shortcode .kt-testimonial-item,
    .bp-testimonials-shortcode .slick-slide > div > * {
        padding: 20px 18px !important;
        border-radius: 16px !important;
    }

    .bp-testimonials-shortcode img {
        width: 60px !important;
        height: 60px !important;
    }

    .bp-testimonials-more {
        margin-top: 22px;
    }
}
/* ============================================================
   БЛОК НОВИНИ: ФІНАЛЬНІ ПРАВКИ КНОПКИ
============================================================ */

.bp-news-section {
    background: transparent !important;
    padding: 40px 0;
}

.bp-news-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 620px) !important;
    column-gap: 32px;
    row-gap: 20px;
    align-items: start;
    margin-bottom: 38px;
}

/* Сітка та Картки */
.bp-news-shortcode ul, 
.bp-news-shortcode .latestposts {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
}

.bp-news-shortcode li, 
.bp-news-shortcode article {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    background: #fff;
    border: 1.5px solid #e4e8f0;
    border-radius: 18px;
    overflow: hidden !important;
    min-height: 360px;
}

/* Контент всередині */
.bp-news-shortcode li > div, 
.bp-news-shortcode article > div {
    display: flex !important;
    flex-direction: column !important;
    padding: 28px !important;
    box-sizing: border-box !important;
}

/* Лінія під заголовком (залишив без змін) */
.bp-news-shortcode h3::after {
    content: '';
    display: block;
    width: 64px;
    height: 4px;
    margin-top: 16px;
    border-radius: 999px;
    background: #5a8fe6;
}

/* ============================================================
   ОНОВЛЕНА КНОПКА (МЕНША, ТОНША, НИЖЧЕ)
============================================================ */
.bp-news-shortcode .read-more,
.bp-news-shortcode .more-link,
.bp-news-shortcode a.read-more,
.bp-news-shortcode a.more-link,
.bp-news-shortcode .latestposts a.button,
.bp-news-shortcode .wp-block-latest-posts__post-excerpt + a {
    display: inline-flex !important; /* Щоб кнопка не розтягувалась на всю ширину */
    align-items: center !important;
    justify-content: center !important;
    
    margin-top: 25px !important;      /* Опускаємо нижче від тексту */
    padding: 1px 22px !important;     /* Тонша (менші відступи зверху/знизу) */
    width: auto !important;           /* Не на всю ширину */
    max-width: fit-content !important;
    
    background: #2171C7 !important;
    border-radius: 100px !important;
    text-decoration: none !important;
    transition: 0.3s !important;
}

/* Колір тексту в кнопці */
.bp-news-shortcode .read-more,
.bp-news-shortcode .read-more *,
.bp-news-shortcode a.button,
.bp-news-shortcode a.button * {
    color: #ffffff !important;
    font-size: 13px !important;      /* Трохи менший шрифт */
    font-weight: 700 !important;
}

/* Адаптивність */
@media (max-width: 1199px) {
    .bp-news-head, .bp-news-shortcode ul { grid-template-columns: 1fr !important; }
}

@media (max-width: 767px) {
    .bp-news-shortcode li { grid-template-columns: 1fr !important; min-height: auto !important; }
    .bp-news-shortcode img { height: 220px !important; }
    .bp-news-shortcode .read-more, .bp-news-shortcode a.button { width: 100% !important; max-width: 100% !important; }
}
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}
