/* ============================================================
   TurnKey Bathtubs — full page design, banner to footer
   Part A: tokens, base, utility bar, header, hero, ticker, proofbar
   ============================================================ */

:root{
  --ink:#0b1f33; --ink-2:#14304d; --ink-3:#26445f;
  --blue:#1c7ed6; --blue-d:#1668b3; --blue-l:#7fc4ff; --blue-pale:#eaf3fc;
  --paper:#fff; --paper-2:#f5f7fa; --warm:#f5f3f0;
  --line:#e3e9f0; --muted:#5a748c; --muted-2:#8698a9; --gold:#f5b53d;
  --wrap:1180px; --pad:28px;
  --r:10px; --r-sm:6px;
  --sh:0 18px 44px rgba(11,31,51,.10);
  --sh-lg:0 28px 68px rgba(11,31,51,.16);
  --hdr:74px;
  --f-body:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
  --f-head:"Barlow Condensed","Barlow",var(--f-body);
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;font-family:var(--f-body);font-size:16px;line-height:1.6;
  color:var(--ink-2);background:var(--paper);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--blue)}
h1,h2,h3,h4{font-family:var(--f-head);font-weight:800;line-height:1.06;
  letter-spacing:-.005em;color:var(--ink);margin:0 0 .5em}
h2{font-size:clamp(30px,3.6vw,46px)}
h3{font-size:22px;line-height:1.2}
p{margin:0 0 1em}
p:last-child{margin-bottom:0}
:focus-visible{outline:2px solid var(--blue);outline-offset:3px;border-radius:2px}

.tkb-wrap{max-width:var(--wrap);margin:0 auto;padding:0 var(--pad);width:100%}
.tkb-skip{position:absolute;left:-9999px;top:0;z-index:200;background:var(--ink);
  color:#fff;padding:12px 18px;border-radius:0 0 var(--r-sm) 0;text-decoration:none}
.tkb-skip:focus{left:0}

.eyebrow{margin:0 0 12px;font-family:var(--f-body);font-size:12px;font-weight:700;
  letter-spacing:.15em;text-transform:uppercase;color:var(--blue)}
.sec-head{max-width:680px;margin:0 0 44px}
.sec-sub{margin:0;font-size:17px;line-height:1.62;color:var(--muted)}
.seam{position:relative;padding-bottom:.36em}
.seam::after{content:"";position:absolute;left:0;bottom:0;width:64px;height:4px;
  background:var(--blue);border-radius:99px}

/* ---------- Buttons ---------- */
.tkb-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  padding:15px 26px;border-radius:var(--r-sm);border:1.5px solid transparent;
  font-family:var(--f-body);font-size:15px;font-weight:700;line-height:1;
  text-decoration:none;cursor:pointer;white-space:nowrap;
  transition:background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.tkb-btn svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;flex:none}
.tkb-btn-blue{background:var(--blue);color:#fff;box-shadow:0 10px 24px rgba(28,126,214,.28)}
.tkb-btn-blue:hover{background:var(--blue-d)}
.tkb-btn-ink{background:var(--ink);color:#fff}
.tkb-btn-ink:hover{background:var(--ink-2)}
.tkb-btn-outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.5)}
.tkb-btn-outline:hover{background:rgba(255,255,255,.12);border-color:#fff}
.tkb-btn-ghost{background:rgba(255,255,255,.08);color:#fff;border-color:rgba(220,238,255,.42)}
.tkb-btn-ghost:hover{background:rgba(255,255,255,.18)}
.tkb-btn-sm{padding:11px 18px;font-size:13.5px}

/* ---------- Utility bar ---------- */
.tkb-util{background:var(--ink);color:#a8c2d8;font-size:12.5px}
.tkb-util .tkb-wrap{display:flex;align-items:center;justify-content:space-between;
  gap:20px;min-height:38px;flex-wrap:wrap}
.tkb-util-lic{display:flex;gap:18px}
.tkb-util-lic p{margin:0;letter-spacing:.02em}
.tkb-util-right{display:flex;align-items:center;gap:18px}
.tkb-util-note{color:#7f9cb5}
.tkb-util a{color:#cfe2f2;text-decoration:none}
.tkb-util a:hover{color:#fff;text-decoration:underline}

/* ---------- Header ---------- */
.tkb-head{position:sticky;top:0;z-index:60;background:rgba(255,255,255,.96);
  backdrop-filter:saturate(140%) blur(10px);border-bottom:1px solid var(--line)}
.tkb-head .tkb-wrap{display:flex;align-items:center;gap:26px;min-height:var(--hdr)}
.tkb-logo{flex:none;display:block}
.tkb-logo img{height:46px;width:auto}

.tkb-nav{margin-left:auto}
.tkb-menu{display:flex;align-items:center;gap:4px;list-style:none;margin:0;padding:0}
.tkb-menu > li{position:relative}
.tkb-menu > li > a{
  display:flex;align-items:center;gap:6px;padding:11px 13px;border-radius:var(--r-sm);
  font-size:14.5px;font-weight:600;color:var(--ink-2);text-decoration:none;
  transition:color .18s, background-color .18s}
.tkb-menu > li > a:hover{color:var(--blue);background:var(--blue-pale)}
.tkb-menu > li.current-menu-item > a{color:var(--blue)}
.tkb-menu > li.menu-item-has-children > a::after{
  content:"";width:6px;height:6px;border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;transform:rotate(45deg) translateY(-2px);opacity:.6}

.tkb-menu .sub-menu{
  position:absolute;top:calc(100% + 10px);left:0;min-width:240px;
  background:#fff;border:1px solid var(--line);border-radius:var(--r);
  box-shadow:var(--sh);padding:10px;margin:0;list-style:none;
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:opacity .2s, transform .2s, visibility .2s;z-index:5}
.tkb-menu li:hover > .sub-menu,
.tkb-menu li:focus-within > .sub-menu{opacity:1;visibility:visible;transform:none}
.tkb-menu .sub-menu a{display:block;padding:9px 12px;border-radius:var(--r-sm);
  font-size:14px;font-weight:500;color:var(--ink-2);text-decoration:none}
.tkb-menu .sub-menu a:hover{background:var(--blue-pale);color:var(--blue)}
.tkb-menu .sub-menu .sub-menu{top:-11px;left:calc(100% + 8px)}

/* mega menus: services + service areas drop as multi-column panels */
.tkb-menu > li.mega-menu > .sub-menu,
.tkb-menu > li.mega-menu2 > .sub-menu{
  left:auto;right:0;width:min(720px,86vw);
  display:grid;grid-template-columns:repeat(3,1fr);gap:6px 18px;padding:18px}
.tkb-menu > li.mega-menu2 > .sub-menu > li > a{font-weight:700;color:var(--ink);
  border-bottom:1px solid var(--line);border-radius:0;margin-bottom:4px}
.tkb-menu > li.mega-menu2 .sub-menu .sub-menu{
  position:static;opacity:1;visibility:visible;transform:none;
  box-shadow:none;border:0;padding:0;min-width:0;background:transparent}
.tkb-menu > li.mega-menu2 .sub-menu .sub-menu a{padding:6px 12px;font-size:13.5px;color:var(--muted)}
.tkb-menu > li.mega-menu2 .sub-menu .sub-menu a:hover{color:var(--blue)}
.tkb-menu > li.mega-menu > .sub-menu > li > a{font-size:13.5px}

.tkb-nav-foot{display:none}
.tkb-actions{display:flex;align-items:center;gap:14px;flex:none}
.tkb-phone{display:flex;align-items:center;gap:9px;font-weight:800;font-size:16px;
  color:var(--ink);text-decoration:none;white-space:nowrap}
.tkb-phone:hover{color:var(--blue)}
.tkb-phone-ic{display:grid;place-items:center;width:34px;height:34px;border-radius:50%;
  background:var(--blue-pale);color:var(--blue);flex:none}
.tkb-phone-ic svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2}
.tkb-phone-txt small{display:block;font-size:10.5px;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:var(--muted-2)}

.tkb-burger{display:none;width:44px;height:44px;border:1px solid var(--line);
  background:#fff;border-radius:var(--r-sm);cursor:pointer;padding:0}
.tkb-burger-box{position:relative;display:block;width:20px;height:2px;margin:0 auto;
  background:var(--ink);border-radius:2px}
.tkb-burger-box::before,.tkb-burger-box::after{content:"";position:absolute;left:0;
  width:20px;height:2px;background:var(--ink);border-radius:2px}
.tkb-burger-box::before{top:-6px}
.tkb-burger-box::after{top:6px}
.screen-reader-text{position:absolute;width:1px;height:1px;overflow:hidden;
  clip:rect(0 0 0 0);white-space:nowrap}
.tkb-nav-scrim{display:none}
.tkb-float{display:none}

/* ---------- Hero / banner ---------- */
.tkb-hero{position:relative;overflow:hidden;background:var(--ink)}
.tkb-hero-bg{position:absolute;inset:0}
.tkb-hero-bg img,.tkb-hero-bg video{width:100%;height:100%;object-fit:cover}
.tkb-hero-tint{position:absolute;inset:0;
  background:linear-gradient(100deg,rgba(6,20,34,.93) 0%,rgba(6,20,34,.80) 42%,rgba(6,20,34,.45) 100%)}
.tkb-hero-grid{position:relative;display:grid;grid-template-columns:1.06fr .94fr;
  gap:52px;align-items:center;padding-top:78px;padding-bottom:86px}
.tkb-hero-copy{color:#e9f3fd;max-width:600px}
.tkb-stars-line{display:flex;align-items:center;gap:10px;margin:0 0 18px;
  font-size:13.5px;font-weight:600;color:#b9d4ec}
.tkb-stars{color:var(--gold);font-size:15px;letter-spacing:2px}
.tkb-hero-h1{font-size:clamp(38px,5.2vw,64px);color:#fff;margin:0 0 20px}
.tkb-hero-h1 .tkba-ink{color:var(--blue-l)}
.tkb-hero-lede p{font-size:17.5px;line-height:1.62;color:#c3d9ee;margin:0 0 26px}
.tkb-hero-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:26px}
.tkb-badges{display:flex;gap:12px 24px;flex-wrap:wrap;list-style:none;margin:0 0 28px;padding:0}
.tkb-badges li{display:flex;align-items:center;gap:8px;font-size:13.5px;
  font-weight:600;color:#a9c7e3}
.tkb-badges li::before{content:"";width:16px;height:16px;flex:none;border-radius:50%;
  background:rgba(120,220,160,.14);box-shadow:inset 0 0 0 1.5px rgba(120,220,160,.55)}
.tkb-hero-trust{display:flex;align-items:center;gap:18px;flex-wrap:wrap;
  list-style:none;margin:0;padding:0}
.tkb-hero-trust img{height:52px;width:auto;opacity:.92}

.tkb-quote-card{position:relative;background:#fff;border-radius:14px;
  padding:28px 26px 24px;box-shadow:var(--sh-lg)}
.tkb-quote-h{font-size:26px;margin:0 0 6px;color:var(--ink)}
.tkb-quote-h em{font-style:italic;color:var(--blue)}
.tkb-quote-sub{margin:0 0 18px;font-size:14px;color:var(--muted)}
.tkb-quote-fine{margin:14px 0 0;font-size:12.5px;color:var(--muted-2);text-align:center}
.tkb-quote-card iframe{width:100%;border:0}

/* ---------- Proof bar ----------
   Intentionally empty: the proof band is defined in full further down
   (Part G). The old rules lived here and their `.pb span` selector was
   out-specifying the new `.pb-label` / `.pb-sub` / `.pb-ico` colours. */

/* ============================================================
   Part B: intro, services, process, CTA band, about
   ============================================================ */

/* ---------- Intro ---------- */
.intro{padding:96px 0}
.intro .tkb-wrap{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.intro-copy h2{font-size:clamp(28px,3.1vw,40px);margin-bottom:22px}
.intro-copy p{color:var(--muted);font-size:16.5px;line-height:1.68}
.checklist{list-style:none;margin:26px 0 0;padding:0;display:grid;gap:12px}
.checklist li{position:relative;padding-left:32px;font-size:15.5px;
  font-weight:600;color:var(--ink-2)}
.checklist li::before{
  content:"";position:absolute;left:0;top:2px;width:20px;height:20px;border-radius:50%;
  background:var(--blue-pale);
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c7ed6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size:13px;background-repeat:no-repeat;background-position:center}

.intro-art{position:relative}
.intro-art > img{border-radius:14px;box-shadow:var(--sh);width:100%;
  aspect-ratio:7/5;object-fit:cover}
.intro-badge{position:absolute;left:-18px;bottom:-26px;width:min(300px,84%);
  background:#fff;border:1px solid var(--line);border-radius:12px;
  padding:20px;box-shadow:var(--sh-lg)}
.intro-badge b{display:block;font-family:var(--f-head);font-size:20px;
  color:var(--ink);margin-bottom:6px}
.intro-badge span{display:block;font-size:13.5px;line-height:1.5;
  color:var(--muted);margin-bottom:14px}

/* ---------- Services ---------- */
.services{padding:96px 0;background:var(--paper-2);
  border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.svc-groups{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;align-items:start}
.svc-group{background:#fff;border:1px solid var(--line);border-radius:14px;
  padding:28px 24px 24px;box-shadow:0 4px 18px rgba(11,31,51,.05)}
.svc-group.is-feature{border-color:rgba(28,126,214,.42);
  box-shadow:0 18px 44px rgba(28,126,214,.14)}
.sg-head{position:relative;padding-bottom:18px;margin-bottom:18px;
  border-bottom:1px solid var(--line)}
.sg-num{display:inline-block;font-family:var(--f-head);font-size:13px;font-weight:800;
  letter-spacing:.16em;color:var(--blue);margin-bottom:8px}
.sg-head h3{font-size:26px;margin:0 0 8px}
.sg-head p{margin:0;font-size:14.5px;line-height:1.55;color:var(--muted)}
.sg-list{list-style:none;margin:0;padding:0;display:grid;gap:4px}
.sg-list a{display:flex;gap:13px;align-items:flex-start;padding:11px 12px;
  border-radius:var(--r-sm);text-decoration:none;
  transition:background-color .2s, transform .2s}
.sg-list a:hover{background:var(--blue-pale);transform:translateX(3px)}
.sg-ico{display:grid;place-items:center;width:36px;height:36px;flex:none;
  border-radius:9px;background:var(--blue-pale);color:var(--blue)}
.sg-ico svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round}
.sg-txt b{display:block;font-size:14.5px;font-weight:700;color:var(--ink);margin-bottom:2px}
.sg-txt > span{display:block;font-size:13px;line-height:1.5;color:var(--muted)}
.sg-flag{display:inline-block;margin-bottom:14px;padding:6px 13px;border-radius:99px;
  background:var(--blue);color:#fff;font-size:11.5px;font-weight:800;
  letter-spacing:.11em;text-transform:uppercase}
/* .sg-cta is the anchor itself, not a wrapper */
a.sg-cta,.sg-cta a{display:inline-flex;align-items:center;gap:7px;margin-top:16px;
  font-size:14.5px;font-weight:700;color:var(--blue);text-decoration:none}
a.sg-cta:hover,.sg-cta a:hover{text-decoration:underline;gap:10px}

/* ---------- Process ---------- */
.process{padding:96px 0}
.steps{list-style:none;margin:0 0 40px;padding:0;
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;counter-reset:step}
.steps li{position:relative;background:#fff;border:1px solid var(--line);
  border-radius:14px;padding:32px 26px 26px}
.steps li::before{content:"";position:absolute;left:26px;right:26px;top:0;height:3px;
  background:var(--blue);border-radius:0 0 3px 3px}
.st-n{display:grid;place-items:center;width:44px;height:44px;border-radius:50%;
  background:var(--ink);color:#fff;font-family:var(--f-head);font-size:20px;
  font-weight:800;margin-bottom:16px}
.steps h3{font-size:21px;margin:0 0 10px}
.steps p{margin:0;font-size:15px;line-height:1.62;color:var(--muted)}
.proc-ctas{display:flex;gap:14px;flex-wrap:wrap}

/* ---------- CTA band ---------- */
.ctaband{position:relative;overflow:hidden;padding:66px 0;
  background:linear-gradient(115deg,var(--ink) 0%,#123a5e 58%,#0f4f7d 100%)}
.ctaband::after{content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(60% 120% at 82% 20%,rgba(127,196,255,.20),rgba(127,196,255,0) 70%)}
.ctaband .tkb-wrap{position:relative;z-index:1;display:grid;
  grid-template-columns:1.25fr .75fr;gap:44px;align-items:center}
.ctaband .eyebrow{color:var(--blue-l)}
.ctaband h2{color:#fff;font-size:clamp(27px,3vw,38px);margin-bottom:12px}
.cb-sub{margin:0;color:#bcd6ed;font-size:16px;line-height:1.62}
.cb-actions{display:flex;flex-direction:column;align-items:flex-start;gap:12px}
.cb-actions .tkb-btn{width:100%}
.cb-fine{font-size:12.5px;color:#93b3cd}

/* ---------- About ---------- */
.about{padding:96px 0}
.about .tkb-wrap{display:grid;grid-template-columns:.92fr 1.08fr;gap:60px;align-items:center}
.ab-art{position:relative}
.ab-art > img{border-radius:14px;box-shadow:var(--sh);width:100%;
  aspect-ratio:5/6;object-fit:cover}
.ab-stat{position:absolute;right:-20px;bottom:-24px;width:min(280px,86%);
  background:var(--ink);color:#fff;border-radius:12px;padding:20px;
  box-shadow:var(--sh-lg)}
.ab-stat b{display:block;font-family:var(--f-head);font-size:24px;
  color:#fff;margin-bottom:6px}
.ab-stat span{display:block;font-size:13.5px;line-height:1.5;color:#a9c7e3}
.ab-copy h2{font-size:clamp(28px,3.1vw,40px);margin-bottom:22px}
.ab-copy p{color:var(--muted);font-size:16.5px;line-height:1.68}
.ab-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-top:26px}

/* ============================================================
   Part C: gallery, reviews, areas, FAQ, instagram, footer,
           modals, back-to-top, responsive
   ============================================================ */

/* ---------- Gallery ---------- */
.gallery{padding:96px 0;background:var(--paper-2);
  border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.grid-work{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.grid-work figure{position:relative;margin:0;overflow:hidden;border-radius:12px;
  aspect-ratio:3/4;background:#dfe6ee;box-shadow:0 6px 20px rgba(11,31,51,.08)}
.grid-work figure img{width:100%;height:100%;object-fit:cover}
.grid-work figcaption{
  position:absolute;left:0;right:0;bottom:0;padding:34px 16px 14px;
  font-size:12.5px;font-weight:600;line-height:1.4;color:#fff;
  background:linear-gradient(to top,rgba(7,22,37,.88),rgba(7,22,37,0));
}
.gal-cta{margin-top:34px}

/* ---------- Reviews ---------- */
.reviews{padding:96px 0}
.reviews .eyebrow{display:flex;align-items:center;gap:9px;flex-wrap:wrap;
  text-transform:none;letter-spacing:.01em;font-size:14px;color:var(--muted)}
.reviews .stars{color:var(--gold);font-size:16px;letter-spacing:2px}
.reviews .rating{font-family:var(--f-head);font-size:22px;font-weight:800;color:var(--ink)}
.rev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.rev-grid blockquote{
  position:relative;margin:0;background:#fff;border:1px solid var(--line);
  border-radius:14px;padding:52px 24px 24px;box-shadow:0 4px 18px rgba(11,31,51,.05)}
.rev-grid blockquote::before{
  content:"\201C";position:absolute;left:22px;top:12px;
  font-family:Georgia,serif;font-size:64px;line-height:1;color:var(--blue);opacity:.22}
.rev-grid blockquote p{margin:0 0 18px;font-size:15px;line-height:1.66;color:var(--ink-2)}
.rev-grid cite{display:block;font-style:normal;padding-top:16px;
  border-top:1px solid var(--line)}
.rev-grid cite b{display:block;font-size:14.5px;font-weight:700;color:var(--ink)}
.rev-grid cite span{display:block;font-size:13px;color:var(--muted);margin-top:2px}

/* ---------- Service areas ---------- */
.areas{padding:96px 0;background:var(--ink);color:#cfe1f1}
.areas .tkb-wrap{display:grid;grid-template-columns:.85fr 1.15fr;gap:56px;align-items:start}
.areas .eyebrow{color:var(--blue-l)}
.areas h2{color:#fff;font-size:clamp(28px,3.1vw,40px)}
.areas .seam::after{background:var(--blue-l)}
.ar-copy p{color:#a9c7e3;font-size:16.5px;line-height:1.68}
.ar-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-top:26px}
.ar-list{list-style:none;margin:0;padding:0;
  display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.ar-list a{
  display:block;padding:14px 16px;border-radius:var(--r-sm);
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.10);
  font-size:14.5px;font-weight:600;color:#dcebf8;text-decoration:none;
  transition:background-color .2s, border-color .2s, color .2s}
.ar-list a:hover{background:rgba(28,126,214,.22);border-color:var(--blue-l);color:#fff}

/* ---------- FAQ ---------- */
.faq{padding:96px 0}
.faq-list{display:grid;gap:12px;max-width:900px}
.acc{border:1px solid var(--line);border-radius:12px;background:#fff;
  overflow:hidden;transition:border-color .2s, box-shadow .2s}
.acc[open]{border-color:rgba(28,126,214,.4);box-shadow:0 10px 30px rgba(11,31,51,.07)}
.acc summary{
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  padding:20px 22px;cursor:pointer;list-style:none;
  font-family:var(--f-head);font-size:20px;font-weight:700;color:var(--ink)}
.acc summary::-webkit-details-marker{display:none}
.acc summary::after{
  content:"";flex:none;width:22px;height:22px;border-radius:50%;
  background:var(--blue-pale);position:relative;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c7ed6' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size:12px;background-repeat:no-repeat;background-position:center;
  transition:transform .25s}
.acc[open] summary::after{transform:rotate(45deg)}
.acc summary:hover{color:var(--blue)}
.acc-body{padding:0 22px 22px;font-size:15.5px;line-height:1.68;color:var(--muted)}
.acc-body ul{margin:0 0 1em;padding-left:20px}
.acc-body li{margin-bottom:6px}
.faq-cta{margin-top:34px;display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.faq-cta p{margin:0;font-weight:600;color:var(--ink-2)}

/* ---------- Instagram ---------- */
.ig{padding:76px 0;background:var(--paper-2);border-top:1px solid var(--line)}
.ig .sec-head{text-align:center;margin-left:auto;margin-right:auto}
.ig-feed{min-height:0}
.tkb-embed-ph{
  margin:0;padding:34px 20px;border:1px dashed rgba(90,116,140,.42);
  border-radius:12px;text-align:center;font-size:13.5px;color:var(--muted-2)}
.tkb-news-embed .tkb-embed-ph{
  border-color:rgba(255,255,255,.22);color:#7f9cb5;padding:22px 16px;font-size:12.5px}

/* ---------- Footer ---------- */
.tkb-foot{background:var(--ink);color:#a9c7e3;padding:74px 0 0;font-size:14.5px}
.tkb-foot-grid{display:grid;grid-template-columns:1fr 1.6fr 1fr;gap:48px;
  padding-bottom:52px}
.tkb-foot-logo{display:block;margin-bottom:22px}
.tkb-foot-logo img{height:60px;width:auto}
.tkb-news{margin-bottom:22px}
.tkb-news-embed{min-height:0}
.tkb-news-embed iframe{width:100%;min-height:150px;border:0}
.tkb-social{display:flex;gap:12px;flex-wrap:wrap}
.tkb-social a{display:grid;place-items:center;width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.07);transition:background-color .2s, transform .2s}
.tkb-social a:hover{background:var(--blue);transform:translateY(-2px)}
.tkb-social img{width:16px;height:16px;object-fit:contain;
  filter:brightness(0) invert(1);opacity:.9}

.tkb-foot-links{display:grid;grid-template-columns:repeat(4,1fr);gap:26px}
.tkb-foot-h{margin:0 0 14px;font-family:var(--f-head);font-size:16px;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase;color:#fff}
.tkb-foot-menu{list-style:none;margin:0;padding:0;display:grid;gap:9px}
.tkb-foot-menu a{color:#a9c7e3;text-decoration:none;font-size:14px;
  transition:color .18s, padding-left .18s}
.tkb-foot-menu a:hover{color:#fff;padding-left:4px}

.tkb-foot-contact{display:grid;gap:18px;margin-bottom:22px}
.tkb-contact-col{display:flex;gap:13px;align-items:flex-start}
.tkb-contact-ico{display:grid;place-items:center;width:36px;height:36px;flex:none;
  border-radius:50%;background:rgba(255,255,255,.07);color:var(--blue-l)}
.tkb-contact-ico svg{width:17px;height:17px;fill:none;stroke:currentColor;
  stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.tkb-contact-label{margin:0 0 2px;font-size:11.5px;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:#7f9cb5}
.tkb-contact-val{margin:0;font-size:15.5px;font-weight:600;color:#fff}
.tkb-contact-val a{color:#fff;text-decoration:none}
.tkb-contact-val a:hover{color:var(--blue-l)}
.tkb-foot-cta{margin-bottom:20px}
.tkb-foot-license p{margin:0 0 4px;font-size:12.5px;color:#7f9cb5}

.tkb-foot-bottom{display:flex;align-items:center;justify-content:space-between;
  gap:20px;flex-wrap:wrap;padding:22px 0 26px;border-top:1px solid rgba(255,255,255,.10)}
.tkb-copy{margin:0;font-size:13px;color:#7f9cb5}
.tkb-copy a{color:#a9c7e3;text-decoration:none}
.tkb-copy a:hover{color:#fff}
.tkb-legal-menu{list-style:none;display:flex;gap:22px;margin:0;padding:0;flex-wrap:wrap}
.tkb-legal-menu a{font-size:13px;color:#7f9cb5;text-decoration:none}
.tkb-legal-menu a:hover{color:#fff}

/* ---------- Modals / back to top ---------- */
.modal{display:none}
.modal.in,.modal.show{display:block}
.tkb-totop{
  position:fixed;right:22px;bottom:22px;z-index:70;width:46px;height:46px;
  border-radius:50%;border:0;cursor:pointer;background:var(--ink);color:#fff;
  display:grid;place-items:center;box-shadow:var(--sh);
  transition:transform .2s, background-color .2s}
.tkb-totop:hover{background:var(--blue);transform:translateY(-3px)}
.tkb-totop svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:2.2;
  stroke-linecap:round;stroke-linejoin:round}
.tkb-totop[hidden]{display:none}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width:1080px){
  .tkb-menu > li > a{padding:10px 9px;font-size:13.5px}
  .tkb-phone-txt{display:none}
  .grid-work{grid-template-columns:repeat(3,1fr)}
}

@media (max-width:960px){
  .svc-groups{grid-template-columns:1fr;gap:20px}
  .steps{grid-template-columns:1fr}
  .rev-grid{grid-template-columns:repeat(2,1fr)}
  .areas .tkb-wrap{grid-template-columns:1fr;gap:36px}
  .ar-list{grid-template-columns:repeat(4,1fr)}
  .tkb-foot-grid{grid-template-columns:1fr 1fr;gap:38px}
  .tkb-foot-links{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:880px){
  .tkb-nav{
    position:fixed;inset:0 0 0 auto;width:min(360px,88vw);z-index:80;
    background:#fff;padding:88px 22px 28px;overflow-y:auto;
    transform:translateX(100%);transition:transform .3s ease;
    box-shadow:-20px 0 50px rgba(11,31,51,.18)}
  .tkb-nav.is-open{transform:none}
  .tkb-menu{flex-direction:column;align-items:stretch;gap:2px}
  .tkb-menu > li > a{padding:13px 12px;font-size:16px}
  .tkb-menu .sub-menu,
  .tkb-menu > li.mega-menu > .sub-menu,
  .tkb-menu > li.mega-menu2 > .sub-menu{
    position:static;opacity:1;visibility:visible;transform:none;width:auto;
    display:block;box-shadow:none;border:0;border-left:2px solid var(--line);
    border-radius:0;padding:2px 0 6px 12px;margin:0 0 4px 12px}
  .tkb-menu > li.mega-menu2 > .sub-menu > li > a{border-bottom:0}
  .tkb-nav-foot{display:block;margin-top:20px}
  .tkb-nav-foot .tkb-btn{width:100%}
  .tkb-burger{display:block}
  .tkb-nav-scrim{display:block;position:fixed;inset:0;z-index:75;
    background:rgba(7,22,37,.5);opacity:0;pointer-events:none;transition:opacity .3s}
  .tkb-nav-scrim.is-on{opacity:1;pointer-events:auto}
  .tkb-nav-scrim[hidden]{display:none}
  .tkb-actions .tkb-quote{display:none}

  .tkb-hero-grid{grid-template-columns:1fr;gap:38px;
    padding-top:52px;padding-bottom:58px}
  .tkb-hero-copy{max-width:none}
  .proofbar .tkb-wrap{grid-template-columns:repeat(2,1fr);gap:22px}
  .pb-lic{grid-column:1 / -1;padding-left:0;padding-top:18px;
    border-left:0;border-top:1px solid var(--line);flex-direction:row;gap:20px}
  .intro .tkb-wrap,.about .tkb-wrap{grid-template-columns:1fr;gap:52px}
  .intro-art{order:-1}
  .intro-badge{left:auto;right:16px;bottom:-20px;width:min(280px,90%)}
  .ab-stat{right:auto;left:16px;bottom:-20px}
  .ctaband .tkb-wrap{grid-template-columns:1fr;gap:28px}
  .cb-actions{flex-direction:row;align-items:center;flex-wrap:wrap}
  .cb-actions .tkb-btn{width:auto}
  .grid-work{grid-template-columns:repeat(2,1fr)}
  .rev-grid{grid-template-columns:1fr}
}

@media (max-width:640px){
  :root{--pad:20px}
  .intro,.services,.process,.about,.gallery,.reviews,.areas,.faq{padding:62px 0}
  .ig{padding:56px 0}
  .ctaband{padding:48px 0}
  .sec-head{margin-bottom:32px}
  .tkb-util .tkb-wrap{justify-content:center;text-align:center;padding-top:8px;padding-bottom:8px}
  .tkb-util-lic{gap:14px}
  .tkb-hero-trust img{height:42px}
  .pb b{font-size:32px}
  .ar-list{grid-template-columns:repeat(2,1fr)}
  .grid-work{gap:12px}
  .acc summary{font-size:17px;padding:16px 18px}
  .acc-body{padding:0 18px 18px;font-size:15px}
  .tkb-foot-grid{grid-template-columns:1fr;gap:34px}
  .tkb-foot-links{grid-template-columns:repeat(2,1fr)}
  .tkb-foot-bottom{flex-direction:column;align-items:flex-start;gap:12px}
  .tkb-totop{right:14px;bottom:14px}
}

@media (max-width:420px){
  .tkb-foot-links{grid-template-columns:1fr}
  .proofbar .tkb-wrap{grid-template-columns:1fr}
}

/* ============================================================
   Part D: the hero estimate form (Gravity Forms markup)
   ============================================================ */

.tkb-quote-card .gform_wrapper form{margin:0}
.tkb-quote-card .gform_fields{
  display:grid;grid-template-columns:repeat(2,1fr);gap:12px;
  list-style:none;margin:0;padding:0}
.tkb-quote-card .gfield{min-width:0}
.tkb-quote-card .gfield--width-half{grid-column:span 1}
.tkb-quote-card .gfield--width-full{grid-column:1 / -1}
.tkb-quote-card .gform_validation_container,
.tkb-quote-card .gfield--type-honeypot{display:none !important}

/* the form is set to hidden_label, so placeholders carry the labelling */
.tkb-quote-card .gfield_label{
  position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);
  white-space:nowrap}

.tkb-quote-card input[type=text],
.tkb-quote-card input[type=tel],
.tkb-quote-card input[type=email],
.tkb-quote-card select,
.tkb-quote-card textarea{
  width:100%;padding:12px 14px;border:1px solid var(--line);border-radius:var(--r-sm);
  font-family:var(--f-body);font-size:14.5px;color:var(--ink-2);background:#fff;
  transition:border-color .18s, box-shadow .18s}
.tkb-quote-card textarea{min-height:82px;resize:vertical}
.tkb-quote-card select{
  appearance:none;padding-right:38px;cursor:pointer;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a748c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 13px center;background-size:15px}
.tkb-quote-card input::placeholder,
.tkb-quote-card textarea::placeholder{color:var(--muted-2)}
.tkb-quote-card input:focus,
.tkb-quote-card select:focus,
.tkb-quote-card textarea:focus{
  outline:0;border-color:var(--blue);box-shadow:0 0 0 3px rgba(28,126,214,.16)}

.tkb-quote-card .gform_footer{margin-top:14px}
.tkb-quote-card .gform_button{
  width:100%;padding:15px 24px;border:0;border-radius:var(--r-sm);cursor:pointer;
  background:var(--blue);color:#fff;font-family:var(--f-body);font-size:15.5px;
  font-weight:700;box-shadow:0 10px 24px rgba(28,126,214,.28);
  transition:background-color .2s, transform .2s}
.tkb-quote-card .gform_button:hover{background:var(--blue-d);transform:translateY(-1px)}
.tkb-quote-card .gform_hidden,
.tkb-quote-card input[type=hidden]{display:none}
.tkb-quote-card .gfield_required{color:var(--blue)}

@media (max-width:520px){
  .tkb-quote-card{padding:22px 18px 20px}
  .tkb-quote-card .gform_fields{grid-template-columns:1fr}
  .tkb-quote-card .gfield--width-half{grid-column:1 / -1}
}

/* ============================================================
   Part E: BANNER — utility bar, centred-logo split nav, centred hero,
           dark badge strip, overlapping trust card.
   Built to match "Banner section.png".
   Overrides the generic header/hero rules in Part A.
   ============================================================ */

/* ---------- Utility bar ---------- */
.tkb-util{background:#dceaf7;color:var(--ink);font-size:13.5px}
.tkb-util .tkb-wrap{display:flex;align-items:center;gap:24px;
  min-height:62px;flex-wrap:wrap;justify-content:space-between}
.tkb-util-lic{display:flex;align-items:center;gap:36px}
.tkb-util-lic p{display:flex;align-items:center;gap:9px;margin:0;
  font-size:13.5px;color:var(--ink-2)}
.tkb-util-lic p::before{
  content:"";width:19px;height:19px;flex:none;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1f33' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 4 5.5v6c0 5 3.4 9.4 8 10.5 4.6-1.1 8-5.5 8-10.5v-6L12 2Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
  background-size:contain;background-repeat:no-repeat}
.tkb-util-right{display:flex;align-items:center;gap:18px}
.tkb-util-note{font-size:14.5px;font-weight:800;letter-spacing:.01em;
  text-transform:uppercase;color:var(--ink)}
.tkb-util-right > a{
  display:inline-flex;align-items:center;gap:10px;
  padding:11px 22px;border-radius:var(--r-sm);
  background:var(--ink);color:#fff;text-decoration:none;
  font-size:16px;font-weight:700;letter-spacing:.01em;
  transition:background-color .2s, transform .2s}
.tkb-util-right > a:hover{background:var(--blue);transform:translateY(-1px)}
.tkb-util-right > a::before{
  content:"";width:17px;height:17px;flex:none;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.4.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1A17 17 0 0 1 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.4 0 .8-.2 1l-2.3 2.2Z'/%3E%3C/svg%3E");
  background-size:contain;background-repeat:no-repeat}

/* ---------- Header: logo centred, nav split either side ---------- */
.tkb-head{position:sticky;top:0;z-index:60;background:#fff;
  border-bottom:1px solid var(--line);box-shadow:0 1px 0 rgba(11,31,51,.03)}
.tkb-head .tkb-wrap{display:flex;align-items:center;justify-content:center;
  gap:0;min-height:104px;position:relative}

.tkb-logo{order:2;flex:none;margin:0 30px;display:block}
.tkb-logo img{height:74px;width:auto}

.tkb-nav{order:1;margin:0;flex:1 1 0;min-width:0}
.tkb-nav.tkb-nav-right{order:3}
.tkb-menu{display:flex;align-items:center;justify-content:center;
  gap:2px;list-style:none;margin:0;padding:0;flex-wrap:nowrap}
.tkb-nav-left .tkb-menu{justify-content:flex-end}
.tkb-nav-right .tkb-menu{justify-content:flex-start}
.tkb-menu > li > a{
  display:flex;align-items:center;gap:7px;padding:12px 13px;border-radius:var(--r-sm);
  font-size:15.5px;font-weight:600;color:var(--ink);text-decoration:none;
  white-space:nowrap;transition:color .18s}
.tkb-menu > li > a:hover{color:var(--blue);background:transparent}
.tkb-menu > li.menu-item-has-children > a::after{
  content:"";width:7px;height:7px;flex:none;
  border-right:2px solid currentColor;border-bottom:2px solid currentColor;
  transform:rotate(45deg) translate(-1px,-2px);opacity:.75}

/* Dropdowns must open INTO the page. html/body carry overflow-x:hidden (the
   off-canvas nav needs it), so a panel that runs past either edge is clipped
   rather than scrolled to - which is what was cutting the Services mega menu
   off on the left. Anchor left-hand menus to their left edge and right-hand
   menus to their right, and never let a panel exceed the viewport. */
.tkb-nav-left  .tkb-menu > li > .sub-menu{left:0;right:auto}
.tkb-nav-right .tkb-menu > li > .sub-menu{right:0;left:auto}
.tkb-nav-left  .tkb-menu > li.mega-menu > .sub-menu,
.tkb-nav-left  .tkb-menu > li.mega-menu2 > .sub-menu{left:0;right:auto}
.tkb-nav-right .tkb-menu > li.mega-menu > .sub-menu,
.tkb-nav-right .tkb-menu > li.mega-menu2 > .sub-menu{right:0;left:auto}
.tkb-menu .sub-menu{max-width:calc(100vw - 36px)}
.tkb-menu > li.mega-menu > .sub-menu,
.tkb-menu > li.mega-menu2 > .sub-menu{width:min(760px,calc(100vw - 36px))}

/* a little breathing room so the panel does not feel cramped */
.tkb-menu .sub-menu{padding:14px}
.tkb-menu .sub-menu a{padding:10px 12px}

/* ---------- Hero: centred stack, no side form ---------- */
.tkb-hero{position:relative;overflow:hidden;background:var(--ink)}
.tkb-hero-tint{position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(8,24,40,.34) 0%,rgba(8,24,40,.30) 45%,rgba(8,24,40,.46) 100%)}
.tkb-hero-grid{position:relative;display:block;
  padding-top:96px;padding-bottom:104px;text-align:center}
.tkb-hero-copy{max-width:960px;margin:0 auto;color:#fff}
.tkb-stars-line{justify-content:center;margin:0 0 20px;
  font-size:19px;font-weight:600;color:#fff;
  text-shadow:0 2px 12px rgba(0,0,0,.45)}
.tkb-stars{font-size:22px;letter-spacing:3px}
.tkb-hero-h1{font-size:clamp(38px,5.6vw,70px);color:#fff;margin:0 0 26px;
  text-shadow:0 3px 22px rgba(0,0,0,.42)}
/* the reference banner shows one solid white headline, so the highlight
   colour and ink sweep from the motion layer are switched off here */
.tkb-hero-h1 .tkba-ink{color:#fff !important}
html.tkba-ready .tkb-hero-h1 .tkba-ink::after{display:none !important}

/* the thin rule with a blue dot, under the headline */
.tkb-hero-rule{display:flex;align-items:center;justify-content:center;
  gap:0;margin:0 auto 26px;max-width:660px}
.tkb-hero-rule::before,.tkb-hero-rule::after{
  content:"";height:1px;flex:1;background:rgba(255,255,255,.55)}
.tkb-hero-rule i{width:9px;height:9px;border-radius:50%;background:var(--blue);
  margin:0 10px;flex:none;box-shadow:0 0 0 3px rgba(255,255,255,.22)}

.tkb-hero-lede{max-width:840px;margin:0 auto}
.tkb-hero-lede p{font-size:19px;line-height:1.58;color:#fff;margin:0 0 32px;
  text-shadow:0 2px 14px rgba(0,0,0,.45)}
.tkb-hero-ctas{justify-content:center;gap:18px;margin:0}
.tkb-hero-ctas .tkb-btn{padding:19px 32px;font-size:17px;border-radius:8px;
  text-transform:uppercase;letter-spacing:.02em}
.tkb-hero-ctas .tkb-btn-ink{background:var(--ink);box-shadow:0 12px 30px rgba(6,20,34,.4)}
.tkb-hero-ctas .tkb-btn-blue{background:#3c8fd8;border-color:rgba(255,255,255,.55);
  box-shadow:0 12px 30px rgba(28,126,214,.36)}
.tkb-hero-ctas .tkb-btn-blue:hover{background:var(--blue-d)}
.tkb-hero-ctas .tkb-btn svg{width:20px;height:20px}

/* ---------- Dark badge strip ---------- */
.tkb-assure{background:var(--ink);color:#fff;padding:22px 0}
.tkb-assure ul{display:flex;align-items:center;justify-content:center;
  list-style:none;margin:0;padding:0;flex-wrap:nowrap}
.tkb-assure li{display:flex;align-items:center;gap:10px;
  padding:4px 22px;font-size:15px;font-weight:600;color:#fff;white-space:nowrap;
  border-right:1px solid rgba(255,255,255,.20)}
.tkb-assure li:last-child{border-right:0}
.tkb-assure li svg{width:23px;height:23px;flex:none;fill:none;stroke:#fff;
  stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}

/* ---------- Trust logo card, overlapping the strip ---------- */
.tkb-trust{position:relative;background:var(--paper-2);padding:0 0 44px}
.tkb-trust::before{content:"";position:absolute;left:0;right:0;top:0;height:56px;
  background:var(--ink)}
.tkb-trust-card{position:relative;background:#fff;border-radius:12px;
  box-shadow:0 20px 50px rgba(11,31,51,.16);padding:30px 26px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:26px;align-items:center}
.tkb-trust-card li{display:flex;align-items:center;justify-content:center}
.tkb-trust-card ul{display:contents;list-style:none;margin:0;padding:0}
.tkb-trust-card img{height:86px;width:auto;max-width:100%;object-fit:contain}

@media (max-width:1080px){
  .tkb-logo{margin:0 24px}
  .tkb-logo img{height:62px}
  .tkb-menu > li > a{padding:11px 8px;font-size:14px}
  .tkb-assure li{padding:4px 14px;font-size:13.5px}
  .tkb-assure li svg{width:20px;height:20px}
}

@media (max-width:1000px){
  .tkb-assure ul{flex-wrap:wrap;gap:4px 0}
  .tkb-assure li{white-space:normal}
}

@media (max-width:880px){
  .tkb-head .tkb-wrap{justify-content:space-between;min-height:80px}
  .tkb-logo{order:0;margin:0}
  .tkb-logo img{height:54px}
  .tkb-nav,.tkb-nav.tkb-nav-right{
    position:fixed;inset:0 0 0 auto;order:0;flex:none;
    width:min(360px,88vw);z-index:80;background:#fff;
    padding:88px 22px 28px;overflow-y:auto;
    transform:translateX(100%);transition:transform .3s ease;
    box-shadow:-20px 0 50px rgba(11,31,51,.18)}
  .tkb-nav.is-open{transform:none}
  .tkb-nav.tkb-nav-right{padding-top:20px}
  .tkb-nav-left .tkb-menu,.tkb-nav-right .tkb-menu{justify-content:stretch}
  .tkb-hero-grid{padding-top:56px;padding-bottom:62px}
  .tkb-hero-ctas .tkb-btn{padding:16px 24px;font-size:15.5px}
  .tkb-assure ul{gap:6px}
  .tkb-assure li{border-right:0;flex:0 0 auto;padding:6px 14px;font-size:14px}
  .tkb-trust-card{grid-template-columns:repeat(2,1fr);gap:22px}
  .tkb-trust-card img{height:64px}
}

@media (max-width:640px){
  .tkb-util .tkb-wrap{justify-content:center;gap:12px;padding-top:12px;padding-bottom:12px}
  .tkb-util-lic{gap:18px;justify-content:center;flex-wrap:wrap}
  .tkb-util-lic p{font-size:12.5px}
  .tkb-util-note{font-size:13px}
  .tkb-util-right{flex-direction:column;gap:10px}
  .tkb-hero-lede p{font-size:16.5px}
  .tkb-hero-ctas{flex-direction:column;align-items:stretch}
  .tkb-hero-rule{max-width:280px}
}

/* ---------- Estimate section (the banner form, relocated) ---------- */
.tkb-estimate{padding:88px 0;background:var(--paper-2);
  border-bottom:1px solid var(--line)}
.tkb-estimate .tkb-wrap{display:grid;grid-template-columns:1fr 1fr;
  gap:56px;align-items:center}
.tkb-estimate .sec-head{margin:0}
.tkb-estimate .tkb-quote-card{margin:0}

@media (max-width:880px){
  .tkb-estimate{padding:58px 0}
  .tkb-estimate .tkb-wrap{grid-template-columns:1fr;gap:32px}
}

/* ============================================================
   Part G: the band under the banner — ticker, stat strip, assurance card.
   Built to match "after the banner 2.png". Overrides Part A's proofbar.
   ============================================================ */

/* ---------- Ticker ---------- */
.tkb-ticker{background:#dceaf7;color:var(--ink);padding:15px 0}
.tkb-ticker-track span{display:flex;align-items:center;gap:18px;padding-right:18px;
  font-size:13.5px;font-weight:800;letter-spacing:.11em;text-transform:uppercase;
  white-space:nowrap;color:var(--ink)}
.tkb-ticker-track b{font-weight:800}
.tkb-ticker-track i{font-style:normal;color:var(--blue);opacity:.65;font-size:8px}
.tkb-ticker-track .tk-pin{display:inline-flex;align-items:center;color:var(--blue)}
.tkb-ticker-track .tk-pin svg{width:14px;height:14px;fill:none;stroke:currentColor;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* ---------- Stat strip ---------- */
.proofbar{position:relative;overflow:hidden;background:var(--ink);
  border:0;padding:64px 0 78px}
.proofbar .tkb-wrap{position:relative;z-index:2;
  display:grid;grid-template-columns:repeat(4,1fr) 1.32fr;gap:0;padding-top:0;padding-bottom:0}

.pb{position:relative;text-align:center;padding:0 22px}
.pb + .pb{border-left:1px solid rgba(255,255,255,.14)}
.pb-ico{display:grid;place-items:center;margin:0 auto 16px;width:52px;height:52px;
  color:#5ea8ec}
.pb-ico svg{width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:1.4;
  stroke-linecap:round;stroke-linejoin:round}
.pb > b{display:block;font-family:var(--f-head);font-size:60px;font-weight:800;
  line-height:1;color:#4d9ee8;margin:0 0 14px;letter-spacing:-.01em}
.pb-label{display:block;font-size:15px;font-weight:800;line-height:1.28;
  letter-spacing:.055em;text-transform:uppercase;color:#fff;margin-bottom:10px}
.pb-sub{display:block;font-size:14px;line-height:1.5;color:#9dbcd8}

.pb-lic{text-align:left;padding-left:34px;display:flex;flex-direction:column;
  justify-content:center;gap:4px;border-left:1px solid rgba(255,255,255,.14)}
.pb-lic-h{display:flex;align-items:center;gap:10px;margin:0 0 10px;
  font-size:13.5px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  color:#5ea8ec;white-space:nowrap}
.pb-lic-h svg{width:22px;height:22px;flex:none;fill:none;stroke:currentColor;
  stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.pb-lic p{margin:0 0 10px;font-size:15px;line-height:1.35;color:#cfe1f1}
.pb-lic p:last-child{margin-bottom:0}
.pb-lic b{display:block;font-family:var(--f-head);font-size:24px;font-weight:800;
  color:#fff;letter-spacing:.01em}

/* the wave lines washing across the foot of the band */
.pb-waves{position:absolute;left:0;right:0;bottom:0;width:100%;height:150px;
  z-index:1;pointer-events:none;display:block}
.pb-waves path{fill:none;stroke:#3b7bb5;stroke-width:1.4;opacity:.30}

@media (max-width:1080px){
  .pb > b{font-size:46px}
  .pb-label{font-size:13.5px}
  .pb-sub{font-size:13px}
  .pb{padding:0 14px}
  .pb-lic{padding-left:22px}
}

@media (max-width:880px){
  .proofbar{padding:52px 0 64px}
  .proofbar .tkb-wrap{grid-template-columns:repeat(2,1fr);gap:34px 0}
  .pb{padding:0 16px}
  .pb + .pb{border-left:1px solid rgba(255,255,255,.14)}
  .pb:nth-child(odd){border-left:0}
  .pb-lic{grid-column:1 / -1;border-left:0;padding-left:16px;padding-top:26px;
    border-top:1px solid rgba(255,255,255,.14);text-align:left}
}

@media (max-width:520px){
  .proofbar .tkb-wrap{grid-template-columns:1fr;gap:32px}
  .pb + .pb{border-left:0;border-top:1px solid rgba(255,255,255,.14);padding-top:30px}
  .pb-lic{padding-top:30px}
}

/* ============================================================
   Part H: services section, rebuilt to "services section.png".
   Overrides the earlier services rules in Part B.
   ============================================================ */

.services{padding:88px 0 96px;background:#fff;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line)}

/* ---------- Centred header ---------- */
.services .sec-head{max-width:900px;margin:0 auto 44px;text-align:center}
.services .eyebrow{
  display:flex;align-items:center;justify-content:center;gap:16px;
  margin:0 0 16px;font-size:15px;font-weight:800;letter-spacing:.09em;
  text-transform:uppercase;color:var(--blue-d)}
.services .eyebrow::before,.services .eyebrow::after{
  content:"";height:1.5px;width:88px;background:var(--blue-d);opacity:.55}
.services .eyebrow .sv-tub{display:inline-flex;color:var(--blue-d)}
.services .eyebrow .sv-tub svg{width:26px;height:26px;fill:none;stroke:currentColor;
  stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.services .sec-head h2{font-size:clamp(30px,4vw,50px);margin:0 0 12px;color:var(--ink)}
.services .sec-head h2 .sv-script{
  display:block;font-family:Georgia,"Times New Roman",serif;font-style:italic;
  font-weight:400;font-size:.78em;color:var(--blue-d);letter-spacing:0;margin-top:2px}
.services .sec-sub{max-width:720px;margin:0 auto;font-size:16.5px;color:var(--ink-2)}

/* ---------- Cards ---------- */
.svc-groups{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;align-items:start}
.svc-group{
  background:#fff;border:1px solid var(--line);border-radius:14px;overflow:visible;
  box-shadow:0 10px 30px rgba(11,31,51,.08);padding:0;
  transition:transform .3s ease, box-shadow .3s ease}
.svc-group:hover{transform:translateY(-4px);box-shadow:0 20px 46px rgba(11,31,51,.14)}
.svc-group.is-feature{border-color:var(--line);box-shadow:0 10px 30px rgba(11,31,51,.08)}

/* overflow stays visible here: the circular badge hangs below this box.
   The photo is rounded on the image itself instead of by a clipping parent. */
.sg-media{position:relative;aspect-ratio:16/9;background:#dfe6ee}
.sg-media img{width:100%;height:100%;object-fit:cover;
  border-radius:13px 13px 0 0;display:block}
.sg-badge{
  position:absolute;left:50%;bottom:-32px;transform:translateX(-50%);z-index:2;
  display:grid;place-items:center;width:64px;height:64px;border-radius:50%;
  background:var(--blue-d);color:#fff;border:5px solid #fff;
  box-shadow:0 6px 18px rgba(11,31,51,.20)}
.sg-badge svg{width:30px;height:30px;fill:none;stroke:currentColor;stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round}

.sg-body{padding:46px 22px 22px;text-align:center}
.sg-body h3{font-family:var(--f-body);font-size:23px;font-weight:800;
  letter-spacing:-.01em;color:var(--ink);margin:0 0 10px}
.sg-desc{margin:0 0 20px;font-size:15px;line-height:1.55;color:var(--ink-2)}

.sg-list{list-style:none;margin:0 0 18px;padding:0;display:grid;gap:8px;text-align:left}
.sg-list a{
  display:flex;align-items:center;gap:12px;padding:11px 14px;
  border-radius:8px;background:#eef4fa;text-decoration:none;
  transition:background-color .2s, transform .2s}
.sg-list a:hover{background:#dde9f6;transform:translateX(3px)}
.sg-ico{display:inline-flex;flex:none;color:var(--blue-d)}
.sg-ico svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round}
.sg-lbl{flex:1;font-size:15.5px;font-weight:500;color:var(--ink)}
.sg-chev{width:15px;height:15px;flex:none;fill:none;stroke:#7b93a8;stroke-width:2.2;
  stroke-linecap:round;stroke-linejoin:round}

a.sg-cta{
  display:flex;align-items:center;justify-content:center;gap:8px;width:100%;
  margin:0;padding:15px 10px;border-radius:8px;
  background:var(--blue-d);color:#fff;text-decoration:none;
  font-size:13px;font-weight:700;line-height:1.25;transition:background-color .2s}
a.sg-cta:hover{background:var(--ink);text-decoration:none}
a.sg-cta svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round}

/* ---------- "Not sure which service" bar ---------- */
.svc-help{
  margin-top:34px;padding:26px 30px;border-radius:14px;background:#e9f1fa;
  display:grid;grid-template-columns:auto 1fr auto;gap:26px;align-items:center}
.sh-ico{display:grid;place-items:center;width:74px;height:74px;flex:none;
  border-radius:50%;background:#fff;color:var(--blue-d);
  box-shadow:0 4px 14px rgba(11,31,51,.10)}
.sh-ico svg{width:34px;height:34px;fill:none;stroke:currentColor;stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round}
.sh-txt b{display:block;font-size:22px;font-weight:800;color:var(--ink);margin-bottom:6px}
.sh-txt span{display:block;font-size:15.5px;line-height:1.5;color:var(--ink-2)}
.sh-act{text-align:center}
.sh-btn{
  display:inline-flex;align-items:center;gap:12px;padding:16px 28px;border-radius:8px;
  background:#bf8f2c;color:#fff;text-decoration:none;
  font-size:17px;font-weight:800;letter-spacing:.03em;text-transform:uppercase;
  box-shadow:0 10px 24px rgba(191,143,44,.30);
  transition:background-color .2s, transform .2s}
.sh-btn:hover{background:#a97a1f;transform:translateY(-2px)}
.sh-btn svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round}
.sh-call{display:flex;align-items:center;justify-content:center;gap:8px;
  margin:12px 0 0;font-size:15.5px;color:var(--ink-2)}
.sh-call svg{width:16px;height:16px;fill:none;stroke:var(--blue-d);stroke-width:1.9;
  stroke-linecap:round;stroke-linejoin:round}
.sh-call a{color:var(--blue-d);font-weight:800;text-decoration:none}
.sh-call a:hover{text-decoration:underline}

@media (max-width:1080px){
  .services .eyebrow::before,.services .eyebrow::after{width:52px}
  .sg-body{padding:44px 16px 18px}
  .sg-body h3{font-size:20px}
  .sg-lbl{font-size:14.5px}
  a.sg-cta{font-size:13.5px;padding:14px 10px}
}

@media (max-width:960px){
  .svc-groups{grid-template-columns:1fr;gap:34px}
  .svc-group{max-width:520px;margin:0 auto;width:100%}
  .svc-help{grid-template-columns:auto 1fr;gap:20px}
  .sh-act{grid-column:1 / -1;text-align:left}
}

@media (max-width:640px){
  .services{padding:60px 0 64px}
  .services .eyebrow{font-size:13px;gap:10px}
  .services .eyebrow::before,.services .eyebrow::after{width:26px}
  .svc-help{grid-template-columns:1fr;text-align:center;padding:24px 20px}
  .sh-ico{margin:0 auto}
  .sh-act{text-align:center}
  .sh-btn{width:100%;justify-content:center;font-size:15px;padding:15px 18px}
}

/* ============================================================
   Part I: "How it works" process section, built to "our process.png".
   Overrides the earlier process rules in Part B.
   ============================================================ */

.process{position:relative;padding:88px 0 96px;background:#fbfdff;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);overflow:hidden}

/* soft shapes in the corners, like the reference */
.process::before,.process::after{content:"";position:absolute;border-radius:50%;
  pointer-events:none;z-index:0}
.process::before{width:520px;height:520px;left:-230px;top:-190px;
  background:radial-gradient(circle at 50% 50%,#e4eefb,rgba(228,238,251,0) 70%)}
.process::after{width:460px;height:460px;right:-190px;top:-140px;
  background:radial-gradient(circle at 50% 50%,#e8f0fc,rgba(232,240,252,0) 70%)}
.process .tkb-wrap{position:relative;z-index:1}

/* ---------- Header ---------- */
.process .sec-head{max-width:880px;margin:0 auto 46px;text-align:center}
.process .eyebrow{
  display:flex;align-items:center;justify-content:center;gap:14px;
  margin:0 0 14px;font-size:14.5px;font-weight:800;letter-spacing:.1em;
  text-transform:uppercase;color:var(--blue-d)}
.process .eyebrow::before,.process .eyebrow::after{
  content:"";height:1.5px;width:74px;background:var(--blue-d);opacity:.5}
.process .eyebrow .pr-tub{display:inline-flex;color:var(--blue-d)}
.process .eyebrow .pr-tub svg{width:25px;height:25px;fill:none;stroke:currentColor;
  stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.process .sec-head h2{font-size:clamp(30px,4.2vw,52px);margin:0 0 14px;color:var(--ink)}
.process .sec-head h2 .pr-script{
  display:block;font-family:"Dancing Script","Segoe Script",cursive;
  font-weight:600;font-size:1.02em;line-height:1.18;color:#1a63c4;
  letter-spacing:0;margin-top:2px}
.process .sec-sub{max-width:680px;margin:0 auto;font-size:16.5px;color:var(--ink-2)}

/* ---------- Step cards ---------- */
.steps{list-style:none;margin:0 0 38px;padding:0;position:relative;
  display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.steps li{
  position:relative;background:#fff;border-radius:14px;padding:0;overflow:hidden;
  box-shadow:0 10px 30px rgba(11,31,51,.09);
  border-bottom:4px solid var(--step);
  transition:transform .3s ease, box-shadow .3s ease}
.steps li:hover{transform:translateY(-4px);box-shadow:0 20px 46px rgba(11,31,51,.14)}
.steps li:nth-child(1){--step:#1c6fd0; --tint:#eaf2fd}
.steps li:nth-child(2){--step:#4aa832; --tint:#eef7ea}
.steps li:nth-child(3){--step:#f0a022; --tint:#fdf4e6}

.st-art{position:relative;display:grid;place-items:center;
  aspect-ratio:16/10;background:var(--tint)}
/* stroke-width is in viewBox units (24), so it stays thin when scaled up */
.st-art > svg{width:46%;height:auto;max-height:64%;
  fill:none;stroke:var(--step);stroke-width:1.15;
  stroke-linecap:round;stroke-linejoin:round}
.st-n{
  position:absolute;left:18px;top:18px;z-index:2;
  display:grid;place-items:center;width:46px;height:46px;border-radius:50%;
  background:var(--step);color:#fff;
  font-family:var(--f-head);font-size:22px;font-weight:800;margin:0;
  box-shadow:0 4px 12px rgba(11,31,51,.22)}

.steps li > h3{margin:24px 22px 0;font-family:var(--f-body);font-size:20px;
  font-weight:800;color:var(--ink);text-align:center}
.steps li > h3::after{content:"";display:block;width:56px;height:3px;border-radius:2px;
  background:var(--step);margin:12px auto 0}
.steps li > p{margin:16px 22px 26px;font-size:15px;line-height:1.6;
  color:var(--muted);text-align:center}

/* the little arrows sitting in the gaps between cards */
.st-link{
  position:absolute;top:26%;z-index:3;display:grid;place-items:center;
  width:44px;height:44px;border-radius:50%;background:#fff;color:var(--blue-d);
  box-shadow:0 5px 16px rgba(11,31,51,.16)}
.st-link svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:2.2;
  stroke-linecap:round;stroke-linejoin:round}
.st-link-1{left:calc(33.333% - 22px + 5px)}
.st-link-2{left:calc(66.666% - 22px + 10px)}

/* ---------- Ready-to-start bar ---------- */
.proc-ctas{
  display:grid;grid-template-columns:auto 1fr auto;gap:26px;align-items:center;
  padding:26px 30px;border-radius:14px;background:#eaf1fb}
.pc-ico{display:grid;place-items:center;width:74px;height:74px;flex:none;
  border-radius:50%;background:#fff;color:var(--blue-d);
  box-shadow:0 4px 14px rgba(11,31,51,.10)}
.pc-ico svg{width:33px;height:33px;fill:none;stroke:currentColor;stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round}
.pc-txt b{display:block;font-size:22px;font-weight:800;color:var(--ink);margin-bottom:6px}
.pc-txt span{display:block;font-size:15.5px;line-height:1.5;color:var(--ink-2)}
.pc-act{display:flex;flex-direction:column;align-items:flex-end;gap:14px}
.pc-btns{display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-end}
.pc-btns .tkb-btn{padding:16px 26px;font-size:15.5px;letter-spacing:.02em;
  text-transform:uppercase}
.pc-btns .pc-call{background:#fff;color:var(--ink);border-color:#c9d8e8}
.pc-btns .pc-call:hover{background:#f2f7fc;border-color:var(--blue-d)}
.pc-trust{display:flex;align-items:center;gap:18px;flex-wrap:wrap;
  list-style:none;margin:0;padding:0;justify-content:flex-end}
.pc-trust li{display:flex;align-items:center;gap:8px;font-size:14px;color:var(--ink-2)}
.pc-trust li + li{padding-left:18px;border-left:1px solid #c9d8e8}
.pc-trust svg{width:19px;height:19px;flex:none;fill:none;stroke:var(--blue-d);
  stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}

@media (max-width:1080px){
  .steps{gap:22px}
  .st-link{display:none}
  .pc-btns .tkb-btn{padding:15px 18px;font-size:14px}
  .pc-trust li{font-size:13px}
}

@media (max-width:960px){
  .steps{grid-template-columns:1fr;gap:26px;margin-bottom:30px}
  .steps li{max-width:520px;margin:0 auto;width:100%}
  .proc-ctas{grid-template-columns:auto 1fr;gap:20px}
  .pc-act{grid-column:1 / -1;align-items:flex-start}
  .pc-btns,.pc-trust{justify-content:flex-start}
}

@media (max-width:640px){
  .process{padding:60px 0 64px}
  .process .eyebrow{font-size:12.5px;gap:10px}
  .process .eyebrow::before,.process .eyebrow::after{width:26px}
  .proc-ctas{grid-template-columns:1fr;text-align:center;padding:24px 20px}
  .pc-ico{margin:0 auto}
  .pc-act{align-items:center}
  .pc-btns{width:100%;flex-direction:column;justify-content:center}
  .pc-btns .tkb-btn{width:100%;justify-content:center}
  .pc-trust{justify-content:center;gap:10px}
  .pc-trust li + li{padding-left:0;border-left:0}
}

/* ============================================================
   Part J: CTA band, about section and the values strip.
   Built to "new replacement.png". Overrides Part B's .ctaband/.about.
   ============================================================ */

:root{--gold:#e9a838; --gold-2:#f3bc5e; --sky:#3f92ef}

/* ---------- CTA band: inset rounded card with a photo on the right ---------- */
.ctaband{position:relative;padding:0;background:#fff;overflow:visible}
.ctaband::after{content:none}
.ctaband .tkb-wrap{
  position:relative;z-index:1;display:block;gap:0;
  padding-top:60px;padding-bottom:0}
.cb-card{
  position:relative;overflow:hidden;border-radius:16px;
  background:linear-gradient(105deg,#0a1c2f 0%,#0d2843 46%,#13385c 100%);
  padding:52px 46px;
  display:grid;grid-template-columns:1.22fr .78fr;gap:44px;align-items:center;
  box-shadow:0 22px 54px rgba(11,31,51,.20)}
.cb-shot{position:absolute;inset:0 0 0 auto;width:52%;z-index:0;pointer-events:none}
.cb-shot img{width:100%;height:100%;object-fit:cover;opacity:.55}
.cb-shot::after{content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,#0b1f33 0%,rgba(11,31,51,.86) 34%,rgba(11,31,51,.42) 100%)}
.cb-main,.cb-actions{position:relative;z-index:2}

.ctaband .eyebrow{
  display:flex;align-items:center;gap:16px;margin:0 0 16px;
  font-size:13px;font-weight:800;letter-spacing:.14em;
  text-transform:uppercase;color:var(--gold)}
.ctaband .eyebrow::after{content:"";height:1.5px;width:46px;background:var(--gold);opacity:.7}
.ctaband h2{color:#fff;font-size:clamp(28px,3.4vw,44px);line-height:1.06;margin:0 0 16px}
.ctaband h2 .cb-hi{display:block;color:var(--sky)}
.cb-sub{margin:0 0 30px;color:#b9d1e6;font-size:16px;line-height:1.6;max-width:46ch}

.cb-feats{list-style:none;display:grid;grid-template-columns:repeat(3,1fr);
  gap:0;margin:0;padding:0}
.cb-feats li{padding:0 20px}
.cb-feats li:first-child{padding-left:0}
.cb-feats li + li{border-left:1px solid rgba(255,255,255,.16)}
.cb-feats .cbf-h{display:flex;align-items:center;gap:10px;margin:0 0 8px}
.cb-feats svg{width:24px;height:24px;flex:none;fill:none;stroke:var(--gold);
  stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.cb-feats b{font-size:13.5px;font-weight:800;letter-spacing:.05em;
  text-transform:uppercase;color:#fff;line-height:1.25}
.cb-feats span{display:block;font-size:13.5px;line-height:1.5;color:#a2bdd6}

.cb-actions{
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);
  border-radius:14px;padding:24px;display:grid;gap:14px;
  backdrop-filter:blur(4px)}
.cb-actions .tkb-btn{width:100%;padding:16px 20px;font-size:16px}
.cb-actions .tkb-btn-blue{background:var(--sky);box-shadow:none}
.cb-actions .tkb-btn-blue:hover{background:#2f7fd8}
.cb-actions .cb-call{background:transparent;color:#fff;border-color:rgba(255,255,255,.45)}
.cb-actions .cb-call:hover{background:rgba(255,255,255,.12);border-color:#fff}
.cb-rule{height:1px;background:rgba(255,255,255,.18);margin:2px 0}
.cb-fine{display:flex;align-items:flex-start;justify-content:center;gap:9px;
  margin:0;font-size:14.5px;line-height:1.4;color:#c3d8ea;text-align:left}
.cb-fine svg{width:17px;height:17px;flex:none;margin-top:2px;fill:none;
  stroke:var(--sky);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

/* ---------- About ---------- */
.about{padding:78px 0 84px;background:#fbfcfe}
.about .tkb-wrap{display:grid;grid-template-columns:.95fr 1.05fr;gap:60px;align-items:center}
.ab-art{position:relative}
.ab-art > img{border-radius:16px;box-shadow:0 20px 48px rgba(11,31,51,.16);
  width:100%;aspect-ratio:4/5;object-fit:cover}
.ab-stat{
  position:absolute;left:26px;bottom:-26px;right:auto;width:min(300px,84%);
  display:flex;align-items:center;gap:16px;
  background:linear-gradient(120deg,#0b1f33,#123252);
  border:2px solid var(--gold);border-radius:14px;padding:16px 18px;
  box-shadow:0 18px 40px rgba(11,31,51,.30)}
.ab-pin{display:grid;place-items:center;width:52px;height:52px;flex:none;
  border-radius:50%;background:#fff;color:#1c7ed6;
  box-shadow:0 2px 8px rgba(11,31,51,.18)}
.ab-pin svg{width:26px;height:26px;fill:none;stroke:currentColor;stroke-width:2.2;
  stroke-linecap:round;stroke-linejoin:round}
.ab-stat b{display:block;font-family:var(--f-body);font-size:18px;font-weight:800;
  color:#fff;margin-bottom:3px}
.ab-stat span{display:block;font-size:13px;line-height:1.45;color:#a9c7e3}

.ab-copy .eyebrow{position:relative;padding-top:14px;margin-bottom:10px;
  font-size:13px;letter-spacing:.16em;color:var(--blue-d)}
.ab-copy .eyebrow::before{content:"";position:absolute;left:0;top:0;
  width:44px;height:3px;border-radius:2px;background:var(--blue-d)}
.ab-copy h2{font-size:clamp(30px,3.6vw,46px);margin:0 0 10px;color:var(--ink)}
.ab-copy h2 .ab-hi{color:var(--blue-d)}
.ab-copy h2::after{content:"";display:block;width:58px;height:3px;border-radius:2px;
  background:var(--gold);margin-top:14px}
.ab-copy p{color:var(--ink-2);font-size:16px;line-height:1.66;margin:18px 0 0}
.ab-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.ab-ctas .tkb-btn{padding:15px 26px;font-size:15.5px}
.ab-ctas .ab-call{background:#fff;color:var(--ink);border-color:#c9d8e8}
.ab-ctas .ab-call:hover{background:#f2f7fc;border-color:var(--blue-d)}
.ab-ctas .tkb-btn svg{width:18px;height:18px}

/* ---------- Values strip ---------- */
.tkb-values{background:#fbfcfe;padding:0 0 74px}
.tkb-values ul{list-style:none;margin:0;padding:34px 0 0;
  border-top:1px solid #e2e9f2;
  display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.tkb-values li{display:flex;align-items:flex-start;gap:15px;padding:2px 24px}
.tkb-values li:first-child{padding-left:0}
.tkb-values li + li{border-left:1px solid #e2e9f2}
.val-ico{display:grid;place-items:center;width:52px;height:52px;flex:none;
  border-radius:50%;background:#e7f0fa;color:var(--ink)}
.val-ico svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round}
.val-txt b{display:block;font-size:14px;font-weight:800;letter-spacing:.05em;
  text-transform:uppercase;color:var(--ink);margin-bottom:5px}
.val-txt span{display:block;font-size:13.5px;line-height:1.5;color:var(--muted)}

@media (max-width:1080px){
  .cb-card{padding:40px 30px;gap:30px}
  .cb-feats li{padding:0 12px}
  .tkb-values li{padding:2px 16px;gap:12px}
  .val-txt span{font-size:13px}
}

@media (max-width:960px){
  .cb-card{grid-template-columns:1fr;gap:28px}
  .cb-shot{width:100%;opacity:.5}
  .about .tkb-wrap{grid-template-columns:1fr;gap:60px}
  .ab-art{max-width:520px}
  .tkb-values ul{grid-template-columns:repeat(2,1fr);gap:26px 0}
  .tkb-values li:nth-child(odd){border-left:0;padding-left:0}
}

@media (max-width:640px){
  .ctaband .tkb-wrap{padding-top:44px}
  .cb-card{padding:30px 20px;border-radius:14px}
  .cb-feats{grid-template-columns:1fr;gap:18px}
  .cb-feats li{padding:0}
  .cb-feats li + li{border-left:0;border-top:1px solid rgba(255,255,255,.16);padding-top:16px}
  .about{padding:60px 0 64px}
  .ab-stat{left:14px;right:14px;width:auto}
  .ab-ctas .tkb-btn{width:100%;justify-content:center}
  .tkb-values{padding-bottom:56px}
  .tkb-values ul{grid-template-columns:1fr;gap:22px}
  .tkb-values li{border-left:0;padding-left:0}
}

/* ============================================================
   Part K: gallery, built to "new one.png".
   Overrides the earlier gallery rules in Part C.
   ============================================================ */

.gallery{position:relative;padding:84px 0 92px;background:#fafcff;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);overflow:hidden}

/* ---------- Centred header ---------- */
.gallery .sec-head{max-width:960px;margin:0 auto 40px;text-align:center}
.gallery .eyebrow{
  display:flex;align-items:center;justify-content:center;gap:14px;
  margin:0 0 14px;font-size:14.5px;font-weight:800;letter-spacing:.11em;
  text-transform:uppercase;color:var(--blue-d)}
.gallery .eyebrow::before,.gallery .eyebrow::after{
  content:"";height:1.5px;width:52px;background:var(--blue-d);opacity:.5}
.gallery .eyebrow .gl-tub{display:grid;place-items:center;width:38px;height:38px;
  border-radius:50%;background:#e7f0fa;color:var(--blue-d);flex:none}
.gallery .eyebrow .gl-tub svg{width:21px;height:21px;fill:none;stroke:currentColor;
  stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.gallery .sec-head h2{font-size:clamp(28px,3.9vw,48px);margin:0 0 10px;color:var(--ink)}
.gallery .sec-head h2::after{
  content:"";display:block;width:88px;height:3px;border-radius:2px;
  background:var(--blue-d);margin:16px auto 0;position:relative}
.gl-dot{display:block;width:7px;height:7px;border-radius:50%;background:var(--blue-d);
  margin:-5px auto 0}
.gallery .sec-sub{max-width:640px;margin:14px auto 0;font-size:16.5px;color:var(--ink-2)}

/* ---------- Grid ---------- */
.grid-work{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.grid-work figure{
  position:relative;margin:0;overflow:hidden;border-radius:14px;
  aspect-ratio:1/1;background:#dfe6ee;
  box-shadow:0 8px 24px rgba(11,31,51,.10);
  transition:transform .3s ease, box-shadow .3s ease}
.grid-work figure:hover{transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(11,31,51,.18)}
.grid-work figure img{width:100%;height:100%;object-fit:cover;
  transition:transform .6s cubic-bezier(.22,.61,.36,1)}
.grid-work figure:hover img{transform:scale(1.06)}

.gw-zoom{
  position:absolute;top:14px;right:14px;z-index:3;
  display:grid;place-items:center;width:34px;height:34px;border-radius:50%;
  background:var(--blue-d);color:#fff;box-shadow:0 4px 12px rgba(11,31,51,.28)}
.gw-zoom svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round}

.grid-work figcaption{
  position:absolute;left:0;right:0;bottom:0;z-index:2;
  display:flex;align-items:center;gap:12px;padding:44px 14px 14px;
  font-size:13.5px;font-weight:600;line-height:1.35;color:#fff;
  background:linear-gradient(to top,rgba(7,22,37,.92),rgba(7,22,37,.55) 52%,rgba(7,22,37,0))}
.gw-ico{display:grid;place-items:center;width:34px;height:34px;flex:none;
  border-radius:50%;background:var(--blue-d);color:#fff}
.gw-ico svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round}

/* ---------- Button ---------- */
.gal-cta{position:relative;margin-top:38px;display:flex;justify-content:center}
.gal-cta .tkb-btn{background:var(--blue-d);color:#fff;padding:18px 34px;
  font-size:17px;border-radius:10px;box-shadow:0 12px 28px rgba(28,110,200,.30)}
.gal-cta .tkb-btn:hover{background:var(--ink)}
.gal-cta .tkb-btn svg{width:19px;height:19px}
.gal-swoosh{position:absolute;right:calc(50% + 130px);bottom:6px;width:150px;height:86px;
  pointer-events:none}
.gal-swoosh svg{width:100%;height:100%;fill:none;stroke:#9dc4ea;stroke-width:2;
  stroke-dasharray:7 7;stroke-linecap:round}

@media (max-width:1080px){
  .grid-work{grid-template-columns:repeat(3,1fr);gap:18px}
  .gal-swoosh{display:none}
}
@media (max-width:780px){
  .grid-work{grid-template-columns:repeat(2,1fr);gap:14px}
  .grid-work figcaption{font-size:12.5px;padding:38px 11px 11px;gap:9px}
  .gw-ico{width:28px;height:28px}
  .gw-ico svg{width:15px;height:15px}
  .gw-zoom{width:29px;height:29px;top:10px;right:10px}
}
@media (max-width:520px){
  .gallery{padding:58px 0 62px}
  .gallery .eyebrow::before,.gallery .eyebrow::after{width:24px}
  .grid-work{grid-template-columns:1fr}
  .gal-cta .tkb-btn{width:100%;justify-content:center;font-size:15.5px;padding:16px 20px}
}

/* ============================================================
   Part M: reviews, built to "reviews.png".
   Overrides the earlier review rules in Part C.
   ============================================================ */

.reviews{position:relative;background:#fafcff;overflow:hidden}
.reviews::before,.reviews::after{content:"";position:absolute;border-radius:50%;
  pointer-events:none;z-index:0}
.reviews::before{width:460px;height:460px;left:-210px;top:-120px;
  background:radial-gradient(circle at 50% 50%,#e6effb,rgba(230,239,251,0) 70%)}
.reviews::after{width:400px;height:400px;right:-170px;bottom:-140px;
  background:radial-gradient(circle at 50% 50%,#e9f1fc,rgba(233,241,252,0) 70%)}
.reviews .tkb-wrap{position:relative;z-index:1}

/* ---------- Centred header ---------- */
.reviews .sec-head{max-width:900px;margin-left:auto;margin-right:auto;text-align:center}
.reviews .eyebrow{
  display:flex;align-items:center;justify-content:center;gap:14px;
  margin:0 0 14px;font-size:14.5px;font-weight:800;letter-spacing:.1em;
  text-transform:uppercase;color:var(--blue-d)}
.reviews .eyebrow::before,.reviews .eyebrow::after{
  content:"";height:1.5px;width:48px;background:var(--blue-d);opacity:.5}
.rv-chat{display:grid;place-items:center;width:38px;height:38px;flex:none;
  border-radius:50%;background:#e7f0fa;color:var(--blue-d)}
.rv-chat svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round}
.reviews .sec-head h2{font-size:clamp(28px,3.9vw,48px);margin:0 0 14px;color:var(--ink)}
.rv-score{display:flex;align-items:center;justify-content:center;gap:10px;
  flex-wrap:wrap;margin:0 0 14px;font-size:16px;font-weight:600;color:var(--ink)}
.rv-score .stars{color:var(--gold);font-size:20px;letter-spacing:3px}
.rv-score .rating{font-family:var(--f-body);font-size:20px;font-weight:800;
  color:var(--blue-d)}
.reviews .sec-sub{max-width:660px;margin:0 auto;font-size:16.5px;color:var(--ink-2)}

/* ---------- Cards ---------- */
.rev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;align-items:start}
.rev-grid blockquote{
  position:relative;margin:0;background:#fff;border:1px solid #e8eef6;
  border-radius:14px;padding:26px 24px 22px;
  box-shadow:0 8px 26px rgba(11,31,51,.07);
  transition:transform .3s ease, box-shadow .3s ease}
.rev-grid blockquote:hover{transform:translateY(-4px);
  box-shadow:0 18px 42px rgba(11,31,51,.13)}
.rev-grid blockquote::before{
  content:"\201C";display:block;font-family:Georgia,serif;font-size:56px;line-height:.7;
  color:#9dc4ea;margin:0 0 8px;position:static}
.rev-grid blockquote p{margin:0 0 20px;font-size:15px;line-height:1.62;color:var(--ink-2)}

.rev-grid cite{display:flex;align-items:center;gap:14px;font-style:normal;
  padding-top:18px;border-top:1px solid #e8eef6}
.rv-ico{display:grid;place-items:center;width:52px;height:52px;flex:none;
  border-radius:50%;background:#e7f0fa;color:var(--blue-d)}
.rv-ico svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round}
.rv-who{min-width:0}
.rev-grid cite b{display:block;font-size:15.5px;font-weight:700;color:var(--ink)}
.rev-grid cite .rv-svc{display:block;font-size:14px;color:var(--blue-d);margin-top:1px}
/* Part C's `.rev-grid cite span` (0,2,1) out-specifies a bare `.rv-stars`,
   which rendered these grey instead of gold. Match its weight. */
.rev-grid cite .rv-stars{display:block;color:var(--gold);font-size:14.5px;
  letter-spacing:2px;margin-top:5px}

/* ---------- Button ---------- */
.rev-cta{margin-top:34px;display:flex;justify-content:center}
.rev-cta .tkb-btn{background:var(--blue-d);color:#fff;padding:18px 34px;
  font-size:17px;border-radius:10px;box-shadow:0 12px 28px rgba(28,110,200,.30)}
.rev-cta .tkb-btn:hover{background:var(--ink)}
.rev-cta .tkb-btn svg{width:20px;height:20px}

@media (max-width:1080px){
  .rev-grid{grid-template-columns:repeat(2,1fr);gap:20px}
}
@media (max-width:760px){
  .rev-grid{grid-template-columns:1fr}
  .reviews .eyebrow::before,.reviews .eyebrow::after{width:24px}
  .rev-cta .tkb-btn{width:100%;justify-content:center;font-size:15.5px;padding:16px 20px}
}

/* ============================================================
   Part N: blog, built to "blogs new.png".
   Overrides the scrolling-rail rules from the earlier blog strip.
   ============================================================ */

.tkb-blog{position:relative;background:#f4f8fd;overflow:hidden}
.tkb-blog::before,.tkb-blog::after{content:"";position:absolute;border-radius:50%;
  pointer-events:none;z-index:0}
.tkb-blog::before{width:420px;height:420px;left:-190px;bottom:-160px;
  background:radial-gradient(circle at 50% 50%,#e3edfa,rgba(227,237,250,0) 70%)}
.tkb-blog::after{width:380px;height:380px;right:-160px;top:-130px;
  background:radial-gradient(circle at 50% 50%,#e6effb,rgba(230,239,251,0) 70%)}
.tkb-blog .tkb-wrap{position:relative;z-index:1}

/* ---------- Centred header ---------- */
.tkb-blog .sec-head{max-width:880px;margin-left:auto;margin-right:auto;text-align:center}
.tkb-blog .eyebrow{
  display:flex;align-items:center;justify-content:center;gap:14px;
  margin:0 0 14px;font-size:14.5px;font-weight:800;letter-spacing:.1em;
  text-transform:uppercase;color:var(--blue-d)}
.tkb-blog .eyebrow::after{content:"";height:1.5px;width:34px;background:var(--blue-d);opacity:.55}
.bl-pen{display:grid;place-items:center;width:42px;height:42px;flex:none;
  border-radius:50%;background:#e0ecfa;color:var(--blue-d)}
.bl-pen svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round}
.tkb-blog .sec-head h2{font-size:clamp(28px,3.9vw,48px);margin:0 0 6px;color:var(--ink)}
.tkb-blog .sec-head h2 .bl-hi{display:block;color:var(--blue-d)}
.bl-dot{display:block;width:64px;height:3px;border-radius:2px;background:var(--blue-d);
  margin:12px auto 0;position:relative}
.bl-dot::after{content:"";position:absolute;right:-11px;bottom:-2px;width:7px;height:7px;
  border-radius:50%;background:var(--blue-d)}
.tkb-blog .sec-sub{max-width:620px;margin:16px auto 0;font-size:16.5px;color:var(--ink-2)}

/* ---------- Cards ---------- */
.bscroll-wrap{position:relative}
.bscroll{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
  overflow:visible;margin-right:0;padding:0;scroll-snap-type:none}
.bscroll-btn{display:none !important}

.bcard{position:relative;width:auto;background:#fff;border-radius:14px;
  box-shadow:0 8px 26px rgba(11,31,51,.09);overflow:visible;
  display:flex;flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease}
.bcard:hover{transform:translateY(-4px);box-shadow:0 18px 42px rgba(11,31,51,.15)}

/* overflow stays visible: the round icon badge hangs below this box. The photo
   is rounded on the image itself rather than by a clipping parent. */
.bcard-media{position:relative;aspect-ratio:4/3;background:#dfe6ee}
.bcard-media img{width:100%;height:100%;object-fit:cover;display:block;
  border-radius:14px 14px 0 0;
  transition:transform .6s cubic-bezier(.22,.61,.36,1)}
.bcard-media .bcard-pill{border-radius:6px}
.bcard:hover .bcard-media img{transform:scale(1.04)}

/* category pill replaces the old overlaid "read the article" chip */
.bcard-pill{
  position:absolute;left:12px;top:12px;right:auto;bottom:auto;z-index:2;
  display:inline-flex;align-items:center;gap:0;
  padding:6px 12px;border-radius:6px;
  background:var(--blue-d);color:#fff;
  font-size:11px;font-weight:800;letter-spacing:.09em;text-transform:uppercase}
.bcard-pill svg{display:none}

.bcard-ico{
  position:absolute;left:18px;bottom:-24px;z-index:3;
  display:grid;place-items:center;width:50px;height:50px;border-radius:50%;
  background:#e4eefb;color:var(--blue-d);border:4px solid #fff;
  box-shadow:0 4px 14px rgba(11,31,51,.16)}
.bcard-ico svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round}

.bcard-body{padding:38px 20px 22px;display:flex;flex-direction:column;flex:1}
.bcard-date{margin:0 0 8px;font-size:13px;font-weight:700;letter-spacing:.05em;
  text-transform:uppercase;color:var(--blue-d)}
.bcard-title{margin:0;font-size:17.5px;line-height:1.32;font-weight:800;color:var(--ink)}
.bcard-title a{color:inherit;text-decoration:none}
.bcard-title a::after{content:"";position:absolute;inset:0;z-index:4}
.bcard:hover .bcard-title a{color:var(--blue-d);text-decoration:none}
.bcard-title::after{content:"";display:block;width:44px;height:3px;border-radius:2px;
  background:var(--blue-d);margin:12px 0 0}
.bcard-excerpt{margin:14px 0 0;font-size:14.5px;line-height:1.55;color:var(--muted)}
.bcard-more{display:inline-flex;align-items:center;gap:8px;margin-top:auto;
  padding-top:16px;font-size:15px;font-weight:700;color:var(--blue-d)}
.bcard-more svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;transition:transform .2s}
.bcard:hover .bcard-more svg{transform:translateX(4px)}

/* ---------- "More tips" bar ---------- */
.blog-more{
  display:grid;grid-template-columns:auto 1fr auto;gap:24px;align-items:center;
  padding:24px 30px;border-radius:14px;background:#e4eefb;
  max-width:1000px;margin-left:auto;margin-right:auto}
.bm-ico{display:grid;place-items:center;width:72px;height:72px;flex:none;
  border-radius:50%;background:#fff;color:var(--blue-d);
  box-shadow:0 4px 14px rgba(11,31,51,.10)}
.bm-ico svg{width:34px;height:34px;fill:none;stroke:currentColor;stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round}
.bm-txt b{display:block;font-size:21px;font-weight:800;color:var(--ink);margin-bottom:5px}
.bm-txt span{display:block;font-size:15.5px;line-height:1.5;color:var(--ink-2)}
.blog-more .tkb-btn{background:var(--blue-d);color:#fff;padding:16px 28px;
  font-size:16px;border-radius:10px;box-shadow:0 10px 24px rgba(28,110,200,.28)}
.blog-more .tkb-btn:hover{background:var(--ink)}

@media (max-width:1080px){
  .bscroll{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:760px){
  .bscroll{grid-template-columns:1fr;gap:20px}
  .bcard{max-width:460px;margin:0 auto;width:100%}
  .blog-more{grid-template-columns:auto 1fr;gap:18px}
  .blog-more .tkb-btn{grid-column:1 / -1;justify-content:center}
}
@media (max-width:520px){
  .tkb-blog .eyebrow::after{width:18px}
  .blog-more{grid-template-columns:1fr;text-align:center;padding:22px 18px}
  .bm-ico{margin:0 auto}
}

/* ============================================================
   Part O: Instagram section.
   The WordPress build keeps the live Elfsight feed; this styles the
   static preview grid that stands in for it elsewhere.
   ============================================================ */

.ig{background:#fff;border-top:1px solid var(--line)}
.ig .sec-head{max-width:760px;margin-left:auto;margin-right:auto;text-align:center}
.ig .eyebrow{
  display:flex;align-items:center;justify-content:center;gap:14px;
  margin:0 0 14px;font-size:14.5px;font-weight:800;letter-spacing:.1em;
  text-transform:uppercase;color:var(--blue-d)}
.ig .eyebrow::before,.ig .eyebrow::after{
  content:"";height:1.5px;width:48px;background:var(--blue-d);opacity:.5}
.ig-badge{display:grid;place-items:center;width:40px;height:40px;flex:none;
  border-radius:11px;color:#fff;
  background:linear-gradient(45deg,#f9a03f 4%,#e4405f 45%,#c13584 70%,#5851db 100%)}
.ig-badge svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.8;
  stroke-linecap:round;stroke-linejoin:round}
.ig .sec-head h2{font-size:clamp(28px,3.6vw,44px);margin:0 0 10px;color:var(--ink)}
.ig-handle{display:inline-flex;align-items:center;gap:7px;margin:0;
  font-size:16px;font-weight:700;color:var(--blue-d);text-decoration:none}
.ig-handle:hover{text-decoration:underline}

/* ---------- Tile grid ---------- */
/* Full-bleed strip of square tiles, matching how the live Elfsight feed renders
   (client screenshot instagram.jpg): edge to edge, butted together, no radius. */
.ig-strip{position:relative;margin-top:10px;
  margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);width:100vw}
.ig-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin:0}
.ig-tile{position:relative;display:block;aspect-ratio:1/1;overflow:hidden;
  border-radius:0;background:#dfe6ee;box-shadow:none}
.ig-next{
  position:absolute;top:50%;right:18px;transform:translateY(-50%);z-index:4;
  display:grid;place-items:center;width:42px;height:42px;border-radius:50%;
  background:rgba(20,32,46,.72);color:#fff;pointer-events:none}
.ig-next svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:2.2;
  stroke-linecap:round;stroke-linejoin:round}
.ig-tile img{width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .5s cubic-bezier(.22,.61,.36,1)}
.ig-tile:hover img{transform:scale(1.07)}
.ig-tile::after{
  content:"";position:absolute;inset:0;opacity:0;transition:opacity .3s;
  background:linear-gradient(45deg,rgba(249,160,63,.72),rgba(228,64,95,.72) 45%,
    rgba(193,53,132,.72) 70%,rgba(88,81,219,.72))}
.ig-tile:hover::after{opacity:1}
.ig-tile .ig-mark{
  position:absolute;inset:0;z-index:2;display:grid;place-items:center;
  color:#fff;opacity:0;transform:scale(.8);transition:opacity .3s, transform .3s}
.ig-tile:hover .ig-mark{opacity:1;transform:none}
.ig-tile .ig-mark svg{width:30px;height:30px;fill:none;stroke:currentColor;
  stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}

/* ---------- Follow button ---------- */
.ig-cta{margin-top:30px;display:flex;justify-content:center}
.ig-cta .tkb-btn{
  color:#fff;padding:16px 30px;font-size:16px;border-radius:10px;
  background:linear-gradient(45deg,#f9a03f 4%,#e4405f 45%,#c13584 70%,#5851db 100%);
  box-shadow:0 12px 28px rgba(193,53,132,.28)}
.ig-cta .tkb-btn:hover{filter:brightness(1.06)}
.ig-cta .tkb-btn svg{width:19px;height:19px}

/* the live Elfsight widget replaces the grid on the WordPress build */
.ig-feed:not(:empty){margin-top:8px}

@media (max-width:1080px){.ig-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:700px){
  .ig-grid{grid-template-columns:repeat(2,1fr)}
  .ig-next{display:none}
  .ig .eyebrow::before,.ig .eyebrow::after{width:24px}
}
@media (max-width:460px){
  .ig-grid{grid-template-columns:repeat(2,1fr)}
  .ig-cta .tkb-btn{width:100%;justify-content:center}
}

/* ============================================================
   Part P: FAQ, built to "FAQ enhancement.png".
   Overrides the earlier accordion rules in Part C.
   ============================================================ */

.faq{position:relative;background:linear-gradient(180deg,#fbfcfe 0%,#f2f7fd 100%);
  overflow:hidden}
.faq::after{content:"";position:absolute;right:6%;top:70px;width:170px;height:110px;
  pointer-events:none;opacity:.5;
  background-image:radial-gradient(circle,#9dc4ea 1.6px,transparent 1.7px);
  background-size:17px 17px}
.faq .tkb-wrap{position:relative;z-index:1}

/* ---------- Header ---------- */
.faq .sec-head{max-width:720px;margin-left:0;text-align:left}
.faq .eyebrow{font-size:13.5px;letter-spacing:.15em;color:var(--blue-d)}
.faq .sec-head h2{font-size:clamp(28px,3.7vw,46px);margin:0;color:var(--ink)}
.faq .sec-head h2::after{content:"";display:block;width:74px;height:4px;border-radius:2px;
  background:var(--blue-d);margin:14px 0 0}
.faq .sec-sub{margin:16px 0 0;font-size:16.5px;line-height:1.6;color:var(--ink-2)}

/* ---------- Accordion rows ---------- */
.faq-list{display:grid;gap:14px;max-width:none}
.acc{border:1px solid #e6edf6;border-radius:12px;background:#fff;overflow:hidden;
  box-shadow:0 4px 16px rgba(11,31,51,.05);
  transition:border-color .2s, box-shadow .2s}
.acc[open]{border-color:rgba(28,110,200,.34);box-shadow:0 12px 30px rgba(11,31,51,.09)}
.acc summary{
  display:flex;align-items:center;gap:18px;
  padding:20px 22px;cursor:pointer;list-style:none;
  font-family:var(--f-body);font-size:17.5px;font-weight:700;color:var(--ink)}
.acc summary::-webkit-details-marker{display:none}
.faq-ico{display:grid;place-items:center;width:48px;height:48px;flex:none;
  border-radius:50%;background:#e7f0fa;color:var(--blue-d)}
.faq-ico svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round}
.faq-q{flex:1;min-width:0;line-height:1.35}
.acc summary::after{
  content:"";flex:none;width:30px;height:30px;border-radius:50%;
  background:#e7f0fa;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231668b3' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size:15px;background-repeat:no-repeat;background-position:center;
  transition:transform .25s, background-color .2s}
.acc[open] summary::after{transform:rotate(45deg);background-color:#d7e6f7}
.acc summary:hover .faq-q{color:var(--blue-d)}
.acc-body{padding:0 22px 22px 88px;font-size:15.5px;line-height:1.68;color:var(--muted)}
.acc-body ul{margin:0 0 1em;padding-left:20px}
.acc-body li{margin-bottom:6px}

/* ---------- "Still have a question" bar ---------- */
.faq-cta{
  display:flex;align-items:center;gap:20px;flex-wrap:wrap;
  padding:20px 24px;border-radius:12px;background:#eef4fb;border:1px solid #e0eaf6}
.faq-cta .fq-ico{display:grid;place-items:center;width:52px;height:52px;flex:none;
  border-radius:50%;background:var(--blue-d);color:#fff;
  box-shadow:0 6px 16px rgba(28,110,200,.28)}
.faq-cta .fq-ico svg{width:25px;height:25px;fill:none;stroke:currentColor;
  stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.faq-cta .fq-txt{flex:1;min-width:200px}
.faq-cta .fq-txt b{display:block;font-size:18px;font-weight:800;color:var(--ink)}
.faq-cta .fq-txt span{display:block;font-size:15px;color:var(--ink-2);margin-top:2px}
.faq-cta .tkb-btn{padding:15px 26px;font-size:15.5px;border-radius:8px}
.faq-cta .tkb-btn-blue{background:var(--blue-d);box-shadow:0 10px 24px rgba(28,110,200,.26)}
.faq-cta .tkb-btn-ink{background:#0e2233}

@media (max-width:860px){
  .acc summary{font-size:16px;gap:14px;padding:17px 18px}
  .faq-ico{width:42px;height:42px}
  .faq-ico svg{width:21px;height:21px}
  .acc-body{padding-left:18px}
  .faq::after{display:none}
}
@media (max-width:640px){
  .acc summary{font-size:15.5px}
  .faq-cta{flex-direction:column;align-items:flex-start;text-align:left}
  .faq-cta .tkb-btn{width:100%;justify-content:center}
}

/* ============================================================
   Part L: vertical rhythm. Loaded LAST so it settles the spacing
   every section had been setting for itself.
   One scale, three breakpoints. Tightened per client mark-up
   (spacing.jpg: "narrow the spacing" at every seam). Sections that deliberately run
   into each other keep their relationship; only the values change.
   ============================================================ */

:root{
  --sec-y:62px;       /* standard section, top and bottom      */
  --sec-y-md:46px;    /* half-step, for sections that pair up  */
  --head-gap:34px;    /* section header to the content below   */
}

/* ---------- standard sections: equal padding, same everywhere ---------- */
.intro,
.services,
.process,
.gallery,
.reviews,
.areas,
.faq,
.tkb-blog,
.ig{padding-top:var(--sec-y);padding-bottom:var(--sec-y)}

/* the dark stat band reads heavier, so it sits slightly tighter */
.proofbar{padding-top:calc(var(--sec-y) + 6px);padding-bottom:calc(var(--sec-y) + 6px)}

/* ---------- blocks that are meant to run together ---------- */
/* the trust card overlaps the assurance strip above it */
.tkb-trust{padding-top:0;padding-bottom:var(--sec-y-md)}
/* CTA card -> about -> values strip read as one unit, so only the
   outer edges get the full step and the seams stay closed */
.ctaband{padding-top:0;padding-bottom:0}
.ctaband .tkb-wrap{padding-top:var(--sec-y);padding-bottom:0}
.about{padding-top:var(--sec-y-md);padding-bottom:var(--sec-y-md)}
.tkb-values{padding-top:0;padding-bottom:var(--sec-y)}

/* ---------- section headers ---------- */
.sec-head,
.services .sec-head,
.process .sec-head,
.gallery .sec-head,
.tkb-blog .sec-head,
.reviews .sec-head,
.faq .sec-head,
.ig .sec-head{margin-bottom:var(--head-gap)}

/* ---------- trailing elements inside sections ---------- */
.gal-cta,
.blog-more,
.faq-cta,
.proc-ctas,
.svc-help{margin-top:28px}

@media (max-width:960px){
  :root{--sec-y:52px; --sec-y-md:40px; --head-gap:28px}
}

@media (max-width:640px){
  :root{--sec-y:44px; --sec-y-md:34px; --head-gap:24px}
  .gal-cta,.blog-more,.faq-cta,.proc-ctas,.svc-help{margin-top:22px}
}

/* ============================================================
   Part F: side drawer for the estimate form + mobile overflow fix
   ============================================================ */

/* The off-canvas nav sits at translateX(100%) but still counts toward
   scrollWidth, which was pushing the whole page sideways on phones. */
html,body{overflow-x:hidden}
@media (max-width:880px){
  .tkb-nav{visibility:hidden}
  .tkb-nav.is-open{visibility:visible}
}

/* ---------- Drawer ---------- */
.tkb-drawer{
  position:fixed;top:50%;right:0;z-index:90;
  display:flex;align-items:flex-start;
  transform:translateY(-50%) translateX(calc(100% - 48px));
  transition:transform .45s cubic-bezier(.22,.61,.36,1);
}
.tkb-drawer.is-open{transform:translateY(-50%) translateX(0)}

.tkb-drawer-tab{
  flex:none;width:48px;align-self:center;
  display:flex;align-items:center;justify-content:center;gap:12px;
  padding:36px 0;border:0;cursor:pointer;
  border-radius:10px 0 0 10px;
  background:var(--blue);color:#fff;
  font-family:var(--f-body);font-size:13px;font-weight:800;
  letter-spacing:.13em;text-transform:uppercase;
  writing-mode:vertical-rl;transform:rotate(180deg);
  box-shadow:-6px 0 20px rgba(11,31,51,.22);
  transition:background-color .2s;
}
.tkb-drawer-tab:hover{background:var(--blue-d)}
.tkb-drawer-tab svg{width:18px;height:18px;fill:none;stroke:currentColor;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
  transform:rotate(90deg)}

.tkb-drawer-panel{
  width:min(390px,calc(100vw - 60px));
  max-height:min(86vh,780px);overflow-y:auto;overscroll-behavior:contain;
  background:#fff;border-radius:14px 0 0 14px;
  box-shadow:-24px 0 60px rgba(11,31,51,.26);
  padding:26px 24px 22px;
}
.tkb-drawer-panel .tkb-quote-card{
  background:transparent;box-shadow:none;padding:0;border-radius:0}

.tkb-drawer-close{
  position:absolute;top:12px;right:14px;width:32px;height:32px;
  border:0;border-radius:50%;cursor:pointer;
  background:var(--paper-2);color:var(--ink);
  display:grid;place-items:center;transition:background-color .2s}
.tkb-drawer-close:hover{background:#e4eaf1}
.tkb-drawer-close svg{width:15px;height:15px;fill:none;stroke:currentColor;
  stroke-width:2.4;stroke-linecap:round}
.tkb-drawer-panel{position:relative}

.tkb-drawer-scrim{
  position:fixed;inset:0;z-index:85;background:rgba(7,22,37,.42);
  opacity:0;pointer-events:none;transition:opacity .35s}
.tkb-drawer-scrim.is-on{opacity:1;pointer-events:auto}
.tkb-drawer-scrim[hidden]{display:none}

/* the nudge: a short peek, then it tucks itself away again */
.tkb-drawer.is-peek{transform:translateY(-50%) translateX(calc(100% - 148px))}

@media (max-width:880px){
  .tkb-drawer{top:auto;bottom:0;transform:translateY(calc(100% - 46px)) translateX(0);
    right:0;left:0;flex-direction:column;align-items:center}
  .tkb-drawer.is-open{transform:translateY(0) translateX(0)}
  .tkb-drawer.is-peek{transform:translateY(calc(100% - 78px)) translateX(0)}
  .tkb-drawer-tab{
    width:100%;align-self:auto;padding:0;height:46px;
    writing-mode:horizontal-tb;transform:none;border-radius:12px 12px 0 0;
    box-shadow:0 -6px 20px rgba(11,31,51,.22)}
  .tkb-drawer-tab svg{transform:none}
  .tkb-drawer-panel{width:100%;max-height:76vh;border-radius:0;
    box-shadow:0 -20px 50px rgba(11,31,51,.26)}
}

@media (prefers-reduced-motion: reduce){
  .tkb-drawer{transition:none}
}
