:root {
  --ink: #0b0a09;
  --ink-2: #15120f;
  --ink-3: #211c16;
  --paper: #fffdf8;
  --cream: #f6f0e5;
  --cream-2: #eee4d4;
  --gold: #caa24d;
  --gold-light: #efd18a;
  --gold-dark: #8d6827;
  --text: #1c1814;
  --muted: #746b60;
  --line: rgba(202,162,77,.24);
  --white-line: rgba(255,255,255,.11);
  --shadow: 0 28px 80px rgba(8,6,3,.18);
  --radius: 22px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(830px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 800;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.025em; line-height: 1.08; }
h1 { font-size: clamp(2.65rem, 5.2vw, 5.35rem); }
h2 { font-size: clamp(2.05rem, 3.8vw, 3.65rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
.lead { font-size: clamp(1.04rem, 1.5vw, 1.25rem); color: rgba(255,255,255,.78); max-width: 680px; }
.section-intro { font-size: 1.08rem; color: var(--muted); max-width: 760px; }
.gold-text {
  background: linear-gradient(105deg, #946b22 0%, #f1d586 42%, #b28532 78%, #f2d791 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 9999; background: #fff; padding: 12px 16px; }
.skip-link:focus { left: 8px; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 78px;
  z-index: 100;
  background: rgba(9,8,7,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .25s ease, height .25s ease;
}
.site-header.scrolled { background: rgba(7,6,5,.95); height: 70px; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; min-width: 192px; }
.brand img { width: 190px; max-height: 58px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 29px; }
.main-nav a { color: rgba(255,255,255,.77); text-decoration: none; font-size: .88rem; font-weight: 650; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold-light); }
.header-cta { padding: 11px 17px; border: 1px solid rgba(239,209,138,.65); border-radius: 999px; color: var(--gold-light)!important; }
.menu-toggle { display: none; border: 0; background: transparent; color: #fff; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 1px; background: currentColor; margin: 6px 0; transition: transform .2s, opacity .2s; }

/* Hero */
.hero {
  position: relative;
  min-height: 810px;
  padding: 140px 0 110px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 74% 28%, rgba(202,162,77,.18), transparent 34%),
    radial-gradient(circle at 10% 85%, rgba(202,162,77,.08), transparent 28%),
    linear-gradient(128deg, #090807 0%, #11100e 55%, #1a1510 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to right, black, transparent 58%);
}
.hero::after {
  content: '';
  position: absolute;
  width: 720px; height: 720px;
  border: 1px solid rgba(202,162,77,.18);
  border-radius: 50%;
  right: -290px; top: -110px;
  box-shadow: 0 0 0 70px rgba(202,162,77,.025), 0 0 0 140px rgba(202,162,77,.018);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; }
.hero-copy { max-width: 735px; }
.hero h1 { margin-bottom: 25px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 23px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(105deg, #9c7229, #f0cf7a 50%, #ad8232); color: #100d08; box-shadow: 0 14px 34px rgba(202,162,77,.22); }
.btn-gold:hover { box-shadow: 0 18px 42px rgba(202,162,77,.34); }
.btn-ghost { border-color: rgba(255,255,255,.24); color: #fff; background: rgba(255,255,255,.025); }
.btn-dark { background: var(--ink); color: #fff; }
.btn svg { width: 19px; height: 19px; }
.hero-microcopy { margin: 16px 0 0; color: rgba(255,255,255,.56); font-size: .82rem; }
.service-kicker { display: inline-flex; align-items: center; gap: 10px; padding: 8px 13px; border: 1px solid rgba(202,162,77,.36); border-radius: 999px; color: var(--gold-light); background: rgba(202,162,77,.06); font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 22px; }
.service-kicker svg { width: 17px; height: 17px; }
.hero-visual { position: relative; min-height: 565px; display: flex; align-items: center; justify-content: center; }
.portrait-frame {
  position: relative;
  width: min(420px, 100%);
  height: 560px;
  border-radius: 215px 215px 26px 26px;
  overflow: hidden;
  border: 1px solid rgba(239,209,138,.52);
  box-shadow: 0 36px 90px rgba(0,0,0,.48), inset 0 0 0 8px rgba(255,255,255,.025);
  background: #1c1712;
}
.portrait-frame::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(7,6,5,.9) 0%, transparent 37%, rgba(7,6,5,.08) 100%); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 14%; filter: contrast(1.03) saturate(.84); }
.portrait-caption { position: absolute; z-index: 3; left: 33px; right: 33px; bottom: 28px; }
.portrait-caption strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; display: block; }
.portrait-caption span { color: rgba(255,255,255,.67); font-size: .82rem; }
.hero-seal { position: absolute; z-index: 4; right: -5px; top: 65px; width: 128px; height: 128px; border-radius: 50%; display: grid; place-items: center; text-align: center; color: var(--gold-light); background: rgba(13,11,8,.9); border: 1px solid rgba(239,209,138,.45); box-shadow: 0 15px 40px rgba(0,0,0,.38); font-size: .73rem; line-height: 1.3; text-transform: uppercase; letter-spacing: .1em; }
.hero-seal strong { display:block; font-family: var(--serif); font-size: 1.55rem; letter-spacing: 0; font-weight: 500; }
.hero-icon-watermark { position: absolute; left: -30px; bottom: 25px; width: 190px; height: 190px; color: var(--gold); opacity: .12; }
.hero-card { position: absolute; z-index: 5; left: -60px; bottom: 145px; width: 230px; padding: 18px 20px; background: rgba(255,253,248,.96); color: var(--text); border-radius: 16px; box-shadow: var(--shadow); border: 1px solid rgba(202,162,77,.24); }
.hero-card small { display: block; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: .68rem; margin-bottom: 5px; }
.hero-card strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; line-height: 1.25; display: block; }

.trust-strip { position: relative; z-index: 6; margin-top: -62px; }
.trust-panel { display: grid; grid-template-columns: repeat(4,1fr); background: rgba(255,253,248,.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; }
.trust-item { padding: 24px 26px; min-height: 108px; display:flex; align-items:center; gap: 15px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { flex:0 0 auto; width: 39px; height: 39px; display:grid; place-items:center; border-radius:50%; background: rgba(202,162,77,.12); color: var(--gold-dark); }
.trust-icon svg { width: 20px; height: 20px; }
.trust-item strong { display:block; font-family:var(--serif); font-weight:500; font-size:1.13rem; line-height:1.15; }
.trust-item span { color:var(--muted); font-size:.79rem; }

/* Sections */
.section { padding: 112px 0; }
.section-sm { padding: 76px 0; }
.section-cream { background: var(--cream); }
.section-dark { color:#fff; background:
  radial-gradient(circle at 85% 15%, rgba(202,162,77,.13), transparent 28%),
  linear-gradient(135deg, #0b0a09, #1a1611); }
.section-dark .section-intro { color: rgba(255,255,255,.66); }
.section-heading { display:flex; justify-content:space-between; align-items:flex-end; gap:45px; margin-bottom:50px; }
.section-heading > div:first-child { max-width:760px; }
.grid-2 { display:grid; grid-template-columns: repeat(2,1fr); gap:28px; }
.grid-3 { display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.grid-4 { display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.card { background:var(--paper); border:1px solid rgba(97,72,34,.13); border-radius:var(--radius); padding:30px; box-shadow: 0 15px 40px rgba(39,28,12,.05); }
.card-icon { width:52px; height:52px; display:grid; place-items:center; color:var(--gold-dark); background:rgba(202,162,77,.12); border:1px solid rgba(202,162,77,.22); border-radius:15px; margin-bottom:20px; }
.card-icon svg { width:25px; height:25px; }
.card h3 { margin-bottom:10px; }
.card p { color:var(--muted); margin-bottom:0; font-size:.95rem; }
.issue-card { position:relative; overflow:hidden; min-height:235px; }
.issue-card::after { content:''; position:absolute; width:120px; height:120px; border:1px solid rgba(202,162,77,.15); border-radius:50%; right:-42px; bottom:-42px; }
.notice-box { display:grid; grid-template-columns:auto 1fr; gap:18px; align-items:start; background:#fff8e7; border:1px solid rgba(202,162,77,.4); border-radius:18px; padding:25px; margin-top:34px; }
.notice-box svg { width:27px; height:27px; color:var(--gold-dark); margin-top:2px; }
.notice-box strong { display:block; margin-bottom:3px; }
.notice-box p { color:#6e5b39; margin:0; font-size:.94rem; }

/* Two legal paths */
.dual-analysis { display:grid; grid-template-columns: .86fr 1.14fr; gap:55px; align-items:center; }
.dual-visual { position:relative; min-height:500px; border-radius:30px; background:linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.015)); border:1px solid var(--white-line); overflow:hidden; }
.dual-visual::before { content:''; position:absolute; inset:45px; border:1px solid rgba(202,162,77,.24); border-radius:50%; }
.dual-visual::after { content:''; position:absolute; width:280px; height:280px; border-radius:50%; background:radial-gradient(circle, rgba(202,162,77,.22), transparent 70%); left:50%; top:50%; transform:translate(-50%,-50%); }
.dual-mark { position:absolute; inset:0; display:grid; place-items:center; z-index:2; }
.dual-mark svg { width:170px; height:170px; color:var(--gold-light); opacity:.9; }
.dual-pill { position:absolute; z-index:3; padding:12px 16px; border-radius:999px; border:1px solid rgba(239,209,138,.35); background:rgba(8,7,6,.75); color:#fff; font-size:.82rem; }
.dual-pill.one { left:30px; top:95px; }
.dual-pill.two { right:25px; bottom:90px; }
.path-list { display:grid; gap:16px; margin-top:28px; }
.path-item { display:grid; grid-template-columns:42px 1fr; gap:15px; padding:20px; border:1px solid var(--white-line); border-radius:17px; background:rgba(255,255,255,.035); }
.path-number { width:42px; height:42px; border-radius:50%; display:grid; place-items:center; color:var(--gold-light); border:1px solid rgba(239,209,138,.42); font-family:var(--serif); }
.path-item strong { display:block; margin-bottom:4px; }
.path-item p { color:rgba(255,255,255,.62); margin:0; font-size:.9rem; }

/* Documents & timeline */
.docs-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:62px; align-items:start; }
.check-list { list-style:none; padding:0; margin:28px 0 0; display:grid; grid-template-columns:repeat(2,1fr); gap:13px; }
.check-list li { position:relative; padding:13px 14px 13px 42px; border-radius:12px; background:#fff; border:1px solid rgba(97,72,34,.1); font-size:.91rem; }
.check-list li::before { content:'✓'; position:absolute; left:14px; top:12px; width:19px; height:19px; border-radius:50%; display:grid; place-items:center; background:rgba(202,162,77,.17); color:var(--gold-dark); font-weight:900; font-size:.7rem; }
.urgency-card { padding:36px; border-radius:26px; color:#fff; background:linear-gradient(145deg,#15120f,#2a2117); box-shadow:var(--shadow); border:1px solid rgba(202,162,77,.22); }
.urgency-card .big-number { font-family:var(--serif); font-size:4rem; color:var(--gold-light); line-height:1; margin:8px 0 12px; }
.urgency-card p { color:rgba(255,255,255,.68); }
.timeline { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:48px; }
.step { position:relative; padding:0 25px; text-align:center; }
.step::before { content:''; position:absolute; top:27px; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent); opacity:.5; }
.step:first-child::before { left:50%; }
.step:last-child::before { right:50%; }
.step-number { position:relative; z-index:2; width:56px; height:56px; margin:0 auto 20px; display:grid; place-items:center; border-radius:50%; background:var(--paper); border:1px solid var(--gold); color:var(--gold-dark); font-family:var(--serif); font-size:1.35rem; box-shadow:0 0 0 8px var(--cream); }
.step h3 { font-size:1.2rem; }
.step p { color:var(--muted); font-size:.88rem; }

/* Founder and team */
.founder { display:grid; grid-template-columns:.8fr 1.2fr; gap:65px; align-items:center; }
.founder-photo { position:relative; height:650px; border-radius:32px; overflow:hidden; border:1px solid rgba(239,209,138,.42); }
.founder-photo img { width:100%; height:100%; object-fit:cover; object-position:center 16%; filter:saturate(.78) contrast(1.05); }
.founder-photo::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(8,7,6,.68),transparent 42%); }
.founder-photo-badge { position:absolute; z-index:2; left:25px; bottom:25px; background:rgba(8,7,6,.84); border:1px solid rgba(239,209,138,.38); border-radius:16px; padding:16px 18px; }
.founder-photo-badge strong { display:block; font-family:var(--serif); font-size:1.2rem; }
.founder-photo-badge span { font-size:.76rem; color:rgba(255,255,255,.65); }
.founder-copy p { color:rgba(255,255,255,.68); }
.credentials { display:grid; grid-template-columns:repeat(2,1fr); gap:13px; margin:28px 0; }
.credential { border:1px solid var(--white-line); background:rgba(255,255,255,.035); padding:16px; border-radius:14px; }
.credential strong { display:block; color:var(--gold-light); font-family:var(--serif); font-weight:500; font-size:1.04rem; }
.credential span { color:rgba(255,255,255,.58); font-size:.78rem; }
.profile-links { display:flex; flex-wrap:wrap; gap:12px; }
.profile-links a { color:var(--gold-light); text-decoration:none; border-bottom:1px solid rgba(239,209,138,.45); font-size:.88rem; }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:45px; }
.team-card { overflow:hidden; border-radius:20px; background:#fff; border:1px solid rgba(97,72,34,.13); }
.team-photo { height:280px; overflow:hidden; background:#17130f; }
.team-photo img { width:100%; height:100%; object-fit:cover; object-position:center 15%; filter:saturate(.82); transition:transform .4s ease; }
.team-card:hover .team-photo img { transform:scale(1.035); }
.team-info { padding:20px; }
.team-info strong { display:block; font-family:var(--serif); font-size:1.1rem; font-weight:500; }
.team-info span { color:var(--muted); font-size:.79rem; }

/* Reviews */
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:42px; }
.review { position:relative; padding:30px; border-radius:20px; background:#fff; border:1px solid rgba(97,72,34,.13); }
.review::before { content:'“'; position:absolute; right:22px; top:8px; font-family:var(--serif); font-size:5rem; color:rgba(202,162,77,.16); line-height:1; }
.stars { color:#b7862f; letter-spacing:.12em; font-size:.85rem; margin-bottom:18px; }
.review blockquote { margin:0 0 18px; font-family:var(--serif); font-size:1.18rem; line-height:1.45; }
.review cite { color:var(--muted); font-style:normal; font-size:.8rem; }
.review-note { margin-top:22px; color:var(--muted); font-size:.77rem; }

/* FAQ */
.faq-list { margin-top:40px; border-top:1px solid rgba(97,72,34,.15); }
.faq-item { border-bottom:1px solid rgba(97,72,34,.15); }
.faq-question { width:100%; display:flex; align-items:center; justify-content:space-between; gap:25px; padding:24px 0; background:transparent; border:0; text-align:left; cursor:pointer; color:var(--text); font-family:var(--serif); font-size:1.25rem; }
.faq-question span:last-child { width:30px; height:30px; border:1px solid rgba(202,162,77,.42); border-radius:50%; display:grid; place-items:center; color:var(--gold-dark); flex:0 0 auto; transition:transform .2s; font-family:var(--sans); }
.faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .26s ease; }
.faq-answer > div { overflow:hidden; }
.faq-answer p { color:var(--muted); padding:0 50px 0 0; margin:0; }
.faq-item.open .faq-answer { grid-template-rows:1fr; }
.faq-item.open .faq-answer p { padding-bottom:24px; }
.faq-item.open .faq-question span:last-child { transform:rotate(45deg); }

/* CTA/footer */
.final-cta { position:relative; overflow:hidden; padding:100px 0; color:#fff; background:linear-gradient(125deg,#17130f,#2d2115); }
.final-cta::after { content:''; position:absolute; width:530px; height:530px; border-radius:50%; right:-160px; top:-240px; border:1px solid rgba(239,209,138,.24); box-shadow:0 0 0 55px rgba(202,162,77,.03),0 0 0 110px rgba(202,162,77,.02); }
.cta-grid { position:relative; z-index:2; display:grid; grid-template-columns:1.2fr .8fr; gap:50px; align-items:center; }
.cta-card { padding:28px; border-radius:20px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.11); }
.cta-person { display:flex; gap:16px; align-items:center; margin-bottom:18px; }
.cta-person img { width:58px; height:58px; border-radius:50%; object-fit:cover; object-position:center 14%; border:1px solid rgba(239,209,138,.5); }
.cta-person strong { display:block; }
.cta-person span { color:rgba(255,255,255,.62); font-size:.78rem; }
.cta-card p { color:rgba(255,255,255,.67); font-size:.9rem; }
.site-footer { background:#070605; color:rgba(255,255,255,.63); padding:68px 0 32px; }
.footer-grid { display:grid; grid-template-columns:1.2fr .8fr .8fr; gap:55px; }
.footer-logo { width:210px; margin-bottom:18px; }
.footer-title { color:#fff; font-family:var(--serif); font-size:1.1rem; margin-bottom:14px; }
.footer-links { list-style:none; margin:0; padding:0; }
.footer-links li { margin:8px 0; }
.footer-links a { text-decoration:none; }
.footer-links a:hover { color:var(--gold-light); }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; border-top:1px solid rgba(255,255,255,.08); margin-top:45px; padding-top:25px; font-size:.74rem; }
.legal-note { font-size:.75rem; color:rgba(255,255,255,.45); max-width:850px; }

/* Joinchat preview */
.joinchat-wrap { position:fixed; right:22px; bottom:22px; z-index:110; display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
.joinchat-panel { width:325px; border-radius:20px; overflow:hidden; background:#fff; box-shadow:0 24px 72px rgba(0,0,0,.3); transform:translateY(16px) scale(.96); opacity:0; visibility:hidden; transition:.22s ease; border:1px solid rgba(202,162,77,.25); }
.joinchat-wrap.open .joinchat-panel { transform:none; opacity:1; visibility:visible; }
.joinchat-head { display:flex; align-items:center; gap:13px; padding:18px; color:#fff; background:linear-gradient(125deg,#16120d,#2c2116); }
.joinchat-head img { width:48px; height:48px; object-fit:cover; object-position:center 14%; border-radius:50%; border:1px solid rgba(239,209,138,.55); }
.joinchat-head strong { display:block; }
.joinchat-head span { color:rgba(255,255,255,.62); font-size:.75rem; }
.joinchat-body { padding:17px; background:#f7f2e8; }
.chat-bubble { background:#fff; border-radius:6px 16px 16px 16px; padding:12px 14px; font-size:.87rem; box-shadow:0 7px 20px rgba(20,13,4,.06); }
.joinchat-action { display:flex; margin:14px 17px 17px; background:linear-gradient(105deg,#9c7229,#efd18a,#ad8232); color:#120e08; border-radius:12px; min-height:48px; align-items:center; justify-content:center; gap:8px; text-decoration:none; font-weight:850; }
.joinchat-button { width:64px; height:64px; border-radius:50%; border:1px solid rgba(239,209,138,.8); background:linear-gradient(145deg,#b88932,#f1d586 55%,#916925); color:#100d08; box-shadow:0 14px 36px rgba(0,0,0,.28); cursor:pointer; display:grid; place-items:center; position:relative; }
.joinchat-button svg { width:29px; height:29px; }
.joinchat-tooltip { position:absolute; right:76px; white-space:nowrap; padding:9px 13px; background:#15120f; color:#fff; border-radius:9px; font-size:.78rem; box-shadow:0 8px 22px rgba(0,0,0,.22); }
.joinchat-tooltip::after { content:''; position:absolute; right:-5px; top:50%; transform:translateY(-50%) rotate(45deg); width:10px; height:10px; background:#15120f; }

/* Overview/index */
.overview-hero { min-height:620px; padding:130px 0 85px; color:#fff; background:radial-gradient(circle at 70% 15%,rgba(202,162,77,.17),transparent 32%),linear-gradient(135deg,#080706,#1b1610); }
.overview-hero .logo-main { width:310px; margin-bottom:34px; }
.overview-hero p { max-width:760px; color:rgba(255,255,255,.7); font-size:1.1rem; }
.page-cards { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:-58px; position:relative; z-index:3; }
.page-card { min-height:360px; padding:36px; border-radius:24px; color:#fff; text-decoration:none; position:relative; overflow:hidden; background:linear-gradient(135deg,#17130f,#2b2117); border:1px solid rgba(239,209,138,.27); box-shadow:var(--shadow); }
.page-card::after { content:''; position:absolute; width:260px;height:260px;border-radius:50%;right:-100px;bottom:-120px;border:1px solid rgba(239,209,138,.26);box-shadow:0 0 0 45px rgba(202,162,77,.035); }
.page-card .card-number { color:var(--gold-light); font-family:var(--serif); font-size:3rem; opacity:.7; }
.page-card h2 { font-size:2.15rem; margin:45px 0 15px; }
.page-card p { color:rgba(255,255,255,.64); max-width:520px; }
.page-card .link { color:var(--gold-light); font-weight:800; font-size:.88rem; }
.spec-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.spec { padding:26px; border:1px solid rgba(97,72,34,.13); border-radius:18px; background:#fff; }
.spec strong { display:block; margin-bottom:8px; }
.spec p { margin:0; color:var(--muted); font-size:.9rem; }

/* Privacy */
.privacy-hero { padding:135px 0 70px; color:#fff; background:linear-gradient(135deg,#090807,#211910); }
.privacy-content { padding:80px 0; }
.privacy-content h2 { font-size:2rem; margin-top:48px; }
.privacy-content h3 { font-size:1.3rem; margin-top:32px; }
.privacy-content p, .privacy-content li { color:var(--muted); }

@media (max-width: 1040px) {
  .main-nav { gap:18px; }
  .main-nav a:not(.header-cta) { display:none; }
  .hero-grid { gap:32px; grid-template-columns:1.04fr .96fr; }
  .hero-card { left:-22px; }
  .trust-panel { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right:0; }
  .trust-item:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .grid-4, .team-grid { grid-template-columns:repeat(2,1fr); }
  .timeline { grid-template-columns:repeat(2,1fr); row-gap:42px; }
  .step:nth-child(2)::before { right:50%; }
  .step:nth-child(3)::before { left:50%; }
}
@media (max-width: 820px) {
  .container, .narrow { width:min(100% - 28px, 720px); }
  .site-header { height:70px; }
  .brand img { width:160px; }
  .main-nav { display:none; position:fixed; inset:70px 0 auto; padding:25px 20px 30px; background:rgba(8,7,6,.98); flex-direction:column; align-items:stretch; border-bottom:1px solid rgba(255,255,255,.08); }
  .main-nav.open { display:flex; }
  .main-nav a:not(.header-cta) { display:block; padding:8px 0; font-size:1rem; }
  .header-cta { text-align:center; margin-top:8px; }
  .menu-toggle { display:block; }
  .hero { padding:118px 0 105px; min-height:auto; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { text-align:left; }
  .hero-visual { min-height:500px; margin-top:12px; }
  .portrait-frame { width:min(390px,94%); height:500px; }
  .hero-seal { right:0; top:34px; width:110px; height:110px; }
  .hero-card { left:0; bottom:35px; width:215px; }
  .hero-icon-watermark { left:10px; }
  .trust-strip { margin-top:-50px; }
  .section { padding:82px 0; }
  .section-heading { display:block; }
  .grid-2, .grid-3, .docs-grid, .dual-analysis, .founder, .cta-grid, .footer-grid, .page-cards, .spec-grid { grid-template-columns:1fr; }
  .dual-visual { min-height:420px; order:2; }
  .check-list { grid-template-columns:1fr; }
  .founder-photo { height:560px; }
  .reviews-grid { grid-template-columns:1fr; }
  .footer-bottom { display:block; }
  .joinchat-tooltip { display:none; }
  .joinchat-panel { width:min(325px, calc(100vw - 28px)); }
}
@media (max-width: 520px) {
  .container, .narrow { width:calc(100% - 24px); }
  h1 { font-size:2.65rem; }
  h2 { font-size:2.12rem; }
  .hero { padding-top:104px; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .hero-actions .btn { width:100%; }
  .hero-visual { min-height:450px; }
  .portrait-frame { height:450px; border-radius:170px 170px 22px 22px; }
  .hero-card { left:5px; width:190px; padding:14px; bottom:22px; }
  .hero-seal { width:95px; height:95px; font-size:.62rem; right:2px; top:38px; }
  .hero-seal strong { font-size:1.25rem; }
  .trust-panel { grid-template-columns:1fr; }
  .trust-item { border-right:0!important; border-bottom:1px solid var(--line); min-height:90px; padding:19px; }
  .trust-item:last-child { border-bottom:0; }
  .grid-4, .team-grid, .credentials { grid-template-columns:1fr; }
  .timeline { grid-template-columns:1fr; }
  .step::before { display:none; }
  .step-number { box-shadow:0 0 0 8px var(--cream); }
  .founder-photo { height:500px; }
  .team-photo { height:360px; }
  .final-cta { padding:78px 0; }
  .joinchat-wrap { right:14px; bottom:14px; }
  .joinchat-button { width:59px; height:59px; }
  .page-card { min-height:320px; padding:28px; }
  .page-card h2 { margin-top:35px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto!important; transition:none!important; animation:none!important; }
}
.preview-badge { position:fixed; left:14px; bottom:14px; z-index:109; padding:7px 10px; border-radius:8px; background:rgba(10,9,8,.82); color:rgba(255,255,255,.68); border:1px solid rgba(255,255,255,.12); font-size:.62rem; letter-spacing:.09em; text-transform:uppercase; backdrop-filter:blur(8px); pointer-events:none; }
@media (max-width:520px){.preview-badge{display:none;}}

/* Hero orientado à dor do cliente — versão 2 da prévia */
.hero.hero-pain {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 850px;
  padding: 150px 0 120px;
  overflow: hidden;
  color: #fff;
  background-color: #080706;
  background-repeat: no-repeat;
}
.hero.hero-pain::before,
.hero.hero-pain::after { content: none; }
.hero-incapacidade {
  background-image:
    radial-gradient(circle at 23% 34%, rgba(202,162,77,.13), transparent 27%),
    linear-gradient(90deg, rgba(7,6,5,1) 0%, rgba(7,6,5,.98) 29%, rgba(7,6,5,.9) 47%, rgba(7,6,5,.5) 67%, rgba(7,6,5,.16) 100%),
    url('../img/hero-incapacidade.jpg');
  background-size: auto, auto, cover;
  background-position: 23% 34%, center, 59% center;
}
.hero-ppp {
  background-image:
    radial-gradient(circle at 23% 34%, rgba(202,162,77,.13), transparent 27%),
    linear-gradient(90deg, rgba(7,6,5,1) 0%, rgba(7,6,5,.98) 31%, rgba(7,6,5,.91) 49%, rgba(7,6,5,.55) 67%, rgba(7,6,5,.18) 100%),
    url('../img/hero-ppp.jpg');
  background-size: auto, auto, cover;
  background-position: 23% 34%, center, 58% center;
}
.hero-bpc {
  background-image:
    radial-gradient(circle at 23% 34%, rgba(202,162,77,.13), transparent 27%),
    linear-gradient(90deg, rgba(7,6,5,1) 0%, rgba(7,6,5,.98) 29%, rgba(7,6,5,.89) 47%, rgba(7,6,5,.48) 67%, rgba(7,6,5,.15) 100%),
    url('../img/hero-bpc.jpg');
  background-size: auto, auto, cover;
  background-position: 23% 34%, center, 60% center;
}
.hero-acidente {
  background-image:
    radial-gradient(circle at 23% 34%, rgba(202,162,77,.13), transparent 27%),
    linear-gradient(90deg, rgba(7,6,5,1) 0%, rgba(7,6,5,.98) 29%, rgba(7,6,5,.9) 47%, rgba(7,6,5,.5) 67%, rgba(7,6,5,.17) 100%),
    url('../img/hero-acidente.jpg');
  background-size: auto, auto, cover;
  background-position: 23% 34%, center, 58% center;
}
.hero-photo,
.hero-shade { display: none; }
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 570px;
}
.hero-pain .hero-copy {
  max-width: 760px;
  padding: 12px 0;
}
.hero-pain .service-kicker {
  margin-bottom: 24px;
  background: rgba(8,7,6,.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-pain h1 {
  max-width: 800px;
  margin: 0 0 24px;
  font-size: clamp(3rem, 4.65vw, 5.2rem);
  line-height: 1.01;
  text-wrap: balance;
  text-shadow: 0 7px 30px rgba(0,0,0,.4);
}
.pain-highlight {
  color: var(--gold-light);
  text-shadow: 0 7px 30px rgba(0,0,0,.45);
}
.hero-solution {
  max-width: 730px;
  margin: 0 0 17px;
  padding: 4px 0 5px 20px;
  border-left: 2px solid var(--gold);
  color: rgba(255,255,255,.93);
  font-family: var(--serif);
  font-size: clamp(1.23rem, 1.75vw, 1.62rem);
  line-height: 1.36;
  text-shadow: 0 4px 20px rgba(0,0,0,.36);
}
.hero-solution strong {
  color: var(--gold-light);
  font-weight: 600;
}
.hero-explainer {
  max-width: 670px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.65;
}
.hero-pain .hero-actions { margin-top: 28px; }
.hero-pain .hero-microcopy {
  position: relative;
  max-width: 670px;
  margin-top: 17px;
  padding-left: 20px;
  color: rgba(255,255,255,.61);
  line-height: 1.55;
}
.hero-pain .hero-microcopy::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
}
.hero-authority {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  max-width: 570px;
  margin-top: 24px;
  padding: 10px 15px 10px 10px;
  border: 1px solid rgba(239,209,138,.28);
  border-radius: 999px;
  background: rgba(8,7,6,.64);
  box-shadow: 0 13px 35px rgba(0,0,0,.24);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}
.hero-authority img {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid rgba(239,209,138,.5);
  border-radius: 50%;
}
.hero-authority strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.15;
}
.hero-authority span {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.59);
  font-size: .72rem;
  line-height: 1.35;
}
.hero-photo-credit {
  position: absolute;
  right: 18px;
  bottom: 72px;
  z-index: 3;
  padding: 5px 8px;
  border-radius: 7px;
  color: rgba(255,255,255,.55);
  background: rgba(7,6,5,.48);
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

@media (max-width: 1040px) {
  .hero-pain .hero-copy { max-width: 700px; }
  .hero-pain h1 { font-size: clamp(2.8rem, 5.8vw, 4.65rem); }
}

@media (max-width: 820px) {
  .hero.hero-pain {
    min-height: 900px;
    padding: 128px 0 96px;
    align-items: flex-end;
    background-size: auto, cover;
  }
  .hero-incapacidade {
    background-image:
      linear-gradient(180deg, rgba(7,6,5,.14) 0%, rgba(7,6,5,.25) 26%, rgba(7,6,5,.78) 51%, rgba(7,6,5,.98) 72%, rgba(7,6,5,1) 100%),
      url('../img/hero-incapacidade.jpg');
    background-position: center, 57% center;
  }
  .hero-ppp {
    background-image:
      linear-gradient(180deg, rgba(7,6,5,.13) 0%, rgba(7,6,5,.24) 26%, rgba(7,6,5,.79) 52%, rgba(7,6,5,.98) 73%, rgba(7,6,5,1) 100%),
      url('../img/hero-ppp.jpg');
    background-position: center, 50% 23%;
  }
  .hero-bpc {
    background-image:
      linear-gradient(180deg, rgba(7,6,5,.13) 0%, rgba(7,6,5,.25) 26%, rgba(7,6,5,.8) 51%, rgba(7,6,5,.98) 72%, rgba(7,6,5,1) 100%),
      url('../img/hero-bpc.jpg');
    background-position: center, 59% center;
  }
  .hero-acidente {
    background-image:
      linear-gradient(180deg, rgba(7,6,5,.13) 0%, rgba(7,6,5,.25) 26%, rgba(7,6,5,.8) 51%, rgba(7,6,5,.98) 72%, rgba(7,6,5,1) 100%),
      url('../img/hero-acidente.jpg');
    background-position: center, 57% center;
  }
  .hero-content { min-height: auto; }
  .hero-pain .hero-copy { max-width: none; }
  .hero-pain h1 {
    max-width: 680px;
    font-size: clamp(2.62rem, 8.4vw, 4rem);
  }
  .hero-solution { max-width: 680px; }
  .hero-photo-credit { display: none; }
}

@media (max-width: 520px) {
  .hero.hero-pain {
    min-height: 885px;
    padding: 112px 0 80px;
  }
  .hero-pain .service-kicker {
    max-width: 100%;
    font-size: .65rem;
    letter-spacing: .08em;
  }
  .hero-pain h1 {
    margin-bottom: 20px;
    font-size: 2.48rem;
    line-height: 1.03;
  }
  .hero-solution {
    padding-left: 15px;
    font-size: 1.18rem;
  }
  .hero-explainer { font-size: .94rem; }
  .hero-pain .hero-actions { margin-top: 24px; }
  .hero-pain .hero-microcopy { padding-left: 16px; }
  .hero-authority {
    width: 100%;
    border-radius: 17px;
    align-items: flex-start;
  }
  .hero-authority img { width: 47px; height: 47px; }
  .hero-authority span { font-size: .68rem; }
}

@media (max-width: 520px) {
  .hero-pain .hero-copy { width: 100%; }
  .hero-pain .service-kicker {
    display: flex;
    width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.3;
  }
  .hero-pain .pain-highlight { display: block; }
}

/* V3 — dual-partner authority, YouTube placeholder and generic team contact */
.authority-avatars {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding-left: 2px;
}
.authority-avatars img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center 16%;
  border: 2px solid rgba(239,209,138,.66);
  border-radius: 50%;
  background: #17120d;
  box-shadow: 0 7px 22px rgba(0,0,0,.28);
}
.authority-avatars img + img { margin-left: -13px; }
.hero-authority.hero-partners { max-width: 690px; }
.hero-authority.hero-partners > div:last-child { min-width: 0; }
.hero-authority.hero-partners strong { line-height: 1.28; }

.video-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(97,72,34,.08);
  border-bottom: 1px solid rgba(97,72,34,.08);
}
.video-section::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  left: -270px;
  bottom: -360px;
  border: 1px solid rgba(202,162,77,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(202,162,77,.025), 0 0 0 120px rgba(202,162,77,.018);
}
.video-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 64px;
  align-items: center;
}
.video-copy h2 { max-width: 650px; }
.video-points {
  list-style: none;
  padding: 0;
  margin: 27px 0 0;
  display: grid;
  gap: 12px;
}
.video-points li {
  position: relative;
  padding: 13px 15px 13px 42px;
  border-radius: 13px;
  border: 1px solid rgba(97,72,34,.12);
  background: rgba(255,255,255,.72);
  color: #3b332a;
  font-size: .91rem;
}
.video-points li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 18px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--cream);
  background: var(--gold);
}
.video-note {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.55;
}
.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 28px;
  border: 1px solid rgba(239,209,138,.4);
  background:
    radial-gradient(circle at 73% 28%, rgba(239,209,138,.14), transparent 28%),
    linear-gradient(145deg, #0a0908, #201810 72%, #0b0907);
  box-shadow: 0 30px 80px rgba(40,27,11,.2);
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  pointer-events: none;
}
.video-placeholder::after {
  content: '';
  position: absolute;
  width: 230px;
  height: 230px;
  right: -90px;
  bottom: -100px;
  border: 1px solid rgba(239,209,138,.17);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(202,162,77,.025);
}
.video-placeholder-inner {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 470px;
  flex-direction: column;
  align-items: center;
  padding: 42px;
  text-align: center;
}
.video-play {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  padding-left: 5px;
  border-radius: 50%;
  border: 1px solid rgba(239,209,138,.7);
  color: #151008;
  background: linear-gradient(145deg, #a8792c, #f0d38b 55%, #9a7028);
  box-shadow: 0 16px 38px rgba(0,0,0,.35);
  font-size: 1.45rem;
}
.video-placeholder strong {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 500;
}
.video-placeholder span {
  margin-top: 8px;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
}
.video-placeholder small {
  margin-top: 18px;
  color: var(--gold-light);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.video-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.partners-section { overflow: hidden; }
.partners-heading { margin-bottom: 46px; }
.partners-heading .section-intro { color: rgba(255,255,255,.64); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.partner-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.052), rgba(255,255,255,.018));
  box-shadow: 0 30px 76px rgba(0,0,0,.22);
}
.partner-card.partner-primary {
  border-color: rgba(239,209,138,.38);
  background: linear-gradient(145deg, rgba(202,162,77,.105), rgba(255,255,255,.025));
}
.partner-photo {
  position: relative;
  height: 435px;
  overflow: hidden;
  background: #15110d;
}
.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  filter: saturate(.82) contrast(1.04);
}
.partner-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,6,.58), transparent 44%);
}
.partner-photo > span {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(239,209,138,.4);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(8,7,6,.78);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.partner-content { padding: 31px 32px 34px; }
.partner-content h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
}
.partner-role {
  margin: 0 0 18px !important;
  color: var(--gold-light) !important;
  font-size: .86rem;
  font-weight: 700;
}
.partner-content > p:not(.eyebrow):not(.partner-role) {
  color: rgba(255,255,255,.64);
  line-height: 1.72;
}
.partner-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}
.partner-badges span {
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 11px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.03);
  font-size: .75rem;
}
.team-grid.team-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-grid.team-grid-three .team-photo { height: 320px; }

.cta-team .authority-avatars { margin-right: 2px; }
.cta-team .authority-avatars img {
  width: 56px;
  height: 56px;
}
.cta-team .authority-avatars img + img { margin-left: -15px; }
.joinchat-head .joinchat-brand {
  object-fit: contain;
  object-position: center;
  padding: 5px;
  background: #0c0a08;
}

@media (max-width: 1040px) {
  .partners-grid { gap: 20px; }
  .partner-photo { height: 390px; }
  .video-grid { gap: 40px; }
}

@media (max-width: 820px) {
  .video-grid, .partners-grid { grid-template-columns: 1fr; }
  .video-copy { max-width: 700px; }
  .video-placeholder { order: 2; }
  .partner-photo { height: 520px; }
  .team-grid.team-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-authority.hero-partners { max-width: 100%; }
}

@media (max-width: 520px) {
  .authority-avatars img { width: 46px; height: 46px; }
  .hero-authority.hero-partners { gap: 10px; }
  .hero-authority.hero-partners strong { font-size: .9rem; }
  .hero-authority.hero-partners span { font-size: .64rem; }
  .video-placeholder { border-radius: 20px; }
  .video-placeholder-inner { padding: 25px 18px; }
  .video-play { width: 62px; height: 62px; margin-bottom: 16px; }
  .video-placeholder strong { font-size: 1.22rem; }
  .video-placeholder span { font-size: .8rem; }
  .video-placeholder small { font-size: .55rem; }
  .partner-photo { height: 430px; }
  .partner-content { padding: 25px 22px 28px; }
  .partner-badges { grid-template-columns: 1fr; }
  .team-grid.team-grid-three { grid-template-columns: 1fr; }
  .team-grid.team-grid-three .team-photo { height: 340px; }
  .cta-team .authority-avatars img { width: 50px; height: 50px; }
}

/* Ajuste v3: no celular, as novas imagens de dor aparecem em um painel próprio antes da pergunta. */
@media (max-width: 520px) {
  .hero-incapacidade,
  .hero-ppp,
  .hero-bpc {
    min-height: auto !important;
    padding: 388px 0 78px !important;
    background-image: none !important;
    background-color: #080706;
  }
  .hero-incapacidade::before,
  .hero-ppp::before,
  .hero-bpc::before {
    content: '' !important;
    display: block !important;
    position: absolute;
    z-index: 0;
    top: 70px;
    left: 0;
    width: 100%;
    height: 306px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(239,209,138,.18);
  }
  .hero-incapacidade::after,
  .hero-ppp::after,
  .hero-bpc::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    z-index: 1;
    top: 70px;
    left: 0;
    width: 100%;
    height: 307px;
    background: linear-gradient(180deg, rgba(6,5,4,.04) 0%, rgba(6,5,4,.04) 56%, rgba(6,5,4,.78) 89%, #080706 100%);
    pointer-events: none;
  }
  .hero-incapacidade::before { background-image: url('../img/hero-incapacidade-mobile.webp'); background-position: 50% 50%; }
  .hero-ppp::before { background-image: url('../img/hero-ppp-mobile.webp'); background-position: 50% 40%; }
  .hero-bpc::before { background-image: url('../img/hero-bpc-mobile.webp'); background-position: 50% 44%; }
  .hero-incapacidade .hero-content,
  .hero-ppp .hero-content,
  .hero-bpc .hero-content { position: relative; z-index: 2; }
}
@media (max-width: 520px) {
  .hero-incapacidade::before,
  .hero-ppp::before,
  .hero-bpc::before {
    inset: auto !important;
    opacity: 1 !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .hero-incapacidade::after,
  .hero-ppp::after,
  .hero-bpc::after {
    inset: auto !important;
    opacity: 1 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }
}
@media (max-width: 520px) {
  .hero-incapacidade::before,
  .hero-ppp::before,
  .hero-bpc::before {
    inset: 70px 0 auto 0 !important;
    width: 100% !important;
    height: 306px !important;
  }
  .hero-incapacidade::after,
  .hero-ppp::after,
  .hero-bpc::after {
    inset: 70px 0 auto 0 !important;
    width: 100% !important;
    height: 307px !important;
  }
}


/* ===== V4: homepage, reviews and address ===== */
.home-page { background: #090806; }
.home-page main { background: var(--paper); }
.home-hero-v4 {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: #fff;
  background: #090806;
}
.home-hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('../img/carlos-felipe-hero.webp');
  background-size: cover;
  background-position: 30% center;
  filter: saturate(.82) contrast(1.03);
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,6,5,.08) 0%, rgba(7,6,5,.2) 38%, rgba(7,6,5,.78) 58%, rgba(7,6,5,.98) 78%, #070605 100%),
    linear-gradient(180deg, rgba(7,6,5,.28), transparent 22%, transparent 72%, rgba(7,6,5,.65));
}
.home-hero-v4::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 79% 28%, rgba(202,162,77,.17), transparent 28%);
}
.home-hero-inner {
  position: relative;
  z-index: 3;
  min-height: 860px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 86px;
  padding-bottom: 70px;
}
.home-hero-copy { width: min(590px, 49%); }
.home-hero-copy h1 { margin-bottom: 25px; font-size: clamp(3.1rem, 5.15vw, 5.6rem); }
.home-hero-copy .lead { max-width: 590px; }
.home-hero-signature {
  position: absolute;
  z-index: 4;
  left: max(26px, calc((100vw - 1180px)/2));
  bottom: 37px;
  display: grid;
  grid-template-columns: auto;
  gap: 1px;
  padding: 17px 20px;
  border: 1px solid rgba(239,209,138,.28);
  border-radius: 15px;
  background: rgba(8,7,6,.72);
  backdrop-filter: blur(15px);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.home-hero-signature strong { font-family: var(--serif); font-weight: 500; font-size: 1rem; color: #fff; }
.home-hero-signature span { color: rgba(255,255,255,.62); font-size: .67rem; margin-bottom: 8px; }
.home-hero-signature span:last-child { margin-bottom: 0; }

.home-trust-v4 { position: relative; z-index: 5; margin-top: -1px; background: #0a0908; border-top: 1px solid rgba(239,209,138,.17); }
.home-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.home-trust-grid > div { min-height: 145px; padding: 31px 26px; border-right: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; justify-content: center; }
.home-trust-grid > div:last-child { border-right: 0; }
.home-trust-grid strong { color: var(--gold-light); font-family: var(--serif); font-size: 1.75rem; font-weight: 500; line-height: 1.1; }
.home-trust-grid span { margin-top: 8px; color: rgba(255,255,255,.58); font-size: .79rem; line-height: 1.45; }

.home-about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: start; }
.home-about-copy h2 { max-width: 760px; }
.home-values-v4 { display: grid; gap: 18px; margin-top: 37px; }
.home-values-v4 article { display: grid; grid-template-columns: 48px 1fr; gap: 17px; padding-top: 18px; border-top: 1px solid rgba(97,72,34,.14); }
.home-values-v4 article > span { color: var(--gold-dark); font-family: var(--serif); font-size: 1.35rem; }
.home-values-v4 strong { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.home-values-v4 p { margin: 0; color: var(--muted); font-size: .92rem; }
.home-about-panel { position: sticky; top: 100px; padding: 39px; border-radius: 28px; color: #fff; background: linear-gradient(145deg,#0c0a08,#2a2117); border: 1px solid rgba(239,209,138,.24); box-shadow: var(--shadow); }
.home-about-panel h3 { font-size: 2.15rem; }
.home-check-list { margin: 28px 0 30px; }
.home-check-list li { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.72); }

.home-service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 23px; }
.home-service-card { position: relative; min-height: 375px; padding: 35px; overflow: hidden; border: 1px solid rgba(97,72,34,.14); border-radius: 25px; color: var(--text); background: #fff; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.home-service-card:hover { transform: translateY(-5px); border-color: rgba(202,162,77,.48); box-shadow: 0 26px 65px rgba(40,28,10,.13); }
.home-service-card::after { content:''; position:absolute; right:-90px; bottom:-110px; width:260px; height:260px; border-radius:50%; border:1px solid rgba(202,162,77,.2); box-shadow:0 0 0 42px rgba(202,162,77,.025); }
.service-index { position:absolute; right:28px; top:25px; color:rgba(202,162,77,.45); font-family:var(--serif); font-size:2.5rem; }
.service-card-icon { width:55px; height:55px; display:grid; place-items:center; border-radius:50%; color:var(--gold-dark); background:rgba(202,162,77,.12); font-family:var(--serif); font-size:1.25rem; }
.home-service-card h3 { margin: 72px 0 15px; font-size: 2rem; max-width: 410px; }
.home-service-card p { max-width: 520px; color: var(--muted); }
.home-service-card strong { position:absolute; z-index:2; left:35px; bottom:32px; color:var(--gold-dark); font-size:.85rem; }

.integration-grid-v4 { display:grid; grid-template-columns:.85fr 1.15fr; gap:75px; align-items:start; }
.integration-flow-v4 { display:grid; grid-template-columns:repeat(2,1fr); gap:17px; }
.integration-flow-v4 article { min-height:220px; padding:26px; border:1px solid rgba(255,255,255,.1); border-radius:20px; background:rgba(255,255,255,.035); }
.integration-flow-v4 article > span { display:block; color:var(--gold-light); font-family:var(--serif); font-size:1.4rem; margin-bottom:30px; }
.integration-flow-v4 strong { display:block; color:#fff; font-family:var(--serif); font-size:1.25rem; font-weight:500; }
.integration-flow-v4 p { color:rgba(255,255,255,.58); font-size:.86rem; margin:10px 0 0; }
.home-partners-v4 { border-top:1px solid rgba(255,255,255,.05); }
.home-team-v4 { background: var(--paper); }

/* Review carousel */
.reviews-section-v4 { overflow: hidden; }
.reviews-heading-v4 { margin-bottom: 40px; }
.reviews-carousel-shell { position:relative; }
.reviews-track-v4 { display:grid; grid-auto-flow:column; grid-auto-columns:minmax(330px, calc((100% - 44px)/3)); gap:22px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth; scrollbar-width:none; padding:5px 2px 18px; outline:none; }
.reviews-track-v4::-webkit-scrollbar { display:none; }
.review-card-v4 { scroll-snap-align:start; min-height:355px; padding:28px; border:1px solid rgba(97,72,34,.14); border-radius:22px; background:#fff; box-shadow:0 14px 38px rgba(45,31,10,.055); display:flex; flex-direction:column; }
.review-card-head { display:grid; grid-template-columns:38px 1fr auto; align-items:center; gap:11px; }
.google-review-mark { width:36px; height:36px; display:grid; place-items:center; border-radius:50%; font-weight:900; font-size:1rem; color:#2f64c5; background:#fff; border:1px solid #e5e0d7; box-shadow:0 5px 15px rgba(0,0,0,.06); }
.review-card-meta { min-width:0; display:flex; flex-direction:column; }
.review-card-meta span { color:var(--text); font-weight:750; font-size:.69rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.review-card-meta time, .review-card-meta > span:last-child { color:var(--muted); font-weight:500; font-size:.65rem; }
.review-mention { padding:6px 9px; border-radius:999px; color:var(--muted); background:var(--cream); font-size:.58rem; font-weight:800; letter-spacing:.05em; text-transform:uppercase; }
.review-mention.named { color:#6b4b16; background:rgba(239,209,138,.38); border:1px solid rgba(202,162,77,.25); }
.review-card-v4 .stars { margin:25px 0 14px; }
.review-card-v4 blockquote { margin:0; color:var(--text); font-family:var(--serif); font-size:1.2rem; line-height:1.48; flex:1; }
.review-author-v4 { display:flex; align-items:center; gap:12px; margin-top:24px; padding-top:18px; border-top:1px solid rgba(97,72,34,.1); }
.review-avatar { width:39px; height:39px; display:grid; place-items:center; border-radius:50%; color:#fff; background:linear-gradient(135deg,#8d6827,#d6b566); font-size:.7rem; font-weight:850; }
.review-author-v4 strong { display:block; font-size:.78rem; }
.review-author-v4 small { display:block; color:var(--muted); font-size:.62rem; }
.reviews-nav { position:absolute; z-index:4; top:50%; transform:translateY(-50%); width:48px; height:48px; border-radius:50%; border:1px solid rgba(202,162,77,.36); color:var(--gold-dark); background:rgba(255,253,248,.96); box-shadow:0 13px 32px rgba(37,25,7,.15); cursor:pointer; font-size:1.25rem; }
.reviews-prev { left:-23px; }
.reviews-next { right:-23px; }
.reviews-nav:hover { background:var(--ink); color:var(--gold-light); }
.reviews-footer-v4 { display:flex; justify-content:space-between; gap:28px; align-items:flex-start; margin-top:18px; }
.reviews-footer-v4 .review-note { margin:0; max-width:800px; }
.reviews-public-link { flex:0 0 auto; color:var(--gold-dark); font-weight:800; font-size:.78rem; text-decoration:none; border-bottom:1px solid rgba(202,162,77,.4); }

.map-pin-v4::first-letter { transform:rotate(45deg); }
.home-final-v4 { border-top:1px solid rgba(239,209,138,.13); }

@media (max-width: 1040px) {
  .home-hero-photo { background-position:20% center; }
  .home-hero-copy { width:53%; }
  .home-trust-grid { grid-template-columns:repeat(2,1fr); }
  .home-trust-grid > div:nth-child(2) { border-right:0; }
  .home-trust-grid > div:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.08); }
  .home-about-grid,.integration-grid-v4 { gap:45px; }
  .reviews-track-v4 { grid-auto-columns:minmax(330px,calc((100% - 22px)/2)); }
}
@media (max-width: 820px) {
  .home-hero-v4 { min-height:auto; padding-top:500px; }
  .home-hero-photo { height:510px; bottom:auto; background-image:url('../img/carlos-felipe-hero-mobile.webp'); background-size:cover; background-position:center 16%; }
  .home-hero-overlay { height:520px; bottom:auto; background:linear-gradient(180deg,rgba(7,6,5,.04),rgba(7,6,5,.06) 55%,rgba(7,6,5,.88) 92%,#070605 100%); }
  .home-hero-inner { min-height:auto; padding:40px 0 82px; justify-content:flex-start; background:#070605; }
  .home-hero-copy { width:100%; }
  .home-hero-copy h1 { font-size:clamp(2.8rem,9vw,4.4rem); }
  .home-hero-signature { display:none; }
  .home-about-grid,.integration-grid-v4 { grid-template-columns:1fr; }
  .home-about-panel { position:static; }
  .home-service-grid { grid-template-columns:1fr; }
  .integration-flow-v4 { grid-template-columns:repeat(2,1fr); }
  .reviews-nav { display:none; }
  .reviews-track-v4 { grid-auto-columns:minmax(310px,78vw); margin-right:-14px; }
  .reviews-footer-v4 { flex-direction:column; }
}
@media (max-width: 520px) {
  .home-hero-v4 { padding-top:370px; }
  .home-hero-photo { height:385px; background-position:center 12%; }
  .home-hero-overlay { height:390px; }
  .home-hero-inner { padding-top:32px; }
  .home-hero-copy h1 { font-size:2.65rem; }
  .home-trust-grid { grid-template-columns:1fr; }
  .home-trust-grid > div { min-height:110px; border-right:0; border-bottom:1px solid rgba(255,255,255,.08); }
  .home-service-card { min-height:390px; padding:28px; }
  .home-service-card h3 { font-size:1.75rem; margin-top:62px; }
  .home-service-card strong { left:28px; bottom:28px; }
  .integration-flow-v4 { grid-template-columns:1fr; }
  .integration-flow-v4 article { min-height:auto; }
  .reviews-track-v4 { grid-auto-columns:88vw; gap:14px; }
  .review-card-v4 { min-height:350px; padding:23px; }
  .review-card-head { grid-template-columns:36px 1fr; }
  .review-mention { grid-column:1/-1; justify-self:start; }
}

/* ZLP 1.3.0 — compact sections, reliable menus, workflow and carousel */
body.zlp-managed .section { padding: 86px 0; }
body.zlp-managed .section-heading { margin-bottom: 38px; }
body.zlp-header-hidden .site-header { display: none !important; }
body.zlp-header-transparent .site-header:not(.scrolled) { display:flex !important; background:transparent !important; border-bottom-color:transparent !important; box-shadow:none !important; }
body.zlp-header-solid .site-header { display:flex !important; background:rgba(7,6,5,.97) !important; }

.zlp-menu-editor { display:grid; gap:10px; margin:10px 0 24px; }
.zlp-menu-row { display:grid; grid-template-columns:minmax(180px,.8fr) minmax(260px,1.2fr); gap:10px; }

.home-practice-card { cursor:default; text-decoration:none; }
.home-practice-card:hover { transform:translateY(-4px); }
.practice-services { margin-top:14px; color:var(--muted); }
.practice-services ul { margin:0; padding-left:19px; display:grid; gap:7px; }
.practice-services li::marker { color:var(--gold-dark); }

.timeline-six { grid-template-columns:repeat(3,1fr); row-gap:34px; }
.timeline-six .step:nth-child(3)::after { display:none; }
.integration-flow-six { grid-template-columns:repeat(3,1fr); }
.integration-flow-six article { min-height:205px; }
.workflow-heading { max-width:790px; margin-bottom:38px; }
.status-whatsapp-card { margin-top:34px; padding:26px 30px; display:flex; align-items:center; justify-content:space-between; gap:28px; border:1px solid rgba(141,104,39,.24); border-radius:18px; background:#fffaf0; box-shadow:0 12px 34px rgba(26,18,8,.07); }
.status-whatsapp-card strong { display:block; font-family:var(--serif); font-size:1.25rem; color:var(--ink); }
.status-whatsapp-card p { margin:7px 0 0; color:var(--muted); max-width:800px; }
.status-whatsapp-card.status-dark { background:rgba(255,255,255,.045); border-color:rgba(239,209,138,.22); box-shadow:none; }
.status-whatsapp-card.status-dark strong { color:#fff; }
.status-whatsapp-card.status-dark p { color:rgba(255,255,255,.64); }
.video-cta { margin-top:20px; display:flex; justify-content:center; }

.joinchat-wrap { pointer-events:none; }
.joinchat-wrap .joinchat-button { pointer-events:auto; text-decoration:none; }
.joinchat-wrap .joinchat-panel { display:none !important; }

.reviews-carousel-shell { padding-inline:30px; }
.reviews-nav { display:grid !important; place-items:center; user-select:none; }
.reviews-prev { left:-2px; }
.reviews-next { right:-2px; }
.reviews-nav:disabled { opacity:.32; cursor:not-allowed; transform:translateY(-50%) scale(.92); }
.reviews-track-v4 { scroll-padding-inline:2px; }

.privacy-content h2 { margin-top:42px; }
.privacy-content ul { display:grid; gap:8px; }
.privacy-final-note { margin-top:40px; padding:22px 24px; border-left:3px solid var(--gold-dark); background:#f8f2e7; }
.privacy-footer-links { display:flex; flex-wrap:wrap; justify-content:center; gap:18px; margin:0 0 24px; padding:0; list-style:none; }

@media (max-width: 980px) {
  .timeline-six, .integration-flow-six { grid-template-columns:repeat(2,1fr); }
  .timeline-six .step:nth-child(3)::after { display:block; }
  .timeline-six .step:nth-child(even)::after { display:none; }
}
@media (max-width: 820px) {
  body.zlp-managed .section { padding:68px 0; }
  .reviews-carousel-shell { padding-inline:24px; }
  .reviews-nav { width:42px; height:42px; }
  .reviews-prev { left:0; }
  .reviews-next { right:0; }
  .status-whatsapp-card { align-items:flex-start; flex-direction:column; }
  .zlp-menu-row { grid-template-columns:1fr; }
}
@media (max-width: 520px) {
  body.zlp-managed .section { padding:54px 0; }
  body.zlp-managed .section-heading { margin-bottom:28px; }
  .timeline-six, .integration-flow-six { grid-template-columns:1fr; }
  .timeline-six .step::after { display:none !important; }
  .reviews-carousel-shell { padding-inline:18px; }
  .reviews-nav { width:38px; height:38px; font-size:1rem; }
  .status-whatsapp-card { padding:22px; }
}


/* Third-party shortcode integrations */
.reviews-track-v4.is-external-shortcode { display:block; overflow:visible; padding:4px 0 10px; scroll-snap-type:none; }
.reviews-track-v4.is-external-shortcode .zlp-external-reviews { width:100%; min-width:0; }
.reviews-nav[hidden] { display:none !important; }
.zlp-social-feed-section { overflow:hidden; }
.zlp-social-feed-shortcode { width:100%; min-width:0; }
.zlp-social-feed-shortcode img, .zlp-external-reviews img { max-width:100%; height:auto; }
.zlp-social-feed-shortcode iframe, .zlp-external-reviews iframe { max-width:100%; }


/* v1.5.1 — Homepage practice-area redesign */
.home-practices-v151 { position:relative; overflow:hidden; }
.home-practices-v151::before { content:''; position:absolute; width:520px; height:520px; right:-230px; top:-260px; border-radius:50%; border:1px solid rgba(202,162,77,.14); box-shadow:0 0 0 70px rgba(202,162,77,.025),0 0 0 140px rgba(202,162,77,.018); pointer-events:none; }
.home-practice-heading-v151 { position:relative; z-index:1; display:grid; grid-template-columns:minmax(0,1.15fr) minmax(300px,.7fr); gap:70px; align-items:end; margin-bottom:46px; }
.home-practice-title-v151 h2 { max-width:760px; margin-bottom:0; }
.home-practice-heading-v151 .section-intro { margin:0 0 4px auto; max-width:510px; }
.home-practice-showcase-v151 { position:relative; z-index:1; display:grid; gap:20px; }
.practice-featured-v151 { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(370px,.95fr); gap:48px; min-height:390px; padding:46px; border-radius:28px; overflow:hidden; color:#fff; background:radial-gradient(circle at 92% 8%,rgba(239,209,138,.15),transparent 32%),linear-gradient(135deg,#0c0a08 0%,#17120d 52%,#2a2117 100%); border:1px solid rgba(239,209,138,.24); box-shadow:0 28px 70px rgba(37,25,7,.16); }
.practice-featured-v151 h3 { margin:55px 0 18px; color:#fff; font-size:clamp(2rem,3.2vw,3.2rem); }
.practice-featured-v151 .practice-summary-v151 { color:rgba(255,255,255,.7); max-width:650px; }
.practice-card-topline-v151 { display:flex; align-items:center; gap:13px; color:var(--gold-light); font-size:.68rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.practice-number-v151 { display:grid; place-items:center; width:38px; height:38px; border:1px solid rgba(239,209,138,.34); border-radius:50%; font-family:var(--serif); font-size:.9rem; letter-spacing:0; }
.practice-summary-v151 { margin:0; color:var(--muted); font-size:.98rem; line-height:1.7; }
.practice-services-v151 { margin-top:26px; }
.practice-services-v151 ul { list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:9px; }
.practice-services-v151 li { margin:0; padding:9px 12px; border:1px solid rgba(202,162,77,.2); border-radius:999px; color:#51483d; background:rgba(255,255,255,.68); font-size:.76rem; font-weight:650; line-height:1.25; }
.practice-services-featured-v151 { align-self:center; margin-top:0; padding:29px; border:1px solid rgba(255,255,255,.09); border-radius:22px; background:rgba(255,255,255,.045); backdrop-filter:blur(12px); }
.practice-services-featured-v151 ul { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
.practice-services-featured-v151 li { border-color:rgba(239,209,138,.2); color:rgba(255,255,255,.76); background:rgba(255,255,255,.05); border-radius:13px; padding:12px 13px; }
.practice-secondary-grid-v151 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.practice-secondary-card-v151 { min-height:365px; padding:31px; border:1px solid rgba(97,72,34,.14); border-radius:24px; background:rgba(255,255,255,.82); box-shadow:0 16px 42px rgba(44,31,9,.055); transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.practice-secondary-card-v151:hover { transform:translateY(-4px); border-color:rgba(202,162,77,.42); box-shadow:0 24px 55px rgba(44,31,9,.1); }
.practice-secondary-card-v151 .practice-card-topline-v151 { color:var(--gold-dark); }
.practice-secondary-card-v151 .practice-number-v151 { border-color:rgba(202,162,77,.28); }
.practice-secondary-card-v151 h3 { margin:35px 0 15px; font-size:1.85rem; }
.practice-secondary-card-v151 .practice-services-v151 { margin-top:25px; padding-top:20px; border-top:1px solid rgba(97,72,34,.1); }
@media (max-width:980px) {
  .home-practice-heading-v151 { grid-template-columns:1fr; gap:20px; margin-bottom:34px; }
  .home-practice-heading-v151 .section-intro { margin-left:0; max-width:720px; }
  .practice-featured-v151 { grid-template-columns:1fr; min-height:0; gap:30px; padding:38px; }
  .practice-featured-v151 h3 { margin-top:38px; }
  .practice-services-featured-v151 { width:100%; }
  .practice-secondary-grid-v151 { grid-template-columns:1fr 1fr; }
}
@media (max-width:680px) {
  .practice-featured-v151 { padding:29px 24px; border-radius:22px; }
  .practice-services-featured-v151 { padding:18px; }
  .practice-services-featured-v151 ul { grid-template-columns:1fr; }
  .practice-secondary-grid-v151 { grid-template-columns:1fr; gap:14px; }
  .practice-secondary-card-v151 { min-height:0; padding:26px 23px; }
  .practice-secondary-card-v151 h3 { margin-top:28px; font-size:1.65rem; }
  .practice-services-v151 li { font-size:.73rem; }
}
