:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --ink: #111827;
  --muted: #5b6472;
  --orange: #f99b3e;
  --orange-soft: #f9b470;
  --orange-dark: #b95b08;
  --cream: #fff7ef;
  --dark: #16110d;
  --line: rgba(17, 24, 39, 0.12);
  --shadow: 0 24px 80px rgba(57, 37, 18, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: #374151; background: #fffaf5; font-size: 16px; line-height: 1.7; }
body.mobile-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--ink); line-height: 1.08; letter-spacing: -0.035em; margin: 0; }
h1 { font-size: clamp(35px, 5.2vw, 70px); }
h2 { font-size: clamp(28px, 3.5vw, 46px); }
h3, h4 { font-size: 20px; }
p { margin: 0; font-size: 16px; }
ul, ol { margin: 0; padding: 0; }
li { font-size: 16px; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 250, 245, 0.92); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.logo-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--dark); color: var(--orange); box-shadow: 0 10px 30px rgba(249, 155, 62, 0.22); }
.desktop-nav { display: none !important; gap: 20px; align-items: center; }
.desktop-nav a { font-size: 18px; color: #2d3440; font-weight: 600; }
.desktop-nav a:hover { color: var(--orange-dark); }
.header-phone { display: none !important; align-items: center; gap: 9px; padding: 13px 18px; border-radius: 999px; background: var(--dark); color: #fff !important; font-size: 18px; font-weight: 800; white-space: nowrap; box-shadow: 0 12px 28px rgba(22, 17, 13, 0.18); }
.hamburger { display: inline-flex; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 15px; background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-panel { display: none; border-top: 1px solid var(--line); background: #fffaf5; padding: 18px 20px 24px; }
.mobile-panel.is-open { display: block; }
.mobile-panel nav { display: grid; gap: 14px; }
.mobile-panel a { font-size: 18px; font-weight: 700; color: var(--ink); }
.mobile-menu-phone { display: inline-flex; justify-content: center; align-items: center; margin-top: 10px; padding: 14px 16px; border-radius: 18px; background: var(--dark); color: #fff !important; font-weight: 900; white-space: nowrap; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 15px 24px; border-radius: 999px; font-weight: 900; font-size: 17px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(249, 155, 62, 0.28); }
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-soft)); color: #1f1409 !important; }
.btn-dark { background: var(--dark); color: #fff !important; }
.btn-light { background: #fff; color: #111827 !important; border: 1px solid rgba(255,255,255,.7); }

.hero { padding: 62px 0 34px; background: radial-gradient(circle at 10% 10%, rgba(249,180,112,.56), transparent 34%), linear-gradient(135deg, #fff7ef 0%, #fff 56%, #fbe8d3 100%); }
.hero-grid { display: grid; gap: 28px; align-items: stretch; }
.hero-copy, .hero-media { border-radius: 34px; min-height: 100%; }
.hero-copy { padding: clamp(28px, 5vw, 58px); background: rgba(255,255,255,.76); border: 1px solid rgba(249,155,62,.24); box-shadow: var(--shadow); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; border-radius: 999px; background: rgba(249,155,62,.13); color: #733700; font-weight: 900; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.stars { color: var(--orange); font-size: 24px; letter-spacing: 2px; margin: 18px 0 12px; }
.trust-icons { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.trust-icons img { width: auto; height: 48px; max-width: 124px; object-fit: contain; border-radius: 12px; padding: 5px; background: #fff; border: 1px solid rgba(249,155,62,.2); }
.hero-lead { color: #303946; max-width: 680px; margin: 0 0 22px; }
.hero-cta-text { font-weight: 900; color: var(--ink); margin-bottom: 13px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; }
.fact { padding: 14px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.fact strong { display: block; color: var(--ink); font-size: 18px; line-height: 1.2; }
.fact span { display: block; color: var(--muted); font-size: 14px; }
.hero-media { position: relative; overflow: hidden; min-height: 430px; background: var(--dark); box-shadow: var(--shadow); }
.hero-media img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.hero-card { position: absolute; left: 22px; right: 22px; bottom: 22px; border-radius: 24px; padding: 18px; background: rgba(22,17,13,.86); color: #fff; backdrop-filter: blur(12px); }
.hero-card strong { display: block; color: #fff; font-size: 20px; line-height: 1.25; }
.hero-card span { color: #f8dcc2; }

.section { padding: 78px 0; }
.section-alt { background: #fff7ef; }
.section-dark { background: var(--dark); color: #f9fafb; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-intro { max-width: 820px; margin-bottom: 32px; }
.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro p { color: #4b5563; margin-top: 14px; }
.section-dark .section-intro p { color: #f3dbc5; }
.two-col { display: grid; gap: 30px; align-items: center; margin-top: 32px; }
.two-col .text { min-width: 0; }
.two-col .image { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(249,155,62,.18); }
.two-col .image img { width: 100%; height: 340px; object-fit: cover; }
.feature-band { padding: 28px; border-radius: 30px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.feature-band p + p { margin-top: 14px; }

.services-grid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 22px; box-shadow: 0 14px 40px rgba(57,37,18,.07); transition: transform .22s ease, border-color .22s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(249,155,62,.5); }
.service-head { display: flex; align-items: center; gap: 13px; margin-bottom: 12px; }
.icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: #fff2e4; color: #9a4a07; flex: 0 0 auto; }
.icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card p { color: #4b5563; margin-bottom: 12px; }
.service-card ul { display: grid; gap: 9px; padding-left: 0; list-style: none; }
.service-card li { color: #374151; padding-left: 21px; position: relative; }
.service-card li:before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); position: absolute; left: 0; top: .72em; }
.service-card strong { color: #111827; }

.process { display: grid; gap: 18px; counter-reset: step; }
.process-card { counter-increment: step; display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 24px; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: 0 16px 42px rgba(57,37,18,.07); }
.process-card:before { content: counter(step); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--dark); color: #fff; font-weight: 900; font-size: 20px; }
.local-panel { display: grid; gap: 24px; background: linear-gradient(135deg, #201813, #3a2414); border-radius: 34px; padding: clamp(26px, 5vw, 46px); color: #fff; box-shadow: var(--shadow); }
.local-panel h2, .local-panel h3 { color: #fff; }
.local-panel p, .local-panel li { color: #ffe9d4; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.pill-list span { padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #fff; font-weight: 800; }

.carousel-shell { position: relative; }
.reviews-track { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 24px; box-shadow: 0 16px 44px rgba(57,37,18,.08); }
.review-card .stars { font-size: 18px; margin: 0 0 12px; }
.review-card blockquote { margin: 0; color: #374151; }
.review-card cite { display: block; margin-top: 18px; font-style: normal; font-weight: 900; color: #111827; }
.carousel-controls { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.carousel-controls button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 22px; cursor: pointer; }

.problems-grid, .payment-grid, .faq-grid { display: grid; gap: 16px; }
.problem-card, .payment-card, .faq-card { padding: 22px; border-radius: 24px; background: #fff; border: 1px solid var(--line); }
.problem-card strong { display: block; color: #111827; margin-bottom: 6px; }
.payment-card { display: flex; align-items: center; gap: 14px; font-weight: 900; color: #111827; }
.cta-strip { border-radius: 34px; padding: clamp(28px, 5vw, 52px); background: linear-gradient(135deg, var(--orange), var(--orange-soft)); color: #1f1409; display: grid; gap: 22px; align-items: center; box-shadow: var(--shadow); }
.cta-strip h2 { color: #111827; }
.cta-strip p { color: #2b1a0e; font-weight: 700; }

.footer { padding: 54px 0 34px; background: var(--dark); color: #f7eadf; }
.footer h3 { color: #fff; }
.footer a { color: #fff; }
.footer-grid { display: grid; gap: 28px; }
.footer .logo { color: #fff; }
.footer p, .footer li { color: #f7eadf; font-size: 14px; }
.footer-links { display: grid; gap: 8px; }
.disclaimer { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); font-size: 14px; color: #f7eadf; }

.mobile-sticky-call { display: none !important; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(22,17,13,.96); transform: translateY(110%); opacity: 0; transition: transform .25s ease, opacity .25s ease; }
.mobile-sticky-call.is-visible { transform: translateY(0); opacity: 1; }
.mobile-sticky-call a { display: flex; width: 100%; min-height: 54px; align-items: center; justify-content: center; border-radius: 18px; background: linear-gradient(135deg, var(--orange), var(--orange-soft)); color: #1a1007 !important; font-size: 16px; font-weight: 900; white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .problems-grid, .payment-grid, .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .desktop-nav { display: flex !important; }
  .header-phone { display: inline-flex !important; }
  .hamburger, .mobile-panel { display: none !important; }
  .mobile-sticky-call { display: none !important; }
  .hero-grid { grid-template-columns: 1.08fr .92fr; }
  .two-col { grid-template-columns: 65fr 35fr; }
  .two-col.reverse { grid-template-columns: 35fr 65fr; }
  .two-col.reverse .image { order: 1; }
  .two-col.reverse .text { order: 2; }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .local-panel { grid-template-columns: 1.2fr .8fr; }
  .cta-strip { grid-template-columns: 1fr auto; }
  .footer-grid { grid-template-columns: 1.2fr .9fr .9fr; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reviews-track { grid-auto-columns: calc((100% - 36px) / 3); }
}

@media (max-width: 767px) {
  h1 { font-size: clamp(35px, 9vw, 49px); }
  h2 { font-size: clamp(28px, 7vw, 32px); }
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; }
  .logo { font-size: 24px; }
  .hero { padding-top: 34px; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-media, .hero-media img { min-height: 330px; }
  .section { padding: 58px 0; }
  .two-col .image img { height: 260px; }
  body { padding-bottom: 78px; }
  .mobile-sticky-call { display: block !important; }
}
