/* ===== Tokens ===== */
:root {
  --bg: #f4f3ee;
  --bg-card: #ffffff;
  --ink: #14130f;
  --ink-soft: #4a4843;
  --muted: #6b6a64;
  --line: #e3e1d8;
  --accent: #ff5436;
  --accent-2: #ff8a3d;
  --dark: #14130f;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 1px 2px rgba(20,19,15,.04), 0 12px 32px rgba(20,19,15,.06);
  --shadow-lg: 0 24px 60px rgba(20,19,15,.14);
  --maxw: 1140px;
  --ease: cubic-bezier(.22,.61,.36,1);
  font-synthesis: none;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, .brand__name { font-family: "Sora", "Inter", sans-serif; letter-spacing: -.02em; line-height: 1.1; }

.grad {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hidden { position: absolute; left: -9999px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--ink); color: #fff;
  font-weight: 600; font-size: .95rem;
  padding: .8rem 1.4rem; border-radius: 999px; border: 1px solid var(--ink);
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20,19,15,.18); }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.02rem; }
.btn--small { padding: .55rem 1.05rem; font-size: .88rem; }
.btn--full { width: 100%; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: #fff; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(244,243,238,.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-color: var(--line); background: rgba(244,243,238,.9); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; flex-direction: row; align-items: center; gap: .55rem; line-height: 1; }
.brand__icon { width: 38px; height: 38px; border-radius: 9px; display: block; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-size: 1.3rem; font-weight: 800; }
.brand__dot { color: var(--accent); }
.brand__sub { font-size: .62rem; letter-spacing: .42em; text-transform: lowercase; color: var(--muted); padding-left: 2px; }
.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__links a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__links .btn { color: #fff; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem); }
.hero__inner { position: relative; z-index: 2; max-width: 820px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  color: #fff; border: 0; border-radius: 999px;
  padding: .8rem 1.6rem; font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.3rem); line-height: 1.25;
  margin-bottom: 1.6rem; max-width: 100%;
  box-shadow: 0 12px 26px rgba(255,84,54,.3);
}
@media (max-width: 520px) { .hero__badge { padding: .7rem 1.15rem; border-radius: 20px; } }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 600; color: var(--accent); margin-bottom: 1rem; }
.eyebrow--light { color: var(--accent-2); }
.hero__title { font-size: clamp(2.5rem, 6.5vw, 4.6rem); font-weight: 800; }
.hero__lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--ink-soft); margin: 1.4rem 0 2rem; max-width: 620px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.6rem; }
.hero__trust li { font-size: .92rem; color: var(--muted); }
.hero__trust strong { display: block; font-family: "Sora", sans-serif; font-size: 1.5rem; color: var(--ink); }
.hero__glow {
  position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle at center, rgba(255,84,54,.22), rgba(255,138,61,.12) 40%, transparent 70%);
  filter: blur(10px); z-index: 1; pointer-events: none;
}

/* ===== Strip ===== */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.strip__inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; padding: 1.4rem 24px; }
.strip__inner > span { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.strip__items { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.strip__items span { font-family: "Sora", sans-serif; font-weight: 600; color: var(--ink-soft); }
.strip__items a { text-decoration: none; transition: color .15s ease; }
.strip__items a:hover span { color: var(--accent); }

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--dark { background: var(--dark); color: #f4f3ee; }
.section--muted { background: #efeee7; }
.section__head { max-width: 680px; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); text-align: center; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; }
.section__sub { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }
.section__sub--light { color: #b9b7ad; }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  position: relative; background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #d6d3c8; }
.card--feature { border-color: var(--accent); box-shadow: 0 24px 50px rgba(255,84,54,.14); }
.card__badge {
  position: absolute; top: -12px; left: 1.8rem;
  background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: #fff;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  padding: .3rem .8rem; border-radius: 999px;
}
.card__icon { font-size: 2rem; width: 56px; height: 56px; display: grid; place-items: center; background: #f4f3ee; border-radius: 14px; margin-bottom: 1.1rem; }
.card h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.card > p { color: var(--ink-soft); font-size: .98rem; }
.card__list { list-style: none; margin-top: 1.2rem; display: grid; gap: .55rem; }
.card__list li { position: relative; padding-left: 1.6rem; font-size: .92rem; color: var(--ink-soft); }
.card__list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.5rem 1rem; border-radius: var(--radius); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.stat__num { display: block; font-family: "Sora", sans-serif; font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1; }
.stat__label { display: block; margin-top: .7rem; color: #b9b7ad; font-size: .9rem; }

/* ===== Steps ===== */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; box-shadow: var(--shadow); }
.step__num { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--accent); }
.step h3 { font-size: 1.15rem; margin: .8rem 0 .5rem; }
.step p { color: var(--ink-soft); font-size: .92rem; }

/* ===== Quotes ===== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow); }
.quote blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.6; }
.quote blockquote::before { content: "“"; font-family: "Sora", serif; font-size: 2.4rem; color: var(--accent); line-height: 0; display: inline-block; vertical-align: -.4rem; margin-right: .2rem; }
.quote figcaption { margin-top: 1.2rem; color: var(--muted); font-size: .9rem; }

/* ===== About ===== */
.about { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.about__text h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 1rem; }
.about__text p { color: var(--ink-soft); margin-bottom: 1rem; }
.about__text .btn { margin-top: .6rem; }
.about__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.mini { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); }
.mini strong { display: block; font-family: "Sora", sans-serif; font-size: 1.05rem; margin-bottom: .4rem; }
.mini span { color: var(--muted); font-size: .9rem; }

/* ===== CTA / Form ===== */
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.cta__text h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.cta__text p { color: var(--ink-soft); font-size: 1.05rem; }
.cta__points { list-style: none; margin-top: 1.6rem; display: grid; gap: .8rem; }
.cta__points li { color: var(--ink-soft); }
.form { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-lg); display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; color: var(--ink);
  padding: .75rem .9rem; border: 1px solid var(--line); border-radius: 10px; background: #fbfbf9;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,84,54,.14);
}
.field textarea { resize: vertical; }
.form__note { text-align: center; font-size: .82rem; color: var(--muted); }

/* ===== Footer ===== */
.footer { background: var(--dark); color: #cfcdc4; padding: 3.5rem 0 1.8rem; }
.footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand .brand__name { color: #fff; font-size: 1.4rem; }
.footer__brand p { margin-top: .6rem; max-width: 280px; font-size: .92rem; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__links h4 { color: #fff; font-size: .95rem; margin-bottom: .9rem; }
.footer__links a { display: block; padding: .25rem 0; font-size: .9rem; color: #cfcdc4; transition: color .2s; }
.footer__links a:hover { color: var(--accent-2); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-top: 1.5rem; font-size: .82rem; color: #8d8b82; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .cards, .stats, .steps, .quotes { grid-template-columns: repeat(2, 1fr); }
  .about, .cta__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
/* Mobile menu: shows for tablets and small laptops so the 7-item nav never clips */
@media (max-width: 900px) {
  .nav__links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 1rem 24px 1.5rem; transform: translateY(-130%); transition: transform .35s var(--ease); max-height: calc(100vh - 72px); overflow-y: auto; }
  .nav__links.open { transform: none; }
  .nav__links a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav__links .btn { margin-top: .8rem; text-align: center; }
  .nav__toggle { display: flex; }
}
@media (max-width: 720px) {
  .cards, .stats, .steps, .quotes, .about__cards, .footer__links { grid-template-columns: 1fr; }
  .hero__trust { gap: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================================================================
   ADDED COMPONENTS, pillars, roadmap, guarantee, areas, FAQ, prose
   =================================================================== */

/* ---- Top guarantee bar ---- */
.topbar {
  background: var(--ink); color: #fff; text-align: center;
  font-size: .85rem; padding: .5rem 1rem; font-weight: 500;
}
.topbar strong { color: var(--accent-2); }

/* ---- Roadmap / 90-day timeline ---- */
.roadmap { display: grid; gap: 1rem; max-width: 880px; margin: 0 auto; }
.phase {
  display: grid; grid-template-columns: 130px 1fr; gap: 1.5rem; align-items: start;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.8rem; box-shadow: var(--shadow);
}
.phase__weeks {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--accent);
  font-size: 1.05rem; line-height: 1.2;
}
.phase__weeks span { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }
.phase h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.phase p { color: var(--ink-soft); font-size: .93rem; }

/* ---- Guarantee band ---- */
.guarantee {
  background: linear-gradient(115deg, var(--accent), var(--accent-2));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.2rem);
  display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center;
  box-shadow: 0 24px 50px rgba(255,84,54,.25);
}
.guarantee__seal {
  width: 120px; height: 120px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: rgba(255,255,255,.16); border: 2px dashed rgba(255,255,255,.6);
  font-family: "Sora", sans-serif; font-weight: 800; line-height: 1.05;
}
.guarantee__seal span { display: block; }
.guarantee__seal .big { font-size: 2.1rem; }
.guarantee__seal .small { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; margin-top: .2rem; font-weight: 600; }
.guarantee h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); color: #fff; margin-bottom: .6rem; }
.guarantee p { color: rgba(255,255,255,.92); max-width: 640px; }
.guarantee .btn { background: #fff; color: var(--ink); border-color: #fff; margin-top: 1.2rem; }
@media (max-width: 600px) {
  .guarantee { grid-template-columns: 1fr; text-align: center; gap: 1.4rem; }
  .guarantee__seal { margin: 0 auto; }
  .guarantee p { margin-left: auto; margin-right: auto; }
}

/* ---- Areas we serve ---- */
.areas { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; max-width: 820px; margin: 0 auto; }
.area-chip {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 999px;
  padding: .55rem 1.1rem; font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--shadow); transition: transform .2s var(--ease), border-color .2s, color .2s;
}
.area-chip:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--ink); }

/* ---- FAQ accordion ---- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: .8rem; }
.faq__item { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font: inherit; font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--ink);
  padding: 1.2rem 1.4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__q::after { content: "+"; font-size: 1.5rem; color: var(--accent); transition: transform .3s var(--ease); line-height: 1; }
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: .96rem; }

/* ---- Breadcrumbs (subpages) ---- */
.crumbs { font-size: .85rem; color: var(--muted); padding: 1.2rem 0 0; }
.crumbs a { color: var(--accent); }
.crumbs span { margin: 0 .4rem; }

/* ---- Article / prose (service & area pages) ---- */
.page-hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 4vw, 2.5rem); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; max-width: 18ch; }
.page-hero p { color: var(--ink-soft); font-size: 1.15rem; margin-top: 1rem; max-width: 60ch; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.2rem 0 .9rem; }
.prose h3 { font-size: 1.25rem; margin: 1.6rem 0 .6rem; }
.prose p { color: var(--ink-soft); margin-bottom: 1rem; font-size: 1.02rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.2rem; color: var(--ink-soft); display: grid; gap: .5rem; }
.prose li { font-size: 1.02rem; }
.prose a { color: var(--accent); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose .lead { font-size: 1.18rem; color: var(--ink); }
.callout {
  background: #fff; border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.4rem; margin: 1.6rem 0; box-shadow: var(--shadow); color: var(--ink-soft);
}
.related { background: #efeee7; border-radius: var(--radius); padding: 1.5rem 1.8rem; margin-top: 2.5rem; }
.related h3 { font-size: 1.1rem; margin-bottom: .8rem; }
.related ul { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin: 0; }
.related a { background: var(--bg-card); border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1rem; font-size: .9rem; text-decoration: none; color: var(--ink-soft); }
.related a:hover { border-color: var(--accent); color: var(--ink); }

/* ---- Embedded map ---- */
.map-embed { border: 0; width: 100%; height: 260px; border-radius: var(--radius); filter: grayscale(.2) contrast(1.05); }

/* ---- Footer NAP ---- */
.nap { font-style: normal; color: #cfcdc4; font-size: .9rem; line-height: 1.7; margin-top: .8rem; }
.nap strong { color: #fff; display: block; }
.nap a { color: #cfcdc4; }
.nap a:hover { color: var(--accent-2); }

/* ---- Footer social icons ---- */
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a {
  display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #cfcdc4;
  transition: background .2s, color .2s, transform .2s;
}
.socials a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }

/* ===================================================================
   Blog + Newsletter
   =================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 980px; margin: 0 auto; }
.post-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-card__thumb {
  height: 150px; background: linear-gradient(120deg, var(--accent), var(--accent-2));
  display: grid; place-items: center; color: #fff; text-align: center; padding: 1rem;
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.05rem;
}
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.post-card__cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); font-weight: 700; }
.post-card h3 { font-size: 1.2rem; line-height: 1.25; }
.post-card p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.post-card .readmore { color: var(--accent); font-weight: 600; font-size: .9rem; }
.post-meta { color: var(--muted); font-size: .88rem; margin-bottom: 1.6rem; }
.post-meta a { color: var(--accent); }

.newsletter { background: var(--ink); color: #f4f3ee; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3rem); text-align: center; max-width: 760px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.newsletter h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.newsletter > p { color: #cfcdc4; max-width: 520px; margin: .8rem auto 1.5rem; }
.newsletter-form { display: flex; gap: .6rem; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input[type="email"] { flex: 1; min-width: 200px; padding: .85rem 1rem; border-radius: 10px; border: 1px solid #333; background: #1d1c18; color: #fff; font: inherit; }
.newsletter-form input[type="email"]::placeholder { color: #8d8b82; }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--accent); }
.newsletter-form .btn { background: #fff; color: var(--ink); border-color: #fff; }
.newsletter__note { font-size: .8rem; color: #8d8b82; margin-top: 1rem; }

@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .phase { grid-template-columns: 1fr; gap: .6rem; }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* ===================================================================
   PAS (Problem · Agitate · Solution) + Before/After heatmap
   =================================================================== */

/* ---- PAS ---- */
.pas { max-width: 820px; margin: 0 auto; display: grid; gap: 1.1rem; }
.pas__step {
  background: var(--bg-card); border: 1px solid var(--line); border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.5rem 1.8rem; box-shadow: var(--shadow);
}
.pas__tag {
  display: inline-block; font-family: "Sora", sans-serif; font-weight: 700;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: .5rem;
}
.pas__step h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.pas__step p { color: var(--ink-soft); font-size: 1rem; }
.pas__step p + p { margin-top: .7rem; }
/* ---- PAS visual icon strip ---- */
.pas-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; max-width: 960px; margin: 0 auto; }
.pas-card {
  text-align: center; padding: 1.8rem 1.1rem; background: var(--bg-card);
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.pas-card .pas-ico { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1rem; }
.pas-card .pas-ico svg { width: 30px; height: 30px; fill: currentColor; }
.pas-ico--red { background: #fdeaea; color: #dc2626; }
.pas-ico--orange { background: #fff0e6; color: #f97316; }
.pas-ico--green { background: #e9f7ee; color: #16a34a; }
.pas-ico--solve { background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #fff; }
.pas-card h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.pas-card p { font-size: .9rem; color: var(--ink-soft); }
.pas-card--solve { background: var(--ink); border-color: var(--ink); }
.pas-card--solve h3 { color: #fff; }
.pas-card--solve p { color: #cfcdc4; }
@media (max-width: 760px) { .pas-steps { grid-template-columns: repeat(2, 1fr); } }

.pas__step--good { border-left-color: #16a34a; background: #f3faf4; }
.pas__step--good .pas__tag { color: #16a34a; }
.pas__step--solution {
  background: var(--ink); border-left-color: var(--accent-2); color: #f4f3ee;
}
.pas__step--solution h3 { color: #fff; }
.pas__step--solution p { color: #cfcdc4; }
.pas__step--solution .pas__tag { color: var(--accent-2); }
.pas__step--solution .btn { background: #fff; color: var(--ink); border-color: #fff; margin-top: 1.1rem; }

/* ---- Heatmap before/after ---- */
.heat-toggle {
  display: inline-flex; background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 999px; padding: .35rem; box-shadow: var(--shadow); margin: 0 auto 1.6rem; gap: .25rem;
}
.heat-toggle__btn {
  font: inherit; font-weight: 600; font-size: .92rem; cursor: pointer;
  border: 0; background: transparent; color: var(--ink-soft);
  padding: .6rem 1.4rem; border-radius: 999px; transition: background .25s, color .25s;
}
.heat-toggle__btn.active { background: var(--ink); color: #fff; }
.heat-toggle__btn[data-state="after"].active { background: #16a34a; }
.heat-toggle__btn.pulse:not(.active) { animation: heatpulse 1.6s ease-in-out infinite; }
@keyframes heatpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(22,163,74,.45); } 50% { box-shadow: 0 0 0 8px rgba(22,163,74,0); } }

.heat-panel {
  max-width: 600px; margin: 0 auto; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.heat-panel__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem 1.2rem; border-bottom: 1px solid var(--line); font-size: .88rem; color: var(--muted);
}
.heat-panel__biz { font-family: "Sora", sans-serif; font-weight: 700; color: var(--ink); font-size: 1rem; }
.heat-panel__rank { font-weight: 700; }
.heat-map {
  position: relative;
  background:
    linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)),
    repeating-linear-gradient(0deg, #e8eef0 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, #e8eef0 0 1px, transparent 1px 46px),
    #eef3f1;
  padding: 16px;
}
.heat-grid { display: grid; gap: 4px; }
.heat-cell {
  aspect-ratio: 1 / 1; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-family: "Sora", sans-serif; font-weight: 700; font-size: clamp(.55rem, 1.4vw, .8rem);
  box-shadow: 0 1px 2px rgba(0,0,0,.18); transition: background-color .45s var(--ease);
  border: 1.5px solid rgba(255,255,255,.7);
}
.heat-legend { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 1.4rem auto 0; font-size: .82rem; color: var(--muted); }
.heat-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.heat-legend i { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }
.heat-caption { text-align: center; max-width: 540px; margin: 1.2rem auto 0; color: var(--ink-soft); font-size: 1rem; min-height: 3em; }
.heat-caption strong { color: var(--ink); }

/* ---- About / founder ---- */
.founder { display: grid; grid-template-columns: 320px 1fr; gap: 2.5rem; align-items: center; max-width: 920px; margin: 0 auto; }
.founder__media { position: relative; }
.founder__photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 12%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.founder__fallback {
  display: grid; place-items: center; width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 5rem; box-shadow: var(--shadow-lg);
}
.founder__role { color: var(--accent); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .8rem; }
.founder h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: .3rem 0 1rem; }
.founder p { color: var(--ink-soft); margin-bottom: 1rem; }
.founder .socials { margin-top: 0; }
.founder .socials a { background: #efeee7; color: var(--ink-soft); }
.founder .socials a:hover { background: var(--accent); color: #fff; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 920px; margin: 0 auto; }
.value { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); text-align: center; }
.value h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.value p { font-size: .92rem; color: var(--ink-soft); }
@media (max-width: 760px) {
  .founder { grid-template-columns: 1fr; text-align: center; }
  .founder__media { max-width: 240px; margin: 0 auto; }
  .founder .socials { justify-content: center; }
  .values { grid-template-columns: 1fr; }
}

/* ---- Client results (before/after) ---- */
.cases { display: grid; gap: 1.6rem; max-width: 1000px; margin: 0 auto; }
.case { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 1.4rem; }
.case__head { display: flex; justify-content: space-between; align-items: center; gap: .8rem; margin-bottom: 1rem; flex-wrap: wrap; }
.case__name { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.08rem; }
.case__niche { color: var(--muted); font-size: .9rem; }
.case__result { background: #e9f7ee; color: #16a34a; font-weight: 700; font-size: .85rem; padding: .35rem .8rem; border-radius: 999px; white-space: nowrap; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ba figure { margin: 0; }
.ba img { width: 100%; height: 300px; object-fit: contain; background: #14130f; border-radius: var(--radius); display: block; border: 1px solid var(--line); }
.ba figcaption { text-align: center; font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin-top: .5rem; }
.ba .before figcaption { color: #dc2626; }
.ba .after figcaption { color: #16a34a; }
@media (max-width: 600px) { .ba { grid-template-columns: 1fr; } }

/* ---- Reviews ---- */
.stars { color: #f5a623; letter-spacing: 2px; font-size: 1.05rem; margin-bottom: .6rem; }

/* ---- Packages (the offer) ---- */
.packages { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; max-width: 920px; margin: 0 auto; align-items: stretch; }
.pkg { position: relative; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.pkg__tag { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.pkg h3 { font-size: 1.55rem; margin: .35rem 0 .5rem; }
.pkg__intro { color: var(--ink-soft); margin-bottom: 1.2rem; }
.pkg__list { list-style: none; display: grid; gap: .7rem; margin-bottom: 1.3rem; }
.pkg__list li { position: relative; padding-left: 1.7rem; color: var(--ink-soft); font-size: .96rem; }
.pkg__list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pkg__result { background: #efeee7; border-radius: 10px; padding: .85rem 1rem; font-size: .9rem; color: var(--ink); margin-top: auto; margin-bottom: 1.2rem; }
.pkg .btn { width: 100%; }
.pkg--featured { background: var(--ink); border-color: var(--ink); color: #f4f3ee; }
.pkg--featured .pkg__tag { color: var(--accent-2); }
.pkg--featured h3 { color: #fff; }
.pkg--featured .pkg__intro { color: #cfcdc4; }
.pkg--featured .pkg__list li { color: #d8d6cd; }
.pkg--featured .pkg__result { background: rgba(255,255,255,.08); color: #fff; }
.pkg--featured .btn { background: #fff; color: var(--ink); border-color: #fff; }
.pkg__badge { position: absolute; top: -12px; right: 1.6rem; background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .04em; padding: .3rem .85rem; border-radius: 999px; }
@media (max-width: 760px) { .packages { grid-template-columns: 1fr; } }

/* ---- Moving testimonials marquee ---- */
.marquee { overflow: hidden; width: 100%; padding: .6rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; gap: 1.2rem; width: max-content; padding: 0 .6rem; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tcard {
  flex: 0 0 340px; max-width: 85vw; background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 1.6rem; display: flex; flex-direction: column;
}
.tcard blockquote { margin: 0 0 1.1rem; font-size: 1rem; line-height: 1.55; color: var(--ink); flex: 1; }
.tcard figcaption { color: var(--muted); font-size: .9rem; }
.tcard figcaption strong { display: block; font-family: "Sora", sans-serif; color: var(--ink); font-size: 1rem; }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }
.reviews-empty {
  max-width: 560px; margin: 0 auto; text-align: center; background: var(--bg-card);
  border: 1px dashed #cfccc0; border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow);
}
.reviews-empty p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.reviews-empty .btn { margin-bottom: 1.2rem; }
.reviews-empty__note { font-size: .9rem; color: var(--muted); margin-bottom: 0 !important; }
.reviews-empty__note a { color: var(--accent); font-weight: 600; }

/* ===== Floating WhatsApp button (injected site-wide) ===== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: inline-flex; align-items: center; gap: .55rem;
  background: #25D366; color: #fff; font-weight: 700; font-size: .95rem;
  padding: .8rem 1.15rem; border-radius: 999px; border: 0;
  box-shadow: 0 12px 28px rgba(37,211,102,.4); cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(37,211,102,.5); }
.wa-float svg { width: 22px; height: 22px; fill: #fff; flex: none; }
.wa-float__label { white-space: nowrap; }
@media (max-width: 560px) { .wa-float__label { display: none; } .wa-float { padding: .85rem; } }
