/* ============================================
   LACHGAS EXPRESS V3 - Satış Odaklı
   Font: Space Grotesk + Sora
   Renk: Koyu Mor (#0F0A1E) + Turuncu (#FF6B2C)
   ============================================ */

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

:root {
    --purple-deep: #0F0A1E;
    --purple-dark: #1A1230;
    --purple-mid: #2D1F4E;
    --purple-light: #8B5CF6;
    --orange: #FF6B2C;
    --orange-light: #FF8F5C;
    --orange-dark: #E55A1B;
    --orange-glow: rgba(255,107,44,0.3);
    --orange-glow-lg: rgba(255,107,44,0.15);
    --gold: #FBBF24;
    --green: #22C55E;
    --white: #FFFFFF;
    --gray-light: rgba(255,255,255,0.7);
    --gray-dim: rgba(255,255,255,0.4);
    --gray-border: rgba(255,255,255,0.08);
    --font: 'Sora', sans-serif;
    --font-head: 'Space Grotesk', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-orange: 0 4px 30px rgba(255,107,44,0.25);
    --transition: 0.3s ease;
    --max-w: 1140px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--purple-deep); color: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-full); font-family: var(--font);
    font-weight: 600; font-size: 0.95rem; border: 2px solid transparent;
    cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn--orange { background: var(--orange); color: var(--white); border-color: var(--orange); box-shadow: var(--shadow-orange); }
.btn--orange:hover { background: var(--orange-light); border-color: var(--orange-light); transform: translateY(-2px); box-shadow: 0 6px 36px rgba(255,107,44,0.35); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--pulse { animation: pulse 2s infinite; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,107,44,0.5); }
    70% { box-shadow: 0 0 0 14px rgba(255,107,44,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,44,0); }
}

/* --- Urgency Bar --- */
.urgency-bar {
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    padding: 10px 0; text-align: center; font-size: 0.85rem; font-weight: 600;
    position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
}
.urgency-bar__inner { display: flex; align-items: center; justify-content: center; gap: 8px; }
.urgency-bar svg { width: 16px; height: 16px; }

/* --- Header --- */
.header {
    position: fixed; top: 38px; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: var(--transition);
}
.header--scrolled {
    top: 38px; background: rgba(15,10,30,0.95); backdrop-filter: blur(16px);
    padding: 10px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo img { height: 36px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 0.9rem; font-weight: 500; color: var(--gray-light); transition: var(--transition); }
.nav-link:hover, .nav-link--active { color: var(--orange); }
.header__actions { display: flex; align-items: center; gap: 16px; }
.header__wa { color: var(--green); transition: var(--transition); display: flex; }
.header__wa:hover { color: #2EE06B; transform: scale(1.1); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* Mobile Menu */
.mobile-menu { position: fixed; inset: 0; z-index: 2000; pointer-events: none; visibility: hidden; }
.mobile-menu--open { pointer-events: auto; visibility: visible; }
.mobile-menu__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; transition: 0.4s; }
.mobile-menu--open .mobile-menu__overlay { opacity: 1; }
.mobile-menu__panel {
    position: absolute; top: 0; right: 0; width: 300px; height: 100%; background: var(--purple-dark);
    transform: translateX(100%); transition: 0.4s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column; padding: 24px;
}
.mobile-menu--open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mobile-menu__close { background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu__link { padding: 14px 0; font-size: 1.1rem; font-weight: 500; color: var(--gray-light); border-bottom: 1px solid var(--gray-border); transition: var(--transition); }
.mobile-menu__link--active, .mobile-menu__link:hover { color: var(--orange); }
.mobile-menu__footer { margin-top: auto; }
.mobile-menu__phone { color: var(--gray-dim); font-size: 0.9rem; }

/* --- Hero --- */
.hero { padding: 140px 0 80px; position: relative; overflow: hidden; }
.hero::before {
    content: ''; position: absolute; top: 0; right: -200px; width: 600px; height: 600px;
    background: radial-gradient(circle, var(--orange-glow-lg) 0%, transparent 70%);
    pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero__badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
    background: rgba(255,107,44,0.1); border: 1px solid rgba(255,107,44,0.3);
    border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600;
    color: var(--orange); margin-bottom: 24px;
}
.hero__title {
    font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700; line-height: 1.1; margin-bottom: 20px;
}
.hero__title span { color: var(--orange); }
.hero__desc { font-size: 1.1rem; color: var(--gray-light); max-width: 480px; margin-bottom: 12px; line-height: 1.7; }
.hero__price {
    display: inline-flex; align-items: baseline; gap: 8px; padding: 12px 24px;
    background: var(--purple-dark); border: 1px solid var(--purple-mid);
    border-radius: var(--radius); margin-bottom: 28px;
}
.hero__price-label { font-size: 0.85rem; color: var(--gray-dim); }
.hero__price-val { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--orange); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray-dim); }
.hero__trust-item svg { width: 18px; height: 18px; color: var(--green); }
.hero__image { position: relative; display: flex; justify-content: center; }
.hero__image img { max-height: 480px; filter: drop-shadow(0 20px 60px rgba(255,107,44,0.15)); }

/* --- Social Proof Bar --- */
.social-bar { padding: 48px 0; border-top: 1px solid var(--gray-border); border-bottom: 1px solid var(--gray-border); }
.social-bar__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.social-bar__item {}
.social-bar__num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--orange); line-height: 1; }
.social-bar__label { font-size: 0.9rem; color: var(--gray-dim); margin-top: 6px; }

/* --- Product Section --- */
.product { padding: 80px 0; }
.product__header { text-align: center; margin-bottom: 48px; }
.product__title { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 12px; }
.product__title span { color: var(--orange); }
.product__sub { color: var(--gray-dim); font-size: 1.05rem; }
.product__card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    background: var(--purple-dark); border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg); padding: 48px; position: relative; overflow: hidden;
}
.product__card::before {
    content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px;
    background: radial-gradient(circle, var(--orange-glow-lg), transparent 70%); pointer-events: none;
}
.product__img { display: flex; justify-content: center; position: relative; z-index: 1; }
.product__img img { max-height: 360px; filter: drop-shadow(0 10px 40px rgba(0,0,0,0.3)); }
.product__info { position: relative; z-index: 1; }
.product__name { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.product__desc { color: var(--gray-light); font-size: 0.95rem; margin-bottom: 20px; }
.product__features { list-style: none; padding: 0; margin-bottom: 24px; }
.product__features li {
    display: flex; align-items: center; gap: 10px; padding: 10px 0;
    border-bottom: 1px solid var(--gray-border); font-size: 0.9rem; color: var(--gray-light);
}
.product__features li:last-child { border-bottom: none; }
.product__features li svg { flex-shrink: 0; color: var(--green); }
.product__price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; }
.product__price-big { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--orange); }
.product__price-sub { font-size: 0.85rem; color: var(--gray-dim); }

/* --- Steps --- */
.steps { padding: 80px 0; background: var(--purple-dark); }
.steps__header { text-align: center; margin-bottom: 48px; }
.steps__title { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 12px; }
.steps__title span { color: var(--orange); }
.steps__sub { color: var(--gray-dim); font-size: 1.05rem; }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
    text-align: center; padding: 36px 24px; background: var(--purple-deep);
    border: 1px solid var(--gray-border); border-radius: var(--radius-lg);
    transition: var(--transition); position: relative;
}
.step:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(255,107,44,0.1); }
.step__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
    margin-bottom: 16px; box-shadow: 0 4px 20px var(--orange-glow);
}
.step__title { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.step__desc { font-size: 0.9rem; color: var(--gray-dim); line-height: 1.6; }

/* --- Reviews --- */
.reviews { padding: 80px 0; }
.reviews__header { text-align: center; margin-bottom: 48px; }
.reviews__title { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 12px; }
.reviews__title span { color: var(--orange); }
.reviews__sub { color: var(--gray-dim); font-size: 1.05rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
    background: var(--purple-dark); border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg); padding: 28px;
}
.review__stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review__stars svg { width: 18px; height: 18px; fill: var(--gold); }
.review__text { font-size: 0.95rem; color: var(--gray-light); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review__author { font-size: 0.85rem; color: var(--gray-dim); }
.review__author strong { color: var(--white); font-weight: 600; }

/* --- CTA Band --- */
.cta-band {
    padding: 64px 0; text-align: center;
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-light) 100%);
    position: relative; overflow: hidden;
}
.cta-band::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.04'%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");
}
.cta-band__title { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 12px; position: relative; }
.cta-band__desc { font-size: 1.05rem; opacity: 0.9; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.cta-band .btn { position: relative; }

/* --- Coverage Section --- */
.coverage { padding: 80px 0; background: var(--purple-dark); }
.coverage__inner { text-align: center; }
.coverage__title { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 12px; }
.coverage__title span { color: var(--orange); }
.coverage__sub { color: var(--gray-dim); font-size: 1.05rem; margin-bottom: 32px; }
.coverage__badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.coverage__badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
    background: var(--purple-deep); border: 1px solid var(--gray-border);
    border-radius: var(--radius-full); font-size: 0.85rem; color: var(--gray-light);
}
.coverage__badge svg { color: var(--orange); width: 18px; height: 18px; }

/* --- Footer --- */
.footer { padding: 40px 0; border-top: 1px solid var(--gray-border); }
.footer__grid { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer__logo { opacity: 0.6; transition: var(--transition); }
.footer__logo:hover { opacity: 1; }
.footer__contact { display: flex; align-items: center; gap: 10px; color: var(--gray-dim); font-size: 0.9rem; transition: var(--transition); }
.footer__contact:hover { color: var(--orange); }
.footer__contact svg { color: var(--green); }
.footer__link { color: var(--gray-dim); font-size: 0.9rem; transition: var(--transition); }
.footer__link:hover { color: var(--orange); }

/* --- Floating WhatsApp --- */
.fab {
    position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px;
    background: var(--green); color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: var(--transition);
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.fab--hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }

/* --- Sticky Bottom Bar (Mobile) --- */
.sticky-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
    background: var(--purple-dark); border-top: 1px solid var(--gray-border);
    padding: 12px 16px; backdrop-filter: blur(16px);
}
.sticky-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sticky-bar__info { font-size: 0.8rem; }
.sticky-bar__info strong { font-family: var(--font-head); font-size: 1.1rem; color: var(--orange); display: block; }
.sticky-bar .btn { padding: 12px 24px; font-size: 0.85rem; }

/* --- Animations --- */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate].animated { opacity: 1; transform: translateY(0); }

/* ============================================
   LOCATIONS PAGE
   ============================================ */
.locations { padding: 140px 0 80px; }
.locations__header { text-align: center; margin-bottom: 40px; }
.locations__title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 10px; }
.locations__title span { color: var(--orange); }
.locations__sub { color: var(--gray-dim); font-size: 1.05rem; }
.locations__search {
    max-width: 480px; margin: 0 auto 48px; display: flex; align-items: center; gap: 10px;
    background: var(--purple-dark); border: 1px solid var(--gray-border); border-radius: var(--radius-full);
    padding: 14px 24px; transition: var(--transition);
}
.locations__search:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
.locations__search svg { color: var(--gray-dim); flex-shrink: 0; }
.locations__search input {
    border: none; background: none; color: var(--white); font-family: var(--font);
    font-size: 0.95rem; flex: 1; outline: none;
}
.locations__search input::placeholder { color: var(--gray-dim); }
.locations__region { margin-bottom: 40px; }
.locations__region-title {
    font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; color: var(--orange);
    margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-border);
}
.locations__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.loc-chip {
    display: flex; align-items: center; justify-content: center; padding: 14px 18px;
    background: var(--purple-dark); border: 1px solid var(--gray-border);
    border-radius: var(--radius); font-weight: 500; font-size: 0.9rem;
    color: var(--gray-light); transition: var(--transition); text-align: center;
}
.loc-chip:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,107,44,0.05); transform: translateY(-2px); box-shadow: 0 4px 20px var(--orange-glow); }

/* ============================================
   LOCATION DETAIL PAGE
   ============================================ */
.loc-hero { padding: 140px 0 56px; position: relative; }
.loc-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(139,92,246,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.loc-hero__breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray-dim); margin-bottom: 20px; flex-wrap: wrap; position: relative; }
.loc-hero__breadcrumb a { color: var(--gray-dim); transition: var(--transition); }
.loc-hero__breadcrumb a:hover { color: var(--orange); }
.loc-hero__breadcrumb span { color: var(--gray-dim); }
.loc-hero__breadcrumb span:last-child { color: var(--white); font-weight: 600; }
.loc-hero__title { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 12px; position: relative; }
.loc-hero__title span { color: var(--orange); }
.loc-hero__sub { color: var(--gray-dim); font-size: 1.05rem; margin-bottom: 16px; position: relative; }
.loc-hero__price {
    display: inline-flex; align-items: baseline; gap: 8px; padding: 10px 20px;
    background: var(--purple-dark); border: 1px solid var(--purple-mid);
    border-radius: var(--radius); margin-bottom: 24px; position: relative;
}
.loc-hero__price-label { font-size: 0.8rem; color: var(--gray-dim); }
.loc-hero__price-val { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--orange); }
.loc-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }

/* Location main content */
.loc-main { padding: 56px 0 72px; }
.loc-main__grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.loc-main__content { display: flex; flex-direction: column; }

.loc-block { margin-bottom: 40px; }
.loc-block h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; }
.loc-block p { font-size: 1rem; color: var(--gray-light); line-height: 1.85; }
.loc-block--cta {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    border-radius: var(--radius-lg); padding: 32px; text-align: center;
}
.loc-block--cta h2 { color: var(--white); }
.loc-block--cta p { color: rgba(255,255,255,0.85); margin-bottom: 20px; }

/* Steps in location page */
.loc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.loc-step {
    background: var(--purple-dark); border: 1px solid var(--gray-border);
    border-radius: var(--radius); padding: 24px 16px; text-align: center;
}
.loc-step__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white); font-weight: 700; font-size: 0.9rem; margin-bottom: 10px;
}
.loc-step h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.loc-step p { font-size: 0.8rem; color: var(--gray-dim); line-height: 1.5; }

/* Location sidebar */
.loc-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.loc-sidebar__card {
    background: var(--purple-dark); border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg); padding: 24px;
}
.loc-sidebar__card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; }
.loc-sidebar__card p { font-size: 0.9rem; color: var(--gray-dim); margin-bottom: 16px; }
.loc-sidebar__card--orange {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    border-color: var(--orange);
}
.loc-sidebar__card--orange h3, .loc-sidebar__card--orange p { color: var(--white); }
.loc-sidebar__card--orange p { opacity: 0.85; }
.loc-sidebar__pros { list-style: none; padding: 0; margin: 0; }
.loc-sidebar__pros li {
    display: flex; align-items: flex-start; gap: 10px; padding: 10px 0;
    font-size: 0.9rem; color: var(--gray-light); border-bottom: 1px solid var(--gray-border);
}
.loc-sidebar__pros li:last-child { border-bottom: none; }
.loc-sidebar__pros li svg { flex-shrink: 0; margin-top: 2px; }

.btn--white { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn--white:hover { background: rgba(255,255,255,0.9); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); margin-top: 8px; }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* Nearby */
.loc-nearby { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--gray-border); text-align: center; }
.loc-nearby h2 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }
.loc-nearby__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
    .header__nav { display: none; }
    .hamburger { display: flex; }
    .hero__grid { grid-template-columns: 1fr; text-align: center; }
    .hero__desc { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__trust { justify-content: center; }
    .hero__image { margin-top: 40px; }
    .hero__image img { max-height: 320px; }
    .social-bar__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .product__card { grid-template-columns: 1fr; text-align: center; }
    .product__features { display: inline-block; text-align: left; }
    .steps__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .reviews__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer__grid { flex-direction: column; text-align: center; }
    .footer__contact { justify-content: center; }
    .loc-main__grid { grid-template-columns: 1fr; }
    .loc-sidebar { position: static; }
    .loc-steps { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
}
@media (max-width: 767px) {
    .hero { padding: 120px 0 48px; }
    .hero__actions { flex-direction: column; align-items: center; }
    .social-bar { padding: 32px 0; }
    .social-bar__grid { grid-template-columns: 1fr; gap: 20px; }
    .product, .steps, .reviews, .coverage { padding: 56px 0; }
    .product__card { padding: 28px; }
    .locations__grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .loc-hero { padding: 120px 0 40px; }
    .loc-hero__actions { flex-direction: column; }
    .sticky-bar { display: flex; }
    .fab { bottom: 80px; }
}
