/* ============================================================
   SITELY DEMO — "Autoworks" prospect mockup.
   Sample marketing site built to pitch a real, family-owned
   Lake Havasu City, AZ auto repair shop. Not affiliated.
   Stock photos; reviews are the business's real public
   customer reviews, lightly trimmed. Not indexed.
   Asphalt charcoal + Havasu-sunset orange — an honest,
   ASE-certified shop out to change how people feel about
   auto repair.
   ============================================================ */
:root {
  --ink: #161b23;
  --ink-2: #202834;
  --ink-3: #2b3646;
  --steel: #39465c;
  --org: #f4581c;
  --org-d: #cf4310;
  --org-l: #ff7a3d;
  --slate: #4a5568;
  --gray: #eef1f5;
  --cream: #f6f8fa;
  --paper: #ffffff;
  --body: #5b6675;
  --heading: #161b23;
  --line: #e1e6ee;
  --line-dk: #33405a;
  --good: #2f8f57;
  --bad: #c0563e;
  --shadow: 0 16px 40px rgba(18, 26, 44, .14);
  --shadow-sm: 0 8px 22px rgba(18, 26, 44, .09);
  --radius: 12px;
  --radius-sm: 8px;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--paper); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1220px, 92%); margin: 0 auto; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--heading); line-height: 1.1; letter-spacing: .01em; font-weight: 700; }
h1, h2 { text-transform: uppercase; }
section { scroll-margin-top: 82px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; letter-spacing: .05em; text-transform: uppercase;
  text-decoration: none; text-align: center;
  padding: .8rem 1.8rem; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent;
  transition: background .16s ease, transform .14s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn-block { width: 100%; }
.btn-org { background: var(--org); color: #fff; }
.btn-org:hover { background: var(--org-d); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--org); }
.btn-ghost:hover { background: var(--org); color: #fff; }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: rgba(22,27,35,.45); }
.btn-ghost-dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink); color: #cdd7e6; font-size: .78rem; font-weight: 500;
  letter-spacing: .02em; padding: 9px 0; border-bottom: 1px solid var(--line-dk);
}
.topbar-inner { display: flex; justify-content: space-between; gap: 8px 24px; flex-wrap: wrap; align-items: center; }
.topbar .gl { color: var(--org-l); }
.topbar b { color: var(--org-l); font-weight: 700; }
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }
.topbar a:hover { color: var(--org-l); text-decoration: underline; }

/* ---------- Header ---------- */
.site-header { background: #fff; position: sticky; top: 0; z-index: 50; border-bottom: 3px solid var(--org); box-shadow: 0 2px 14px rgba(18,26,44,.07); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 0; }
.brand { text-decoration: none; line-height: 1; flex: none; display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 50px; height: 50px; flex: none; background: var(--ink); color: var(--org-l);
  display: grid; place-items: center; border-radius: var(--radius-sm); font-family: var(--font-head);
  font-weight: 700; font-size: 1.5rem; letter-spacing: .02em; box-shadow: inset 0 0 0 3px rgba(244,88,28,.28);
  position: relative;
}
.brand-mark::after { content: "⚙"; position: absolute; top: 2px; right: 5px; font-size: .55rem; color: var(--org); }
.brand-txt .brand-top { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.62rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); }
.brand-txt .brand-sub { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--org-d); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
  color: var(--ink-2); font-family: var(--font-head); font-size: 1.06rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none; padding: 8px 0; position: relative;
}
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--org); transition: right .2s ease; border-radius: 2px; }
.nav a:hover { color: var(--org-d); }
.nav a:hover::after { right: 0; }
.header-btns { display: flex; gap: 12px; align-items: center; flex: none; }
.header-call { text-decoration: none; color: var(--ink); text-align: right; line-height: 1.15; }
.header-call small { display: block; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--org-d); font-weight: 600; }
.header-call b { font-family: var(--font-head); font-size: 1.25rem; letter-spacing: .02em; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(102deg, rgba(13,17,24,.95) 0%, rgba(16,22,33,.85) 42%, rgba(16,22,33,.45) 100%);
}
.hero-inner { padding: 90px 0 100px; max-width: 760px; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head);
  font-size: .95rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: #fff; background: var(--org); padding: 6px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; letter-spacing: .015em; margin-bottom: 18px; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.hero h1 .gl { color: var(--org-l); }
.hero-sub { color: #e5ecf5; font-size: 1.08rem; max-width: 640px; margin-bottom: 26px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 12px; margin-bottom: 30px; }
.hero-badges span { font-family: var(--font-head); font-size: .95rem; font-weight: 500; letter-spacing: .03em; color: #eef3fa; display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); padding: 6px 14px; border-radius: 999px; }
.hero-badges .stars { color: var(--org-l); letter-spacing: 1px; }
.hero-badges .hot { background: rgba(244,88,28,.22); border-color: rgba(244,88,28,.55); color: #ffc7a6; font-weight: 600; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Trust / stats strip ---------- */
.stats { background: var(--org); color: #fff; background-image: linear-gradient(115deg, var(--org-d) 0%, var(--org) 55%, var(--org-l) 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 26px 16px; border-left: 1px solid rgba(255,255,255,.22); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 2.5rem; line-height: 1; color: #fff; letter-spacing: .02em; }
.stat span { display: block; margin-top: 7px; font-family: var(--font-head); font-weight: 500; font-size: .95rem; letter-spacing: .05em; text-transform: uppercase; color: #ffe1d1; }

/* ---------- Section shell ---------- */
.sec { padding: 78px 0 84px; }
.sec.alt { background: var(--cream); }
.sec-head { max-width: 800px; margin: 0 auto 48px; text-align: center; }
.eyebrow { font-family: var(--font-head); font-size: .95rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--org-d); margin-bottom: 12px; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.sec-head p { color: var(--body); font-size: 1.02rem; margin-top: 14px; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease; }
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.svc-card figure { position: relative; overflow: hidden; }
.svc-card img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover img { transform: scale(1.05); }
.svc-card figure b {
  position: absolute; left: 12px; bottom: 12px; background: var(--org); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .09em;
  text-transform: uppercase; padding: 4px 13px; border-radius: 999px;
}
.svc-body { padding: 22px 24px 26px; flex: 1; }
.svc-body h3 { font-size: 1.45rem; margin-bottom: 8px; }
.svc-body p { font-size: .93rem; color: var(--body); }

/* ---------- Split (photo + dark panel) ---------- */
.split { display: grid; grid-template-columns: 1fr 1.05fr; }
.split-media { min-height: 520px; position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .badge-lift {
  position: absolute; left: 24px; bottom: 24px; background: #fff; color: var(--ink);
  border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow); max-width: 230px;
}
.split-media .badge-lift b { display: block; font-family: var(--font-head); font-size: 2.2rem; color: var(--org-d); line-height: 1; }
.split-media .badge-lift span { font-size: .8rem; color: var(--body); font-weight: 500; }
.split-panel { background: var(--ink); color: #dbe3ee; padding: 74px 7% 74px 6%; }
.split-panel .eyebrow { color: var(--org-l); }
.split-panel h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 18px; }
.split-panel p { color: #b9c4d3; font-size: 1rem; margin-bottom: 16px; }
.tick { list-style: none; display: grid; gap: 14px; margin: 24px 0 30px; }
.tick li { position: relative; padding-left: 36px; font-size: .97rem; color: #d3dcea; }
.tick li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 24px; height: 24px; background: var(--org); color: #fff; border-radius: 6px; display: grid; place-items: center; font-size: .7rem; font-weight: 800; }
.tick li b { color: #fff; }

/* ---------- Process (how a visit works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px 26px; box-shadow: var(--shadow-sm); text-align: center; }
.step .num { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; background: var(--ink); color: var(--org-l); border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.step .ic { font-size: 1.9rem; margin: 8px 0 12px; }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--body); }

/* ---------- Comparison table (Autoworks vs dealership) ---------- */
.compare-wrap { max-width: 940px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius); overflow-x: auto; box-shadow: var(--shadow-sm); background: #fff; }
.compare { width: 100%; border-collapse: collapse; min-width: 520px; }
.compare th, .compare td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); font-size: .95rem; vertical-align: top; }
.compare thead th { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; }
.compare thead th:nth-child(1) { background: var(--ink); color: #fff; width: 26%; }
.compare thead th.us { background: var(--org); color: #fff; font-weight: 700; }
.compare thead th.them { background: var(--gray); color: var(--slate); }
.compare tbody th { background: var(--cream); font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; letter-spacing: .03em; color: var(--ink); width: 26%; }
.compare td.us { color: var(--ink); font-weight: 500; background: #fff6f0; }
.compare td.us::before { content: "✓ "; color: var(--good); font-weight: 800; }
.compare td.them { color: var(--slate); }
.compare td.them::before { content: "✕ "; color: var(--bad); font-weight: 800; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare-note { text-align: center; margin-top: 22px; font-size: .86rem; color: var(--body); }

/* ---------- About band ---------- */
.about { text-align: center; }
.about-inner { max-width: 880px; margin: 0 auto; }
.about h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); margin-bottom: 8px; }
.about .sig { font-family: var(--font-head); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--org-d); margin-bottom: 22px; font-size: 1.05rem; }
.about p { color: var(--body); font-size: 1.04rem; margin-bottom: 16px; }
.about p b { color: var(--ink); }

/* ---------- Gallery strip ---------- */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.strip figure { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s ease; }
.strip figure:hover img { transform: scale(1.06); }
.strip figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 13px; background: linear-gradient(transparent, rgba(13,17,24,.88)); font-family: var(--font-head); font-weight: 600; font-size: 1rem; letter-spacing: .05em; text-transform: uppercase; color: #fff; }

/* ---------- Reviews ---------- */
.rev-head { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 32px; }
.rev-score { display: flex; align-items: center; gap: 16px; }
.rev-score .big { font-family: var(--font-head); font-weight: 700; font-size: 3.4rem; line-height: 1; color: var(--org-d); }
.rev-score .stars { color: var(--org); font-size: 1.3rem; letter-spacing: 2px; }
.rev-score small { display: block; color: var(--body); font-size: .84rem; margin-top: 2px; }
.star-empty { color: #cdd4de; }
.rev-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); border-top: 3px solid var(--org); padding: 24px 22px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.rev-card .stars { color: var(--org); letter-spacing: 2px; font-size: 1rem; margin-bottom: 10px; }
.rev-tag { display: inline-block; align-self: flex-start; font-family: var(--font-head); font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--org-d); background: var(--cream); border: 1px solid var(--line); padding: 3px 10px; border-radius: 999px; margin-bottom: 12px; }
.rev-card p { font-size: .95rem; color: #4a5261; flex: 1; }
.rev-user { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.rev-avatar { width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; background: var(--ink); }
.rev-user b { font-size: .9rem; display: block; line-height: 1.2; color: var(--ink); }
.rev-user span { font-size: .76rem; color: var(--body); }
.rev-note { text-align: center; margin-top: 24px; font-size: .84rem; color: var(--body); max-width: 780px; margin-left: auto; margin-right: auto; }

/* ---------- FAQ ---------- */
.faq-grid { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; letter-spacing: .02em; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--org-d); font-weight: 700; line-height: 1; flex: none; }
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-item .faq-body { padding: 16px 22px 22px; color: var(--body); font-size: .96rem; }

/* ---------- Service area ---------- */
.areas { background: var(--ink); color: #fff; text-align: center; padding: 78px 0 84px; }
.areas .eyebrow { color: var(--org-l); }
.areas h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 12px; }
.areas p { color: #b9c4d3; max-width: 680px; margin: 0 auto 30px; }
.area-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; list-style: none; max-width: 920px; margin: 0 auto; }
.area-list li { border: 1px solid var(--line-dk); background: rgba(255,255,255,.04); padding: 9px 20px; border-radius: 999px; font-family: var(--font-head); font-weight: 500; font-size: 1.02rem; letter-spacing: .04em; color: #e6edf6; }
.area-list li.hq { background: var(--org); color: #fff; border-color: var(--org); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.area-list li.hq span { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--ink); color: var(--org-l); padding: 2px 7px; border-radius: 999px; }

/* ---------- CTA band ---------- */
.cta { background: var(--org); color: #fff; text-align: center; padding: 72px 0 76px; background-image: linear-gradient(120deg, var(--org-d) 0%, var(--org) 55%, var(--org-l) 100%); }
.cta h2 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 12px; }
.cta p { font-size: 1.06rem; max-width: 680px; margin: 0 auto 26px; color: #ffe4d5; }
.cta .hero-btns { justify-content: center; }
.cta .btn-ghost-dark { color: #fff; border-color: rgba(255,255,255,.6); }
.cta .btn-ghost-dark:hover { background: #fff; color: var(--org-d); border-color: #fff; }
.cta .fine { font-size: .84rem; margin-top: 20px; color: #ffd2ba; font-weight: 500; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; }
.contact-info h3 { font-size: 1.9rem; margin-bottom: 6px; }
.info-rows { display: grid; gap: 18px; margin: 22px 0 26px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row .ic { width: 42px; height: 42px; flex: none; background: var(--ink); color: var(--org-l); display: grid; place-items: center; border-radius: var(--radius-sm); font-size: 1rem; }
.info-row b { font-family: var(--font-head); font-size: 1.15rem; letter-spacing: .03em; display: block; color: var(--ink); }
.info-row span, .info-row a { font-size: .93rem; color: var(--body); text-decoration: none; }
.info-row a:hover { color: var(--org-d); }
.info-label { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; letter-spacing: .04em; display: block; margin-bottom: 8px; color: var(--ink); }
.hours-table { list-style: none; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.hours-table li { display: flex; justify-content: space-between; padding: 11px 16px; font-size: .92rem; }
.hours-table li:nth-child(odd) { background: var(--cream); }
.hours-table li b { font-family: var(--font-body); font-weight: 700; color: var(--ink); }
.hours-table .closed { color: var(--bad); font-weight: 600; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; background: var(--ink); color: #fff; border-radius: var(--radius-sm); text-decoration: none; font-family: var(--font-head); font-weight: 700; font-size: .95rem; transition: background .16s, transform .16s; }
.socials a:hover { background: var(--org); color: #fff; transform: translateY(-2px); }
.map-embed { border: 0; width: 100%; height: 300px; border-radius: var(--radius); margin-top: 26px; }

.quote-form { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--org); border-radius: var(--radius); padding: 32px 30px 34px; box-shadow: var(--shadow-sm); }
.quote-form h3 { font-size: 1.8rem; margin-bottom: 4px; }
.quote-form > p { font-size: .92rem; color: var(--body); margin-bottom: 18px; }
.quote-form > p b { color: var(--org-d); }
.fld { margin-bottom: 15px; }
.fld label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .95rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 6px; color: var(--ink); }
.fld input, .fld select, .fld textarea {
  width: 100%; padding: .74rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; background: var(--cream); color: var(--ink);
}
.fld input::placeholder, .fld textarea::placeholder { color: #9aa4b2; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: 2px solid var(--org); border-color: var(--org); background: #fff; }
.fld-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.form-status { margin-top: 14px; font-size: .92rem; font-weight: 600; color: #2f7d4c; min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #a9b5c6; padding: 62px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr; gap: 42px; }
.footer-brand .brand-top { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; letter-spacing: .05em; text-transform: uppercase; color: #fff; }
.footer-brand .brand-sub { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--org-l); margin: 3px 0 14px; }
.footer-brand p { font-size: .92rem; color: #94a1b4; max-width: 380px; }
.site-footer h4 { color: #fff; font-size: 1.25rem; letter-spacing: .05em; margin-bottom: 15px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: #a9b5c6; text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: var(--org-l); }
.footer-contact li { font-size: .92rem; margin-bottom: 10px; color: #a9b5c6; }
.footer-contact b { color: #fff; font-family: var(--font-body); }
.footer-bottom { border-top: 1px solid var(--line-dk); margin-top: 46px; padding-top: 22px; text-align: center; font-size: .84rem; color: #7d8a9c; }
.footer-bottom a { color: #fff; font-weight: 700; text-decoration: none; }
.footer-bottom a:hover { color: var(--org-l); }

/* ---------- Sitely demo chip ---------- */
.demo-chip {
  position: fixed; right: 18px; bottom: 18px; z-index: 70; display: flex; align-items: center; gap: 8px;
  background: #fff; color: #101828; text-decoration: none; border-radius: 999px; padding: .55rem 1rem .55rem .7rem;
  font-family: var(--font-body); font-size: .85rem; font-weight: 600; box-shadow: 0 10px 30px rgba(2,8,20,.35);
  border: 1px solid #e4e9f0; transition: transform .16s ease;
}
.demo-chip:hover { transform: translateY(-2px); }
.demo-chip svg { flex: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 26px; }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 340px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rev-cards { grid-template-columns: 1fr; }
  .header-call { display: none; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0 0 auto 0; flex-direction: column; align-items: flex-start; gap: 2px;
    background: #fff; padding: 78px 7vw 24px; display: none; box-shadow: 0 20px 40px rgba(18,26,44,.22);
    border-bottom: 3px solid var(--org);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav-toggle { display: block; position: relative; z-index: 80; }
  .header-call { display: none; }
  .header-btns .btn { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.22); }
  .svc-grid { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fld-2 { grid-template-columns: 1fr; }
  .hero-inner { padding: 62px 0 70px; }
  .rev-head { flex-direction: column; align-items: flex-start; }
  .compare th, .compare td { padding: 12px 13px; font-size: .86rem; }
}
