/* ===========================
   Air Cleaning Solutions
   Main Stylesheet
   =========================== */

:root {
    --navy: #0d1b2a;
    --navy-mid: #1a2e45;
    --navy-light: #243b55;
    --orange: #e85d04;
    --orange-dark: #c44e02;
    --orange-light: #ff6b1a;
    --white: #ffffff;
    --gray-light: #f4f7fa;
    --gray-mid: #e0e7ef;
    --gray-text: #5a6b7c;
    --text: #1a2332;
    --radius: 6px;
    --shadow: 0 2px 16px rgba(13,27,42,0.10);
    --shadow-lg: 0 8px 40px rgba(13,27,42,0.16);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--navy);
    line-height: 1.15;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

section { padding: 72px 0; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all .2s;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-cta {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-cta:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(232,93,4,0.35); }

.btn-call {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-call:hover { background: var(--orange-dark); color: var(--white); }

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); color: var(--white); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    padding: 7px 0;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--orange-light);
    font-weight: 700;
    font-size: 0.9rem;
}
.top-bar-phone:hover { color: var(--white); }

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(13,27,42,0.10);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy);
    line-height: 1;
}
.logo-sub {
    font-size: 0.72rem;
    color: var(--gray-text);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.site-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.site-nav ul li { position: relative; }
.site-nav ul li a {
    display: block;
    padding: 8px 12px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.site-nav ul li a:hover { background: var(--gray-light); color: var(--orange); }

.has-dropdown {
    position: relative;
}

.dropdown {
    display: none !important;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    min-width: 210px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-mid);
    z-index: 9999;
    flex-direction: column;
    padding: 6px 0;
}

.has-dropdown:hover .dropdown {
    display: none !important;
}

.has-dropdown.open .dropdown {
    display: flex !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .25s;
}
.header-cta { display: flex; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,93,4,0.18);
    color: var(--orange-light);
    border: 1px solid rgba(232,93,4,0.35);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero h1 span { color: var(--orange-light); }
.hero-sub {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 600;
}
.trust-item svg { color: var(--orange-light); flex-shrink: 0; }

/* Hero Card */
.hero-card {
    background: var(--white);
    border-radius: 10px;
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
}
.hero-card h3 {
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 1.3rem;
}
.hero-card p {
    color: var(--gray-text);
    font-size: 0.875rem;
    margin-bottom: 20px;
}
.hero-card-form { display: flex; flex-direction: column; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid var(--gray-mid);
    border-radius: var(--radius);
    padding: 10px 13px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color .2s;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 90px; }

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--gray-text); font-size: 1.02rem; }

/* ===== SERVICES GRID ===== */
.services-section { background: var(--gray-light); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--gray-mid);
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--orange); }
.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(232,93,4,0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--orange);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { font-size: 0.875rem; color: var(--gray-text); margin-bottom: 16px; }
.service-card a { font-size: 0.875rem; font-weight: 700; color: var(--orange); }

/* ===== WHY CHOOSE ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
}
.why-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.why-icon {
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}
.why-item h4 { margin-bottom: 4px; }
.why-item p { font-size: 0.875rem; color: var(--gray-text); }

/* ===== PROCESS ===== */
.process-section { background: var(--navy); }
.process-section .section-header h2,
.process-section .section-label { color: var(--white); }
.process-section .section-header p { color: rgba(255,255,255,0.65); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(16.66% + 16px);
    right: calc(16.66% + 16px);
    height: 2px;
    background: rgba(232,93,4,0.4);
}
.process-step { text-align: center; position: relative; }
.step-num {
    width: 64px;
    height: 64px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255,255,255,0.12);
}
.process-step h3 { color: var(--white); margin-bottom: 8px; }
.process-step p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ===== SERVICE AREAS ===== */
.areas-section { background: var(--gray-light); }
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}
.area-pill {
    background: var(--white);
    border: 1.5px solid var(--gray-mid);
    border-radius: 6px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    transition: border-color .2s, color .2s;
}
.area-pill:hover { border-color: var(--orange); color: var(--orange); }
.area-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    border: 1.5px solid var(--gray-mid);
    border-radius: 8px;
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    background: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    user-select: none;
    transition: background .15s;
}
.faq-question:hover { background: var(--gray-light); }
.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    transition: transform .25s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding: 0 22px 18px;
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.7;
    background: var(--white);
}
.faq-item.active .faq-answer { display: block; }

/* ===== CTA STRIP ===== */
.cta-strip {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 56px 0;
}
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-strip-text h2 { color: var(--white); margin-bottom: 8px; }
.cta-strip-text p { color: rgba(255,255,255,0.82); margin: 0; font-size: 1.02rem; }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}
.contact-info h3 { margin-bottom: 16px; }
.contact-info-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.contact-info-icon {
    width: 38px;
    height: 38px;
    background: rgba(232,93,4,0.10);
    color: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 0.8rem; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.contact-info-item a, .contact-info-item span { color: var(--text); font-weight: 600; }
.contact-info-item a:hover { color: var(--orange); }

.contact-form-wrap {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 36px 32px;
}
.contact-form-wrap h3 { margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.alert {
    padding: 13px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
}
.alert-success { background: #e6f9f0; color: #1a7c4e; border: 1px solid #a3e4c3; }
.alert-error { background: #fff0f0; color: #c0392b; border: 1px solid #f5b7b1; }

/* ===== AREAS SERVED LIST ===== */
.areas-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
}
.areas-list-grid span {
    font-size: 0.875rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 6px;
}
.areas-list-grid span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 56px 0 52px;
    text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 580px; margin: 0 auto 22px; }
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ===== SERVICE PAGE ===== */
.service-content { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.service-body h2 { margin-bottom: 16px; }
.service-body h3 { margin: 28px 0 12px; }
.service-body ul { list-style: disc; padding-left: 20px; color: var(--gray-text); }
.service-body ul li { margin-bottom: 6px; font-size: 0.95rem; }
.service-body p { color: var(--gray-text); }

.service-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
    background: var(--gray-light);
    border-radius: 8px;
    padding: 24px 22px;
    border: 1.5px solid var(--gray-mid);
}
.sidebar-card h4 { margin-bottom: 12px; font-size: 1rem; }
.sidebar-card ul { display: flex; flex-direction: column; gap: 8px; }
.sidebar-card ul li {
    font-size: 0.875rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 7px;
}
.sidebar-card ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}
.sidebar-card-cta { background: var(--navy); }
.sidebar-card-cta h4 { color: var(--white); }
.sidebar-card-cta p { color: rgba(255,255,255,0.65); font-size: 0.875rem; margin-bottom: 14px; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--gray-text); margin-bottom: 14px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-value {
    background: var(--gray-light);
    border-radius: 8px;
    padding: 18px;
    border-left: 4px solid var(--orange);
}
.about-value h4 { margin-bottom: 5px; font-size: 0.95rem; }
.about-value p { font-size: 0.85rem; color: var(--gray-text); margin: 0; }

.team-section { background: var(--gray-light); }

/* ===== PRIVACY / TERMS ===== */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { margin: 32px 0 12px; font-size: 1.5rem; }
.legal-content h3 { margin: 20px 0 8px; font-size: 1.15rem; }
.legal-content p, .legal-content li { color: var(--gray-text); font-size: 0.95rem; line-height: 1.75; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal-content ul li { margin-bottom: 6px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); padding: 60px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 14px;
}
.footer-logo .logo-name { color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; }
.footer-logo .logo-sub { color: rgba(255,255,255,0.45); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin-bottom: 20px; line-height: 1.6; }
.footer-contact-block { display: flex; flex-direction: column; gap: 9px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--orange-light); }
.footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a, .footer-links li span {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    transition: color .15s;
}
.footer-links li a:hover { color: var(--orange-light); }
.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.8rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--orange-light); }

/* ===== SIGNS SECTION ===== */
.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.sign-card {
    background: var(--white);
    border: 1.5px solid var(--gray-mid);
    border-radius: 8px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.sign-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(232,93,4,0.18);
    line-height: 1;
    min-width: 42px;
}
.sign-card h4 { margin-bottom: 4px; font-size: 0.95rem; }
.sign-card p { font-size: 0.85rem; color: var(--gray-text); margin: 0; }

/* ===== BENEFITS LIST ===== */
.benefits-list { display: flex; flex-direction: column; gap: 14px; }
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--gray-light);
    border-radius: 8px;
}
.benefit-check {
    width: 26px;
    height: 26px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 1px;
}
.benefit-item h4 { margin-bottom: 3px; font-size: 0.95rem; }
.benefit-item p { font-size: 0.875rem; color: var(--gray-text); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .process-grid { grid-template-columns: 1fr; }
    .process-grid::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-content { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .areas-list-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
    section { padding: 52px 0; }
    .top-bar-item { display: none; }
    .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-mid); padding: 12px 0; box-shadow: 0 6px 20px rgba(0,0,0,.12); }
    .site-nav.open { display: block; }
    .site-nav ul { flex-direction: column; gap: 0; }
    .site-nav ul li a { padding: 12px 20px; border-radius: 0; }
    .dropdown { position: static; box-shadow: none; border: none; padding-left: 20px; }
    .nav-toggle { display: flex; }
    .header-cta { padding: 9px 16px; font-size: 0.85rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .areas-list-grid { grid-template-columns: 1fr 1fr; }
    .cta-strip-inner { flex-direction: column; text-align: center; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
}
