/* =====================================================================
   Prime Property Buyers — Content Pages design system
   Shared by: /important-advice/  /faqs/  /why-us/  /contact/  (+ more)
   Linked root-relative as /lp/shared/pp-pages.css so it resolves from any
   page folder both locally (served from project root) and on the server.
   Brand: navy #010080 (text/accents) · lime #a5c844 (CTAs only)
          green #2d6a3e (ticks) · red #c0392b (warnings)
   ===================================================================== */
:root{
  --navy:#010080; --navy-dark:#00006b; --navy-soft:#2c2c8c; --navy-tint:#f4f4fb;
  --lime:#a5c844; --lime-dark:#8aaa30; --green:#2d6a3e; --green-dark:#1f4d2c; --green-tint:#e8f1eb;
  --red:#c0392b; --red-tint:#fce9e7; --amber:#b7791f; --amber-tint:#fdf3e3;
  --text:#222232; --text-soft:#4a4a5e; --text-muted:#7a7a8e;
  --bg:#ffffff; --bg-alt:#f8f8fb; --border:#e6e6ee; --border-soft:#f0f0f5;
  --radius:10px; --radius-lg:14px;
  --shadow-sm:0 1px 2px rgba(1,0,128,.04); --shadow-md:0 4px 16px rgba(1,0,128,.06); --shadow-lg:0 12px 36px rgba(1,0,128,.10);
  --max-w:1100px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{margin:0; font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif; font-size:17px; line-height:1.65; color:var(--text); background:var(--bg); -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;}
img{max-width:100%; height:auto; display:block;}
a{color:inherit; text-decoration:none;}
.container{max-width:var(--max-w); margin:0 auto; padding:0 1.5rem;}
h1,h2,h3,h4{color:var(--navy); line-height:1.2; margin:0;}
p{margin:0 0 1rem;}
em{font-style:normal; color:var(--navy); font-weight:600;}
.icon{width:1em; height:1em; display:inline-block; vertical-align:-.125em; fill:currentColor;}
.hl{color:var(--green);}
.hl-dark{color:var(--navy);}
.center{text-align:center;}

/* ---- Reveal on scroll ---- */
.reveal{opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);}
.reveal.is-visible{opacity:1; transform:none;}
@media (prefers-reduced-motion:reduce){.reveal{opacity:1; transform:none; transition:none;}}

/* ---- Buttons ---- */
.btn{display:inline-flex; align-items:center; justify-content:center; gap:.5rem; font-weight:800; border-radius:999px; padding:.75rem 1.4rem; font-size:.97rem; line-height:1.2; transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease; cursor:pointer; border:none; text-align:center;}
.btn-primary{background:var(--lime); color:var(--navy-dark); box-shadow:0 6px 18px rgba(165,200,68,.35);}
.btn-primary:hover{background:var(--lime-dark); transform:translateY(-2px);}
.btn-outline{background:transparent; color:var(--navy); border:2px solid var(--navy);}
.btn-outline:hover{background:var(--navy); color:#fff;}
.btn-call{background:rgba(255,255,255,.1); color:#fff; border:2px solid rgba(255,255,255,.4);}
.btn-call:hover{background:rgba(255,255,255,.18);}
.btn-wa{background:#25D366; color:#fff; box-shadow:0 6px 18px rgba(37,211,102,.35);}
.btn-wa:hover{background:#20bd5a; transform:translateY(-2px);}
.btn-lg{padding:.95rem 1.9rem; font-size:1.05rem;}
.btn-wide{width:100%;}

/* ---- Top navigation (mirrors the cash-offer LP header: prominent logo +
   white phone pill, on a solid white bar — with the page menu added) ---- */
.site-nav{position:relative; z-index:50; background:#fff; border-bottom:1px solid var(--border); box-shadow:0 1px 0 rgba(1,0,128,.04);}
.nav-inner{max-width:var(--max-w); margin:0 auto; padding:.6rem 1.5rem; display:flex; align-items:center; gap:1.1rem;}
.nav-brand img{width:172px; height:auto;}
.nav-menu{display:flex; align-items:center; gap:2.1rem; margin-left:auto; list-style:none; padding:0;}
.nav-menu a{font-weight:600; font-size:.95rem; color:var(--text-soft); position:relative; padding:.25rem 0; letter-spacing:.005em; transition:color .15s ease;}
.nav-menu a:hover{color:var(--navy);}
.nav-menu a[aria-current="page"]{color:var(--navy); font-weight:700;}
.nav-menu a[aria-current="page"]::after{content:""; position:absolute; left:0; right:0; bottom:-8px; height:3px; border-radius:3px; background:var(--lime);}
/* LP-style phone pill */
.nav-phone{display:inline-flex; align-items:center; gap:.55rem; padding:.42rem .9rem .42rem .7rem; background:#fff; border:1px solid var(--border); border-radius:999px; box-shadow:0 2px 8px rgba(1,0,128,.07); color:var(--navy); white-space:nowrap; transition:transform .2s, box-shadow .2s, border-color .2s;}
.nav-phone:hover{transform:translateY(-1px); box-shadow:0 4px 12px rgba(1,0,128,.1); border-color:var(--green);}
.nav-phone .icon{width:18px; height:18px; color:var(--navy); flex:none;}
/* number + meta on ONE line, like the LP pill (more compact) */
.nav-phone .num{display:inline-flex; align-items:baseline; gap:.5rem; line-height:1.15; font-weight:800; font-size:.9rem; color:var(--navy); letter-spacing:.02em;}
.nav-phone small{font-weight:500; font-size:.62rem; color:var(--text-muted); letter-spacing:.04em; text-transform:uppercase;}
.nav-cta{flex:0 0 auto;}
.nav-menu-cta{display:none;}                 /* CTAs appear only inside the mobile overlay */
.nav-toggle{display:none; flex:0 0 auto; margin-left:auto; width:42px; height:42px; border:1px solid var(--border); border-radius:10px; background:#fff; cursor:pointer; align-items:center; justify-content:center; color:var(--navy);}
.nav-toggle svg{width:22px; height:22px;}
.nav-ico-close{display:none;}
@media (max-width:1000px){
  /* toggle stays clickable above the overlay; flips to a white X when open */
  .nav-toggle{display:flex; order:3; margin-left:.1rem; position:relative; z-index:110; transition:color .2s ease, border-color .2s ease, background .2s ease;}
  .site-nav.open .nav-toggle{background:transparent; border-color:rgba(255,255,255,.45); color:#fff;}
  .site-nav.open .nav-ico-open{display:none;}
  .site-nav.open .nav-ico-close{display:block;}

  /* ---- full-screen overlay menu ---- */
  .nav-menu{
    position:fixed; inset:0; z-index:100;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:.1rem; margin:0; padding:5.5rem 1.5rem 2.5rem; list-style:none; overflow-y:auto;
    background:radial-gradient(125% 80% at 50% 0%, var(--navy) 0%, var(--navy-dark) 78%);
    opacity:0; visibility:hidden; transform:translateY(-10px);
    transition:opacity .3s ease, transform .35s ease, visibility 0s linear .35s;
  }
  .site-nav.open .nav-menu{opacity:1; visibility:visible; transform:none;
    transition:opacity .3s ease, transform .35s ease;}

  /* big centred links */
  .nav-menu li{width:100%; max-width:340px; text-align:center;}
  .nav-menu li:not(.nav-menu-cta) a{display:block; padding:.72rem 0; font-size:1.5rem; font-weight:700;
    color:#fff; letter-spacing:.01em; border-bottom:1px solid rgba(255,255,255,.09);}
  .nav-menu li:not(.nav-menu-cta) a:hover,
  .nav-menu li:not(.nav-menu-cta) a[aria-current="page"]{color:var(--lime);}
  .nav-menu li:not(.nav-menu-cta) a[aria-current="page"]::after{display:none;}

  /* CTAs at the foot of the overlay — crisp, on-brand, full-width */
  .nav-menu-cta{display:block; max-width:340px; margin-top:.7rem;}
  .nav-menu-cta:nth-child(6){margin-top:1.7rem;}        /* first CTA — extra gap from the links */
  .nav-menu-cta a.btn{display:inline-flex; width:100%; justify-content:center; gap:.55rem; font-size:1.05rem; font-weight:800; padding:.95rem 1.4rem;}
  .nav-menu-cta a.btn .icon{width:20px; height:20px;}
  /* solid white "Call" button — scoped, so the dark CTA band's .btn-call is untouched */
  .nav-menu-cta a.btn-call{background:#fff; color:var(--navy); border:none; box-shadow:0 6px 18px rgba(0,0,0,.22);}
  .nav-menu-cta a.btn-call .icon{color:var(--navy);}
  /* keep each button's own text colour (beats the base .nav-menu a colour) */
  .nav-menu-cta a.btn-primary{color:var(--navy-dark);}
  .nav-menu-cta a.btn-wa{color:#fff;}

  /* staggered entrance for every item (links + CTAs) */
  .nav-menu > li > a{opacity:0; transform:translateY(16px); transition:opacity .45s ease, transform .45s ease;}
  .site-nav.open .nav-menu > li > a{opacity:1; transform:none;}
  .site-nav.open .nav-menu > li:nth-child(1) > a{transition-delay:.07s;}
  .site-nav.open .nav-menu > li:nth-child(2) > a{transition-delay:.12s;}
  .site-nav.open .nav-menu > li:nth-child(3) > a{transition-delay:.17s;}
  .site-nav.open .nav-menu > li:nth-child(4) > a{transition-delay:.22s;}
  .site-nav.open .nav-menu > li:nth-child(5) > a{transition-delay:.27s;}
  .site-nav.open .nav-menu > li:nth-child(6) > a{transition-delay:.34s;}
  .site-nav.open .nav-menu > li:nth-child(7) > a{transition-delay:.4s;}
  .site-nav.open .nav-menu > li:nth-child(8) > a{transition-delay:.46s;}
}
@media (max-width:1000px) and (prefers-reduced-motion:reduce){
  .nav-menu, .nav-menu > li > a{transition:opacity .15s ease !important; transform:none !important;}
}
body.nav-open{overflow:hidden;}
/* Desktop: LP-style two-row right side — logo left (spans both rows),
   phone pill top-right, menu row right-aligned directly beneath it. */
@media (min-width:1001px){
  .nav-inner{display:grid; grid-template-columns:auto 1fr;
             grid-template-areas:"logo phone" "logo menu";
             align-items:center; column-gap:1.5rem; row-gap:.65rem;
             padding:.5rem 1.5rem .95rem;}
  .nav-brand{grid-area:logo; align-self:center;}
  .nav-brand img{width:230px;}
  .nav-actions{grid-area:phone; justify-self:end; display:flex; align-items:center; gap:1.1rem;}
  .nav-menu{grid-area:menu; justify-self:end; margin:0;}
}
@media (max-width:1000px){ .nav-actions{display:flex; gap:.8rem; align-items:center; flex-direction:row; inset:auto; position:static; transform:none; background:none; border:none; padding:0; box-shadow:none; order:2; margin-left:auto;} .nav-actions .nav-phone small{display:none;} }
@media (max-width:560px){ .nav-brand img{width:108px;} .nav-actions .nav-phone .num{display:none;} .nav-cta.btn{padding:.55rem .85rem; font-size:.82rem;} }

/* ---- Hero ---- */
.hero{background:linear-gradient(180deg,var(--navy-tint) 0%, #fff 100%); padding:3.5rem 0 2.75rem; border-bottom:1px solid var(--border-soft);}
.hero-grid{display:grid; grid-template-columns:1.35fr .9fr; gap:2.5rem; align-items:center;}
.hero-grid.solo{grid-template-columns:1fr; max-width:820px; margin:0 auto; text-align:center;}
.kicker{display:inline-flex; align-items:center; gap:.45rem; background:#fff; border:1px solid var(--border); color:var(--navy); font-weight:700; font-size:.8rem; letter-spacing:.06em; text-transform:uppercase; padding:.4rem .8rem; border-radius:999px; box-shadow:var(--shadow-sm); margin-bottom:1.1rem;}
.kicker .icon{color:var(--amber); width:15px; height:15px;}
.hero h1{font-size:clamp(1.9rem,4.4vw,2.9rem); font-weight:900; letter-spacing:-.02em; margin-bottom:1.1rem;}
.hero .lede{font-size:1.1rem; color:var(--text-soft); max-width:62ch;}
.hero-grid.solo .lede{margin-left:auto; margin-right:auto;}
.hero .lede strong{color:var(--navy);}
.hero-badge{background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:1.6rem; box-shadow:var(--shadow-md); text-align:center;}
.hero-badge .shield{width:64px; height:64px; margin:0 auto .9rem; color:var(--green); background:var(--green-tint); border-radius:50%; display:flex; align-items:center; justify-content:center;}
.hero-badge .shield .icon{width:34px; height:34px;}
.hero-badge h3{font-size:1.15rem; margin-bottom:.5rem;}
.hero-badge p{font-size:.92rem; color:var(--text-soft); margin:0;}
.hero-cta{display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.6rem;}
.hero-grid.solo .hero-cta{justify-content:center;}
@media (max-width:820px){ .hero-grid{grid-template-columns:1fr; gap:1.75rem;} .hero-badge{max-width:420px;} }

/* ---- Section shell ---- */
section.block{padding:3.25rem 0;}
section.block.alt{background:var(--bg-alt);}
section.block.navy{background:linear-gradient(160deg,var(--navy) 0%, var(--navy-dark) 100%); color:#fff;}
section.block.navy h2, section.block.navy h3{color:#fff;}
.sec-head{max-width:64ch; margin-bottom:2rem;}
.sec-head.center{margin-left:auto; margin-right:auto;}
.sec-head h2{font-size:clamp(1.6rem,3.5vw,2.2rem); font-weight:800; letter-spacing:-.01em; margin-bottom:.7rem;}
.sec-head p{color:var(--text-soft); margin:0;}
section.block.navy .sec-head p{color:rgba(255,255,255,.82);}
section.block.navy .sec-head{margin-bottom:2.6rem;}  /* a bit more space before the icon grid */

/* ---- Check grid (questions / lists) ---- */
.check-grid{display:grid; grid-template-columns:1fr 1fr; gap:1rem;}
.check-card{display:flex; gap:.85rem; align-items:flex-start; background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:1.05rem 1.15rem; box-shadow:var(--shadow-sm);}
.check-card .tick{flex:0 0 auto; width:28px; height:28px; border-radius:50%; background:var(--green-tint); color:var(--green); display:flex; align-items:center; justify-content:center; margin-top:.1rem;}
.check-card .tick .icon{width:16px; height:16px;}
.check-card p{margin:0; font-weight:600; color:var(--navy); font-size:1rem;}
.note-line{margin-top:1.5rem; font-size:1.02rem; color:var(--text-soft); display:flex; gap:.6rem; align-items:flex-start;}
.note-line .icon{flex:0 0 auto; width:22px; height:22px; color:var(--green); margin-top:.18rem;}
@media (max-width:680px){ .check-grid{grid-template-columns:1fr;} }

/* ---- Callout (warning / guarantee) ---- */
.callout{background:var(--red-tint); border:1px solid #f3c9c3; border-left:5px solid var(--red); border-radius:var(--radius-lg); padding:1.75rem 1.9rem;}
.callout-head{display:flex; align-items:center; gap:.7rem; margin-bottom:1rem;}
.callout-head .icon{width:30px; height:30px; color:var(--red); flex:0 0 auto;}
.callout-head h2{font-size:1.5rem; color:var(--navy); margin:0;}
.callout p{color:var(--text-soft); margin:0 0 .9rem;}
.callout p:last-child{margin-bottom:0;}
.callout .emphasis{font-weight:700; color:var(--navy);}
.callout a{color:var(--green); text-decoration:underline; font-weight:600;}
.callout.guarantee{background:var(--green-tint); border-color:#cfe3d6; border-left-color:var(--green);}
.callout.guarantee .callout-head .icon{color:var(--green);}
.callout.guarantee .quote{font-size:1.12rem; color:var(--navy); font-weight:500; font-style:italic; margin-bottom:1rem;}

/* ---- Work grid (promises + image) ---- */
.work-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:2.25rem; align-items:center;}
.work-grid.flip .work-img{order:2;}
.promise-list{list-style:none; margin:0; padding:0; display:grid; gap:.7rem;}
.promise-list li{display:flex; gap:.7rem; align-items:center; font-weight:600; color:var(--navy); font-size:1.05rem;}
.promise-list .tick{flex:0 0 auto; width:26px; height:26px; border-radius:50%; background:var(--green); color:#fff; display:flex; align-items:center; justify-content:center;}
.promise-list .tick .icon{width:15px; height:15px;}
.work-img{border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg);}
.work-img img{width:100%; height:100%; object-fit:cover;}
.members{margin-top:1.5rem; font-size:1rem; color:var(--text-soft);}
@media (max-width:820px){ .work-grid{grid-template-columns:1fr; gap:1.5rem;} .work-img{order:-1; max-height:300px;} .work-grid.flip .work-img{order:-1;} }

/* ---- Comparison table ---- */
.compare-wrap{overflow-x:auto; border:1px solid var(--border); border-radius:var(--radius-lg); box-shadow:var(--shadow-md); background:#fff;}
table.compare{width:100%; border-collapse:separate; border-spacing:0; min-width:560px;}
table.compare th, table.compare td{padding:.95rem 1.1rem; text-align:left; border-bottom:1px solid var(--border-soft);}
table.compare thead th{font-size:.95rem; font-weight:800; color:#fff; background:var(--navy); border-bottom:none;}
table.compare thead th:first-child{background:var(--navy-dark);}
table.compare thead th .col-ico{display:inline-flex; align-items:center; gap:.45rem;}
table.compare thead th .icon{width:17px; height:17px;}
table.compare tbody tr:last-child td{border-bottom:none;}
table.compare tbody tr:nth-child(even){background:var(--navy-tint);}
table.compare td:first-child{font-weight:700; color:var(--navy);}
table.compare td.val{font-weight:700;}
table.compare td.val .icon{width:15px; height:15px; vertical-align:-.1em; margin-right:.3rem;}
/* --- Recommended column: Prime Property Buyers stands out as the "selected" pick --- */
table.compare td.col-good, table.compare th.col-good{
  background:#edf6df;                                       /* pale-green block fill */
  border-left:2px solid var(--green); border-right:2px solid var(--green);
  box-shadow:9px 0 20px -12px rgba(15,23,42,.45), -9px 0 20px -12px rgba(15,23,42,.45); /* lifts forward */
}
table.compare thead th.col-good{
  background:var(--green); color:#fff;                      /* green header cap */
  border-top:2px solid var(--green);
  border-top-left-radius:12px; border-top-right-radius:12px;
}
table.compare tbody tr:last-child td.col-good{
  border-bottom:2px solid var(--green);
  border-bottom-left-radius:12px; border-bottom-right-radius:12px;
}
.v-good{color:var(--green);}
.v-bad{color:var(--red);}
.v-mid{color:var(--amber);}

/* ---- FAQ accordion ---- */
.faq-list{display:grid; gap:.75rem; max-width:860px;}
.faq-list.center{margin-left:auto; margin-right:auto;}  /* centre the list when the heading is centred */
.faq-item{background:#fff; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm);}
.faq-item summary{list-style:none; cursor:pointer; padding:1.1rem 1.3rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; font-weight:700; color:var(--navy); font-size:1.05rem;}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-icon{flex:0 0 auto; width:22px; height:22px; border-radius:50%; border:2px solid var(--navy); position:relative; transition:transform .25s ease;}
.faq-icon::before,.faq-icon::after{content:""; position:absolute; background:var(--navy); border-radius:2px;}
.faq-icon::before{width:10px; height:2px; top:8px; left:4px;}
.faq-icon::after{width:2px; height:10px; top:4px; left:8px; transition:opacity .2s ease;}
.faq-item[open] .faq-icon::after{opacity:0;}
.faq-item[open] .faq-icon{transform:rotate(180deg);}
.faq-a{padding:0 1.3rem 1.25rem; color:var(--text-soft);}
.faq-a p{margin:0 0 .8rem;}
.faq-a p:last-child{margin:0;}

/* ---- Feature icon grid (Why homeowners choose / benefits) ---- */
.feature-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1.7rem 1.4rem; max-width:980px; margin:0 auto;}
.feature-card{display:flex; gap:.9rem; align-items:center;}
.feature-card .f-ico{flex:0 0 auto; width:46px; height:46px; border-radius:12px; background:rgba(165,200,68,.16); color:var(--lime-dark); display:flex; align-items:center; justify-content:center;}
.feature-card .f-ico .icon{width:24px; height:24px;}
.feature-card h3{font-size:1.08rem; margin:0 0 .25rem;}
.feature-card p{margin:0; color:var(--text-soft); font-size:.96rem;}
section.block.navy .feature-card .f-ico{background:rgba(165,200,68,.18); color:var(--lime);}
section.block.navy .feature-card p{color:rgba(255,255,255,.78);}
@media (max-width:820px){ .feature-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .feature-grid{grid-template-columns:1fr;} }

/* ---- Process steps (numbered + image) ---- */
.process-grid{display:grid; grid-template-columns:1fr .9fr; gap:2.5rem; align-items:center;}
.step-list{display:grid; gap:1.1rem;}
.step{display:flex; gap:1rem; align-items:flex-start;}
.step-num{flex:0 0 auto; width:38px; height:38px; border-radius:50%; background:var(--navy); color:#fff; font-weight:800; display:flex; align-items:center; justify-content:center; font-size:1.05rem;}
.step h3{font-size:1.1rem; margin:0 0 .2rem;}
.step p{margin:0; color:var(--text-soft); font-size:.97rem;}
.process-img{border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg);}
@media (max-width:820px){ .process-grid{grid-template-columns:1fr; gap:1.6rem;} .process-img{order:-1; max-height:280px;} }

/* ---- Horizontal timeline ---- */
.timeline{display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative;}
.tl-step{text-align:center; padding:0 .8rem; position:relative;}
.tl-step:not(:last-child)::after{content:""; position:absolute; top:32px; right:-1px; width:100%; height:2px; background:repeating-linear-gradient(90deg,var(--border) 0 8px,transparent 8px 14px); transform:translateX(50%); z-index:0;}
.tl-ico{position:relative; z-index:1; width:64px; height:64px; margin:0 auto .9rem; border-radius:50%; background:#fff; border:2px solid var(--lime); color:var(--navy); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md);}
.tl-ico .icon{width:28px; height:28px;}
.tl-day{display:inline-block; background:var(--navy); color:#fff; font-weight:800; font-size:.78rem; letter-spacing:.03em; padding:.2rem .7rem; border-radius:999px; margin-bottom:.4rem;}
.tl-step h3{font-size:1.05rem; margin:0;}
section.block.navy .tl-ico{background:rgba(255,255,255,.06); border-color:var(--lime); color:#fff;}
section.block.navy .tl-day{background:var(--lime); color:var(--navy-dark);}
section.block.navy .tl-step:not(:last-child)::after{background:repeating-linear-gradient(90deg,rgba(255,255,255,.3) 0 8px,transparent 8px 14px);}
@media (max-width:760px){
  .timeline{grid-template-columns:1fr; gap:0; text-align:left; max-width:420px; margin:0 auto;}
  .tl-step{display:grid; grid-template-columns:64px 1fr; align-items:center; gap:1rem; padding:.6rem 0; text-align:left;}
  .tl-ico{margin:0;}
  .tl-step:not(:last-child)::after{top:64px; left:31px; right:auto; width:2px; height:100%; transform:none; background:repeating-linear-gradient(180deg,var(--border) 0 8px,transparent 8px 14px);}
  .tl-meta{display:flex; flex-direction:column; gap:.2rem;}
}

/* ---- Stats strip ---- */
.stats{display:grid; grid-template-columns:repeat(5,1fr); gap:1.5rem; text-align:center;}
.stat .stat-ico{width:48px; height:48px; margin:0 auto .6rem; border-radius:12px; background:rgba(165,200,68,.18); color:var(--lime); display:flex; align-items:center; justify-content:center;}
.stat .stat-ico .icon{width:26px; height:26px;}
.stat-num{font-size:1.7rem; font-weight:900; color:#fff; line-height:1.1;}
.stat-label{font-size:.9rem; color:rgba(255,255,255,.78); margin-top:.25rem;}
section.block:not(.navy) .stat-num{color:var(--navy);}
section.block:not(.navy) .stat-label{color:var(--text-soft);}
section.block:not(.navy) .stat .stat-ico{background:var(--green-tint); color:var(--green);}
@media (max-width:820px){ .stats{grid-template-columns:1fr 1fr 1fr;} }
@media (max-width:480px){ .stats{grid-template-columns:1fr 1fr;} }

/* ---- Testimonials marquee ---- */
.testimonials-carousel{overflow:hidden; position:relative; -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);}
.testimonials-track{display:flex; gap:.9rem; width:max-content; animation:tmarquee 46s linear infinite;}
.testimonials-carousel:hover .testimonials-track{animation-play-state:paused;}
/* drag/swipe enhancement (JS adds .js-carousel and drives the scroll) */
.testimonials-carousel.js-carousel{cursor:grab; touch-action:pan-y; user-select:none;}
.testimonials-carousel.js-carousel.is-grabbing{cursor:grabbing;}
.testimonials-carousel.js-carousel .testimonials-track{animation:none;}
@keyframes tmarquee{from{transform:translateX(0);} to{transform:translateX(-50%);}}
@media (prefers-reduced-motion:reduce){ .testimonials-track{animation:none; flex-wrap:wrap; width:auto; justify-content:center;} }
.testimonial{flex:0 0 360px; max-width:360px; background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:1.5rem; box-shadow:var(--shadow-md);}
.t-stars{display:flex; gap:.15rem; color:#f5b50a; margin-bottom:.8rem;}
.testimonial blockquote{margin:0 0 1rem; font-size:.97rem; color:var(--text-soft); line-height:1.6;}
.testimonial figcaption strong{display:block; color:var(--navy);}
.testimonial figcaption span{font-size:.85rem; color:var(--text-muted);}
@media (max-width:480px){ .testimonial{flex-basis:300px; max-width:300px;} }

/* ---- CTA card ---- */
.cta{background:linear-gradient(135deg,var(--navy) 0%, var(--navy-dark) 100%); color:#fff; border-radius:var(--radius-lg); padding:2.75rem 2rem; text-align:center; box-shadow:var(--shadow-lg);}
.cta h2{color:#fff; font-size:clamp(1.5rem,3.5vw,2.1rem); margin-bottom:.7rem;}
.cta p.lede{color:rgba(255,255,255,.85); max-width:54ch; margin:0 auto 1.4rem; font-size:1.06rem;}
.cta-ticks{list-style:none; margin:0 auto 1.6rem; padding:0; display:flex; flex-wrap:wrap; gap:.6rem 1.4rem; justify-content:center; max-width:640px;}
.cta-ticks li{display:flex; align-items:center; gap:.5rem; font-weight:600; color:rgba(255,255,255,.95);}
.cta-ticks .icon{width:18px; height:18px; color:var(--lime);}
.cta-actions{display:flex; flex-wrap:wrap; gap:.9rem; justify-content:center;}

/* ---- Trade-bodies strip ---- */
.trade-bodies{padding:2.75rem 0; background:var(--bg-alt); border-top:1px solid var(--border-soft);}
.tb-inner{text-align:center; max-width:680px; margin:0 auto;}
.tb-kicker{display:block; font-size:.82rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--navy-soft); margin-bottom:1.1rem;}
.tb-logos{max-width:330px; margin:0 auto 1.1rem;}
.tb-note{font-size:.98rem; color:var(--text-soft); margin:0;}

/* ---- Contact layout ---- */
.contact-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:2.5rem; align-items:start;}
.contact-form{background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:1.9rem; box-shadow:var(--shadow-md);}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:1rem;}
.field{margin-bottom:1rem;}
.field label{display:block; font-weight:600; color:var(--navy); font-size:.9rem; margin-bottom:.35rem;}
.field input,.field textarea,.field select{width:100%; padding:.8rem .9rem; border:1px solid var(--border); border-radius:var(--radius); font:inherit; font-size:.97rem; color:var(--text); background:#fff; transition:border-color .15s ease, box-shadow .15s ease;}
.field input:focus,.field textarea:focus,.field select:focus{outline:none; border-color:var(--navy); box-shadow:0 0 0 3px rgba(1,0,128,.1);}
.field textarea{min-height:120px; resize:vertical;}
.form-note{font-size:.82rem; color:var(--text-muted); margin:.4rem 0 0; display:flex; gap:.4rem; align-items:flex-start;}
.form-note .icon{width:15px; height:15px; color:var(--green); flex:0 0 auto; margin-top:.15rem;}
.info-card{background:var(--navy-tint); border:1px solid var(--border); border-radius:var(--radius-lg); padding:1.6rem;}
.info-card + .info-card{margin-top:1.25rem;}
.info-card h3{font-size:1.12rem; margin:0 0 .9rem;}
.info-row{display:flex; gap:.7rem; align-items:flex-start; margin-bottom:.7rem; font-size:.97rem; color:var(--text-soft);}
.info-row .icon{flex:0 0 auto; width:20px; height:20px; color:var(--green); margin-top:.15rem;}
.info-row strong{color:var(--navy); display:block; font-weight:700;}
.trust-list{list-style:none; margin:0; padding:0; display:grid; gap:.55rem;}
.trust-list li{display:flex; gap:.6rem; align-items:flex-start; font-size:.97rem; color:var(--text-soft);}
.trust-list .icon{flex:0 0 auto; width:18px; height:18px; color:var(--green); margin-top:.2rem;}
@media (max-width:820px){ .contact-grid{grid-template-columns:1fr;} .form-row{grid-template-columns:1fr;} }

/* ---- Video card ---- */
.video-card{border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); background:#000;}
.video-card video{width:100%; display:block; aspect-ratio:16/9; object-fit:cover; background:#000;}
.video-card-text{background:#fff; padding:.9rem 1.1rem;}
.video-card-text strong{display:block; color:var(--navy);}
.video-card-text span{font-size:.85rem; color:var(--text-muted);}

/* ---- Floating WhatsApp button ---- */
.whatsapp-fab{position:fixed; left:18px; bottom:18px; z-index:60; display:inline-flex; align-items:center; gap:.55rem; background:#25D366; color:#fff; font-weight:700; font-size:.95rem; padding:.7rem 1.05rem .7rem .8rem; border-radius:999px; box-shadow:0 8px 24px rgba(37,211,102,.45); transition:transform .15s ease;}
.whatsapp-fab:hover{transform:translateY(-2px);}
.whatsapp-fab svg{width:24px; height:24px; fill:#fff;}
@media (max-width:560px){ .whatsapp-fab span{display:none;} .whatsapp-fab{padding:.8rem; left:14px; bottom:14px;} }

/* ---- Site footer moved to shared footer.css (used on every page) ---- */


/* ---- Condensed sticky header — thin bar slides in once the main header
   scrolls past (matches the landing pages). Injected by pp-pages.js. ---- */
.sticky-nav{position:fixed; top:0; left:0; right:0; z-index:60; background:#fff; border-bottom:1px solid var(--border); box-shadow:0 6px 20px rgba(1,0,128,.08); transform:translateY(-100%); transition:transform .32s ease;}
.sticky-nav.show{transform:translateY(0);}
.sticky-inner{max-width:var(--max-w); margin:0 auto; padding:.45rem 1.5rem; display:flex; align-items:center; gap:1.5rem;}
.sn-logo img{width:128px; height:auto; display:block;}
.sn-menu{display:flex; align-items:center; gap:1.7rem; margin:0 0 0 auto; list-style:none; padding:0;}
.sn-menu li{margin:0;}
.sn-menu a{font-weight:600; font-size:.9rem; color:var(--text-soft); transition:color .15s ease;}
.sn-menu a:hover, .sn-menu a[aria-current="page"]{color:var(--navy);}
.sn-cta{flex:0 0 auto; background:var(--lime); color:var(--navy-dark); font-weight:800; font-size:.9rem; padding:.55rem 1.15rem; border-radius:999px; box-shadow:0 4px 12px rgba(165,200,68,.3); transition:background .15s ease, transform .15s ease;}
.sn-cta:hover{background:var(--lime-dark); transform:translateY(-1px);}
@media (max-width:1000px){
  .sn-menu{display:none;}
  .sn-cta{margin-left:auto;}
  .sn-logo img{width:112px;}
  .sticky-inner{padding:.4rem 1.1rem;}
}
