:root {
    --bg: #050508;
    --bg2: #0c0c12;
    --surface: #14141c;
    --surface2: #1c1c28;
    --text: #f4f4f8;
    --muted: #8b8b9e;
    --accent: #ff6b00;
    --accent2: #ff9500;
    --accent-glow: rgba(255, 107, 0, 0.45);
    --danger: #ef4444;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --header-h: 76px;
    --font: 'Outfit', system-ui, sans-serif;
    --display: 'Bebas Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1240px, 100% - 2.5rem); margin-inline: auto; }

/* Cursor glow - desktop only */
.cursor-glow {
    position: fixed;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}
@media (hover: hover) { .cursor-glow.active { opacity: 0.35; } }

/* Header */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
}
.header.scrolled { background: rgba(5, 5, 8, 0.95); box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.header-inner {
    display: flex; align-items: center; gap: 1.5rem;
    min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.brand img {
    width: 48px; height: 48px; border-radius: 10px;
    object-fit: contain; background: #fff; padding: 4px;
}
.brand-text strong { display: block; font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; }
.brand-text span { font-size: 0.72rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.nav { display: flex; gap: 0.15rem; margin-left: auto; }
.nav a {
    padding: 0.5rem 0.9rem; font-size: 0.88rem; font-weight: 500;
    color: var(--muted); border-radius: 8px; transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.btn-call-header {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1.2rem; background: var(--accent); color: #fff;
    font-weight: 700; font-size: 0.88rem; border-radius: 999px;
    box-shadow: 0 0 24px var(--accent-glow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-call-header:hover { transform: scale(1.04); box-shadow: 0 0 36px var(--accent-glow); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1rem 2rem; border-radius: 999px; font-weight: 700; font-size: 1rem;
    border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-fire {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff; box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-fire:hover { box-shadow: 0 12px 48px var(--accent-glow); }
.btn-ghost {
    background: rgba(255,255,255,0.08); color: var(--text);
    border: 1px solid var(--border); backdrop-filter: blur(8px);
}
.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.88rem; }
.btn-xl { padding: 1.25rem 2.5rem; font-size: 1.2rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding-top: var(--header-h);
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 1.4s ease-in-out;
}
.hero-video.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(5,5,8,0.55) 0%,
        rgba(5,5,8,0.75) 50%,
        rgba(5,5,8,0.95) 100%),
        linear-gradient(90deg, rgba(5,5,8,0.8) 0%, transparent 50%);
}
.hero-grain {
    position: absolute; inset: 0; z-index: 1; opacity: 0.04; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; padding: 4rem 0 6rem; max-width: 820px; }
.hero-eyebrow {
    display: inline-block; padding: 0.4rem 1rem;
    background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.35);
    color: var(--accent2); border-radius: 999px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-title { margin-bottom: 1.25rem; }
.hero-title .line { display: block; }
.hero-title .line:first-child {
    font-family: var(--display); font-size: clamp(3.5rem, 12vw, 7rem);
    line-height: 0.95; letter-spacing: 0.04em; color: var(--text);
}
.hero-title .line.accent {
    font-family: var(--display); font-size: clamp(3.5rem, 12vw, 7rem);
    line-height: 0.95; letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--accent), var(--accent2), #ffd000);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px var(--accent-glow));
}
.hero-title .line.sub {
    font-size: clamp(1.1rem, 3vw, 1.5rem); font-weight: 500;
    color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase;
    margin-top: 0.75rem;
}
.hero-desc { font-size: 1.1rem; color: var(--muted); max-width: 560px; margin-bottom: 2rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    padding-top: 2rem; border-top: 1px solid var(--border);
}
.hstat strong {
    display: block; font-family: var(--display); font-size: 2.5rem;
    color: var(--accent); letter-spacing: 0.05em; line-height: 1;
}
.hstat span { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: var(--muted); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Marquee */
.marquee {
    background: var(--accent); color: #fff; padding: 0.85rem 0;
    overflow: hidden; border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.marquee-track {
    display: flex; gap: 2rem; white-space: nowrap;
    animation: marquee var(--marquee-duration, 60s) linear infinite;
    font-family: var(--display); font-size: 1.1rem; letter-spacing: 0.12em;
    will-change: transform;
}
@media (hover: hover) {
    .marquee:hover .marquee-track { animation-play-state: paused; }
}
@media (max-width: 768px) {
    .marquee { padding: 0.7rem 0; }
    .marquee-track {
        font-size: 0.88rem;
        gap: 1.25rem;
        letter-spacing: 0.06em;
    }
}
@media (max-width: 480px) {
    .marquee-track { font-size: 0.82rem; gap: 1rem; }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 6rem 0; position: relative; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.tag {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent);
    margin-bottom: 0.75rem;
}
.tag-instagram {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.45rem 0.9rem; border-radius: 999px;
    background: linear-gradient(135deg, rgba(225,48,108,.15), rgba(131,58,180,.15));
    border: 1px solid rgba(225,48,108,.35);
    color: #f472b6; text-decoration: none;
    letter-spacing: 0.06em; text-transform: none;
    transition: background .25s, border-color .25s, transform .2s;
}
.tag-instagram:hover {
    background: linear-gradient(135deg, rgba(225,48,108,.28), rgba(131,58,180,.28));
    border-color: rgba(225,48,108,.55);
    transform: translateY(-1px);
}
.tag-instagram svg { flex-shrink: 0; }
.section-header h2 {
    font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: 0.04em; line-height: 1.1; margin-bottom: 0.75rem;
}
.section-header h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Video Reel */
.video-reel-section { background: var(--bg2); overflow: hidden; }
.video-reel {
    display: flex; gap: 1.25rem; padding: 0 1.25rem 1rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: thin; scrollbar-color: var(--accent) var(--surface);
    -webkit-overflow-scrolling: touch;
}
.video-reel::-webkit-scrollbar { height: 6px; }
.video-reel::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.reel-card {
    flex: 0 0 min(320px, 75vw); scroll-snap-align: start;
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 9/16; background: var(--surface);
    border: 1px solid var(--border); cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.reel-card:hover { transform: scale(1.03); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--accent-glow); }
.reel-card video {
    width: 100%; height: 100%; object-fit: cover;
}
.reel-card .play-badge {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.25); transition: background 0.3s;
    pointer-events: none;
}
.reel-card:hover .play-badge { background: rgba(0,0,0,0.1); }
.play-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--accent); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 30px var(--accent-glow);
}
.play-icon::after {
    content: ''; border: 12px solid transparent; border-left: 20px solid #fff;
    margin-left: 6px;
}
.video-reel-loading { padding: 3rem; color: var(--muted); text-align: center; width: 100%; }

/* Gallery */
.gallery-section { background: var(--bg); }
.gallery-filters {
    display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem;
}
.filter-btn {
    padding: 0.55rem 1.25rem; border-radius: 999px;
    background: var(--surface); border: 1px solid var(--border);
    color: var(--muted); font-family: var(--font); font-size: 0.88rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--accent); border-color: var(--accent); color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
}
.gallery-masonry {
    columns: 4; column-gap: 1rem;
}
@media (max-width: 1100px) { .gallery-masonry { columns: 3; } }
@media (max-width: 768px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }

.gallery-item {
    break-inside: avoid; margin-bottom: 1rem;
    position: relative; border-radius: var(--radius); overflow: hidden;
    cursor: pointer; background: var(--surface);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 24px var(--accent-glow);
    border-color: rgba(255,107,0,0.3);
}
.gallery-item img, .gallery-item video {
    width: 100%; display: block;
}
.gallery-item .item-badge {
    position: absolute; top: 0.75rem; right: 0.75rem;
    padding: 0.25rem 0.65rem; border-radius: 6px;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--accent2);
}
.gallery-item .item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .item-overlay { opacity: 1; }
.gallery-item .item-overlay span { font-size: 0.85rem; font-weight: 600; }
.gallery-loading { text-align: center; padding: 4rem; color: var(--muted); column-span: all; }

/* Services Cards */
.services-section { background: var(--bg2); }
.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.svc-card[data-order="1"] { order: 1; }
.svc-card[data-order="2"] { order: 2; }
.svc-card[data-order="3"] { order: 3; }
.svc-card[data-order="4"] { order: 4; }
.svc-card[data-order="5"] { order: 5; }
.svc-card[data-order="6"] { order: 6; }
.svc-card[data-order="7"] { order: 7; }
.svc-card[data-order="8"] { order: 8; }
.svc-card[data-order="9"] { order: 9; }
.svc-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}
.svc-card:hover {
    border-color: rgba(255,107,44,.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.svc-card-emergency {
    border-color: rgba(255,107,44,.45);
    box-shadow: 0 0 0 1px rgba(255,107,44,.15);
}
.svc-card-emergency:hover {
    border-color: rgba(255,107,44,.7);
    box-shadow: 0 16px 48px rgba(255,107,44,.15);
}
.svc-card-img {
    position: relative;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: var(--bg);
}
.svc-card-img picture { display: block; width: 100%; height: 100%; }
.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.06); }
.svc-card-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: rgba(5,5,8,.75);
    backdrop-filter: blur(6px);
    color: var(--accent2);
    padding: .35rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(255,107,44,.3);
}
.svc-card-badge-alert {
    background: rgba(255,107,44,.9);
    color: #fff;
    border-color: transparent;
}
.svc-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.25rem 1.35rem 1.35rem;
}
.svc-card-body h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: .5rem;
    line-height: 1.35;
    color: var(--text);
    transition: color .2s;
}
.svc-card:hover .svc-card-body h3 { color: var(--accent2); }
.svc-card-body p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    margin: 0;
}
.svc-card-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--accent);
}
.svc-card-link-fire { color: var(--accent2); }
.svc-card:hover .svc-card-link { color: var(--accent2); }
.services-more {
    text-align: center;
    margin-top: 2rem;
}
.services-more a {
    font-size: .95rem;
    font-weight: 700;
    color: var(--accent);
    transition: color .2s;
}
.services-more a:hover { color: var(--accent2); }
.bento-link { color: var(--accent); font-weight: 700; font-size: 0.95rem; }
.bento-link:hover { color: var(--accent2); }

/* Regions */
.regions-section { background: var(--bg); }
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.region-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.region-card:hover {
    border-color: rgba(255,107,44,.45);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.region-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem .75rem;
    background: linear-gradient(135deg, rgba(255,107,44,.12), rgba(255,159,67,.04));
    border-bottom: 1px solid var(--border);
}
.region-card-icon {
    width: 40px; height: 40px;
    background: rgba(255,107,44,.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.region-card-badge {
    font-size: .7rem; font-weight: 700; letter-spacing: .05em;
    background: rgba(34,197,94,.15); color: #22c55e;
    padding: .25rem .6rem; border-radius: 999px;
}
.region-card-body { padding: 1rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.region-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.3; }
.region-card h3 a { color: var(--text); transition: color .2s; }
.region-card h3 a:hover { color: var(--accent2); }
.region-card p {
    font-size: .84rem; color: var(--muted); line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.region-tags {
    display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .75rem;
}
.region-tag {
    font-size: .68rem; font-weight: 600; letter-spacing: .02em;
    background: var(--bg2); border: 1px solid var(--border);
    color: var(--muted); padding: .2rem .55rem; border-radius: 999px;
}
.region-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: .75rem 1.25rem 1rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.region-eta { font-size: .78rem; color: var(--muted); font-weight: 500; }
.region-card .region-link {
    font-size: .82rem; font-weight: 700; color: var(--accent);
    text-decoration: none; transition: color .2s;
}
.region-card .region-link:hover { color: var(--accent2); }
.region-card-featured { border-color: rgba(255,107,44,.25); }
.region-card-featured .region-card-header {
    background: linear-gradient(135deg, rgba(255,107,44,.2), rgba(255,159,67,.08));
}

/* Google Reviews */
.reviews-section { background: var(--bg2); overflow: hidden; }
.reviews-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.75rem;
    align-items: start;
}
.reviews-summary {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    position: sticky;
    top: 100px;
}
.reviews-google-badge {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .82rem; font-weight: 600; color: var(--text);
    background: var(--bg2); border: 1px solid var(--border);
    padding: .45rem .85rem; border-radius: 999px;
    margin-bottom: 1.25rem;
}
.reviews-score { font-size: 3.5rem; font-weight: 800; line-height: 1; color: var(--text); }
.reviews-stars-lg { display: flex; justify-content: center; gap: .15rem; margin: .6rem 0; }
.reviews-stars-lg .star { font-size: 1.35rem; line-height: 1; }
.star-full { color: #fbbf24; }
.star-half { color: #fbbf24; opacity: .55; }
.star-empty { color: rgba(251,191,36,.25); }
.reviews-count { font-size: .88rem; color: var(--muted); margin-bottom: 1.25rem; }
.reviews-summary .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.reviews-maps-btn { font-size: .88rem !important; padding: .65rem 1rem !important; }
.reviews-call-btn { font-size: .88rem !important; }
.reviews-summary-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}
.reviews-summary-actions .btn { width: 100%; justify-content: center; margin-top: 0; }

.reviews-list-wrap { min-width: 0; }
.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: border-color .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.review-card:hover { border-color: rgba(255,107,44,.3); box-shadow: 0 8px 32px rgba(0,0,0,.25); }
.review-card-top {
    display: flex; align-items: flex-start; gap: .75rem;
    margin-bottom: .85rem;
}
.review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.review-card-info { flex: 1; min-width: 0; }
.review-author { font-weight: 700; font-size: .92rem; line-height: 1.3; }
.review-meta { font-size: .75rem; color: var(--muted); margin-top: .15rem; }
.review-stars { display: flex; gap: .1rem; flex-shrink: 0; }
.review-stars .star { font-size: .82rem; line-height: 1; }
.review-text {
    font-size: .9rem; color: var(--muted); line-height: 1.65;
    flex: 1;
    display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-service {
    display: inline-block; margin-top: .85rem; align-self: flex-start;
    font-size: .68rem; font-weight: 700; letter-spacing: .03em;
    background: rgba(255,107,44,.12); color: var(--accent2);
    padding: .3rem .65rem; border-radius: 999px;
    border: 1px solid rgba(255,107,44,.2);
}

.reviews-scroll-hint { display: none; }

@media (max-width: 900px) {
    .reviews-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .reviews-summary { position: static; max-width: 420px; margin: 0 auto; width: 100%; }
    .reviews-list { grid-template-columns: 1fr; }
    .review-text { -webkit-line-clamp: unset; }
}

@media (max-width: 768px) {
    .reviews-section { padding: 4rem 0; }
    .reviews-section .section-header { margin-bottom: 1.75rem; }
    .reviews-summary {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "badge badge"
            "score stars"
            "count count"
            "actions actions";
        gap: 0.35rem 1rem;
        padding: 1.15rem 1rem;
        text-align: left;
        max-width: none;
    }
    .reviews-google-badge { grid-area: badge; justify-self: start; margin-bottom: 0.5rem; }
    .reviews-score {
        grid-area: score;
        font-size: 2.75rem;
        align-self: center;
    }
    .reviews-stars-lg {
        grid-area: stars;
        justify-content: flex-start;
        align-self: center;
        margin: 0;
    }
    .reviews-count { grid-area: count; margin-bottom: 0.75rem; }
    .reviews-summary .btn { margin-top: 0.35rem; }
    .reviews-summary-actions {
        grid-area: actions;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .reviews-summary-actions .btn:first-child { grid-column: 1 / -1; }
    .reviews-list-wrap {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -1.25rem;
        padding: 0.25rem 1.25rem 0.5rem;
    }
    .reviews-list-wrap::-webkit-scrollbar { display: none; }
    .reviews-list {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.85rem;
        width: max-content;
    }
    .review-card {
        flex: 0 0 clamp(280px, 84vw, 340px);
        scroll-snap-align: start;
        padding: 1.1rem;
        min-height: 210px;
    }
    .review-card-top {
        display: grid;
        grid-template-columns: 42px 1fr;
        grid-template-rows: auto auto;
        gap: 0.15rem 0.75rem;
        align-items: start;
        margin-bottom: 0.75rem;
    }
    .review-avatar {
        grid-row: 1 / 3;
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
    .review-stars {
        grid-column: 2;
        margin-top: 0.1rem;
    }
    .review-text {
        font-size: 0.88rem;
        line-height: 1.6;
        -webkit-line-clamp: 6;
    }
    .reviews-scroll-hint {
        display: block;
        text-align: center;
        font-size: 0.72rem;
        color: var(--muted);
        margin-top: 0.65rem;
        letter-spacing: 0.02em;
    }
}

/* About */
.about-section { background: var(--bg2); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-visual img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); }
.about-badge {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    padding: 0.65rem 1.25rem; background: var(--accent); color: #fff;
    font-weight: 700; font-size: 0.88rem; border-radius: 8px;
    box-shadow: 0 8px 24px var(--accent-glow);
}
.about-text h2 { font-size: 1.75rem; font-weight: 800; margin: 0.75rem 0 1.25rem; line-height: 1.25; }
.about-text p { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }
.check-list { list-style: none; margin-top: 1.5rem; }
.check-list li {
    padding: 0.5rem 0 0.5rem 1.75rem; position: relative; color: var(--muted); font-size: 0.95rem;
}
.check-list li::before {
    content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800;
}

/* FAQ */
.faq-section { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden;
}
.faq-item summary {
    padding: 1.25rem 1.5rem; font-weight: 700; cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--accent); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 1.5rem 1.25rem; color: var(--muted); line-height: 1.7; font-size: 0.95rem; }
.faq-item a { color: var(--accent); font-weight: 600; }

/* Contact */
.contact-section { background: var(--bg2); }
.contact-cta {
    text-align: center; padding: 3rem 2rem; margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,149,0,0.06));
    border: 1px solid rgba(255,107,0,0.25); border-radius: calc(var(--radius) * 1.5);
}
.contact-cta h2 { font-family: var(--display); font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.contact-cta p { color: var(--muted); margin-bottom: 1.5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-card, .contact-form {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem;
}
.contact-card h3, .contact-form h3 { font-size: 1.15rem; margin-bottom: 1.25rem; }
.contact-card dl { display: grid; gap: 1rem; }
.contact-card dt { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.contact-card dd { color: var(--muted); }
.contact-card a { color: var(--text); font-weight: 600; }
.contact-card a:hover { color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 0.9rem 1rem; background: var(--bg);
    border: 1px solid var(--border); border-radius: 10px;
    color: var(--text); font-family: var(--font); font-size: 0.95rem;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--accent);
}

.map-wrap {
    margin-top: 2.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #e8e8e8;
}
.map-wrap iframe {
    width: 100%;
    height: 380px;
    min-height: 380px;
    border: 0;
    display: block;
    background: #e8e8e8;
}
.map-link {
    display: block;
    text-align: center;
    padding: 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    border-top: 1px solid var(--border);
    transition: background 0.2s;
}
.map-link:hover { background: rgba(255,107,0,0.08); }

/* Footer */
.footer { padding: 3rem 0; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner { display: grid; gap: 1.5rem; text-align: center; }
.footer-brand strong { display: block; font-size: 1.1rem; margin-bottom: 0.35rem; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); }
.footer-nav { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.footer-nav a { font-size: 0.88rem; color: var(--muted); font-weight: 500; }
.footer-nav a:hover { color: var(--accent); }
.footer-copy { font-size: 0.8rem; color: var(--muted); opacity: 0.7; }

/* Mobile bar */
.mobile-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
    background: var(--danger); color: #fff; text-align: center;
    padding: 0.85rem; box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
    animation: pulseBar 2s ease-in-out infinite;
}
.mobile-bar span { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; }
.mobile-bar strong { display: block; font-size: 1.15rem; }
@keyframes pulseBar { 0%,100% { box-shadow: 0 -8px 32px rgba(0,0,0,0.4); } 50% { box-shadow: 0 -8px 48px rgba(239,68,68,0.5); } }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(0,0,0,0.95); backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox-content {
    max-width: 92vw; max-height: 88vh;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-content img, .lightbox-content video {
    max-width: 92vw; max-height: 88vh;
    border-radius: 12px; object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; background: rgba(255,255,255,0.1);
    border: 1px solid var(--border); color: #fff;
    width: 48px; height: 48px; border-radius: 50%;
    font-size: 1.5rem; cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: background 0.2s; backdrop-filter: blur(8px);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
    position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    font-size: 0.85rem; color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-cards { grid-template-columns: repeat(2, 1fr); }
    .about-layout { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .btn-call-header { display: none; }
    .nav {
        position: fixed; top: var(--header-h); left: 0; right: 0;
        background: rgba(5,5,8,0.98); flex-direction: column;
        padding: 1rem; gap: 0.25rem; border-bottom: 1px solid var(--border);
        transform: translateY(-120%); opacity: 0; visibility: hidden;
        transition: 0.3s;
    }
    .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav a { padding: 0.85rem 1rem; text-align: center; width: 100%; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .services-cards { grid-template-columns: 1fr; }
    .mobile-bar { display: block; }
    body { padding-bottom: 64px; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-title .line:first-child, .hero-title .line.accent { font-size: clamp(2.8rem, 14vw, 4rem); }
}

/* SEO landing pages */
.seo-page { padding-top: var(--header-h); }
.seo-hero {
    padding: 3rem 0 2.5rem;
    background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
}
.seo-hero h1 {
    font-family: var(--display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.04em;
    margin: 1rem 0;
    line-height: 1.05;
}
.seo-lead { color: var(--muted); font-size: 1.05rem; max-width: 720px; line-height: 1.75; margin-bottom: 1.5rem; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); }
.breadcrumb a { color: var(--accent2); }
.breadcrumb a:hover { text-decoration: underline; }
.seo-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.seo-article h2 { font-size: 1.35rem; font-weight: 800; margin: 2rem 0 0.75rem; }
.seo-article p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.seo-article a { color: var(--accent); font-weight: 600; }
.seo-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.seo-links a {
    padding: 0.45rem 0.9rem; background: var(--surface);
    border: 1px solid var(--border); border-radius: 999px;
    font-size: 0.82rem; font-weight: 600; color: var(--text);
    transition: border-color 0.2s, color 0.2s;
}
.seo-links a:hover { border-color: var(--accent); color: var(--accent); }
.seo-sidebar .contact-card { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.seo-sidebar-links { margin-top: 1rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.seo-sidebar-links h3 { font-size: 0.95rem; margin-bottom: 0.75rem; }
.seo-sidebar-links a { display: block; padding: 0.35rem 0; font-size: 0.88rem; color: var(--muted); }
.seo-sidebar-links a:hover { color: var(--accent); }
.seo-hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.seo-hub-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
}
.seo-hub-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.seo-hub-card h2 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--accent2); }
.seo-hub-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }
.seo-hero-img {
    background-size: cover; background-position: center;
    padding: 4rem 0 3rem;
}
.seo-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: -2rem auto 2rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}
.seo-trust-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    text-align: center;
}
.seo-trust-item strong {
    display: block;
    font-size: 1.35rem;
    color: var(--accent2);
    margin-bottom: .25rem;
}
.seo-trust-item span { font-size: .78rem; color: var(--muted); }
.seo-reviews-block { margin: 2rem 0; }
.seo-reviews-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.seo-review-mini {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}
.seo-review-mini-stars { color: #fbbf24; font-size: .85rem; margin-bottom: .5rem; }
.seo-review-mini p { font-size: .85rem; color: var(--muted); line-height: 1.6; font-style: italic; }
.seo-review-mini span { font-size: .78rem; color: var(--text); font-weight: 600; }
.region-hub-card { display: flex; flex-direction: column; min-height: 180px; }
.region-hub-card .region-link { margin-top: auto; padding-top: .75rem; }
.region-hub-top { display: flex; justify-content: flex-end; margin-bottom: .5rem; }

@media (max-width: 768px) {
    .seo-trust-bar { grid-template-columns: repeat(2, 1fr); margin-top: -1rem; }
}

.seo-keywords {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.keyword-hub {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 2.5rem 1rem 1rem;
}

.keyword-hub-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: 0 0 0 8px var(--bg), 0 0 48px var(--accent-glow);
    pointer-events: none;
}
.keyword-hub-core span {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.85);
}
.keyword-hub-core strong {
    font-family: var(--display);
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1;
}

.keyword-clusters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.keyword-cluster {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.35rem 1.35rem 1.15rem;
    transition: border-color 0.3s, transform 0.3s, z-index 0s;
}
.keyword-cluster:hover {
    border-color: rgba(255,107,0,0.45);
    z-index: 5;
}
.keyword-cluster--vinc {
    border-radius: var(--radius) 0 0 0;
    margin-right: -1px;
    margin-bottom: -1px;
    z-index: 4;
}
.keyword-cluster--lift {
    border-radius: 0 var(--radius) 0 0;
    margin-left: -1px;
    margin-bottom: -1px;
    z-index: 3;
}
.keyword-cluster--rescue {
    border-radius: 0 0 0 var(--radius);
    margin-right: -1px;
    margin-top: -1px;
    z-index: 2;
}
.keyword-cluster--regions {
    border-radius: 0 0 var(--radius) 0;
    margin-left: -1px;
    margin-top: -1px;
    z-index: 1;
}

.keyword-cluster-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
}
.keyword-cluster-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,107,0,0.12);
    font-size: 1.2rem;
}
.keyword-cluster-head h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.keyword-cluster-head p {
    font-size: 0.75rem;
    color: var(--muted);
}

.keyword-nest {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-content: flex-start;
}
.keyword-nest a {
    padding: 0.4rem 0.75rem;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.2s;
    line-height: 1.3;
}
.keyword-nest a:hover {
    background: rgba(255,107,0,0.12);
    border-color: rgba(255,107,0,0.4);
    color: var(--accent2);
    transform: translateY(-1px);
}
.keyword-nest-cta {
    background: rgba(255,107,0,0.15) !important;
    border-color: rgba(255,107,0,0.35) !important;
    color: var(--accent2) !important;
}

.keyword-hub-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,149,0,0.08));
    border: 1px solid rgba(255,107,0,0.3);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent2);
    transition: all 0.25s;
}
.keyword-hub-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 8px 32px var(--accent-glow);
}

@media (max-width: 768px) {
    .keyword-hub { padding-top: 1rem; }
    .keyword-hub-core {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 1.25rem;
        width: 72px;
        height: 72px;
        box-shadow: 0 0 0 6px var(--bg), 0 0 32px var(--accent-glow);
    }
    .keyword-clusters {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .keyword-cluster,
    .keyword-cluster--vinc,
    .keyword-cluster--lift,
    .keyword-cluster--rescue,
    .keyword-cluster--regions {
        border-radius: var(--radius);
        margin: 0;
    }
}

.seo-keyword-tags {
    display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1rem 0 1.5rem;
}
.seo-keyword-tags span {
    padding: 0.35rem 0.75rem; background: var(--bg2);
    border: 1px dashed rgba(255,107,0,0.25); border-radius: 999px;
    font-size: 0.78rem; color: var(--muted);
}
.seo-text-block { background: var(--bg2); }
.seo-text-block .seo-rich-text { max-width: 860px; margin: 0 auto; }
.seo-text-block .seo-rich-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.seo-text-block .seo-rich-text strong { color: var(--text); }
@media (max-width: 900px) {
    .seo-layout { grid-template-columns: 1fr; }
    .seo-sidebar .contact-card { position: static; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
