/* ===== DiQuattro Advanced Dentistry — faithful rebuild =====
   Tokens from live site: #121212 base, #F1CA09 gold, Poppins + Montserrat. */
:root {
  --black: #121212;
  --black-2: #181818;
  --black-3: #202020;
  --line: #2c2c2c;
  --gray: #9a9a9a;
  --white: #ffffff;
  --gold: #f1ca09;
  --gold-deep: #c9a400;
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --maxw: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--black); color: var(--white); font-family: var(--font-body); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1rem; color: #cfcfcf; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 84px 0; }
.section-alt { background: var(--black-2); }
.eyebrow { text-transform: uppercase; letter-spacing: .28em; font-size: .72rem; font-weight: 600; color: var(--gold); margin-bottom: 1rem; }
.center { text-align: center; }
.lead { font-size: 1.1rem; color: #cfcfcf; }

/* Buttons — outlined gold, uppercase (matches site) */
.btn { display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; padding: 15px 34px; border: 1px solid var(--gold); color: var(--gold); background: transparent; cursor: pointer; transition: background .25s, color .25s; }
.btn:hover { background: var(--gold); color: #141414; }
.btn-solid { background: var(--gold); color: #141414; }
.btn-solid:hover { background: transparent; color: var(--gold); }

/* ===== Header ===== */
.topbar { border-bottom: 1px solid var(--line); }
.topbar-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 18px 0; }
.social { display: flex; gap: 18px; align-items: center; }
.social a { color: #cfcfcf; display: inline-flex; }
.social a:hover { color: var(--gold); }
.social svg { width: 18px; height: 18px; }
.logo-center { display: flex; justify-content: center; }
.logo-center img { height: 96px; width: auto; }
.topbar-contact { display: flex; justify-content: flex-end; gap: 26px; align-items: center; font-size: .9rem; }
.topbar-contact .item { display: inline-flex; align-items: center; gap: 8px; color: #eaeaea; }
.topbar-contact .item svg { width: 16px; height: 16px; color: var(--gold); }
.topbar-contact a { color: #eaeaea; }
.topbar-contact a:hover { color: var(--gold); }
.site-nav { position: sticky; top: 0; z-index: 60; background: rgba(18,18,18,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; gap: 38px; height: 58px; align-items: center; }
.site-nav a { color: #eaeaea; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; font-weight: 500; }
.site-nav a:hover { color: var(--gold); }
.site-nav .nav-book a { background: var(--gold); color: #141414; padding: 9px 22px; border-radius: 2px; letter-spacing: .12em; transition: background .2s, color .2s; }
.site-nav .nav-book a:hover { background: #f7d94a; color: #141414; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(900px 500px at 78% 10%, rgba(241,202,9,.08), transparent 60%), var(--black); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; min-height: 560px; }
.hero-copy { padding: 60px 0; }
.hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); font-weight: 300; letter-spacing: .01em; max-width: 14ch; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lead { margin: 1.2rem 0 2rem; max-width: 46ch; }
.hero-portrait { align-self: end; display: flex; justify-content: center; }
.hero-portrait img { max-height: 560px; width: auto; object-fit: contain; }

/* ===== Doctor section ===== */
.doc-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.doc-photo { position: relative; }
.doc-photo img.portrait { width: 100%; border: 1px solid var(--line); }
.doc-photo img.badge { position: absolute; right: -18px; bottom: -18px; width: 108px; height: auto; }
.doc-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.doc-copy .role { color: var(--gold); letter-spacing: .08em; font-size: .92rem; margin-bottom: 1.2rem; }

/* ===== Services ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.svc-card { position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--black-3); }
.svc-card img { width: 100%; height: 440px; object-fit: cover; object-position: center 25%; transition: transform .5s; }
.svc-card:hover img { transform: scale(1.04); }
.svc-card .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px; background: linear-gradient(to top, rgba(10,10,10,.92), rgba(10,10,10,0)); }
.svc-card .cap h3 { margin: 0; font-size: 1.15rem; color: #fff; font-weight: 400; }
.svc-card a.stretch { position: absolute; inset: 0; }

/* ===== Gallery ===== */
.gallery-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.gallery-2 img { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--line); }
.ig-embed-wrap { max-width: 1000px; margin: 40px auto 0; }
.ig-embed-wrap iframe { width: 100%; border: 0; display: block; }

/* Curated before/after — homepage featured grid (uniform squares) */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.ba-grid a { display: block; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; }
.ba-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.ba-grid a:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .ba-grid { grid-template-columns: 1fr 1fr; } }

/* Curated before/after — full gallery masonry (natural aspect, no crop) */
.ba-masonry { column-count: 3; column-gap: 14px; margin-top: 40px; }
.ba-masonry a { display: block; margin: 0 0 14px; break-inside: avoid; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; }
.ba-masonry img { width: 100%; display: block; transition: transform .4s; }
.ba-masonry a:hover img { transform: scale(1.03); }
@media (max-width: 900px) { .ba-masonry { column-count: 2; } }
@media (max-width: 600px) { .ba-masonry { column-count: 1; } }

/* ===== Reviews ===== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.review { background: var(--black-3); border: 1px solid var(--line); padding: 26px; }
.review .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.review p { color: #d7d7d7; font-size: .95rem; }
.review .name { color: var(--gold); font-weight: 600; font-size: .9rem; }

/* ===== Instagram ===== */
.insta { text-align: center; }
.insta-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 36px 0; }
.insta-row .tile { aspect-ratio: 1; background: var(--black-3); border: 1px solid var(--line); overflow: hidden; }
.insta-row .tile img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Contact / map ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 40px; }
.map img { width: 100%; border: 1px solid var(--line); }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.field input, .field textarea { width: 100%; padding: 13px 14px; background: var(--black); border: 1px solid var(--line); color: #fff; font: inherit; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.info-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.info-row span:first-child { color: var(--gray); }

/* ===== Footer ===== */
.site-footer { background: #0d0d0d; border-top: 1px solid var(--line); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; align-items: start; }
.footer-cta { padding: 12px 26px; font-size: .72rem; }
.site-footer img.flogo { height: 90px; margin-bottom: 14px; }
.site-footer h4 { font-family: var(--font-body); font-weight: 600; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.site-footer address { font-style: normal; color: #bdbdbd; font-size: .92rem; }
.site-footer a { color: #bdbdbd; }
.site-footer a:hover { color: var(--gold); }
.footer-hours { list-style: none; padding: 0; margin: 0; font-size: .88rem; }
.footer-hours li { display: flex; justify-content: space-between; color: #bdbdbd; padding: 2px 0; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); text-align: center; font-size: .8rem; color: var(--gray); }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero-grid, .doc-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-portrait { display: none; }
  .svc-grid, .reviews { grid-template-columns: 1fr 1fr; }
  .insta-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .topbar-inner { grid-template-columns: 1fr; justify-items: center; gap: 12px; }
  .topbar-contact { justify-content: center; }
  .site-nav ul { gap: 18px; height: auto; flex-wrap: wrap; padding: 12px 0; }
  .svc-grid, .reviews, .gallery-2, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* ===== Accessibility ===== */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: #141414; padding: 10px 16px; z-index: 100; font-weight: 600; }
.skip-link:focus { left: 8px; top: 8px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.hero:focus { outline: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } }

/* ===== FAQ ===== */
.faq { max-width: 800px; margin: 40px auto 0; }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; color: #fff; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { margin: 12px 0 0; color: #cfcfcf; }

/* ===== Inner pages ===== */
.page-hero { padding: 74px 0 58px; border-bottom: 1px solid var(--line); background: radial-gradient(800px 380px at 78% 0, rgba(241,202,9,.07), transparent 60%), var(--black); }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; max-width: 20ch; margin: .4rem 0 0; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero .lead { margin-top: 1rem; }
.breadcrumb { font-size: .78rem; color: var(--gray); letter-spacing: .04em; margin-bottom: 1rem; }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--gold); }

.prose { max-width: 760px; }
.prose h2 { color: #fff; font-weight: 300; margin: 1.7em 0 .5em; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.prose h3 { color: var(--gold); font-weight: 500; margin: 1.4em 0 .4em; font-size: 1.1rem; }
.prose p, .prose li { color: #cfcfcf; }
.prose ul { padding-left: 1.1rem; margin: 0 0 1rem; }
.prose li { margin-bottom: .5rem; }
.prose .lead { color: #e2e2e2; }

.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.two-col img { width: 100%; border: 1px solid var(--line); border-radius: 4px; }

.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.benefit { border: 1px solid var(--line); background: var(--black-3); padding: 20px; border-radius: 4px; }
.benefit h4 { color: #fff; font-weight: 400; margin: 0 0 6px; }
.benefit p { color: #bdbdbd; font-size: .92rem; margin: 0; }

.cta-band { text-align: center; padding: 74px 0; background: radial-gradient(700px 300px at 50% 0, rgba(241,202,9,.10), transparent 70%), var(--black-2); border-top: 1px solid var(--line); }
.cta-band h2 { color: #fff; font-weight: 300; }

.svc-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.svc-list a { display: block; border: 1px solid var(--line); background: var(--black-3); padding: 24px; border-radius: 4px; transition: border-color .25s, transform .25s; }
.svc-list a:hover { border-color: var(--gold); transform: translateY(-3px); text-decoration: none; }
.svc-list h3 { color: #fff; font-weight: 400; margin: 0 0 6px; font-size: 1.1rem; }
.svc-list p { color: #bdbdbd; font-size: .9rem; margin: 0; }

.site-nav a.active { color: var(--gold); }

@media (max-width: 940px) { .two-col { grid-template-columns: 1fr; } .svc-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .benefits, .svc-list { grid-template-columns: 1fr; } }

/* ============================================================
   PPC LANDING PAGES (.lp) — conversion-focused, no site nav
   ============================================================ */
body.lp { background: var(--black); }
.lp-bar { position: sticky; top: 0; z-index: 60; background: rgba(18,18,18,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.lp-bar-inner { max-width: 1120px; margin: 0 auto; padding: 10px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.lp-logo { height: 52px; width: auto; }
.lp-bar-right { display: flex; align-items: center; gap: 18px; }
.lp-bar-loc { color: #bdbdbd; font-size: .82rem; letter-spacing: .04em; }
.lp-call { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #141414; font-weight: 700; font-size: .92rem; letter-spacing: .02em; padding: 10px 18px; border-radius: 3px; }
.lp-call:hover { background: #f7d94a; }

/* Hero */
.lp-hero { position: relative; overflow: hidden; background: radial-gradient(1000px 520px at 82% -6%, rgba(241,202,9,.10), transparent 60%), var(--black); border-bottom: 1px solid var(--line); }
.lp-hero-inner { max-width: 1120px; margin: 0 auto; padding: 54px 24px 60px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: start; }
.lp-badge { display: inline-block; background: rgba(241,202,9,.12); color: var(--gold); border: 1px solid rgba(241,202,9,.35); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; margin-bottom: 20px; }
.lp-hero h1 { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.3rem, 4.4vw, 3.5rem); line-height: 1.08; letter-spacing: .005em; color: #fff; margin: 0 0 8px; text-wrap: balance; }
.lp-hero h1 b { font-weight: 500; color: var(--gold); }
.lp-sub { color: #cfcfcf; font-size: 1.12rem; line-height: 1.55; max-width: 34ch; margin: 14px 0 24px; }
.lp-stars { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: #eaeaea; font-size: .92rem; }
.lp-stars .s { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.lp-ticks { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; }
.lp-ticks li { position: relative; padding-left: 30px; color: #e6e6e6; font-size: 1rem; line-height: 1.4; }
.lp-ticks li::before { content: ""; position: absolute; left: 0; top: 2px; width: 19px; height: 19px; border-radius: 50%; background: var(--gold); }
.lp-ticks li::after { content: ""; position: absolute; left: 6px; top: 7px; width: 6px; height: 10px; border: solid #141414; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.lp-hero-call { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 1.05rem; }
.lp-hero-call span { color: #9a9a9a; font-size: .84rem; font-weight: 500; }

/* Form card (light, high-contrast on dark hero) */
.lp-form-card { background: #fbf9f4; border-radius: 14px; padding: 28px 26px 30px; box-shadow: 0 24px 60px rgba(0,0,0,.45); position: sticky; top: 84px; }
.lp-form-card h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: #1a1a1a; margin: 0 0 4px; }
.lp-form-card .lp-form-sub { color: #5a5648; font-size: .92rem; margin: 0 0 18px; }
.lp-form-card .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; }
.lp-form-card label { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #6a6456; }
.lp-form-card input { font-family: var(--font-body); font-size: 1rem; padding: 13px 14px; border: 1px solid #ddd6c6; border-radius: 8px; background: #fff; color: #1a1a1a; }
.lp-form-card input:focus { outline: 2px solid var(--gold); outline-offset: 0; border-color: var(--gold); }
.lp-submit { width: 100%; background: var(--gold); color: #141414; font-family: var(--font-body); font-weight: 700; font-size: .92rem; letter-spacing: .08em; text-transform: uppercase; padding: 16px; border: none; border-radius: 8px; cursor: pointer; margin-top: 6px; transition: background .2s; }
.lp-submit:hover { background: #e6bf08; }
.lp-form-rea { text-align: center; color: #7a7568; font-size: .8rem; margin: 12px 0 0; }

/* Trust bar */
.lp-trustbar { background: #1c1a17; border-bottom: 1px solid var(--line); }
.lp-trustbar-inner { max-width: 1120px; margin: 0 auto; padding: 18px 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; text-align: center; }
.lp-trustbar span { color: #d6d2c8; font-size: .9rem; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.lp-trustbar b { color: var(--gold); }

/* Generic LP sections */
.lp-sec { max-width: 1120px; margin: 0 auto; padding: 56px 24px; }
.lp-sec-narrow { max-width: 900px; }
.lp-h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.7rem, 3vw, 2.3rem); color: #fff; text-align: center; margin: 0 0 8px; text-wrap: balance; }
.lp-h2 b { font-weight: 500; color: var(--gold); }
.lp-lead { color: #bdbdbd; text-align: center; max-width: 56ch; margin: 0 auto 36px; font-size: 1.02rem; }
.lp-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-benefit { background: #1a1815; border: 1px solid var(--line); border-radius: 12px; padding: 26px 22px; }
.lp-benefit h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.14rem; color: var(--gold); margin: 0 0 8px; }
.lp-benefit p { color: #c4c0b6; font-size: .94rem; line-height: 1.55; margin: 0; }
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.lp-step { text-align: center; padding: 0 10px; }
.lp-step .num { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); font-family: var(--font-display); font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.lp-step h3 { color: #fff; font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; margin: 0 0 6px; }
.lp-step p { color: #b7b3a9; font-size: .92rem; margin: 0; }
.lp-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-review { background: #1a1815; border: 1px solid var(--line); border-radius: 12px; padding: 22px; }
.lp-review .s { color: var(--gold); letter-spacing: 2px; }
.lp-review p { color: #d2cec4; font-size: .95rem; line-height: 1.55; margin: 10px 0; }
.lp-review cite { color: #8f8a7e; font-style: normal; font-size: .84rem; font-weight: 600; }

/* Closing CTA band */
.lp-cta { background: linear-gradient(180deg, #1c1a16, #141210); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.lp-cta-inner { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.lp-cta h2 { font-family: var(--font-display); font-weight: 300; color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin: 0 0 10px; }
.lp-cta h2 b { color: var(--gold); font-weight: 500; }
.lp-cta p { color: #c4c0b6; margin: 0 0 26px; }
.lp-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lp-btn-gold { background: var(--gold); color: #141414; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; padding: 16px 32px; border-radius: 4px; }
.lp-btn-gold:hover { background: #f7d94a; }
.lp-btn-ghost { border: 1px solid var(--gold); color: var(--gold); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; padding: 16px 32px; border-radius: 4px; display: inline-flex; align-items: center; gap: 8px; }
.lp-btn-ghost:hover { background: var(--gold); color: #141414; }
.lp-fine { color: #7d786c; font-size: .78rem; line-height: 1.6; max-width: 760px; margin: 0 auto; padding: 26px 24px 40px; text-align: center; }

/* Footer */
.lp-foot { background: #0e0d0b; }
.lp-foot-inner { max-width: 1120px; margin: 0 auto; padding: 26px 24px; text-align: center; }
.lp-foot-nap { color: #b7b3a9; font-size: .86rem; margin: 0 0 6px; }
.lp-foot-legal { color: #7d786c; font-size: .8rem; margin: 0; }
.lp-foot a { color: #b7b3a9; }
.lp-foot a:hover { color: var(--gold); }

/* Sticky mobile call/claim bar */
.lp-sticky { display: none; }

@media (max-width: 900px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .lp-form-card { position: static; }
  .lp-benefits, .lp-steps, .lp-review-grid { grid-template-columns: 1fr; }
  .lp-sub { max-width: none; }
  .lp-sticky { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: rgba(18,18,18,.98); border-top: 1px solid var(--line); padding: 10px 14px; gap: 10px; }
  .lp-sticky a { flex: 1; text-align: center; padding: 14px 10px; border-radius: 6px; font-weight: 700; font-size: .9rem; letter-spacing: .03em; }
  .lp-sticky .call { border: 1px solid var(--gold); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
  .lp-sticky .claim { background: var(--gold); color: #141414; }
  body.lp { padding-bottom: 68px; }
}
@media (max-width: 620px) {
  .lp-bar-loc { display: none; }
  .lp-hero-inner { padding: 34px 20px 44px; }
}
