/* =========================================================================
   Top Austin SEO — Homepage Styles
   Extends tokens.css. Monochrome, flat, sharp corners. Inter only.
   ========================================================================= */
@import url("./tokens.css");

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: var(--bg-1); color: var(--fg-1); font-family: var(--font-body); }

/* ---------- Layout primitives ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 40px);
}
.section { padding-block: clamp(72px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--alt { background: var(--bg-2); }
.section--dark { background: var(--fg-1); color: var(--fg-inverse); }
.section--dark a, .section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark p { color: var(--fg-inverse); }
.section--dark .meta, .section--dark .eyebrow { color: rgba(255,255,255,0.55); }

/* ---------- Type helpers ---------- */
.h-display {
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}
.h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.0;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
}
.h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.h4 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.lead {
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.45;
  color: var(--fg-1);
  margin: 0 0 28px;
  max-width: 640px;
}
.body { font-size: 15px; line-height: 1.65; margin: 0; }
.meta { font-size: 13px; line-height: 1.5; color: var(--fg-2); letter-spacing: 0.005em; }
.eyebrow {
  font-size: 12.5px; font-weight: 500; color: var(--fg-2);
  letter-spacing: 0.01em; text-transform: none; margin: 0 0 14px;
}
.rule { height: 1px; background: var(--border-subtle); border: 0; margin: 0; }

/* ---------- Search-pill eyebrow (expressive moment) ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--fg-1);
  border-radius: 9999px;
  font-size: 13px; font-weight: 500;
  background: #fff; color: var(--fg-1);
  line-height: 1;
}
.pill__q {
  width: 18px; height: 18px; display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--fg-1); color: #fff; border-radius: 50%;
  font-weight: 600; font-size: 10px;
}
.pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--fg-1);
  animation: pill-pulse 1.8s ease-out infinite;
}
@keyframes pill-pulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 1; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 22px;
  font: 500 14.5px/1 Inter, sans-serif;
  border: 0; border-radius: 0; cursor: pointer; text-decoration: none;
  transition: background 120ms cubic-bezier(0.2, 0.8, 0.2, 1), color 120ms;
  background: var(--fg-1); color: var(--fg-inverse);
}
.btn:hover { background: color-mix(in srgb, #000 92%, var(--fg-1)); color: var(--fg-inverse); }
.btn:active { background: #000; }
.btn--ghost {
  background: transparent; color: var(--fg-1); padding: 16px 22px;
  box-shadow: inset 0 0 0 1px var(--fg-1);
}
.btn--ghost:hover { background: var(--fg-1); color: var(--fg-inverse); }
.btn--text {
  background: transparent; color: var(--fg-1); padding: 16px 0;
  text-decoration: underline; text-underline-offset: 4px;
}
.btn--text:hover { color: var(--fg-strong); background: transparent; }
.btn--on-dark {
  background: #fff; color: var(--fg-1);
}
.btn--on-dark:hover { background: #EEEEEE; color: var(--fg-1); }
.btn--arrow::after {
  content: "→";
  font-weight: 400;
  transition: transform 160ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn--arrow:hover::after { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #EEEEEE;
  backdrop-filter: saturate(180%) blur(0.5px);
}
.nav__inner {
  display: flex; align-items: center; gap: 28px; padding-block: 14px;
}
.nav__brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--fg-1); }
.nav__brand img { height: 34px; width: auto; display: block; }
.nav__links {
  display: flex; gap: 30px; margin-left: auto; margin-right: 24px;
}
.nav__links a {
  color: var(--fg-1); font-size: 14px; text-decoration: none;
  transition: color 120ms;
}
.nav__links a:hover { color: var(--fg-strong); }
.nav__phone {
  font-size: 14px; color: var(--fg-1); text-decoration: none; font-weight: 500;
  padding-right: 4px;
}
.nav__phone:hover { color: var(--fg-strong); }
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(64px, 7vw, 96px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__copy { max-width: 640px; }
.hero__cta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.hero__meta { margin-top: 28px; display: flex; gap: 32px; flex-wrap: wrap; }
.hero__metaitem { display: flex; flex-direction: column; gap: 2px; }
.hero__metaitem strong { font-weight: 600; font-size: 14px; color: var(--fg-1); }
.hero__metaitem span { font-size: 12.5px; color: var(--fg-2); }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  aspect-ratio: 5/6;
}
.hero__badge {
  position: absolute; left: -16px; bottom: 24px;
  background: #fff;
  padding: 18px 22px;
  border: 1px solid var(--border-subtle);
  max-width: 260px;
}
.hero__badge .meta { margin: 0 0 4px; }
.hero__badge strong { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.hero__badge p { font-size: 13px; line-height: 1.45; color: var(--fg-1); margin: 6px 0 0; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media img { aspect-ratio: 4/3; }
  .hero__badge { left: 16px; bottom: 16px; }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.stat {
  padding: 56px 36px 56px 0;
  display: flex; flex-direction: column; gap: 14px;
  border-right: 1px solid var(--border-subtle);
}
.stat:not(:first-child) { padding-left: 56px; }
.stat:last-child { border-right: 0; padding-right: 0; }
.stat__n {
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1.0;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg-1);
}
.stat__l { font-size: 13.5px; color: var(--fg-2); line-height: 1.4; }
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--border-subtle); padding: 40px 24px 40px 0; }
  .stat:not(:first-child) { padding-left: 0; }
  .stat:nth-child(2n) { padding-right: 0; }
  .stat:nth-child(2n+1) { padding-left: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ---------- Section header ---------- */
.sh { margin-bottom: 56px; max-width: 780px; }
.sh--wide { max-width: 960px; }
.sh__row { display: flex; align-items: end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 56px; }
.sh__row .sh { margin-bottom: 0; }

/* ---------- Positioning (numbered 3-up) ---------- */
.positioning {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
}
.feat__num {
  font-size: 13px; font-weight: 500; color: var(--fg-2);
  padding-bottom: 12px; margin-bottom: 18px;
  border-top: 1px solid var(--fg-1);
  padding-top: 16px;
  display: block;
}
.feat h4 { margin: 0 0 10px; }
.feat p { font-size: 15px; line-height: 1.6; color: var(--fg-1); margin: 0; }
@media (max-width: 900px) { .positioning { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-subtle);
}
.service {
  padding: 36px 32px 40px 0;
  border-bottom: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  display: flex; flex-direction: column; gap: 14px;
}
.service:last-child { border-right: 0; padding-right: 0; }
.service__idx { font-size: 12.5px; color: var(--fg-2); font-weight: 500; }
.service h4 { margin: 0; font-size: 22px; }
.service__desc { font-size: 14.5px; line-height: 1.55; color: var(--fg-1); margin: 0; }
.service__bullets { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 8px; }
.service__bullets li {
  font-size: 14px; line-height: 1.45; padding-left: 18px; position: relative; color: var(--fg-1);
}
.service__bullets li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 1px; background: var(--fg-1);
}
.service__foot { margin-top: auto; padding-top: 16px; font-size: 13.5px; color: var(--fg-2); }
@media (max-width: 900px) {
  .services { grid-template-columns: 1fr; }
  .service { border-right: 0; padding-right: 0; padding-left: 0; }
  .service:last-child { border-bottom: 0; }
}

/* ---------- Process (expressive moment: display-sized numerals) ---------- */
.process { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  padding-block: clamp(36px, 5vw, 64px);
  border-top: 1px solid var(--border-subtle);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--border-subtle); }
.step__num {
  font-size: clamp(88px, 10vw, 160px);
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--fg-1);
  margin: 0;
}
.step__title h3 { margin: 10px 0 0; }
.step__title .meta { margin: 0; }
.step__desc p { font-size: 15.5px; line-height: 1.65; margin: 10px 0 0; max-width: 56ch; }
.step__desc ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.step__desc li {
  font-size: 12.5px; color: var(--fg-2);
  padding: 6px 10px; border: 1px solid var(--border-subtle);
}
@media (max-width: 900px) {
  .step { grid-template-columns: 1fr; gap: 14px; }
  .step__num { font-size: 80px; }
}

/* ---------- Testimonials (pull-quote slab) ---------- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.quote {
  padding: 48px clamp(24px, 3vw, 40px) 40px 0;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex; flex-direction: column; gap: 28px;
}
.quote:nth-child(2n) { padding-right: 0; padding-left: clamp(24px, 3vw, 40px); border-right: 0; }
.quote blockquote {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #fff;
  text-wrap: pretty;
}
.quote blockquote::before { content: "“"; display: inline; }
.quote blockquote::after  { content: "”"; display: inline; }
.quote__cite {
  display: flex; flex-direction: column; gap: 3px; margin-top: auto;
}
.quote__cite strong { font-size: 14px; font-weight: 600; color: #fff; }
.quote__cite span { font-size: 12.5px; color: rgba(255,255,255,0.55); }
@media (max-width: 900px) {
  .quotes { grid-template-columns: 1fr; }
  .quote { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); padding-right: 0; padding-left: 0; padding-block: 40px; }
  .quote:nth-child(2n) { padding-left: 0; }
  .quote:last-child { border-bottom: 0; }
}

/* ---------- Closing CTA ---------- */
.closing {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
}
.closing__left h2 { margin: 0 0 24px; }
.closing__left .btn { margin-top: 8px; }
.closing__meta {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px;
}
.closing__meta > div { display: flex; flex-direction: column; gap: 4px; }
.closing__meta strong { font-size: 14px; font-weight: 600; }
.closing__meta span { font-size: 13px; color: var(--fg-2); }
@media (max-width: 900px) {
  .closing { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid #EEEEEE; padding-block: 32px 40px; background: #fff; }
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; flex-wrap: wrap; padding-bottom: 28px;
  border-bottom: 1px solid #EEEEEE; margin-bottom: 24px;
}
.footer__brand img { height: 32px; display: block; }
.footer__cols {
  display: grid; grid-template-columns: repeat(3, minmax(140px, 1fr)); gap: 32px;
}
.footer__col h5 { font-size: 12px; font-weight: 500; color: var(--fg-2); margin: 0 0 10px; letter-spacing: 0.02em; }
.footer__col a, .footer__col span {
  display: block; font-size: 13.5px; color: var(--fg-1); text-decoration: none;
  padding: 4px 0;
}
.footer__col a:hover { color: var(--fg-strong); text-decoration: underline; text-underline-offset: 3px; }
.footer__map {
  border-top: 1px solid #EEEEEE;
  margin-bottom: 24px;
  overflow: hidden;
}
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--fg-2);
}
@media (max-width: 700px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Modal ---------- */
.modal__bg {
  position: fixed; inset: 0; background: rgba(30,30,30,0.6);
  display: flex; align-items: center; justify-content: center; z-index: 100; padding: 24px;
  animation: fadein 160ms ease-out;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff; padding: 36px 36px 32px; max-width: 540px; width: 100%;
  position: relative; animation: slideup 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes slideup { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal__x {
  position: absolute; top: 16px; right: 18px; background: transparent; border: 0;
  font-size: 26px; line-height: 1; cursor: pointer; color: var(--fg-1);
}
.modal h3 { margin-bottom: 6px; }
.modal p.meta { margin: 0 0 20px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 500; color: var(--fg-1); }
.form__full { grid-column: 1 / -1; }
.form input, .form textarea {
  font: 400 14px Inter, sans-serif; color: var(--fg-1);
  padding: 11px 12px; border: 1px solid var(--border-subtle); border-radius: 0;
  background: #fff; outline: none; width: 100%; box-sizing: border-box;
  transition: border-color 120ms;
}
.form input:focus, .form textarea:focus { border-color: var(--fg-1); }
.form textarea { resize: vertical; min-height: 88px; }
.form__actions { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.form__actions .meta { margin: 0; }
.sent { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; padding: 8px 0; }

/* ---------- Tweaks panel ---------- */
.tweaks {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  background: #fff; border: 1px solid var(--fg-1);
  padding: 16px 16px 14px; width: 260px;
  font-size: 13px;
  box-shadow: 6px 6px 9px rgba(0,0,0,0.2);
}
.tweaks h5 { margin: 0 0 10px; font-size: 12px; font-weight: 600; color: var(--fg-1); letter-spacing: 0.01em; text-transform: uppercase; }
.tweaks label { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: 13px; color: var(--fg-1); cursor: pointer; }
.tweaks input[type=checkbox] { accent-color: var(--fg-1); width: 14px; height: 14px; }
.nowrap { white-space: nowrap; }

.tweaks select {
  font: 400 13px Inter, sans-serif; color: var(--fg-1);
  padding: 4px 6px; border: 1px solid var(--border-subtle); border-radius: 0;
  background: #fff; outline: none;
}

/* =========================================================================
   SERVICE PAGE ADDITIONS
   ========================================================================= */

/* ---------- Nav dropdown ---------- */
.nav__links { position: relative; }
.nav__dd { position: relative; }
.nav__dd > button {
  background: transparent; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: var(--fg-1);
  display: inline-flex; align-items: center; gap: 4px;
}
.nav__dd > button::after {
  content: ""; width: 6px; height: 6px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 120ms;
}
.nav__dd[data-open="true"] > button::after { transform: rotate(225deg) translateY(-1px); }
.nav__dd__panel {
  position: absolute; top: calc(100% + 12px); left: -16px;
  background: #fff; border: 1px solid var(--border-subtle);
  min-width: 260px; padding: 10px 0; z-index: 60;
}
.nav__dd__panel a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 18px;
  font-size: 14px; color: var(--fg-1); text-decoration: none;
  transition: background 120ms;
}
.nav__dd__panel a:hover { background: var(--bg-2); }
.nav__dd__panel a span { font-size: 12.5px; color: var(--fg-2); }

/* ---------- Service hero ---------- */
.shero { padding-top: clamp(48px, 5vw, 72px); padding-bottom: clamp(56px, 6vw, 80px); }
.shero__crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 12.5px; color: var(--fg-2); margin-bottom: 28px;
}
.shero__crumbs a { color: var(--fg-2); text-decoration: none; }
.shero__crumbs a:hover { color: var(--fg-1); }
.shero__crumbs span.sep { color: var(--border); }

.shero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.shero__copy { max-width: 680px; }
.shero__copy h1 { margin-top: 20px; }
.shero__cta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-top: 8px; }

.shero__aside {
  position: relative;
  border: 1px solid var(--border-subtle);
  padding: 0;
  background: #fff;
}
.shero__asideH {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12.5px; color: var(--fg-2);
}
.shero__asideH strong { color: var(--fg-1); font-size: 13px; font-weight: 600; }
.shero__asideB { padding: 24px 20px 26px; }

@media (max-width: 900px) {
  .shero__grid { grid-template-columns: 1fr; }
}

/* ---- Hero aside: podium (Local SEO) ---- */
.podium { display: flex; flex-direction: column; gap: 10px; }
.podium__row {
  display: grid; grid-template-columns: 28px 1fr auto;
  align-items: center; gap: 14px;
  padding: 10px 12px;
}
.podium__row--active {
  background: var(--fg-1); color: #fff;
}
.podium__rank {
  font-size: 20px; font-weight: 600; letter-spacing: -0.02em;
}
.podium__label { font-size: 13.5px; }
.podium__row--active .podium__label { color: #fff; }
.podium__delta { font-size: 12px; color: var(--fg-2); font-variant-numeric: tabular-nums; }
.podium__row--active .podium__delta { color: rgba(255,255,255,0.65); }
.podium__rule { height: 1px; background: var(--border-subtle); margin: 2px 0; }

/* ---- Hero aside: page stack (Website Design) ---- */
.pstack { display: flex; flex-direction: column; gap: 10px; }
.pstack__row {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 14px; align-items: center; padding: 4px 0;
}
.pstack__idx { font-size: 11px; color: var(--fg-2); font-weight: 500; letter-spacing: 0.05em; }
.pstack__bar {
  height: 36px; border: 1px solid var(--fg-1); background: #fff;
  display: flex; align-items: stretch;
}
.pstack__bar > i {
  display: block; background: var(--fg-1); height: 100%;
}
.pstack__bar[data-fill="full"] > i { width: 100%; }
.pstack__bar[data-fill="most"] > i { width: 82%; }
.pstack__bar[data-fill="half"] > i { width: 50%; }
.pstack__bar[data-fill="qtr"] > i  { width: 28%; }
.pstack__bar[data-fill="bit"] > i  { width: 18%; }
.pstack__row:hover .pstack__bar { border-color: var(--fg-1); }

/* ---- Hero aside: ads stats (Ads Management) ---- */
.adstats { display: flex; flex-direction: column; gap: 14px; }
.adstats__row { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 12px; border-bottom: 1px solid var(--border-subtle); }
.adstats__row:last-child { border-bottom: 0; padding-bottom: 0; }
.adstats__label { font-size: 13px; color: var(--fg-1); }
.adstats__value { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; color: var(--fg-1); }
.adstats__delta { font-size: 11px; color: var(--fg-2); margin-left: 8px; font-variant-numeric: tabular-nums; }
.adstats__delta--pos::before { content: "▲ "; }
.adstats__delta--neg::before { content: "▼ "; }

/* ---------- At-a-glance strip ---------- */
.glance {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.glance__cell {
  padding: 32px 36px 32px 0;
  border-right: 1px solid var(--border-subtle);
}
.glance__cell:not(:first-child) { padding-left: 36px; }
.glance__cell:last-child { border-right: 0; padding-right: 0; }
.glance__label { font-size: 12.5px; color: var(--fg-2); margin-bottom: 14px; letter-spacing: 0.01em; }
.glance__val { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 6px; }
.glance__sub { font-size: 13px; color: var(--fg-2); line-height: 1.5; }
@media (max-width: 900px) {
  .glance { grid-template-columns: 1fr; }
  .glance__cell { border-right: 0; border-bottom: 1px solid var(--border-subtle); padding: 24px 0; }
  .glance__cell:not(:first-child) { padding-left: 0; }
  .glance__cell:last-child { border-bottom: 0; }
}

/* ---------- Approach 2-col ---------- */
.approach {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.approach h3 { margin-bottom: 14px; }
.approach p { font-size: 15.5px; line-height: 1.65; margin: 0 0 16px; }
.approach__right { display: flex; flex-direction: column; gap: 24px; }
.approach__item { padding-top: 18px; border-top: 1px solid var(--fg-1); }
.approach__item h5 { font-size: 13px; font-weight: 500; color: var(--fg-2); margin: 0 0 8px; letter-spacing: 0.01em; }
.approach__item p { font-size: 15px; line-height: 1.55; margin: 0; }
@media (max-width: 900px) {
  .approach { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Deliverables grid ---------- */
.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-subtle);
}
.deliverable {
  padding: 28px 28px 32px 0;
  border-bottom: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
}
.deliverable:not(:nth-child(3n+1)) { padding-left: 28px; }
.deliverable:nth-child(3n) { border-right: 0; padding-right: 0; }
.deliverable__idx { font-size: 11.5px; color: var(--fg-2); letter-spacing: 0.05em; margin-bottom: 10px; font-weight: 500; }
.deliverable h5 { font-size: 17px; font-weight: 600; margin: 0 0 8px; line-height: 1.25; letter-spacing: -0.005em; }
.deliverable p { font-size: 13.5px; line-height: 1.55; margin: 0; color: var(--fg-1); }
@media (max-width: 900px) {
  .deliverables { grid-template-columns: 1fr; }
  .deliverable { border-right: 0; padding-right: 0; padding-left: 0 !important; }
}

/* ---------- FAQ accordion ---------- */
.faq { border-top: 1px solid var(--fg-1); }
.faq__item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 22px 0; gap: 32px;
  background: transparent; border: 0; cursor: pointer;
  font: 500 17px/1.35 Inter, sans-serif; color: var(--fg-1);
  text-align: left; letter-spacing: -0.005em;
}
.faq__q:hover { color: var(--fg-strong); }
.faq__q::after {
  content: ""; width: 14px; height: 14px; flex: none;
  background:
    linear-gradient(var(--fg-1), var(--fg-1)) center / 14px 1px no-repeat,
    linear-gradient(var(--fg-1), var(--fg-1)) center / 1px 14px no-repeat;
  transition: transform 180ms;
}
.faq__item[data-open="true"] .faq__q::after {
  background:
    linear-gradient(var(--fg-1), var(--fg-1)) center / 14px 1px no-repeat;
  transform: rotate(180deg);
}
.faq__a {
  display: none; padding: 0 0 22px; max-width: 740px;
  font-size: 15px; line-height: 1.65; color: var(--fg-1);
}
.faq__item[data-open="true"] .faq__a { display: block; }

/* ---------- Proof card ---------- */
.proof {
  border: 1px solid var(--border-subtle);
  padding: 40px clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.proof__stat {
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid var(--border-subtle);
  padding-right: clamp(24px, 4vw, 56px);
}
.proof__stat .stat__n { font-size: clamp(64px, 7vw, 96px); }
.proof__stat .meta { margin: 0; }
.proof__body h3 { margin: 0 0 10px; }
.proof__body p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.6; }
.proof__meta { font-size: 12.5px; color: var(--fg-2); }
@media (max-width: 900px) {
  .proof { grid-template-columns: 1fr; }
  .proof__stat { border-right: 0; border-bottom: 1px solid var(--border-subtle); padding-right: 0; padding-bottom: 24px; }
}

/* ---------- Cross-sell ---------- */
.crosssell {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-subtle);
}
.crosssell a {
  display: flex; flex-direction: column; gap: 14px;
  padding: 36px 40px 36px 0;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none; color: var(--fg-1);
  transition: background 160ms;
}
.crosssell a:not(:first-child) { padding-left: 40px; }
.crosssell a:nth-child(2n) { border-right: 0; padding-right: 0; }
.crosssell a:hover { background: var(--bg-2); }
.crosssell__idx { font-size: 12.5px; color: var(--fg-2); font-weight: 500; letter-spacing: 0.01em; }
.crosssell__t {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600; letter-spacing: -0.015em; line-height: 1.05;
}
.crosssell__d { font-size: 14.5px; line-height: 1.5; color: var(--fg-1); margin: 0; max-width: 48ch; }
.crosssell__arrow { margin-top: 6px; font-size: 14px; text-decoration: underline; text-underline-offset: 3px; }
.crosssell a:hover .crosssell__arrow { color: var(--fg-strong); }
@media (max-width: 900px) {
  .crosssell { grid-template-columns: 1fr; }
  .crosssell a { border-right: 0; padding-right: 0; padding-left: 0 !important; }
  .crosssell a:last-child { border-bottom: 0; }
}


/* =========================================================================
   QUOTE WIDGET (Website Design page)
   ========================================================================= */
.qw__section { padding-top: clamp(56px, 6vw, 88px); padding-bottom: clamp(56px, 6vw, 88px); }

.qw {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  border-top: 1px solid var(--border-subtle);
  padding-top: clamp(28px, 3vw, 44px);
}
@media (max-width: 900px) { .qw { grid-template-columns: 1fr; } }

.qw__calc { display: flex; flex-direction: column; gap: 24px; }
.qw__row { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.qw__label { font-size: 13px; color: var(--fg-2); letter-spacing: 0.01em; text-transform: uppercase; }
.qw__countwrap { display: inline-flex; align-items: stretch; border: 1px solid var(--fg-1); }
.qw__step {
  width: 44px; background: #fff; border: 0; cursor: pointer;
  font: 500 20px/1 Inter, sans-serif; color: var(--fg-1);
  transition: background 120ms, color 120ms;
}
.qw__step:hover { background: var(--fg-1); color: var(--fg-inverse); }
.qw__count {
  width: 72px; border: 0; border-left: 1px solid var(--fg-1); border-right: 1px solid var(--fg-1);
  text-align: center; font: 600 22px/1 "Nimbus Roman", Georgia, serif;
  color: var(--fg-1); background: #fff; padding: 10px 0;
  -moz-appearance: textfield;
}
.qw__count::-webkit-outer-spin-button,
.qw__count::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.qw__slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 2px; background: var(--fg-1); outline: none;
  margin: 4px 0 0;
}
.qw__slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--fg-1); border: 0; cursor: pointer;
}
.qw__slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--fg-1); border: 0; cursor: pointer;
}
.qw__ticks {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--fg-2); font-variant-numeric: tabular-nums;
  padding: 0 2px;
}

.qw__presets {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: 8px;
}
.qw__preset {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 18px 16px 0;
  border: 0; background: transparent;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: left; cursor: pointer;
  transition: background 140ms;
}
.qw__preset:nth-child(2n) { border-right: 0; padding-right: 0; }
.qw__preset:not(:first-child):not(:nth-child(2)) { padding-left: 18px; }
.qw__preset:nth-child(2n+1) { padding-left: 0; }
.qw__preset:nth-child(2n) { padding-left: 18px; }
.qw__preset:hover { background: var(--bg-2); }
.qw__preset.is-active { background: var(--fg-1); color: var(--fg-inverse); padding-left: 18px; padding-right: 18px; }
.qw__preset__n { font: 600 16px/1.2 Inter, sans-serif; letter-spacing: -0.005em; }
.qw__preset__l { font-size: 13px; color: inherit; opacity: 0.8; }
.qw__preset__note { font-size: 12px; color: var(--fg-2); }
.qw__preset.is-active .qw__preset__note { color: rgba(255,255,255,0.65); }

/* Right column */
.qw__right { display: flex; flex-direction: column; gap: 20px; }
.qw__total {
  border: 1px solid var(--fg-1);
  padding: clamp(20px, 2.5vw, 32px);
  background: #fff;
}
.qw__totalH {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle); padding-bottom: 14px; margin-bottom: 14px;
}
.qw__totalH .meta { font-size: 11.5px; margin: 0; }
.qw__price {
  display: flex; align-items: flex-start; gap: 4px; line-height: 0.9;
  padding: 18px 0 14px;
}
.qw__currency { font: 500 32px/1 "Nimbus Roman", Georgia, serif; color: var(--fg-2); margin-top: 8px; }
.qw__amount {
  font: 600 clamp(56px, 7vw, 96px)/0.95 "Nimbus Roman", Georgia, serif;
  letter-spacing: -0.02em; color: var(--fg-1);
  font-variant-numeric: tabular-nums;
}
.qw__includes {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid var(--border-subtle); padding-top: 14px;
}
.qw__includes li {
  font-size: 13.5px; color: var(--fg-1); line-height: 1.5;
  padding-left: 18px; position: relative;
}
.qw__includes li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 1px; background: var(--fg-1);
}
.qw__note { font-size: 12px; color: var(--fg-2); margin-top: 14px; line-height: 1.5; }

.qw__cta {
  align-self: flex-start;
  padding: 18px 28px; font-size: 15px;
}

/* Form */
.qw__form {
  border: 1px solid var(--fg-1);
  padding: clamp(20px, 2.5vw, 32px);
  background: #fff;
}
.qw__formH {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  margin-bottom: 20px;
}
.qw__formH h3 { margin: 6px 0 0; }
.qw__back {
  background: transparent; border: 0; cursor: pointer;
  font: 500 13px/1 Inter, sans-serif; color: var(--fg-2);
  padding: 4px 0; text-decoration: underline; text-underline-offset: 4px;
}
.qw__back:hover { color: var(--fg-1); }
.qw__fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px;
}
.qw__fields__full { grid-column: 1 / -1; }
.qw__fields label { display: flex; flex-direction: column; gap: 6px; }
.qw__fields label > span {
  font-size: 12px; color: var(--fg-2); letter-spacing: 0.01em; text-transform: uppercase;
}
.qw__fields label > span em { text-transform: none; font-style: normal; opacity: 0.75; }
.qw__fields input, .qw__fields textarea {
  border: 0; border-bottom: 1px solid var(--fg-1);
  padding: 8px 2px; background: transparent;
  font: 400 15px/1.4 Inter, sans-serif; color: var(--fg-1);
  outline: none; border-radius: 0;
}
.qw__fields input:focus, .qw__fields textarea:focus {
  border-bottom-color: var(--fg-strong);
}
.qw__fields textarea { resize: vertical; font-family: Inter, sans-serif; }
.qw__submitrow {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border-subtle);
}
.qw__summary { font-size: 13.5px; color: var(--fg-2); }
.qw__summary strong { color: var(--fg-1); font-size: 17px; font-weight: 600; font-variant-numeric: tabular-nums; }
.qw__fine { font-size: 11.5px; color: var(--fg-2); margin: 12px 0 0; }

/* Sent */
.qw__done {
  border: 1px solid var(--fg-1);
  padding: clamp(24px, 3vw, 40px);
  background: var(--bg-2);
}
.qw__done h3 { margin: 6px 0 14px; }
.qw__done p { font-size: 15px; line-height: 1.6; margin: 0 0 20px; max-width: 52ch; }
.qw__reset { padding: 14px 22px; font-size: 14px; }

@media (max-width: 540px) {
  .qw__fields { grid-template-columns: 1fr; }
  .qw__submitrow { flex-direction: column; align-items: stretch; }
  .qw__submitrow .btn { width: 100%; }
  .qw__presets { grid-template-columns: 1fr; }
  .qw__preset { border-right: 0; padding-left: 0 !important; padding-right: 0 !important; }
  .qw__preset.is-active { padding-left: 16px !important; padding-right: 16px !important; }
}
