/* ============================================================
   HBCE — Hibiscus Coast Electrical
   Palette: Charcoal #1a1a1a | Red #cc1f1f | Off-white #f5f4f0
   ============================================================ */

:root {
    --red:       #cc1f1f;
    --red-dark:  #a01818;
    --red-light: #f5d5d5;
    --charcoal:  #1a1a1a;
    --dark:      #111111;
    --mid:       #2e2e2e;
    --wire-green:#2e7d4f;
    --text:      #2a2a2a;
    --muted:     #666;
    --light:     #f5f4f0;
    --white:     #ffffff;
    --border:    #e0deda;
    --radius:    4px;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --shadow:    0 2px 16px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 32px rgba(0,0,0,0.12);
    --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

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

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.02em;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}
.section-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}

/* ── LAYOUT ── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 72px 0; }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-light { background: var(--light); }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-white:hover { background: var(--light); color: var(--red-dark); border-color: var(--light); }

/* ── TOPBAR ── */
.topbar {
    background: var(--charcoal);
    color: #aaa;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 2px solid var(--red);
}
.topbar-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #aaa;
    text-decoration: none;
    transition: color var(--transition);
}
.topbar-item:hover { color: var(--white); }
.topbar-fb { margin-left: auto; color: #aaa; }
.topbar-fb:hover { color: #1877f2; }

/* ── HEADER ── */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 0 var(--border), var(--shadow);
}
.header-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    height: 76px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; }

.main-nav { margin-left: auto; }
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav a {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}
.main-nav a:hover,
.main-nav a.active { color: var(--red); }
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 12px; right: 12px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}
.main-nav a.nav-cta {
    background: var(--red);
    color: var(--white);
    padding: 9px 20px;
    margin-left: 8px;
}
.main-nav a.nav-cta:hover { background: var(--red-dark); color: var(--white); }
.main-nav a.nav-cta.active::after { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ── HERO ── */
.hero {
    background: var(--charcoal);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0 72px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.015) 40px,
        rgba(255,255,255,0.015) 41px
    );
}
.hero-wire {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 33%, var(--charcoal) 33%, var(--charcoal) 44%, var(--wire-green) 44%);
}
.hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
}
.hero h1 {
    font-size: clamp(52px, 7vw, 80px);
    line-height: 0.93;
    margin-bottom: 20px;
}
.hero h1 em {
    color: var(--red);
    font-style: normal;
    display: block;
}
.hero-lead {
    font-size: 17px;
    color: #9a9a9a;
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    display: block;
}
.hero-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Hero card */
.hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 32px;
}
.hero-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
    color: #ccc;
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-tick {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(204,31,31,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--red);
    padding: 14px 0;
}
.trust-bar-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.trust-item svg { opacity: 0.9; flex-shrink: 0; }

/* ── SERVICES SECTION ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.section-dark .service-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 48px; height: 48px;
    background: var(--red-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--red);
}
.section-dark .service-icon {
    background: rgba(204,31,31,0.15);
}
.service-card h3 {
    font-size: 20px;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.section-dark .service-card h3 { color: var(--white); }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.section-dark .service-card p { color: #888; }

/* ── CTA BAND ── */
.cta-band {
    background: var(--red);
    padding: 48px 0;
}
.cta-band-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-band h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    line-height: 1;
}
.cta-band p { color: rgba(255,255,255,0.7); font-size: 15px; margin-top: 6px; }
.cta-band-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-phone {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.02em;
}
.cta-phone:hover { color: rgba(255,255,255,0.8); }

/* ── TESTIMONIALS ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px;
    position: relative;
}
.section-dark .testi-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}
.testi-quote-mark {
    font-family: Georgia, serif;
    font-size: 56px;
    color: var(--red);
    line-height: 0.7;
    margin-bottom: 12px;
    display: block;
}
.testi-stars {
    color: var(--red);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.testi-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
}
.section-dark .testi-text { color: #bbb; }
.testi-author {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 40px;
}
.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    background: var(--light);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.6);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption { color: var(--white); font-size: 13px; font-weight: 500; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: var(--charcoal);
    color: var(--white);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.015) 40px,
        rgba(255,255,255,0.015) 41px
    );
}
.page-hero-wire {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 33%, var(--charcoal) 33%, var(--charcoal) 44%, var(--wire-green) 44%);
}
.page-hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.page-hero h1 { font-size: clamp(40px, 6vw, 64px); margin-top: 12px; }
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero p { color: #888; font-size: 16px; margin-top: 12px; max-width: 580px; }

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-value-icon {
    width: 40px; height: 40px;
    background: var(--red-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}
.about-value h4 { font-size: 15px; color: var(--charcoal); margin-bottom: 2px; }
.about-value p { font-size: 14px; color: var(--muted); }
.about-image-wrap {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -12px; left: -12px;
    width: 80px; height: 80px;
    border-top: 4px solid var(--red);
    border-left: 4px solid var(--red);
    z-index: 1;
    border-radius: 2px;
}
.about-image-placeholder {
    aspect-ratio: 4/3;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
}

/* ── CONTACT FORM ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
    background: var(--charcoal);
    color: var(--white);
    border-radius: 6px;
    padding: 28px;
}
.contact-info-card h3 { font-size: 20px; margin-bottom: 20px; color: var(--white); }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-info-icon {
    width: 36px; height: 36px;
    background: rgba(204,31,31,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: #aaa; text-transform: uppercase; margin-bottom: 2px; }
.contact-info-item a { color: var(--white); font-size: 15px; }
.contact-info-item a:hover { color: var(--red); }
.contact-info-item p { color: #ccc; font-size: 14px; line-height: 1.5; }

.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 15px;
}
.form-error {
    background: var(--red-light);
    border: 1px solid #f5c6cb;
    color: var(--red-dark);
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 15px;
}

/* ── FOOTER ── */
.site-footer { background: var(--charcoal); color: #999; }
.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 56px 24px 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
    gap: 40px;
}
.footer-logo { filter: brightness(0) invert(1); height: 44px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 13px; line-height: 1.6; color: #777; margin-bottom: 16px; }
.footer-fb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    color: #888;
    transition: all var(--transition);
}
.footer-fb:hover { background: #1877f2; color: var(--white); }
.site-footer h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-col a { color: #777; font-size: 14px; transition: color var(--transition); }
.footer-nav-col a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}
.footer-contact-list svg { flex-shrink: 0; color: var(--red); margin-top: 2px; }
.footer-contact-list a { color: #999; }
.footer-contact-list a:hover { color: var(--white); }
.footer-trust-list { display: flex; flex-direction: column; gap: 10px; }
.footer-trust-list li { font-size: 13px; color: #777; display: flex; align-items: flex-start; gap: 8px; }
.tick { color: var(--wire-green); font-weight: 700; flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: 12px; color: #555; }
.footer-credit a { color: #666; }
.footer-credit a:hover { color: #999; }

/* ── SERVICES PAGE SPECIFIC ── */
.services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 48px;
}
.service-split-panel { padding: 40px; }
.service-split-panel:first-child { border-right: 1px solid var(--border); }
.service-split-panel h2 { font-size: 32px; color: var(--charcoal); margin-bottom: 12px; }
.service-split-panel h2 em { color: var(--red); font-style: normal; }
.service-list { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '—'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { order: -1; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .services-split { grid-template-columns: 1fr; }
    .service-split-panel:first-child { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
    .topbar-inner { gap: 12px; }
    .topbar-item:nth-child(2),
    .topbar-item:nth-child(3) { display: none; }
    .topbar-fb { margin-left: 0; }

    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: fixed;
        inset: 76px 0 0 0;
        background: var(--white);
        z-index: 99;
        padding: 24px;
        overflow-y: auto;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav a { display: block; padding: 14px 16px; font-size: 18px; border-radius: var(--radius); }
    .main-nav a.nav-cta { margin-left: 0; margin-top: 12px; text-align: center; }
    .main-nav a.active::after { display: none; }

    .hero { padding: 48px 0 40px; }
    .hero h1 { font-size: 52px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }

    .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 480px) {
    .section { padding: 48px 0; }
    .hero h1 { font-size: 42px; }
    .trust-bar-inner { gap: 8px; }
    .trust-item { font-size: 11px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.section-intro { font-size: 16px; color: var(--muted); max-width: 580px; margin-top: 12px; line-height: 1.7; }
.section-intro-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── SCROLL ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
