/* Phoenix Floor Sanding — Main Stylesheet */
:root {
    --bg-dark:    #0f0f0f;
    --bg-card:    #141414;
    --bg-card2:   #1a1a1a;
    --border:     #252525;
    --text:       #f0ebe3;
    --text-dim:   #9a8a78;
    --text-sub:   #5a4d3a;
    --neon:       #ff6b00;
    --neon2:      #ff8c00;
    --neon-glow:  0 0 20px rgba(255, 107, 0, 0.35);
    --neon-glow-strong: 0 0 32px rgba(255, 107, 0, 0.55);
    --radius:     10px;
    --radius-lg:  16px;
    --transition: 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg-dark);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--neon); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
p { margin-bottom: 1rem; color: var(--text-dim); }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 700; }

.neon { color: var(--neon); text-shadow: 0 0 16px rgba(255,107,0,.4); }
.section-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--neon);
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text);
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 2rem;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Sections ── */
.section { padding: 5rem 0; }
.section--dark { background: var(--bg-card); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    padding: .85rem 1.75rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn--primary {
    background: linear-gradient(135deg, var(--neon), var(--neon2));
    color: #fff;
    box-shadow: var(--neon-glow);
}
.btn--primary:hover {
    box-shadow: var(--neon-glow-strong);
    transform: translateY(-1px);
    text-decoration: none;
}
.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn--ghost:hover {
    border-color: var(--neon);
    color: var(--neon);
    text-decoration: none;
}
.btn--nav {
    background: transparent;
    color: var(--neon);
    border-color: var(--neon);
    padding: .6rem 1.25rem;
    font-size: .85rem;
    box-shadow: 0 0 10px rgba(255,107,0,.15);
}
.btn--nav:hover {
    background: rgba(255,107,0,.1);
    box-shadow: var(--neon-glow);
    text-decoration: none;
}
.btn--full { width: 100%; justify-content: center; }

/* ── Nav ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15,15,15,.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.02em;
    flex-shrink: 0;
}
.nav__logo-icon { font-size: 1.4rem; }
.nav__logo-accent { color: var(--neon); }
.nav__links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-left: auto;
}
.nav__link {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-dim);
    padding: .45rem .85rem;
    border-radius: 7px;
    transition: all var(--transition);
    text-decoration: none;
    border: 1px solid transparent;
}
.nav__link:hover,
.nav__link--active {
    color: var(--text);
    background: var(--bg-card);
    border-color: var(--border);
    text-decoration: none;
}
.nav__link--active { color: var(--neon); border-color: rgba(255,107,0,.3); }
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    margin-left: auto;
}
.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a00 50%, #0f0f0f 100%);
    background-image: url('/static/images/phoenix-hero.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,107,0,.08) 0%, transparent 65%);
    pointer-events: none;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.72) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.75) 100%);
}
.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem 1.5rem;
}
.hero__eyebrow {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--neon);
    margin-bottom: 1rem;
    display: block;
}
.hero__headline {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1.25rem;
    text-shadow: 0 0 60px rgba(255,107,0,.2);
}
.hero__sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: var(--text-sub);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    animation: bounce 2s infinite;
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--neon), transparent);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust Bar ── */
.trust-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 0;
}
.trust-bar__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.trust-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .5rem 2.5rem;
    gap: .25rem;
}
.trust-bar__divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}
.trust-bar__number {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -.03em;
}
.trust-bar__label {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-dim);
}

/* ── Intro Section ── */
.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.intro__text h2 { margin-bottom: 1.25rem; }
.intro__text p { margin-bottom: 1rem; }
.intro__text .btn { margin-top: .5rem; }
.intro__cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.4rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color var(--transition);
}
.feature-card:hover { border-color: rgba(255,107,0,.3); }
.feature-card__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.feature-card__img { width: 80px; min-width: 80px; max-width: 80px; height: 64px; object-fit: cover; border-radius: 8px; flex-shrink: 0; display: block; }
.feature-card__body { flex: 1; min-width: 0; overflow: hidden; word-break: break-word; }
.feature-card__body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; color: var(--text); }
.feature-card__body p { font-size: .88rem; margin: 0; word-wrap: break-word; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; color: var(--text); }
.feature-card p { font-size: .88rem; margin: 0; }

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.service-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--neon);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,107,0,.12);
    text-decoration: none;
}
.service-card--cta { border-color: rgba(255,107,0,.25); background: rgba(255,107,0,.04); }
.service-card__icon { font-size: 2rem; }
.service-card__img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: .85rem; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.service-card p { font-size: .88rem; margin: 0; }
.service-card__link { font-size: .82rem; font-weight: 700; color: var(--neon); margin-top: auto; }

/* ── Why Grid ── */
.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2.5rem;
}
.why__item { display: flex; flex-direction: column; gap: .5rem; }
.why__img { width: 100%; height: 200px; object-fit: cover; object-position: center 40%; border-radius: 10px; margin-bottom: .25rem; aspect-ratio: 16/9; }
.why__num {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .25rem;
}
.why__item h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.why__item p { font-size: .88rem; margin: 0; }

/* ── CTA Banner ── */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #1a0a00, #0f0f0f 50%, #1a0800);
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,107,0,.1) 0%, transparent 65%);
}
.cta-banner__overlay { position: absolute; inset: 0; }
.cta-banner__content {
    position: relative;
    z-index: 1;
}
.cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text);
}
.cta-banner p { font-size: 1.05rem; margin-bottom: 2rem; }
.cta-banner__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Areas ── */
.areas__grid {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}
.area-tag {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .5rem 1.1rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: all var(--transition);
}
.area-tag:hover { border-color: var(--neon); color: var(--neon); }
.area-tag--more { border-style: dashed; color: var(--text-sub); }

/* ── Page Hero (inner pages) ── */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #0f0f0f, #1a0a00 60%, #0f0f0f);
    background-image: url('/static/images/bays-floor-sanding-polishing-01.webp');
    background-size: cover;
    background-position: center 30%;
    padding: 5rem 0 3.5rem;
    overflow: hidden;
}
.page-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.72); }
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,107,0,.07) 0%, transparent 60%);
}
.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.page-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: .75rem;
    color: var(--text);
}
.page-hero p { font-size: 1.05rem; }

/* ── Bona Bar ── */
.bona-bar {
    background: rgba(255,107,0,.06);
    border-top: 1px solid rgba(255,107,0,.2);
    border-bottom: 1px solid rgba(255,107,0,.2);
    padding: 1.1rem 0;
}
.bona-bar__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.bona-bar__icon { font-size: 1.5rem; flex-shrink: 0; }
.bona-bar p { margin: 0; font-size: .9rem; }

/* ── Services Detail ── */
.service-detail {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem 2.5rem;
    align-items: start;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail--reverse { direction: rtl; }
.service-detail--reverse > * { direction: ltr; }
.service-detail__icon { font-size: 3rem; padding-top: .25rem; }
.service-detail__img { width: 100%; max-width: 420px; height: 280px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
.service-detail__body h2 { font-size: 1.6rem; margin-bottom: .5rem; color: var(--text); }
.service-detail__lead { font-size: 1.05rem; color: var(--text); margin-bottom: 1rem; }
.service-detail__body p { margin-bottom: .85rem; }
.service-detail__list { margin: .75rem 0 .85rem 1.25rem; }
.service-detail__list li { margin-bottom: .4rem; font-size: .95rem; color: var(--text-dim); }
.service-detail__note {
    background: rgba(255,107,0,.07);
    border: 1px solid rgba(255,107,0,.2);
    border-radius: 8px;
    padding: .75rem 1rem;
    font-size: .88rem;
    color: var(--text-dim);
    margin-top: .5rem;
}

/* ── Process Steps ── */
.process-steps {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.process-step {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
}
.process-step__num {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: .5rem;
    display: block;
}
.process-step h3 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; color: var(--text); }
.process-step p { font-size: .83rem; margin: 0; }
.process-step__arrow { font-size: 1.5rem; color: var(--text-sub); align-self: center; flex-shrink: 0; }

/* ── Gallery ── */
.gallery-filters {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.gallery-filter {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-dim);
    font-family: inherit;
    font-size: .82rem;
    font-weight: 600;
    padding: .5rem 1.1rem;
    cursor: pointer;
    transition: all var(--transition);
}
.gallery-filter:hover { border-color: var(--neon); color: var(--neon); }
.gallery-filter--active { background: rgba(255,107,0,.1); border-color: var(--neon); color: var(--neon); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; }
.gallery-item__inner { position: relative; aspect-ratio: 1.2; overflow: hidden; }
.gallery-item__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.1rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__info h3 { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: .2rem; }
.gallery-item__info p { font-size: .78rem; color: rgba(255,255,255,.75); margin: 0; }
.gallery-cta { text-align: center; margin-top: 3rem; }
.gallery-cta p { font-size: 1.05rem; margin-bottom: 1.25rem; }

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--text); }
.contact-info p { margin-bottom: 1rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin: 1.75rem 0; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
}
.contact-detail__icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.contact-detail strong { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-sub); margin-bottom: .15rem; }
.contact-detail a, .contact-detail span { font-size: .95rem; color: var(--text-dim); }
.contact-detail a:hover { color: var(--neon); }
.contact-bona {
    background: rgba(255,107,0,.07);
    border: 1px solid rgba(255,107,0,.2);
    border-radius: 8px;
    padding: .85rem 1rem;
}
.contact-bona p { font-size: .9rem; margin: 0; }
.contact-form-wrap { }
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.contact-form h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text); }
.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1.1rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-sub);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-dark);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: .95rem;
    padding: .75rem 1rem;
    transition: border-color var(--transition);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon);
    box-shadow: 0 0 0 3px rgba(255,107,0,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-sub); }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.form-group select {
    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='%235a4d3a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.required { color: var(--neon); }
.form-note { font-size: .78rem; color: var(--text-sub); text-align: center; margin-top: .75rem; margin-bottom: 0; }

/* ── Flash messages ── */
.flash-container {
    position: fixed;
    top: 72px;
    right: 1.5rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    max-width: 420px;
}
.flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .85rem 1.1rem;
    font-size: .88rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    animation: slideIn .3s ease;
}
.flash--success { border-color: rgba(34,197,94,.4); color: #22c55e; }
.flash--error   { border-color: rgba(239,68,68,.4); color: #ef4444; }
.flash__close { background: none; border: none; color: inherit; cursor: pointer; font-size: 1rem; opacity: .7; padding: 0; flex-shrink: 0; }
.flash__close:hover { opacity: 1; }
@keyframes slideIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }

/* ── Footer ── */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: .75rem;
}
.footer__tagline {
    font-size: .85rem;
    color: var(--text-sub);
    line-height: 1.6;
    margin: 0;
}
.footer__heading {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-sub);
    margin-bottom: 1rem;
}
.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.footer__list li, .footer__list a {
    font-size: .88rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color var(--transition);
}
.footer__list a:hover { color: var(--neon); }
.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
    font-size: .8rem;
    color: var(--text-sub);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .process-steps { gap: .25rem; }
    .process-step__arrow { display: none; }
}
@media (max-width: 768px) {
    .nav__links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-dark); border-bottom: 1px solid var(--border); flex-direction: column; padding: 1rem; gap: .25rem; }
    .nav__links.nav__links--open { display: flex; }
    .nav__toggle { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .section { padding: 3.5rem 0; }
    .trust-bar__grid { gap: 0; }
    .trust-bar__item { padding: .5rem 1.25rem; }
    .trust-bar__divider { display: none; }
    .service-detail { grid-template-columns: 1fr; gap: 1rem; }
    .service-detail--reverse { direction: ltr; }
    .service-detail__icon { font-size: 2rem; }
    .process-steps { flex-direction: column; align-items: stretch; }
    .process-step { max-width: none; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }

}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__cta { flex-direction: column; align-items: center; }
    .cta-banner__buttons { flex-direction: column; align-items: center; }
    .gallery-filters { gap: .35rem; }
    .gallery-filter { padding: .4rem .85rem; font-size: .78rem; }
}
