/* =============================================================
   RenewCrete Solutions, Main Stylesheet
   style.css?v=20260601
   ============================================================= */

/* ===================== CSS VARIABLES ======================== */
:root {
    --green:        #5DB830;
    --green-dark:   #4a9626;
    --green-light:  #6fd638;
    --charcoal:     #1C1C1C;
    --dark:         #2a2a2a;
    --gray:         #6B7280;
    --gray-light:   #9CA3AF;
    --concrete:     #D1D5DB;
    --offwhite:     #F5F5F0;
    --white:        #FFFFFF;
    --overlay:      rgba(20, 20, 20, 0.70);
    --overlay-dark: rgba(10, 10, 10, 0.80);
    --shadow:       0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg:    0 8px 40px rgba(0,0,0,0.18);
    --radius:       6px;
    --radius-lg:    12px;
    --transition:   0.25s ease;
    --font-head:    'Montserrat', sans-serif;
    --font-body:    'Open Sans', sans-serif;
    --max-w:        1200px;
    --section-py:   80px;
}

/* ===================== RESET ================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: clip; /* 'clip' safer than 'hidden', does not break position:sticky */
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.65;
    overflow-x: clip;
    max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Overflow-proof text, prevent long words from breaking layout */
p, h1, h2, h3, h4, h5, h6, li, a, span, td, th {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ===================== TYPOGRAPHY =========================== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--gray); }
p:last-child { margin-bottom: 0; }

.text-white   { color: var(--white) !important; }
.text-green   { color: var(--green) !important; }
.text-dark    { color: var(--charcoal) !important; }
.text-center  { text-align: center; }
.text-left    { text-align: left; }

/* ===================== LAYOUT =============================== */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: var(--section-py) 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }

.section-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 650px;
    margin-bottom: 40px;
}

.section-title + .section-subtitle { margin-top: 12px; }

/* Grid, minmax(0,1fr) prevents mobile overflow (see master rules Section 5.2) */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
/* min-width: 0 on all grid children, prevents content overflow */
.grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; }

/* Flex */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap-md { gap: 20px; }
.gap-lg { gap: 30px; }

/* ===================== BUTTONS ============================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93,184,48,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}
.btn-dark:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.btn-green-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-green-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* ===================== TOP CONTACT BAR ====================== */
.top-bar {
    background: var(--charcoal);
    color: var(--white);
    padding: 9px 0;
    font-size: 0.82rem;
    font-family: var(--font-head);
    font-weight: 600;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar__trust {
    color: var(--green);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.top-bar__contacts {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar__contacts a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.top-bar__contacts a:hover { color: var(--green); }

.top-bar__contacts svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ===================== HEADER / NAV ========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    gap: 14px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    /* 84px inside 4px padding keeps the header at the same 92px it always was.
       The artwork is trimmed of its transparent margin, so this is bigger again
       than the raw height suggests. */
    height: 84px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}

.site-nav a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 8px 10px;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--green);
    background: rgba(93,184,48,0.08);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-phone {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.header-phone svg { color: var(--green); width: 16px; height: 16px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--concrete);
    padding: 16px 20px 20px;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav-backdrop {
    display: none;
}

.mobile-nav a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    padding: 12px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.mobile-nav a:hover { color: var(--green); background: rgba(93,184,48,0.08); }
.mobile-nav .btn { margin-top: 10px; justify-content: center; }

/* ===================== HERO SECTION ========================= */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10,10,10,0.78) 0%,
        rgba(20,20,20,0.58) 54%,
        rgba(10,10,10,0.34) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
    max-width: 680px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(93,184,48,0.18);
    border: 1px solid rgba(93,184,48,0.4);
    color: var(--green-light);
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.hero__badge span { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

.hero__title {
    color: var(--white);
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    margin-bottom: 20px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.hero__title .accent { color: var(--green); }

.hero__sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 560px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.hero__trust-item svg {
    color: var(--green);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* ===================== ESTIMATE FORM BLOCK ================== */
.estimate-block {
    background: var(--offwhite);
    padding: 70px 0;
}

.estimate-block__inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.estimate-block__inner > *,
.estimate-page-grid > * {
    min-width: 0;
}

.estimate-block__info h2 { margin-bottom: 14px; }
.estimate-block__info p { margin-bottom: 20px; }

.estimate-info-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.estimate-info-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--charcoal);
}

.estimate-info-point__icon {
    width: 32px;
    height: 32px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.estimate-info-point__icon svg {
    width: 15px;
    height: 15px;
    color: var(--white);
}

/* ===================== FORMS ================================ */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.06);
}

.form-card__title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--offwhite);
    color: var(--charcoal);
}

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.form-grid .span-2 { grid-column: 1 / -1; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--charcoal);
    background: var(--white);
    border: 1.5px solid var(--concrete);
    border-radius: var(--radius);
    padding: 11px 14px;
    width: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    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='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(93,184,48,0.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input[type="file"] {
    padding: 8px 14px;
    cursor: pointer;
    font-size: 0.85rem;
}

.hp-field { display: none !important; }

.form-submit {
    grid-column: 1 / -1;
    margin-top: 6px;
}

.form-submit .btn { width: 100%; justify-content: center; font-size: 0.95rem; }

.form-note {
    font-size: 0.78rem;
    color: var(--gray-light);
    text-align: center;
    margin-top: 10px;
}

/* ===================== TRUST STRIP ========================== */
.trust-strip {
    background: var(--charcoal);
    padding: 22px 0;
}

.trust-strip__items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    padding: 10px 28px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.trust-strip__item:last-child { border-right: none; }

.trust-strip__item svg {
    color: var(--green);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ===================== PROBLEM SECTION ====================== */
.problem-section {
    background: var(--white);
    padding: var(--section-py) 0;
}

.problem-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-section__inner > *,
.audience-inner > * {
    min-width: 0;
}

.problem-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--charcoal);
    font-weight: 600;
    font-family: var(--font-head);
}

.problem-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.problem-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.problem-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.problem-image__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10,10,10,0.75));
    padding: 30px 24px 20px;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
}

/* ===================== SERVICES SECTION ===================== */
.services-section {
    background: var(--offwhite);
    padding: var(--section-py) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card__img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card__img img { transform: scale(1.06); }

.service-card__body {
    padding: 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.service-card__desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.service-card__link {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.service-card__link:hover { gap: 10px; }
.service-card__link svg { width: 14px; height: 14px; }

/* ===================== BEFORE / AFTER ======================= */
.before-after-section {
    background: var(--charcoal);
    padding: var(--section-py) 0;
}

.before-after-section .section-label { color: var(--green); }
.before-after-section .section-title { color: var(--white); }
.before-after-section .section-subtitle { color: rgba(255,255,255,0.7); }

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 28px;
    margin-top: 48px;
}

.ba-card,
.ba-compare-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}

.ba-compare {
    position: relative;
    overflow: hidden;
    background: #101010;
    aspect-ratio: 4 / 3;
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
}

.ba-card__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ba-card__side {
    position: relative;
    overflow: hidden;
}

.ba-card__side img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.ba-compare__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-compare__after {
    position: absolute;
    inset: 0 auto 0 0;
    overflow: hidden;
    border-right: 2px solid rgba(255,255,255,0.8);
}

.ba-compare__after .ba-compare__image {
    width: 100%;
    min-width: 100%;
}

.ba-card__label {
    position: absolute;
    top: 18px;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--white);
    z-index: 3;
    box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}

.ba-card__label.before { left: 18px; }
.ba-card__label.after  { right: 18px; }
.ba-card__label.before { background: rgba(0,0,0,0.7); }
.ba-card__label.after  { background: var(--green); }

.ba-card__divider {
    width: 3px;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.ba-compare__line {
    position: relative;
    z-index: 4;
    top: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-compare__line::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 50%;
    width: 2px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
    transform: translateX(-50%);
}

.ba-compare__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 16px 28px rgba(0,0,0,0.26);
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ba-compare__handle span {
    position: relative;
    width: 18px;
    height: 18px;
}

.ba-compare__handle span::before,
.ba-compare__handle span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--green);
    border-right: 2px solid var(--green);
}

.ba-compare__handle span::before {
    left: -2px;
    transform: translateY(-50%) rotate(-135deg);
}

.ba-compare__handle span::after {
    right: -2px;
    transform: translateY(-50%) rotate(45deg);
}

.ba-card__body {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ba-card__info .ba-service {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.ba-card__info .ba-location {
    font-size: 0.8rem;
    color: var(--gray-light);
}

.ba-card__hint {
    margin: 10px 0 0;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.76);
    max-width: 32ch;
}

.ba-card__cta {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green);
    white-space: nowrap;
    border: 1px solid var(--green);
    padding: 7px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
    flex-shrink: 0;
}

.ba-card__cta:hover {
    background: var(--green);
    color: var(--white);
}

/* ===================== AUDIENCE SECTIONS ==================== */
.audience-section {
    padding: var(--section-py) 0;
}

.audience-section:nth-child(even) { background: var(--offwhite); }

.audience-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.audience-inner.reverse { direction: rtl; }
.audience-inner.reverse > * { direction: ltr; }

.audience-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.audience-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.audience-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 28px;
}

.audience-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--charcoal);
}

.audience-point svg {
    color: var(--green);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===================== HOW IT WORKS ========================= */
.process-section {
    background: var(--white);
    padding: var(--section-py) 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 24px;
    margin-top: 48px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--concrete);
    z-index: 0;
}

.process-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.process-card__num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--green);
}

.process-card__title {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.process-card__desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ===================== SERVICE AREAS ======================== */
.areas-section {
    background: var(--offwhite);
    padding: var(--section-py) 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin: 36px 0;
}

.area-chip {
    background: var(--white);
    border: 1.5px solid var(--concrete);
    border-radius: var(--radius);
    padding: 12px 16px;
    text-align: center;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--charcoal);
    transition: all var(--transition);
}

.area-chip:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(93,184,48,0.05);
}

/* ===================== TRUST / TESTIMONIALS ================= */
.trust-section {
    background: var(--white);
    padding: var(--section-py) 0;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 24px;
    margin-bottom: 60px;
    text-align: center;
}

.trust-stat__num {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 6px;
}

.trust-stat__label {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-points-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 24px;
}

.trust-point-card {
    background: var(--offwhite);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    border: 1px solid var(--concrete);
}

.trust-point-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(93,184,48,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.trust-point-card__icon svg {
    width: 26px;
    height: 26px;
    color: var(--green);
}

.trust-point-card__title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.trust-point-card__desc {
    font-size: 0.87rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

/* ===================== FINAL CTA =========================== */
.final-cta {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2d2d2d 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/hero/hero-dres.jpg') center/cover;
    opacity: 0.12;
}

.final-cta__inner {
    position: relative;
    z-index: 1;
}

.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }

.final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.final-cta__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.final-cta__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
}

.final-cta__contact-item svg { color: var(--green); width: 18px; height: 18px; }
.final-cta__contact-item a { color: var(--white); font-weight: 600; }
.final-cta__contact-item a:hover { color: var(--green); }

/* ===================== FOOTER ============================== */
.site-footer {
    background: #111;
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
    height: 68px;
    width: auto;
    margin-bottom: 16px;
    /* logo-web-footer.png is already white, no filter needed */
    opacity: 0.95;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

.footer-contact-item svg { color: var(--green); width: 15px; height: 15px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--green); }

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--green); }

.footer-bottom {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--green); }

.footer-bottom__links {
    display: flex;
    gap: 20px;
}

.footer-bottom__links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

/* ===================== FLOATING WIDGET ====================== */
.floating-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: all var(--transition);
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.30);
}

.floating-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.floating-btn.phone { background: var(--green); }
.floating-btn.email { background: var(--charcoal); }

/* ===================== SUCCESS / ERROR MESSAGES ============= */
.form-message {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 12px;
    display: none;
}

.form-message.success {
    background: rgba(93,184,48,0.12);
    color: var(--green-dark);
    border: 1px solid rgba(93,184,48,0.3);
}

.form-message.error {
    background: rgba(220,38,38,0.08);
    color: #dc2626;
    border: 1px solid rgba(220,38,38,0.2);
}

/* ===================== ANIMATIONS ========================== */
/* ===================== COOKIE BANNER ======================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--charcoal);
    color: var(--white);
    padding: 16px 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 3px solid var(--green);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.visible { display: flex; }

.cookie-banner p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.cookie-banner p a {
    color: var(--green);
    text-decoration: underline;
}

/* ===================== ANIMATIONS ========================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeInUp 0.55s ease both;
}

[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== RESPONSIVE ========================== */
@media (max-width: 1024px) {
    .services-grid     { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .process-grid      { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .process-grid::before { display: none; }
    .footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
    .trust-stats       { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 768px) {
    :root { --section-py: 56px; }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .top-bar__trust    { display: none; }
    .top-bar__contacts { gap: 14px; font-size: 0.78rem; }

    .site-nav          { display: none; }
    .header-phone      { display: none; }
    .header-cta .btn   { display: none; }
    .header-logo img   { height: 68px; max-width: 250px; }
    .hamburger         { display: flex; }
    .site-header       { z-index: 10000; }

    body.mobile-nav-open {
        overflow: hidden;
        overscroll-behavior: none;
    }

    body.mobile-nav-open .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 10001;
    }

    body.mobile-nav-open .top-bar {
        display: none;
    }

    .mobile-nav {
        position: fixed;
        top: var(--mobile-nav-top, 82px);
        right: 0;
        bottom: auto;
        height: calc(100dvh - var(--mobile-nav-top, 82px));
        max-height: calc(100vh - var(--mobile-nav-top, 82px));
        width: min(82vw, 340px);
        z-index: 9999;
        overflow-y: auto;
        padding: 18px 20px calc(28px + env(safe-area-inset-bottom));
        box-shadow: 0 18px 40px rgba(0,0,0,0.16);
        border-left: 1px solid rgba(0,0,0,0.08);
        transform: translateX(105%);
        transition: transform 0.25s ease;
        overscroll-behavior: contain;
    }

    .mobile-nav.open {
        display: flex;
        transform: translateX(0);
    }

    .mobile-nav-backdrop {
        position: fixed;
        top: var(--mobile-nav-top, 82px);
        left: 0;
        right: 0;
        bottom: auto;
        height: calc(100dvh - var(--mobile-nav-top, 82px));
        max-height: calc(100vh - var(--mobile-nav-top, 82px));
        z-index: 9998;
        background: rgba(0,0,0,0.42);
    }

    .mobile-nav-backdrop.open {
        display: block;
    }
    .btn {
        max-width: 100%;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .hero { min-height: 75vh; }
    .hero__content { padding: 60px 0 50px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }

    .estimate-block__inner,
    .estimate-page-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .form-card { padding: 24px 18px; }
    .form-grid             { grid-template-columns: 1fr; }
    .form-grid .span-2     { grid-column: 1; }
    .form-submit .btn      { white-space: normal; text-align: center; line-height: 1.3; }

    .services-jump-nav {
        flex-wrap: wrap !important;
        min-width: 0 !important;
    }

    .services-jump-nav a {
        white-space: normal !important;
        text-align: center;
    }

    .trust-strip__items    { gap: 0; }
    .trust-strip__item     { font-size: 0.7rem; padding: 8px 16px; }

    .problem-section__inner { grid-template-columns: 1fr; gap: 32px; }
    .problem-list           { grid-template-columns: 1fr; }
    .problem-section .btn   { width: 100%; justify-content: center; white-space: normal; text-align: center; line-height: 1.3; }

    .services-grid     { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
    .service-card__img { height: 160px; }

    .ba-grid           { grid-template-columns: 1fr; }
    .ba-compare        { aspect-ratio: 5 / 4; }

    .audience-inner    { grid-template-columns: 1fr; gap: 32px; }
    .audience-inner.reverse { direction: ltr; }
    .audience-image img { height: 260px; }
    .audience-section .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; line-height: 1.3; }

    .service-detail-row {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        direction: ltr !important;
        margin-bottom: 56px !important;
    }

    .service-detail-row > * {
        min-width: 0;
        direction: ltr !important;
    }

    .service-detail-row .btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .client-type-card {
        flex-direction: column;
    }

    .client-type-card img {
        width: 100% !important;
        height: 180px !important;
    }

    .process-grid      { grid-template-columns: 1fr; gap: 20px; }

    .trust-stats       { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .trust-points-grid { grid-template-columns: 1fr; }

    .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom     { flex-direction: column; text-align: center; }
    .footer-bottom__links { justify-content: center; }

    .floating-widget   { bottom: 16px; right: 16px; }
    .floating-btn span { display: none; }
    .floating-btn      { padding: 14px; }
}

@media (max-width: 480px) {
    .services-grid   { grid-template-columns: 1fr; }
    .trust-stats     { grid-template-columns: 1fr 1fr; }
    .areas-grid      { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .ba-card__body      { flex-direction: column; align-items: flex-start; }
    .ba-card__hint      { max-width: none; }
    .ba-compare        { aspect-ratio: 1 / 1; }
    .ba-compare__handle { width: 52px; height: 52px; }
    .trust-strip__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; justify-content: center; }
    .top-bar__contacts { flex-direction: column; gap: 4px; align-items: flex-start; }
}

/* ===================== ESTIMATE PAGE ======================== */
.alert-error {
    background: rgba(220,38,38,0.08);
    border: 1.5px solid rgba(220,38,38,0.25);
    border-left: 4px solid #dc2626;
    color: #b91c1c;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.alert-error a { color: #b91c1c; text-decoration: underline; }

/* ===================== FORM CHECKBOXES ====================== */
.form-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px;
    margin-top: 4px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: var(--white);
    border: 1.5px solid var(--concrete);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    font-size: 0.85rem;
    color: var(--charcoal);
    font-family: var(--font-body);
    line-height: 1.4;
    user-select: none;
}

.checkbox-item:hover {
    border-color: var(--green);
    background: rgba(93,184,48,0.04);
}

.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    accent-color: var(--green);
    cursor: pointer;
    margin-top: 1px;
    border: none;
    padding: 0;
    -webkit-appearance: auto;
    appearance: auto;
}

.checkbox-item input[type="checkbox"]:focus {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

.checkbox-item:has(input:checked) {
    border-color: var(--green);
    background: rgba(93,184,48,0.06);
}

/* ===================== FORM HELPERS ========================= */
.form-helper {
    font-size: 0.75rem;
    color: var(--gray-light);
    margin-top: 5px;
    display: block;
}

.form-field-error {
    font-size: 0.75rem;
    color: #dc2626;
    margin-top: 5px;
    font-weight: 600;
}

.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.inline-error {
    display: block;
    font-size: 0.75rem;
    color: #dc2626;
    font-weight: 600;
    margin-top: 4px;
}

/* File input styling */
.file-input {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.85rem;
    background: var(--offwhite);
}

/* ===================== THANK-YOU PAGE ======================= */
.thankyou-check {
    width: 64px;
    height: 64px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* ===================== BOOKING PAGE ========================= */
.booking-step { animation: fadeInUp 0.3s ease both; }

/* Responsive, estimate form sidebar grid */
@media (max-width: 900px) {
    .form-checkboxes { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .form-checkboxes { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .alert-error { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .form-checkboxes { grid-template-columns: 1fr; }
}
