/*--------------------------------------------------------------
# SwiftyResults — "Ledger" design system (2026-08 redesign)
# Paper-crisp, ink-sharp, one blue. Outcomes in mono, deltas in green.
--------------------------------------------------------------*/
:root {
  /* Legacy variable names kept for landing-page compatibility; values remapped. */
  --bg: #fafaf7;
  --bg-alt: #f3f2ec;
  --surface: #ffffff;
  --surface-2: #f0efe9;
  --border: #e4e2da;
  --border-strong: #c9c7bc;
  --text: #12181f;
  --muted: #5c6672;
  --primary: #2b54e8;
  --primary-2: #1e3fbf;
  --accent: #2b54e8;
  --green: #0c8a4d;
  --gradient: linear-gradient(#2b54e8, #2b54e8);
  --gradient-soft: #eef1fd;
  --radius: 14px;
  --font-head: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Spline Sans Mono", "Courier New", monospace;
  --shadow-lg: 0 18px 40px rgba(18, 24, 31, 0.08);
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--primary-2); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 2px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { padding: 88px 0; position: relative; }

.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--primary);
  margin-bottom: 16px;
}
.section-head .kicker i { font-size: 13px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* grad-text renders as solid Swift Blue under the flat gradient */
.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Reveal on scroll (hidden state only when JS is running) */
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal { transition: opacity .55s ease, transform .55s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 15.5px;
  padding: 14px 28px; border-radius: 10px; border: 1.5px solid transparent;
  cursor: pointer; transition: background .15s, color .15s, border-color .15s, transform .15s;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-2); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--text); }
.btn-ghost:hover { background: var(--text); color: var(--bg); transform: translateY(-1px); }
.btn i { font-size: 17px; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; }

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar {
  background: var(--text); color: #fff;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .02em;
  padding: 9px 0; position: relative; z-index: 1002;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.topbar a:hover { color: #c7d2ff; }
.topbar .tb-contact { display: flex; gap: 20px; }
.topbar .tb-contact a { text-decoration: none; }
.topbar .tb-contact i { margin-right: 5px; }
@media (max-width: 720px) { .topbar .tb-contact span.tb-mail { display: none; } }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  position: sticky; top: 0; z-index: 1001;
  background: rgba(250, 250, 247, .9);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.header.scrolled { border-bottom-color: var(--border); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 38px; width: auto; }
.logo span { font-family: var(--font-head); font-size: 21px; font-weight: 800; color: var(--text); }
.logo span b { color: var(--primary); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a.nav-link {
  color: var(--muted); font-size: 15px; font-weight: 500;
  padding: 9px 13px; border-radius: 8px;
}
.nav a.nav-link:hover, .nav a.nav-link.active { color: var(--text); background: var(--surface-2); }
.nav .btn { padding: 10px 22px; font-size: 14px; margin-left: 12px; }

.nav-toggle {
  display: none; background: none; border: none; color: var(--text);
  font-size: 28px; cursor: pointer;
}
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    background: var(--bg); gap: 10px;
    opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 1005;
  }
  .nav.open { opacity: 1; pointer-events: auto; }
  .nav a.nav-link { font-size: 20px; }
  .nav .btn { margin: 18px 0 0; }
}
.nav .nav-close { display: none; }
@media (max-width: 1024px) {
  .nav .nav-close {
    display: block; position: absolute; top: 22px; right: 24px; background: none;
    border: none; color: var(--text); font-size: 32px; cursor: pointer;
  }
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero { padding: 96px 0 72px; }
.hero .container { max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text); border: 1px solid var(--border-strong);
  background: var(--surface); padding: 7px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(12, 138, 77, .2); }
  50% { box-shadow: 0 0 0 7px rgba(12, 138, 77, .06); }
}

.hero h1 { font-size: clamp(40px, 6.4vw, 72px); font-weight: 800; letter-spacing: -.025em; margin-bottom: 24px; }
.hero .sub { color: var(--muted); font-size: 19px; max-width: 640px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }

.hero-trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-trust .stars { color: #e8a013; font-size: 14px; letter-spacing: 2px; }
.hero-trust .t-item { display: flex; flex-direction: column; gap: 1px; }
.hero-trust .t-item strong { font-family: var(--font-mono); font-size: 14.5px; font-weight: 600; }
.hero-trust .t-item span { color: var(--muted); font-size: 13px; }
.hero-trust .t-sep { width: 1px; height: 36px; background: var(--border-strong); }

/*--------------------------------------------------------------
# Outcome ticker (signature element)
--------------------------------------------------------------*/
.clients { padding: 0; border-top: 1px solid var(--text); border-bottom: 1px solid var(--text); background: var(--surface); }
.clients .label {
  text-align: center; font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  padding: 14px 24px 0;
}
.marquee { overflow: hidden; position: relative; padding: 12px 0 16px; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: scroll 44s linear infinite; }
.marquee-track span {
  font-family: var(--font-mono); font-size: 13.5px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase; color: var(--text);
  white-space: nowrap; display: flex; align-items: center; gap: 10px;
  padding: 0 30px; border-right: 1px solid var(--border);
}
.marquee-track span i { font-style: normal; }
.marquee-track .up { color: var(--green); font-weight: 600; }
@keyframes scroll { to { transform: translateX(-50%); } }

/*--------------------------------------------------------------
# Stats
--------------------------------------------------------------*/
.stats { padding: 64px 0; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.stat { text-align: center; padding: 34px 18px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--font-mono); font-size: clamp(28px, 3.2vw, 40px); font-weight: 600; letter-spacing: -.02em; }
.stat .num .grad-text { -webkit-text-fill-color: var(--primary); color: var(--primary); background: none; }
.stat p { color: var(--muted); font-size: 14px; margin-top: 6px; }
@media (max-width: 860px) {
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; position: relative;
  transition: border-color .2s, transform .2s;
}
.svc:hover { border-color: var(--text); transform: translateY(-3px); }
.svc .ic {
  width: 46px; height: 46px; border-radius: 11px; background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--primary); margin-bottom: 18px;
}
.svc h3 { font-size: 19px; margin-bottom: 9px; }
.svc > p { color: var(--muted); font-size: 14.5px; margin-bottom: 15px; }
.svc ul { list-style: none; margin: 0 0 18px; }
.svc ul li { font-size: 13.5px; color: var(--muted); padding: 3.5px 0 3.5px 22px; position: relative; }
.svc ul li::before {
  content: "→"; position: absolute; left: 0; color: var(--primary); font-size: 12px; top: 5px;
}
.svc .svc-link {
  margin-top: auto; font-size: 14px; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px;
}
.svc .svc-link:hover { color: var(--primary-2); }
.svc.featured { border-color: var(--primary); border-width: 1.5px; }
.svc .tag {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--primary); padding: 3px 10px; border-radius: 100px;
}
@media (max-width: 1024px) { .services .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .services .grid { grid-template-columns: 1fr; } }

/*--------------------------------------------------------------
# AI section
--------------------------------------------------------------*/
.ai-spot .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.ai-spot .lead-col .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px;
}
.ai-spot h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 16px; }
.ai-spot .lead-col > p { color: var(--muted); font-size: 16.5px; margin-bottom: 26px; }
.ai-benefits { list-style: none; margin-bottom: 32px; }
.ai-benefits li { display: flex; gap: 14px; padding: 9px 0; align-items: flex-start; }
.ai-benefits li i { color: var(--green); font-size: 18px; margin-top: 2px; }
.ai-benefits li strong { display: block; font-family: var(--font-head); font-size: 15.5px; }
.ai-benefits li span { color: var(--muted); font-size: 14px; }

.ai-tabs { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.ai-tab { border-bottom: 1px solid var(--border); cursor: pointer; padding: 0; transition: background .15s; }
.ai-tab:last-child { border-bottom: 0; }
.ai-tab:hover { background: var(--bg-alt); }
.ai-tab.active { background: var(--gradient-soft); }
.ai-tab .th { display: flex; align-items: center; gap: 14px; padding: 20px 22px; }
.ai-tab .th i.main {
  font-size: 20px; color: var(--primary); width: 40px; height: 40px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ai-tab.active .th i.main { border-color: var(--primary); }
.ai-tab .th h3 { font-size: 16.5px; flex: 1; }
.ai-tab .th .chev { color: var(--muted); transition: transform .2s; }
.ai-tab.active .th .chev { transform: rotate(180deg); color: var(--primary); }
.ai-tab .tb { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.ai-tab.active .tb { max-height: 300px; }
.ai-tab .tb p { color: var(--muted); font-size: 14.5px; padding: 0 22px 20px 76px; }
@media (max-width: 1024px) {
  .ai-spot .wrap { grid-template-columns: 1fr; }
  .ai-tab .tb p { padding-left: 22px; }
}

/*--------------------------------------------------------------
# Process (numbered — a real sequence)
--------------------------------------------------------------*/
.process { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { position: relative; padding: 26px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.step .n {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: var(--primary); letter-spacing: .1em; margin-bottom: 14px; display: block;
}
.step h3 { font-size: 18px; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: 14px; }
@media (max-width: 1024px) { .process .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process .grid { grid-template-columns: 1fr; } }

/*--------------------------------------------------------------
# Why us
--------------------------------------------------------------*/
.why .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { padding: 26px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); display: flex; gap: 16px; align-items: flex-start; }
.why-card i { font-size: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.why-card h3 { font-size: 16.5px; margin-bottom: 7px; }
.why-card p { color: var(--muted); font-size: 14px; }
@media (max-width: 1024px) { .why .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why .grid { grid-template-columns: 1fr; } }

/*--------------------------------------------------------------
# Results / proof
--------------------------------------------------------------*/
.results .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.res-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px; transition: border-color .2s, transform .2s;
}
.res-card:hover { border-color: var(--green); transform: translateY(-3px); }
.res-card .metric {
  font-family: var(--font-mono); font-size: clamp(32px, 3.4vw, 44px); font-weight: 600;
  letter-spacing: -.02em; color: var(--green); line-height: 1.1;
}
.res-card .metric-label { font-family: var(--font-head); font-size: 14.5px; font-weight: 700; margin: 6px 0 12px; }
.res-card p.how { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.res-card .client {
  display: flex; align-items: center; gap: 9px; border-top: 1px solid var(--border); padding-top: 14px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .02em; color: var(--muted);
}
.res-card .client i { color: var(--primary); }
.res-card .client strong { color: var(--text); font-weight: 600; }
@media (max-width: 960px) { .results .grid { grid-template-columns: 1fr; } }

/* FOMO slots pill */
.slots-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: #8a5a00; background: #fdf3df; border: 1px solid #ecd9ae;
  padding: 7px 16px; border-radius: 100px;
}
.slots-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #e8a013; animation: pulse-amber 2s infinite; }
@keyframes pulse-amber {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232, 160, 19, .25); }
  50% { box-shadow: 0 0 0 7px rgba(232, 160, 19, .05); }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pf-filters { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 38px; }
.pf-filters button {
  background: var(--surface); border: 1px solid var(--border); color: var(--muted);
  font-family: var(--font-mono); font-size: 13px; font-weight: 500; letter-spacing: .03em;
  padding: 8px 22px; border-radius: 100px; cursor: pointer; transition: all .15s;
}
.pf-filters button:hover { color: var(--text); border-color: var(--border-strong); }
.pf-filters button.active { background: var(--text); color: var(--bg); border-color: var(--text); }

.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pf-item {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background: var(--surface); cursor: pointer; transition: border-color .2s, transform .2s;
}
.pf-item:hover { transform: translateY(-3px); border-color: var(--text); }
.pf-item .thumb { aspect-ratio: 4 / 3; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #fff; border-bottom: 1px solid var(--border); }
.pf-item .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform .3s; }
.pf-item:hover .thumb img { transform: scale(1.04); }
.pf-item .info { padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pf-item .info h3 { font-size: 15.5px; }
.pf-item .info p { color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.pf-item .info .links { display: flex; gap: 7px; flex-shrink: 0; }
.pf-item .info .links a, .pf-item .info .links button {
  width: 34px; height: 34px; border-radius: 9px; background: var(--surface);
  border: 1px solid var(--border); color: var(--text); display: flex; align-items: center;
  justify-content: center; font-size: 14px; cursor: pointer; transition: all .15s;
}
.pf-item .info .links a:hover, .pf-item .info .links button:hover { background: var(--text); border-color: var(--text); color: var(--bg); }
.pf-item.hide { display: none; }
@media (max-width: 1024px) { .pf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pf-grid { grid-template-columns: 1fr; } }

/* Portfolio modal */
.pf-modal {
  position: fixed; inset: 0; z-index: 1100; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(18, 24, 31, .55);
}
.pf-modal.open { display: flex; }
.pf-modal .box {
  width: min(920px, 100%); background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
}
.pf-modal .box-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border-bottom: 1px solid var(--border); }
.pf-modal .box-head h3 { font-size: 17px; }
.pf-modal .box-head span { color: var(--muted); font-size: 13px; display: block; }
.pf-modal .box-head .actions { display: flex; align-items: center; gap: 10px; }
.pf-modal .box-head a.visit { font-size: 13.5px; font-weight: 600; padding: 8px 18px; border-radius: 8px; background: var(--primary); color: #fff; }
.pf-modal .box-head a.visit:hover { background: var(--primary-2); }
.pf-modal .box-head button {
  width: 36px; height: 36px; border-radius: 9px; background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-size: 16px; cursor: pointer;
}
.pf-modal .stage { position: relative; background: var(--bg-alt); }
.pf-modal .stage img { width: 100%; max-height: 66vh; object-fit: contain; }
.pf-modal .stage .arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.pf-modal .stage .arrow:hover { background: var(--text); color: var(--bg); }
.pf-modal .stage .arrow.prev { left: 14px; } .pf-modal .stage .arrow.next { right: 14px; }
.pf-modal .dots { display: flex; justify-content: center; gap: 8px; padding: 15px; }
.pf-modal .dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border-strong); cursor: pointer; }
.pf-modal .dots button.active { background: var(--primary); }

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.t-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.t-card:hover { border-color: var(--text); transform: translateY(-3px); }
.t-card .stars { color: #e8a013; font-size: 13.5px; letter-spacing: 2px; margin-bottom: 14px; }
.t-card p.quote { font-size: 15px; margin-bottom: 20px; flex: 1; }
.t-card .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.t-card .who .wt h3 { font-size: 15.5px; }
.t-card .who .wt h4 { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.avatar-initials {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--text); color: var(--bg);
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.t-verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 11px; color: var(--green); font-weight: 600; margin-top: 3px;
}
@media (max-width: 960px) { .t-grid { grid-template-columns: 1fr; } }

/*--------------------------------------------------------------
# CTA band
--------------------------------------------------------------*/
.cta-band { padding: 0 0 88px; }
.cta-band .inner {
  background: var(--text); border-radius: 20px; padding: 60px 48px; text-align: center;
}
.cta-band h2 { font-size: clamp(28px, 3.6vw, 40px); color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, .78); font-size: 17px; max-width: 600px; margin: 0 auto 28px; }
.cta-band .btn { background: #fff; color: var(--text); }
.cta-band .btn:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.cta-band .note { font-family: var(--font-mono); font-size: 12.5px; color: rgba(255, 255, 255, .6); margin-top: 14px; }

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq .list { max-width: 780px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-item.open { background: var(--bg-alt); }
.faq-item button.q {
  width: 100%; background: none; border: none; color: var(--text); cursor: pointer;
  font-family: var(--font-head); font-size: 16px; font-weight: 700; text-align: left;
  padding: 19px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item button.q i { color: var(--primary); font-size: 17px; transition: transform .2s; flex-shrink: 0; }
.faq-item.open button.q i { transform: rotate(45deg); }
.faq-item .a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item .a p { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }
.faq-item.open .a { max-height: 400px; }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact { background: var(--bg-alt); border-top: 1px solid var(--border); }
.contact .wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: start; }
.contact .info-cards { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px;
}
.info-card i {
  width: 42px; height: 42px; border-radius: 10px; background: var(--gradient-soft);
  color: var(--primary); font-size: 18px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-card h3 { font-size: 15.5px; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: 14px; display: block; }
.info-card a:hover { color: var(--primary); }

.c-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.c-form h3 { font-size: 22px; margin-bottom: 6px; }
.c-form > p { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.c-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.c-form .field { margin-bottom: 14px; }
.c-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.c-form input, .c-form select, .c-form textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: 9px; color: var(--text); font-family: var(--font-body); font-size: 14.5px;
  padding: 12px 15px; transition: border-color .15s, box-shadow .15s;
}
.c-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6 6.5-6' stroke='%235c6672' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.c-form input:focus, .c-form select:focus, .c-form textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(43, 84, 232, .14);
}
.c-form textarea { resize: vertical; min-height: 120px; }
.c-form .btn { width: 100%; margin-top: 6px; }
.form-msg { display: none; border-radius: 9px; padding: 12px 15px; font-size: 14px; margin-bottom: 15px; }
.form-msg.ok { display: block; background: #e8f6ee; border: 1px solid #b5e0c8; color: #0a6b3d; }
.form-msg.err { display: block; background: #fdeceb; border: 1px solid #f3c1bd; color: #b3372e; }
.form-msg.loading { display: block; background: var(--bg-alt); border: 1px solid var(--border-strong); color: var(--muted); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-trust { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 16px; font-size: 12.5px; color: var(--muted); }
.form-trust span { display: inline-flex; align-items: center; gap: 6px; }
.form-trust i { color: var(--green); font-size: 13px; }
@media (max-width: 960px) { .contact .wrap { grid-template-columns: 1fr; } .c-form .row2 { grid-template-columns: 1fr; } }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer { border-top: 1px solid var(--border); padding: 0; background: var(--bg); }
.f-news { padding: 48px 0; border-bottom: 1px solid var(--border); }
.f-news .container { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.f-news .container > div { min-width: 0; }
.f-news h4 { font-size: 21px; margin-bottom: 7px; }
.f-news p { color: var(--muted); font-size: 14.5px; }
.f-news form { display: flex; gap: 10px; flex-wrap: wrap; }
.f-news input[type="email"] {
  flex: 1; min-width: 0; background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 10px; padding: 13px 18px; color: var(--text); font-size: 14.5px; font-family: var(--font-body);
}
.f-news input[type="email"]:focus { outline: none; border-color: var(--primary); }
.f-news button { border-radius: 10px; }
.f-news #newsletter-message { font-size: 13.5px; margin-top: 10px; }
@media (max-width: 860px) { .f-news .container { grid-template-columns: 1fr; } }

.f-main { padding: 56px 0 36px; }
.f-main .grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.f-main .logo { margin-bottom: 16px; }
.f-main .about-txt { color: var(--muted); font-size: 14.5px; max-width: 320px; margin-bottom: 20px; }
.socials { display: flex; gap: 9px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px; background: var(--surface);
  border: 1px solid var(--border); color: var(--text); font-size: 15px;
  display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.socials a:hover { background: var(--text); border-color: var(--text); color: var(--bg); transform: translateY(-2px); }
.f-main h4 { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.f-main ul { list-style: none; }
.f-main ul li { margin-bottom: 10px; }
.f-main ul a { color: var(--text); font-size: 14px; }
.f-main ul a:hover { color: var(--primary); }
.f-main .f-contact p { color: var(--muted); font-size: 14px; margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.f-main .f-contact i { color: var(--primary); margin-top: 3px; }
.f-main .f-contact a { color: var(--muted); }
.f-main .f-contact a:hover { color: var(--primary); }
@media (max-width: 960px) { .f-main .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .f-main .grid { grid-template-columns: 1fr; } }

.f-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.f-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 13.5px; }

/*--------------------------------------------------------------
# Landing-page shared bits (used by free-audit / checklist / referral)
--------------------------------------------------------------*/
.lp-footer { border-top: 1px solid var(--border); padding: 26px 0; color: var(--muted); font-size: 13.5px; }

/*--------------------------------------------------------------
# Floating chat + back-to-top
--------------------------------------------------------------*/
.chat-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 1050;
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--primary); color: #fff; font-size: 23px;
  box-shadow: 0 10px 26px rgba(43, 84, 232, .35);
  display: flex; align-items: center; justify-content: center; transition: transform .15s, background .15s;
}
.chat-fab:hover { transform: scale(1.06); background: var(--primary-2); }
.chat-panel {
  position: fixed; bottom: 96px; right: 26px; z-index: 1050; width: 330px; max-width: calc(100vw - 40px);
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: 16px;
  box-shadow: var(--shadow-lg); overflow: hidden; display: none;
}
.chat-panel.open { display: block; }
.chat-panel .cp-head { background: var(--text); padding: 17px 20px; color: #fff; }
.chat-panel .cp-head h4 { font-size: 16px; }
.chat-panel .cp-head p { font-size: 12.5px; opacity: .8; }
.chat-panel .cp-body { padding: 18px; }
.chat-panel input, .chat-panel textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: 9px; color: var(--text); font-family: var(--font-body); font-size: 14px;
  padding: 10px 13px; margin-bottom: 10px;
}
.chat-panel input:focus, .chat-panel textarea:focus { outline: none; border-color: var(--primary); }
.chat-panel .btn { width: 100%; padding: 11px; font-size: 14px; }
.chat-panel .cp-msg { font-size: 13px; margin-bottom: 10px; }
.chat-panel .cp-msg.ok { color: var(--green); } .chat-panel .cp-msg.err { color: #b3372e; }

.to-top {
  position: fixed; bottom: 26px; left: 26px; z-index: 1040;
  width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); font-size: 19px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .15s;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-2px); border-color: var(--text); }

/*--------------------------------------------------------------
# Exit-intent popup
--------------------------------------------------------------*/
.exit-modal {
  position: fixed; inset: 0; z-index: 1200; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(18, 24, 31, .55);
}
.exit-modal.open { display: flex; }
.ex-card {
  position: relative; width: min(520px, 100%);
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 18px; box-shadow: var(--shadow-lg); padding: 38px 36px; text-align: center;
  overflow: hidden;
}
.ex-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--primary); }
.ex-card .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #8a5a00; background: #fdf3df; border: 1px solid #ecd9ae;
  padding: 6px 15px; border-radius: 100px; margin-bottom: 16px;
}
.ex-card h3 { font-size: 25px; margin-bottom: 12px; }
.ex-card > p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.ex-card .ex-row { display: flex; gap: 10px; }
.ex-card .ex-row input {
  flex: 1; min-width: 0; background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: 10px; color: var(--text); font-family: var(--font-body); font-size: 14.5px; padding: 12px 16px;
}
.ex-card .ex-row input:focus { outline: none; border-color: var(--primary); }
.ex-card .ex-row .btn { padding: 12px 22px; font-size: 14px; }
.ex-card .form-msg { margin: 14px 0 0; text-align: left; }
.ex-card .ex-note { font-size: 12px; color: var(--muted); margin-top: 15px; }
.ex-card .ex-note i { color: var(--green); }
.ex-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  border-radius: 9px; background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-size: 15px; cursor: pointer; transition: all .15s;
}
.ex-close:hover { border-color: var(--text); }
@media (max-width: 560px) { .ex-card { padding: 30px 22px; } .ex-card .ex-row { flex-direction: column; } }

/*--------------------------------------------------------------
# Sticky mobile CTA bar
--------------------------------------------------------------*/
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1060;
  background: rgba(250, 250, 247, .96); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-strong); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px;
  padding: 12px 10px; border-radius: 10px;
}
.mobile-cta a.call { background: var(--surface); border: 1.5px solid var(--text); color: var(--text); }
.mobile-cta a.quote { background: var(--primary); color: #fff; }
@media (max-width: 860px) {
  .mobile-cta { display: flex; }
  .chat-fab { bottom: 84px; }
  .chat-panel { bottom: 150px; }
  .to-top { display: none; }
  body { padding-bottom: 64px; }
}
