/* MyPrivateLane — SEO City Pages */
:root {
  --bg: #09090b;
  --bg-s: #18181b;
  --bg-s2: #27272a;
  --border: rgba(255,255,255,0.06);
  --fg: #ffffff;
  --fg-2: #d4d4d8;
  --fg-3: #a1a1aa;
  --fg-4: #71717a;
  --brand: #2563eb;
  --brand-l: #3b82f6;
  --brand-d: #1d4ed8;
  --emerald: #059669;
  --amber: #d97706;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',system-ui,-apple-system,sans-serif;background:var(--bg);color:var(--fg);line-height:1.6;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* Container */
.mx{max-width:1280px;margin:0 auto;padding:0 1rem}
@media(min-width:640px){.mx{padding:0 1.5rem}}
@media(min-width:1024px){.mx{padding:0 2rem}}

/* Header */
.hdr{position:fixed;top:0;left:0;right:0;z-index:50;background:rgba(9,9,11,0.8);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid var(--border)}
.hdr-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.hdr-logo img{height:28px;object-fit:contain}
.hdr-nav{display:none;align-items:center;gap:2rem}
.hdr-nav a{color:var(--fg-3);font-size:0.875rem;font-weight:500;transition:color .2s}
.hdr-nav a:hover{color:var(--fg)}
.hdr-actions{display:none;align-items:center;gap:0.75rem}
.hdr-actions .signin{color:var(--fg-3);font-size:0.875rem;font-weight:500;padding:0.5rem 1rem;transition:color .2s}
.hdr-actions .signin:hover{color:var(--fg)}
@media(min-width:768px){.hdr-nav,.hdr-actions{display:flex}}
.btn-cta{display:inline-flex;align-items:center;gap:0.5rem;background:#fff;color:#09090b;padding:0.625rem 1.5rem;border-radius:9999px;font-size:0.875rem;font-weight:600;transition:background .2s;border:none;cursor:pointer}
.btn-cta:hover{background:#e4e4e7}
.btn-cta-lg{padding:1rem 2rem;font-size:1rem}
.btn-outline{display:inline-flex;align-items:center;gap:0.5rem;color:#fff;padding:0.625rem 1.5rem;border-radius:9999px;font-size:0.875rem;font-weight:600;border:1px solid rgba(255,255,255,0.2);transition:border-color .2s;background:transparent;cursor:pointer}
.btn-outline:hover{border-color:rgba(255,255,255,0.4)}

/* Mobile menu */
.mob-btn{display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:none;border:none;color:#fff;cursor:pointer}
.mob-btn svg{width:24px;height:24px}
@media(min-width:768px){.mob-btn{display:none}}
.mob-menu{display:none;flex-direction:column;gap:1rem;padding:1.5rem 0;border-top:1px solid var(--border)}
.mob-menu.open{display:flex}
.mob-menu a{color:var(--fg-2);font-size:0.875rem;font-weight:500}

/* Hero */
.hero{position:relative;min-height:80vh;display:flex;align-items:center;overflow:hidden;padding:8rem 0 4rem}
.hero-bg{position:absolute;inset:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-bg .overlay{position:absolute;inset:0}
.hero-content{position:relative;max-width:640px}
.hero h1{font-size:2.5rem;font-weight:800;line-height:1.08;letter-spacing:-0.025em}
@media(min-width:640px){.hero h1{font-size:3rem}}
@media(min-width:1024px){.hero h1{font-size:3.75rem}}
.hero .sub{margin-top:1.5rem;font-size:1.125rem;color:var(--fg-2);line-height:1.7;max-width:540px}
.hero .actions{margin-top:2.5rem;display:flex;flex-wrap:wrap;gap:1rem}
.hero .hint{margin-top:1rem;font-size:0.8125rem;color:var(--fg-4)}

/* Stats strip */
.stats{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:var(--bg)}
.stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;padding:2rem 0;text-align:center}
@media(min-width:768px){.stats-grid{grid-template-columns:repeat(4,1fr)}}
.stats-grid .val{font-size:1.5rem;font-weight:700;color:var(--fg)}
.stats-grid .lbl{font-size:0.8125rem;color:var(--fg-4);margin-top:0.25rem}

/* Section */
.section{padding:5rem 0}
.section-dark{background:var(--bg)}
.section-alt{background:var(--bg-s)}
.section-title{font-size:1.75rem;font-weight:700;text-align:center;margin-bottom:0.75rem;letter-spacing:-0.015em}
@media(min-width:640px){.section-title{font-size:2.25rem}}
.section-sub{text-align:center;color:var(--fg-3);max-width:600px;margin:0 auto 3rem;font-size:1rem;line-height:1.7}

/* Cards grid */
.cards{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:640px){.cards{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.cards{grid-template-columns:repeat(4,1fr)}}
.card{background:var(--bg-s);border:1px solid var(--border);border-radius:1rem;padding:2rem}
.card .icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;font-size:1.5rem}
.card h3{font-size:1.0625rem;font-weight:600;margin-bottom:0.5rem}
.card p{font-size:0.875rem;color:var(--fg-3);line-height:1.6}

/* Benefits list */
.benefits{display:grid;grid-template-columns:1fr;gap:2rem;margin-top:2.5rem}
@media(min-width:768px){.benefits{grid-template-columns:repeat(3,1fr)}}
.benefit{text-align:center;padding:2rem 1rem}
.benefit .num{font-size:2.5rem;font-weight:800;background:linear-gradient(135deg,var(--brand),var(--brand-l));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:0.75rem}
.benefit h3{font-size:1.125rem;font-weight:600;margin-bottom:0.5rem}
.benefit p{font-size:0.875rem;color:var(--fg-3);line-height:1.6}

/* FAQ */
.faq-list{max-width:768px;margin:0 auto;display:flex;flex-direction:column;gap:1px}
.faq-item{background:var(--bg-s);border:1px solid var(--border);border-radius:0.75rem;overflow:hidden;margin-bottom:0.75rem}
.faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;background:none;border:none;color:var(--fg);font-size:1rem;font-weight:600;cursor:pointer;text-align:left;gap:1rem}
.faq-q svg{flex-shrink:0;width:20px;height:20px;color:var(--fg-4);transition:transform .2s}
.faq-item.open .faq-q svg{transform:rotate(180deg)}
.faq-a{display:none;padding:0 1.5rem 1.25rem;font-size:0.9375rem;color:var(--fg-3);line-height:1.7}
.faq-item.open .faq-a{display:block}

/* Nearby cities */
.nearby-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:0.75rem}
@media(min-width:640px){.nearby-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.nearby-grid{grid-template-columns:repeat(4,1fr)}}
.nearby-link{display:block;background:var(--bg-s);border:1px solid var(--border);border-radius:0.75rem;padding:1rem 1.25rem;transition:border-color .2s,background .2s}
.nearby-link:hover{border-color:rgba(255,255,255,0.12);background:var(--bg-s2)}
.nearby-link .city-name{font-size:0.9375rem;font-weight:600}
.nearby-link .city-meta{font-size:0.75rem;color:var(--fg-4);margin-top:0.25rem}

/* CTA */
.cta-section{text-align:center;padding:5rem 0}
.cta-section h2{font-size:2rem;font-weight:700;margin-bottom:1rem}
@media(min-width:640px){.cta-section h2{font-size:2.5rem}}
.cta-section p{color:var(--fg-3);margin-bottom:2rem;font-size:1.0625rem}

/* Footer */
.ftr{border-top:1px solid var(--border);background:var(--bg);color:var(--fg-4)}
.ftr-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2.5rem;padding:4rem 1rem}
@media(min-width:768px){.ftr-grid{grid-template-columns:repeat(4,1fr)}}
.ftr h4{color:var(--fg);font-size:0.6875rem;font-weight:600;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:1rem}
.ftr ul{list-style:none;display:flex;flex-direction:column;gap:0.75rem}
.ftr a{font-size:0.875rem;transition:color .2s}
.ftr a:hover{color:var(--fg)}
.ftr-bottom{border-top:1px solid var(--border);padding:2rem 0;display:flex;flex-direction:column;align-items:center;gap:1rem}
@media(min-width:768px){.ftr-bottom{flex-direction:row;justify-content:space-between}}
.ftr-bottom img{height:20px;opacity:0.6;transition:opacity .2s}
.ftr-bottom img:hover{opacity:1}
.ftr-bottom .copy{font-size:0.75rem;color:var(--fg-4)}

/* Breadcrumb */
.breadcrumb{display:flex;align-items:center;gap:0.5rem;font-size:0.8125rem;color:var(--fg-4);padding:1rem 0;flex-wrap:wrap}
.breadcrumb a{color:var(--fg-3);transition:color .2s}
.breadcrumb a:hover{color:var(--fg)}
.breadcrumb .sep{color:var(--fg-4)}

/* Map link */
.map-link{display:inline-flex;align-items:center;gap:0.5rem;color:var(--brand-l);font-size:0.875rem;font-weight:500;transition:color .2s}
.map-link:hover{color:var(--brand)}

/* Zip badges */
.zips{display:flex;flex-wrap:wrap;gap:0.5rem;margin-top:1rem}
.zip{background:var(--bg-s2);border:1px solid var(--border);border-radius:0.375rem;padding:0.25rem 0.625rem;font-size:0.75rem;color:var(--fg-3);font-family:monospace}

/* Index page — state sections */
.state-section{margin-bottom:3rem}
.state-section h2{font-size:1.25rem;font-weight:700;margin-bottom:1rem;padding-bottom:0.5rem;border-bottom:1px solid var(--border)}
.state-nav{display:flex;flex-wrap:wrap;gap:0.5rem;margin-bottom:3rem}
.state-pill{display:inline-block;background:var(--bg-s);border:1px solid var(--border);border-radius:9999px;padding:0.375rem 1rem;font-size:0.8125rem;font-weight:500;color:var(--fg-3);transition:all .2s}
.state-pill:hover{color:var(--fg);border-color:rgba(255,255,255,0.15)}

/* Utility */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
.text-center{text-align:center}
.mt-16{margin-top:4rem}
