/* ============================================================
   VH Designs & Co - Global Stylesheet
   Font: Inter (Google Fonts)
   Colors: #000 | #fff | #d6eff4 | #8f939b
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── Tokens ── */
:root {
  --cyan:    #d6eff4;
  --black:   #000000;
  --white:   #ffffff;
  --gray:    #8f939b;
  --gray-lt: #f5f5f5;
  --border:  #e8e8e8;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 50px;
  --btn-grow-scale: 1.035;

  --max-w: 1160px;
  --gutter: 24px;

  --section-y: 96px;
  --section-y-sm: 64px;
}

/* ── Base ── */
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Typography ── */
h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  line-height: 1.3;
}
h4 { font-size: 18px; font-weight: 600; line-height: 1.3; }
p  { color: var(--gray); }
strong { color: var(--black); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 20px;
}

/* ── Buttons ── */
.btn-primary,
.btn-secondary,
.btn-white,
.btn-outline-white {
  display: inline-block;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s ease;
  white-space: nowrap;
  line-height: 1;
  border: 1px solid transparent;
  transform: translateZ(0);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover {
  background: var(--cyan);
  color: var(--black);
  border-color: var(--cyan);
  transform: scale(var(--btn-grow-scale));
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-secondary:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: scale(var(--btn-grow-scale));
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: scale(var(--btn-grow-scale));
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: scale(var(--btn-grow-scale));
}

.btn-full { width: 100%; text-align: center; display: block; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--gutter);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--gray); }
.nav-links a.active {
  color: var(--black);
  font-weight: 600;
  background: rgba(214, 239, 244, 0.62);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
}
.nav-links .nav-cta {
  margin-left: 8px;
  color: var(--white) !important;
  background: var(--black);
  border-color: var(--black);
  border-width: 1px;
  border-style: solid;
  border-radius: var(--radius-pill);
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s ease;
}
.nav-links .nav-cta:hover {
  background: var(--cyan);
  color: var(--black) !important;
  border-color: var(--cyan);
  transform: scale(var(--btn-grow-scale));
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 800;
  padding: 32px var(--gutter) 40px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-drawer a:hover { color: var(--gray); }
.nav-drawer .drawer-cta {
  margin-top: 24px;
  padding: 16px 28px;
  text-align: center;
  border-bottom: none;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-pill);
  border: 1px solid var(--black);
  font-weight: 600;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s ease;
}
.nav-drawer .drawer-cta:hover {
  background: #333;
  color: var(--white);
  transform: scale(var(--btn-grow-scale));
}

/* ── Footer ── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 72px var(--gutter) 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.footer-brand { max-width: 320px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 18px; filter: invert(1); }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.6; font-weight: 500; }
.footer-brand-lead {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid #c8e8ee;
  background: var(--cyan);
  color: var(--black) !important;
  font-weight: 600;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s ease;
}

.footer-contact-btn:hover {
  background: #c4eaf2;
  border-color: #c4eaf2;
  color: var(--black) !important;
  transform: scale(var(--btn-grow-scale));
}

.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── Section helpers ── */
.section { padding: var(--section-y) 0; }
.section-sm { padding: var(--section-y-sm) 0; }
.section-accent { background: var(--cyan); }
.section-dark   { background: var(--black); color: var(--white); }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p   { color: rgba(255,255,255,0.65); }
.section-dark strong { color: var(--white); }

.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 16px;
  display: block;
}

/* ── Index "How We Work Together" background ── */
.section-how-we-work-bg {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  height: auto;
  min-height: 0;
  padding: 72px 0;
  display: block;
}

.section-how-we-work-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Photos/VHD bg 4.jpg") center center / cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.section-how-we-work-bg::after {
  content: none;
}

.section-how-we-work-bg > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.section-how-we-work-bg .section-intro {
  margin-bottom: 12px !important;
}

/* ── Hero ── */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text { max-width: 580px; }
.hero-text h1 { margin-bottom: 24px; }
.hero-text p  { font-size: 19px; line-height: 1.6; margin-bottom: 36px; }

.hero-img {
  position: relative;
}
.hero-img img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Centered hero variant */
.hero-center { text-align: center; }
.hero-center .hero-text { max-width: 760px; margin: 0 auto; }

.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cta-row-center { justify-content: center; }

/* ── Service cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: #c0c0c0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.card.featured {
  background: var(--cyan);
  border-color: transparent;
}
.card.featured:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.card-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 8px;
  display: block;
}
.card h3 { margin-bottom: 12px; }
.card p  { margin-bottom: 28px; font-size: 16px; }

.popular-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── Process steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.step {
  text-align: center;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.section-dark .step-num {
  background: var(--white);
  color: var(--black);
}
.step h3 { margin-bottom: 12px; }

/* ── Pain points ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.pain-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pain-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.pain-item h4 { margin-bottom: 6px; }
.pain-item p  { font-size: 15px; }

/* ── Index impact section ── */
.section-impact {
  position: relative;
  overflow: hidden;
  background: #000000;
  height: 70vh;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 56px 0;
}

.impact-video-bg {
  display: none;
}

.impact-video-overlay {
  display: none;
}

.section-impact::before {
  content: none;
}

.section-impact .container {
  max-width: 1320px;
  position: relative;
  z-index: 3;
}

.impact-shell {
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.impact-layout {
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
  gap: 26px;
}

.impact-lead {
  padding-right: 18px;
}

.section-impact .eyebrow {
  color: rgba(255,255,255,0.72);
}

.impact-title {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: none;
  padding-right: 72px;
  color: var(--white);
}

.impact-title-line {
  display: block;
  white-space: nowrap;
}

.impact-pill-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: center;
  border-top: 1px solid rgba(214, 239, 244, 0.36);
}

.impact-pill {
  border: 0;
  border-bottom: 1px solid rgba(214, 239, 244, 0.36);
  border-radius: 0;
  padding: 16px 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 0;
}

.impact-pill-arrow {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  display: block;
  flex: 0 0 auto;
  color: rgba(214, 239, 244, 0.96);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  margin-top: 2px;
}

.impact-pill-copy {
  min-width: 0;
}

.impact-pill-copy h4 {
  margin: 0 0 3px;
  color: var(--white);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.impact-pill-copy p {
  margin: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.84);
  line-height: 1.33;
}

/* ── Included list ── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin: 32px 0;
}
.included-grid li {
  font-size: 16px;
  color: var(--black);
  padding-left: 20px;
  position: relative;
}
.included-grid li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gray);
}

/* ── Deliverables list ── */
.deliverables { margin: 32px 0; }
.deliverable-item { margin-bottom: 28px; }
.deliverable-item h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 17px;
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.section-dark .check-icon { background: var(--white); color: var(--black); }

/* ── Arrow list ── */
.arrow-list { margin: 20px 0 36px; }
.arrow-list li {
  font-size: 16px;
  color: var(--black);
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.arrow-list li:last-child { border-bottom: none; }
.arrow-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gray);
}

/* ── Two-column content ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.two-col-wide {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

/* ── Design Partner: Why this matters ── */
.why-matters-section {
  background: var(--gray-lt);
}

.why-matters-shell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px 34px 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.why-matters-top {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 22px;
}

.why-matters-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(214, 239, 244, 0.62);
  border: 1px solid rgba(162, 206, 217, 0.55);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.why-matters-heading h2 {
  margin: 0;
  max-width: 11.6ch;
  font-size: clamp(36px, 4.7vw, 58px);
  line-height: 1.01;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.why-matters-intro-wrap {
  min-width: 0;
  padding-left: 18px;
  border-left: 2px solid rgba(0, 0, 0, 0.08);
}

.why-matters-intro {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #6f7680;
}

.why-matters-subcopy {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #4f5660;
}

.why-matters-subcopy strong {
  color: var(--black);
  font-weight: 600;
}

.why-matters-panel {
  background: #fafbfb;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-matters-item {
  padding: 20px 20px 18px;
  display: grid;
  align-content: start;
  gap: 8px;
  background: rgba(255,255,255,0.86);
}

.why-matters-item + .why-matters-item {
  border-left: 1px solid rgba(0, 0, 0, 0.07);
}

.why-matters-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 42px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(214, 239, 244, 0.72);
  border: 1px solid rgba(157, 205, 217, 0.5);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}

.why-matters-item h4 {
  margin: 2px 0 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.why-matters-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.46;
  color: #6f7680;
}

@media (min-width: 1025px) {
  .why-matters-section {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .why-matters-shell {
    padding: 30px 30px 24px;
  }

  .why-matters-top {
    gap: 28px;
    margin-bottom: 18px;
  }

  .why-matters-intro {
    font-size: 16px;
    line-height: 1.52;
  }

  .why-matters-item p {
    font-size: 14px;
    line-height: 1.42;
  }
}

/* ── From Scratch showcase (index) ── */
.z2l-showcase {
  align-items: stretch;
}

.z2l-edge-section {
  background: var(--white);
  padding-top: 0;
  padding-bottom: 0;
}

.z2l-edge-section .container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.z2l-showcase-edge {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--white);
  border: 0;
}

.z2l-showcase-copy {
  padding: 38px 100px 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.z2l-showcase-copy .btn-secondary {
  align-self: flex-start;
}

.z2l-showcase-copy .eyebrow {
  margin-bottom: 16px;
}

.z2l-showcase-copy .included-grid {
  margin: 8px 0;
  gap: 8px 24px;
}

.z2l-showcase-copy .included-grid li {
  line-height: 1.4;
}

.z2l-showcase-media {
  position: relative;
  min-height: 0;
  min-width: 0;
  border-radius: 0;
  overflow: hidden;
}

.z2l-showcase-edge .z2l-showcase-media {
  order: -1;
  margin-left: 0;
  border-radius: 0;
}

.z2l-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: none;
  background: var(--gray-lt);
}

.z2l-showcase-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to left, var(--white) 0%, var(--white) 5%, transparent 28%);
}

/* ── Timeline ── */
.timeline { margin-top: 48px; }
.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  padding-top: 2px;
}
.timeline-body h4 { margin-bottom: 8px; }
.timeline-body p  { font-size: 15px; margin-bottom: 12px; }
.timeline-body ul { padding: 0; margin: 0; }
.timeline-body ul li {
  font-size: 15px;
  color: var(--gray);
  padding: 4px 0 4px 20px;
  position: relative;
}
.timeline-body ul li::before {
  content: "·";
  position: absolute;
  left: 6px;
  color: var(--gray);
}

/* ── Timeline (sleek variant for service pages) ── */
.timeline-sleek {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-sleek-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 36px;
  align-items: stretch;
}

.timeline-sleek-label {
  font-size: 29px;
  font-weight: 600;
  color: var(--black);
  padding-top: 18px;
  letter-spacing: -0.01em;
}

.timeline-sleek-card {
  position: relative;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 12px;
  padding: 24px 28px;
}

.timeline-sleek-card::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 30px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.5);
}

.timeline-sleek-card::after {
  content: "";
  position: absolute;
  left: -27px;
  top: 40px;
  bottom: -30px;
  width: 2px;
  background: rgba(0,0,0,0.14);
}

.timeline-sleek-item:last-child .timeline-sleek-card::after {
  display: none;
}

.timeline-sleek-card h4 {
  margin-bottom: 12px;
}

.timeline-sleek-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.timeline-sleek-list li {
  font-size: 15px;
  color: var(--gray);
  padding-left: 16px;
  position: relative;
}

.timeline-sleek-list li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--gray);
}

/* ── Timeline (graph-style horizontal system) ── */
.timeline-graph {
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.timeline-graph-lane {
  --timeline-count: 4;
  display: grid;
  grid-template-columns: repeat(var(--timeline-count), minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  position: relative;
}

.timeline-graph--3 .timeline-graph-lane { --timeline-count: 3; }
.timeline-graph--4 .timeline-graph-lane { --timeline-count: 4; }
.timeline-graph--5 .timeline-graph-lane { --timeline-count: 5; }
.timeline-graph--6 .timeline-graph-lane { --timeline-count: 6; }

.timeline-graph-lane::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 1px;
  background: rgba(0,0,0,0.12);
}

.timeline-graph-item {
  position: relative;
  min-width: 0;
}

.timeline-graph-label {
  font-size: 12px;
  font-weight: 500;
  color: #757b85;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0 0 10px;
}

.timeline-graph-node {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.82);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.timeline-graph-card {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.84);
  padding: 18px 18px 16px;
}

.section-accent .timeline-graph-card,
.section-cyan .timeline-graph-card {
  background: rgba(255,255,255,0.78);
}

.timeline-graph-title {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 10px;
}

.timeline-graph-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-graph-list li {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.timeline-graph-list li::before {
  content: "·";
  position: absolute;
  left: 3px;
  color: var(--gray);
}

.timeline-graph-copy {
  margin: 0;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── Website Design process map (layout variant) ── */
.website-process-flow-section {
  position: relative;
  overflow: hidden;
  background: #0b111a;
}

.website-process-flow-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.website-process-flow-overlay {
  display: none;
}

.website-process-flow-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.website-flow-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.website-process-flow-section .eyebrow {
  color: rgba(0,0,0,0.5);
}

.website-process-flow-section h2 {
  color: var(--black);
}

.website-flow-map {
  position: relative;
  margin-top: 36px;
  padding-top: 64px;
}

.website-flow-node {
  display: none;
}

.website-flow-node svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--black);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.website-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.website-flow-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: -34px;
  height: 1px;
  border-top: 1px dashed rgba(0,0,0,0.26);
}

.website-flow-card {
  position: relative;
  border: none;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.22),
    rgba(196, 234, 246, 0.14) 55%,
    rgba(165, 217, 234, 0.1)
  );
  padding: 18px 18px 16px;
  min-height: 196px;
  backdrop-filter: blur(24px) saturate(145%) brightness(1.06);
  -webkit-backdrop-filter: blur(24px) saturate(145%) brightness(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(255,255,255,0.18),
    0 10px 20px rgba(7, 20, 32, 0.08);
}

.website-flow-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -34px;
  transform: translateX(-50%);
  width: 1px;
  height: 34px;
  border-left: 1px dashed rgba(0,0,0,0.26);
}

.website-flow-card-1 { transform: rotate(-7deg); margin-top: 8px; }
.website-flow-card-2 { transform: rotate(-2deg); }
.website-flow-card-3 { transform: rotate(3deg); }
.website-flow-card-4 { transform: rotate(8deg); margin-top: 8px; }

.website-flow-card-featured {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.26),
    rgba(204, 238, 248, 0.16) 55%,
    rgba(175, 224, 238, 0.12)
  );
}

.website-flow-week {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(18, 34, 48, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.website-flow-card h4 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--black);
}

.website-flow-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(58, 68, 79, 0.9);
}

/* ── Website Design: denser list rhythm for "What You Get" ── */
.website-included-section .check-list li {
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.35;
}

/* ── Branding process section (card design variant) ── */
.branding-process-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.branding-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Photos/VHD bg 4.jpg") center center / cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.branding-process-section::after {
  content: none;
}

.branding-process-section .container {
  position: relative;
  z-index: 1;
}

.branding-process-section .timeline-graph {
  margin-top: 44px;
}

.branding-process-section .timeline-graph-lane {
  gap: 18px;
  align-items: stretch;
}

.branding-process-section .timeline-graph-lane::before {
  display: none;
}

.branding-process-section .timeline-graph-item {
  padding-left: 0;
  min-width: 0;
}

.branding-process-section .timeline-graph-item:not(:last-child)::after {
  content: "--→";
  position: absolute;
  right: -24px;
  top: 44%;
  transform: translateY(-50%);
  color: #8d95a0;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  z-index: 3;
  pointer-events: none;
}

.branding-process-section .timeline-graph-label {
  position: absolute;
  top: 18px;
  left: 24px;
  margin: 0;
  z-index: 2;
  color: #7f8791;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.branding-process-section .timeline-graph-node {
  display: none;
}

.branding-process-section .timeline-graph-card {
  position: relative;
  min-height: 290px;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255,255,255,0.82), rgba(255,255,255,0.64));
  padding: 52px 20px 18px;
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow: none;
}

.branding-process-stepnum {
  position: absolute;
  top: 24px;
  left: 14px;
  font-size: 76px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: rgba(26, 34, 46, 0.07);
  user-select: none;
  pointer-events: none;
}

.branding-process-section .timeline-graph-title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.branding-process-section .timeline-graph-list {
  gap: 7px;
}

.branding-process-section .timeline-graph-list li {
  font-size: 15px;
  line-height: 1.45;
  color: #5e6671;
}

/* ── From Scratch process flow (single-row cards) ── */
.dayone-flow-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.dayone-flow-section::before {
  content: "";
  position: absolute;
  inset: -10% -8%;
  z-index: 0;
  background:
    radial-gradient(58% 68% at 14% 24%, rgba(214, 239, 244, 0.34) 0%, rgba(214, 239, 244, 0) 70%),
    radial-gradient(56% 72% at 86% 74%, rgba(214, 239, 244, 0.24) 0%, rgba(214, 239, 244, 0) 72%),
    linear-gradient(180deg, #050b13 0%, #000000 100%);
  pointer-events: none;
}

.dayone-flow-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(1080px, 92vw);
  height: min(420px, 52vw);
  transform: translate(-50%, -50%);
  z-index: 0;
  background: radial-gradient(circle, rgba(214, 239, 244, 0.2) 0%, rgba(214, 239, 244, 0) 66%);
  filter: blur(26px);
  pointer-events: none;
}

.dayone-flow-section .container {
  position: relative;
  z-index: 1;
}

.dayone-flow-section .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.dayone-flow-section h2 {
  color: var(--white);
}

.dayone-shared-section {
  --gray: rgba(255, 255, 255, 0.8);
  --border: rgba(255, 255, 255, 0.24);
}

.dayone-shared-section .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.dayone-impact-head {
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 8ch;
}

.dayone-shared-section h2,
.dayone-shared-section h3,
.dayone-shared-section h4,
.dayone-shared-section strong,
.dayone-shared-section .price {
  color: var(--white);
}

.dayone-shared-section p,
.dayone-shared-section li,
.dayone-shared-section .price-note {
  color: rgba(255, 255, 255, 0.88);
}

.dayone-shared-section .check-list li::before {
  color: rgba(214, 239, 244, 0.9);
}

.dayone-shared-section .check-list li strong {
  color: var(--white);
}

.dayone-shared-section .pricing-box {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent !important;
}

.dayone-shared-section .pricing-box::before {
  content: none;
}

.dayone-shared-section .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.dayone-shared-section .btn-primary:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}

.dayone-flow-footnote {
  color: rgba(255, 255, 255, 0.82);
}

/* ── From Scratch: concise included grid ── */
.included-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.included-compact-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  padding: 20px 18px;
}

.included-compact-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.included-compact-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.included-compact-card-featured {
  background: var(--cyan);
  border-color: transparent;
}

.timeline-flow {
  margin-top: 44px;
  padding: 0;
}

.timeline-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  padding: 6px 0 0;
}

.timeline-flow-grid::before {
  content: none;
}

.timeline-flow-grid::after {
  content: none;
}

.timeline-flow-turn {
  display: none;
}

.timeline-flow-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(8, 20, 33, 0.58), rgba(214, 239, 244, 0.16));
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 20px 40px rgba(0, 0, 0, 0.42);
}

.timeline-flow-item-1,
.timeline-flow-item-2,
.timeline-flow-item-3,
.timeline-flow-item-4,
.timeline-flow-item-5 { grid-area: auto; }

.timeline-flow-step {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.timeline-flow-step::before {
  content: none;
}

.timeline-flow-step-active {
  background: transparent;
  border-color: transparent;
}

.timeline-flow-step-active::before {
  content: none;
}

.timeline-flow-week {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(214, 239, 244, 0.86);
  margin-bottom: 4px;
  line-height: 1.2;
}

.timeline-flow-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  color: var(--white);
}

.timeline-flow-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.dayone-flow-section .timeline-flow-step {
  background: transparent;
  border-color: transparent;
}

.dayone-flow-section .timeline-flow-step-active {
  background: transparent;
  border-color: transparent;
}

.dayone-flow-section .timeline-flow-week {
  color: rgba(214, 239, 244, 0.86);
}

.dayone-flow-section .timeline-flow-title {
  color: var(--white);
}

.dayone-flow-section .timeline-flow-desc {
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border-color: transparent;
}

/* ── Compact pricing rhythm (AI workflows) ── */
.pricing-compact .check-list li {
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 22px;
  font-size: 14px;
}

.pricing-compact .check-list li::before {
  top: 10px;
}

.ai-pricing-section {
  position: relative;
  padding: 36px 0 24px;
  overflow: hidden;
  background: #eaf1f5;
}

.ai-pricing-section::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: url("Photos/VHD bg AI1.jpg") center center / cover no-repeat;
  transform: scaleY(-1);
  transform-origin: center;
  opacity: 0.6;
  z-index: 0;
}

.ai-pricing-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(235, 242, 247, 0.82), rgba(227, 236, 242, 0.86));
  z-index: 0;
}

.ai-pricing-section .container {
  position: relative;
  z-index: 1;
}

.ai-pricing-intro .eyebrow {
  margin-bottom: 10px;
}

.ai-pricing-layout {
  margin-top: 14px;
  gap: 14px;
  align-items: start;
}

.ai-pricing-section .glass-card {
  background: linear-gradient(140deg, rgba(255,255,255,0.74), rgba(255,255,255,0.5));
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.ai-pricing-main-card {
  border-radius: 14px;
  padding: 20px 22px;
}

.ai-pricing-kicker {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6f7884;
  margin-bottom: 8px;
}

.ai-pricing-price {
  font-size: clamp(36px, 4.2vw, 48px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #7a8391;
  margin: 0 0 10px;
}

.ai-pricing-sub {
  font-size: 14px;
  color: #66717d;
  margin-bottom: 10px;
}

.ai-pricing-block {
  border-top: 1px solid rgba(15, 22, 30, 0.08);
  padding-top: 10px;
  margin-top: 8px;
}

.ai-pricing-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.ai-pricing-text {
  font-size: 14px;
  color: #5f6976;
}

.ai-pricing-main-card .check-list {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 12px;
}

.ai-pricing-main-card .check-list li {
  font-size: 13px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  border-bottom: none;
  line-height: 1.4;
}

.ai-pricing-main-card .check-list li::before {
  top: 6px;
}

.ai-pricing-main-card .check-list li:first-child {
  border-top: none;
}

.ai-pricing-side h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.ai-pricing-factors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ai-pricing-factor-card {
  border-radius: 12px;
  padding: 10px 12px;
}

.ai-pricing-factor-card h4 {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.25;
}

.ai-pricing-factor-card p {
  font-size: 12px;
  color: #5f6976;
  line-height: 1.45;
}

.ai-pricing-note {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
}

/* ── Fit section alignment helper ── */
.fit-grid {
  align-items: start;
}

.fit-right-col {
  padding-top: 36px;
}

.fit-right-head {
  margin-top: 0;
  margin-bottom: 20px;
}

.fit-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.fit-compare-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  padding: 24px 22px;
}

.fit-compare-card.fit-left {
  border-color: rgba(184, 214, 224, 0.75);
  background: linear-gradient(
    155deg,
    rgba(234, 247, 251, 0.92),
    rgba(214, 239, 244, 0.62) 54%,
    rgba(189, 228, 238, 0.44)
  );
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 30px rgba(9, 34, 49, 0.1);
}

.fit-compare-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.16;
}

.fit-compare-card .check-list li:first-child {
  border-top: none;
}

.fit-compare-card .check-list li:last-child {
  border-bottom: none;
}

.fit-alt-box {
  margin-top: 18px;
}

/* ── Info box ── */
.info-box {
  background: var(--cyan);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 40px 0;
}
.info-box strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.info-box p { color: var(--black); font-size: 16px; }

/* ── Tabs (Audit page) ── */
.tab-bar {
  display: inline-flex;
  background: var(--gray-lt);
  border-radius: var(--radius-md);
  padding: 5px;
  margin-bottom: 48px;
  gap: 4px;
}
.tab-btn {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s ease;
}
.tab-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.tab-btn:not(.active):hover {
  color: var(--black);
  transform: scale(var(--btn-grow-scale));
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Accordion / FAQ ── */
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  padding: 22px 40px 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  transition: color 0.15s;
}
.faq-trigger:hover { color: var(--gray); }
.faq-trigger::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--gray);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item.open .faq-trigger::after {
  transform: rotate(45deg);
}

.faq-body {
  display: none;
  padding: 0 0 24px;
}
.faq-body p { font-size: 16px; max-width: 700px; }
.faq-item.open .faq-body { display: block; }

/* ── Stat strip ── */
.stat-strip {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 48px 0;
}
.stat-block {
  flex: 1;
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--gray);
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-item {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.value-item h4 { margin-bottom: 10px; }
.value-item p  { font-size: 15px; }

/* ── About page sections ── */
.about-background-section {
  background: var(--white);
  padding: 72px 0;
}

.about-background-layout {
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
  align-items: start;
}

.about-background-title {
  max-width: 10.8ch;
  margin-bottom: 0;
  line-height: 1.12;
  padding-right: 10px;
}

.about-principles-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(90deg, rgba(214, 239, 244, 0.52) 0%, rgba(214, 239, 244, 0.2) 46%, #ffffff 100%);
}

.about-principles-section::before,
.about-principles-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 0;
}

.about-principles-section::before {
  top: 0;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.about-principles-section::after {
  bottom: 0;
  background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.about-principles-section > .container {
  position: relative;
  z-index: 1;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.about-principles-grid .value-item {
  background: var(--white);
}

@media (max-width: 1024px) {
  .about-background-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
  }

  .about-principles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── Resource cards ── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.resource-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.resource-card:hover {
  border-color: #bbb;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.resource-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}
.resource-card h3 { font-size: 18px; }
.resource-card p  { font-size: 15px; flex: 1; }
.resource-coming {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  background: var(--gray-lt);
  border-radius: 2px;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Resources: Start Here feature background ── */
.resource-start-section {
  position: relative;
  overflow: hidden;
  background: var(--gray-lt);
}

.resource-start-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Photos/VHD bg 6.jpg") center center / cover no-repeat;
  transform: scaleX(-1);
  transform-origin: center;
  opacity: 0.42;
  z-index: 0;
}

.resource-start-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(245,245,245,0.9), rgba(245,245,245,0.84));
  z-index: 0;
}

.resource-start-section .container {
  position: relative;
  z-index: 1;
}

/* ── Lead magnet form ── */
.lead-form {
  background: var(--gray-lt);
  border-radius: var(--radius-md);
  padding: 48px;
  max-width: 560px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--black);
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="url"] {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.18s;
}
.form-field input:focus { border-color: var(--black); }
.form-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 14px;
  text-align: center;
}

/* ── CTA banner ── */
.cta-banner {
  background: var(--black);
  color: var(--white);
  padding: var(--section-y) 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.65); font-size: 19px; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── "This is for you if" section ── */
.for-you {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.for-you-block h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 20px;
}
.for-you-block li {
  font-size: 16px;
  color: var(--black);
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.for-you-block li:last-child { border-bottom: none; }
.for-you-block.yes li::before { content: "✓"; position: absolute; left: 0; color: var(--black); font-weight: 700; }
.for-you-block.no  li::before { content: "✗"; position: absolute; left: 0; color: var(--gray); }

/* ── After-audit paths ── */
.paths { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.path-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}
.path-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.path-item h4 { margin-bottom: 6px; }
.path-item p  { font-size: 15px; }

/* ── About page hero ── */
.about-hero {
  padding: 80px 0;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ── Pricing box ── */
.pricing-box {
  border: 2px solid var(--black);
  border-radius: var(--radius-md);
  padding: 40px;
  margin: 40px 0;
}
.pricing-box .price {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  display: block;
}
.pricing-box .price-note { font-size: 15px; color: var(--gray); margin-bottom: 28px; }

.pricing-box h3.price-note {
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  color: var(--black);
  font-weight: 700;
}

/* ── On-demand pricing section ── */
.on-demand-pricing-section .section-intro {
  max-width: 720px;
  margin: 0 auto;
}

.on-demand-pricing-intro {
  max-width: 660px;
  margin: 14px auto 0;
  font-size: 17px;
}

.on-demand-pricing-box {
  padding: 36px;
}

.on-demand-pricing-head {
  margin-bottom: 26px;
}

.on-demand-pricing-kicker {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--gray);
  margin-bottom: 10px;
}

.on-demand-pricing-head h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.on-demand-pricing-head .price-note {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 16px;
}

.on-demand-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.on-demand-pricing-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.on-demand-pricing-item h4 {
  margin-bottom: 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.on-demand-pricing-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .on-demand-pricing-box {
    padding: 24px 20px;
  }

  .on-demand-pricing-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .on-demand-pricing-head {
    margin-bottom: 18px;
  }

  .on-demand-pricing-head h3 {
    font-size: 28px;
  }

  .on-demand-pricing-intro {
    font-size: 16px;
  }
}

/* ── Website Design: investment section ── */
.website-investment-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.9),
    rgba(248, 250, 252, 0.86) 54%,
    rgba(241, 245, 249, 0.9)
  );
  backdrop-filter: blur(20px) saturate(108%);
  -webkit-backdrop-filter: blur(20px) saturate(108%);
}

.website-investment-section .pricing-box {
  border: 1px solid #d7dde5;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.website-investment-section .pricing-box::before {
  opacity: 0.08;
}

.website-investment-section .pricing-box h3.price-note {
  margin-bottom: 26px;
}

/* ── Announcement bar ── */
.ann-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px var(--gutter);
  font-size: 13px;
  font-weight: 500;
}
.ann-bar a { color: var(--cyan); text-decoration: underline; margin-left: 8px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-y: 64px; --section-y-sm: 48px; }

  /* Nav */
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { padding: 64px 0 48px; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-text p { font-size: 17px; }
  .hero-img img { height: 340px; }

  /* Grids → single column */
  .services-grid,
  .pain-grid,
  .included-grid,
  .two-col,
  .two-col-wide,
  .for-you,
  .values-grid,
  .about-principles-grid,
  .resources-grid { grid-template-columns: 1fr; gap: 24px; }

  .steps { grid-template-columns: 1fr; gap: 32px; }

  .timeline-item { grid-template-columns: 1fr; gap: 8px; }

  .impact-layout {
    gap: 20px;
  }

  .section-impact {
    height: auto;
    min-height: auto;
    display: block;
    padding: var(--section-y-sm) 0;
  }

  .impact-shell {
    padding: 0;
  }

  .impact-lead {
    padding-right: 0;
  }

  .impact-title {
    font-size: clamp(34px, 9vw, 48px);
    max-width: none;
    padding-right: 0;
  }

  .impact-title-line {
    white-space: normal;
  }

  .impact-pill-stack {
    gap: 0;
  }

  .impact-pill {
    border-radius: 0;
    min-height: 0;
    padding: 12px 0;
    gap: 10px;
    align-items: flex-start;
  }

  .impact-pill-arrow {
    width: auto;
    height: auto;
    font-size: 22px;
  }

  .impact-pill-copy h4 {
    font-size: 26px;
    margin-bottom: 4px;
  }

  .impact-pill-copy p {
    font-size: 15px;
    line-height: 1.35;
  }

  .stat-strip { flex-wrap: wrap; }
  .stat-block { flex: 1 1 45%; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-block:nth-child(odd) { border-right: 1px solid var(--border); }

  .about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { order: -1; }
  .about-photo img { aspect-ratio: 3/2; }

  .footer-top { flex-direction: column; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-brand img { height: 40px; }
  .footer-brand-lead { font-size: 20px; }

  .lead-form { padding: 32px 24px; }

  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn-primary,
  .cta-row .btn-secondary,
  .cta-row .btn-white,
  .cta-row .btn-outline-white { text-align: center; }

  .tab-bar { width: 100%; }
  .tab-btn { flex: 1; text-align: center; padding: 12px 16px; }
}

@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }
  .stat-block { flex: 1 1 100%; border-right: none; }
}

/* ============================================================
   obriy.design-inspired components (index.html v2)
   ============================================================ */

/* ── Transparent-to-white scrolling nav ── */
.site-header {
  transition: box-shadow 0.25s, background 0.25s;
}
.site-header.scrolled {
  box-shadow: 0 1px 16px rgba(0,0,0,0.09);
}

/* ── Hero v2: full-viewport, right-bleed photo ── */
.hero-v2 {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: var(--white);
}

.hero-v2-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--gutter);
  position: relative;
  z-index: 2;
}

.hero-v2-text {
  max-width: 52%;
}

.hero-v2-text .eyebrow {
  margin-bottom: 24px;
}

.hero-v2-text h1 {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--black);
}

/* Cyan highlight on key phrase */
.hero-highlight {
  display: inline;
  background: linear-gradient(to bottom, transparent 55%, var(--cyan) 55%);
  background-size: 100% 100%;
  padding-bottom: 2px;
}

.hero-v2-text p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 36px;
}

/* Full-bleed photo - absolute, bleeds to right edge */
.hero-v2-photo {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 46%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

/* Index-only hero framing tweak */
.hero-v2-photo-index {
  top: -130px;
  height: calc(100% + 130px);
  object-position: center center;
}

/* Design Partner hero framing */
.hero-v2-photo-design-partner {
  object-position: center center;
}

/* White gradient fade on the left edge of the photo */
.hero-v2-fade {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 46%;
  z-index: 1;
  background: linear-gradient(to right, var(--white) 0%, var(--white) 5%, transparent 28%);
  pointer-events: none;
}

.hero-v2-reverse .hero-v2-photo {
  left: 0;
  right: auto;
  object-position: center center;
}

.hero-v2-reverse .hero-v2-fade {
  left: 0;
  right: auto;
  background: linear-gradient(to left, var(--white) 0%, var(--white) 5%, transparent 28%);
}

.hero-v2-reverse .hero-v2-text {
  margin-left: auto;
}

.hero-v2-photo-ai-flip {
  transform: scaleX(-1);
}

.ai-hero-balance .hero-v2-text {
  max-width: 46%;
  padding-right: 12px;
}

.ai-hero-balance .hero-v2-text h1 {
  max-width: 14ch;
}

.ai-hero-balance .hero-highlight {
  white-space: nowrap;
}

.ai-hero-balance .hero-v2-photo {
  width: 54%;
  right: 0;
}

.ai-hero-balance .hero-v2-fade {
  width: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(
    to right,
    var(--white) 0%,
    var(--white) 46%,
    rgba(255, 255, 255, 0.94) 52%,
    rgba(255, 255, 255, 0.7) 58%,
    rgba(255, 255, 255, 0.25) 66%,
    rgba(255, 255, 255, 0) 74%
  );
}

/* ── Stats strip ── */
.stats-strip {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.stats-strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  border-right: 1px solid var(--border);
  text-align: center;
  gap: 4px;
}
.stats-strip-item:last-child { border-right: none; }

.stats-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
}

.stats-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

/* ── Client logos strip ── */
.client-logos-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.client-logos-marquee {
  height: 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.client-logos-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 0 28px;
  animation: client-logos-scroll 42s linear infinite;
  will-change: transform;
}

.client-logos-track:hover {
  animation-play-state: paused;
}

.client-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.client-logo-item img {
  max-height: 42px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  opacity: 0.9;
  filter: grayscale(1) brightness(0.42) contrast(1.05);
}

@keyframes client-logos-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── Service cards v2 (obriy 4-across style) ── */
.service-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.service-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.service-card-v2:hover {
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.service-card-v2-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gray-lt);
  flex-shrink: 0;
}
.service-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-v2-arrow {
  font-size: 18px;
  color: var(--gray);
  line-height: 1;
  transition: transform 0.2s;
}
.service-card-v2:hover .service-card-v2-arrow {
  transform: translate(2px, -2px);
}

.service-card-v2 h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.service-card-v2-badge {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
  display: inline-block;
}

.service-card-v2-tag {
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  line-height: 1;
}

.service-card-v2-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card-v2-list li {
  font-size: 13px;
  color: var(--gray);
  padding-left: 16px;
  position: relative;
}
.service-card-v2-list li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.2;
}

.service-cards-cta {
  margin-top: 32px;
  text-align: center;
}
.service-cards-cta a {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  border-bottom: 2px solid var(--cyan);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.service-cards-cta a:hover {
  border-color: var(--black);
}

/* ── AI feature video shell (index) ── */
.ai-feature-video-section {
  background: #02050b;
  padding-top: 0;
  padding-bottom: 0;
}

.ai-feature-video-section .container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.ai-feature-video-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  background: #02050b;
  padding: 36px 44px;
  isolation: isolate;
}

.ai-feature-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  z-index: 0;
}

.ai-feature-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.72)
  );
  z-index: 1;
}

.ai-feature-video-content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 96px));
  margin-left: auto;
  margin-right: auto;
}

.ai-feature-main .ai-feature-subheadline {
  margin: 14px 0 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 600;
}

.ai-feature-main .ai-feature-summary {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  max-width: 64ch;
}

.ai-feature-main .ai-feature-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
  list-style: none;
  padding: 0;
}

.ai-feature-main .ai-feature-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ai-feature-main .ai-feature-benefits li span:first-child {
  color: var(--cyan);
  font-size: 20px;
  flex-shrink: 0;
}

.ai-feature-main .ai-feature-benefits li span:last-child {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.35;
}

@media (min-width: 1025px) {
  .ai-feature-video-section {
    min-height: 100vh;
  }

  .ai-feature-video-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 52px 44px;
  }

  .ai-feature-video-content {
    gap: 56px;
    align-items: center !important;
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
  }

  .ai-feature-main {
    min-width: 0;
    padding-right: 10px;
  }

  .ai-feature-main .eyebrow {
    margin-bottom: 14px;
  }

  .ai-feature-main .ai-feature-title {
    font-size: clamp(48px, 5vw, 74px);
    line-height: 1.03;
    margin-bottom: 0;
    letter-spacing: -0.028em;
  }

  .ai-feature-main .ai-feature-title-line {
    display: block;
    white-space: nowrap;
  }

  .ai-feature-main .ai-feature-benefits {
    gap: 12px;
    margin-bottom: 30px;
  }

  .ai-feature-main .ai-feature-benefits li {
    max-width: 100%;
  }

  .ai-feature-main .ai-feature-benefits li span:first-child {
    font-size: 20px;
  }

  .ai-feature-main .ai-feature-benefits li span:last-child {
    font-size: 18px;
    line-height: 1.38;
  }

  .ai-feature-video-content .ai-meta-row {
    flex-wrap: wrap;
    margin-bottom: 28px;
    gap: 9px;
  }

  .ai-feature-main .btn-white {
    margin-top: 10px;
  }

  .ai-feature-video-content .ai-meta-item {
    font-size: 13px;
    padding: 7px 12px;
  }

  .ai-feature-video-content .ai-feature-sidepanel-title {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .ai-feature-video-content .ai-feature-sidepanel {
    align-self: flex-start;
  }

  .ai-feature-video-content .ai-workflow-chip-grid {
    gap: 8px;
  }

  .ai-feature-video-content .ai-workflow-chip {
    min-height: 52px;
    padding: 10px 10px 10px 24px;
    font-size: 13px;
    line-height: 1.28;
  }

  .ai-feature-video-content .ai-workflow-chip::before {
    left: 10px;
  }
}

/* ── AI feature side panel (index) ── */
.ai-feature-sidepanel {
  background: linear-gradient(140deg, rgba(214, 239, 244, 0.34), rgba(214, 239, 244, 0.12));
  border: 1px solid rgba(214, 239, 244, 0.55);
  border-radius: 14px;
  padding: 36px;
  backdrop-filter: blur(8px);
}

.ai-feature-sidepanel-title {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.ai-feature-pills-only {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.ai-workflow-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ai-workflow-chip {
  border: 1px solid rgba(214, 239, 244, 0.5);
  background: rgba(214, 239, 244, 0.24);
  border-radius: 10px;
  padding: 12px 12px 12px 28px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 1.35;
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.ai-workflow-chip::before {
  content: "→";
  position: absolute;
  left: 12px;
  color: rgba(214, 239, 244, 0.95);
  font-weight: 600;
}

.ai-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.ai-meta-item {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
}

.ai-meta-item strong {
  color: var(--white);
}

/* ── Process section v2 (horizontal, obriy style) ── */
.process-h-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 72px;
}

.process-h-step {
  position: relative;
  padding: 0 8px;
}

.process-h-num {
  font-size: 88px;
  font-weight: 800;
  color: rgba(0,0,0,0.055);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -20px;
  display: block;
  user-select: none;
}

.process-h-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.process-h-step p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 280px;
}

.section-how-we-work-bg .process-h-step {
  padding: 24px 22px 22px;
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0.36) 100%);
  border: none;
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  box-shadow:
    14px 18px 34px rgba(8, 18, 30, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.section-how-we-work-bg .process-h-step p {
  max-width: 100%;
}

.section-how-we-work-bg .cta-row {
  margin-top: 40px !important;
}

/* Connector arrow between steps */
.process-h-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 44px;
  padding-left: 16px;
  padding-right: 16px;
  color: var(--gray);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}

/* ── Section intro with large heading ── */
.section-intro {
  margin-bottom: 0;
}
.section-intro .eyebrow { margin-bottom: 12px; }
.section-intro h2 { margin-bottom: 0; }

/* ============================================================
   Responsive additions for v2 components
   ============================================================ */
@media (max-width: 1024px) {
  .service-cards-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ai-feature-video-shell { padding: 32px 38px; }

  .website-flow-map {
    padding-top: 56px;
  }

  .website-flow-node {
    width: 80px;
    height: 80px;
  }

  .website-flow-node svg {
    width: 34px;
    height: 34px;
  }

  .website-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .website-flow-grid::before {
    left: 20%;
    right: 20%;
  }

  .website-flow-card-1,
  .website-flow-card-2,
  .website-flow-card-3,
  .website-flow-card-4 {
    transform: none;
    margin-top: 0;
  }

  .why-matters-top {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
    align-items: start;
  }

  .why-matters-shell {
    padding: 24px 24px 20px;
    border-radius: 22px;
  }

  .why-matters-heading h2 {
    max-width: 100%;
  }

  .why-matters-intro-wrap {
    padding-left: 0;
    border-left: none;
  }

  .why-matters-intro {
    max-width: 100%;
    font-size: 16px;
  }

  .why-matters-subcopy {
    font-size: 14px;
  }

  .why-matters-panel {
    grid-template-columns: 1fr;
  }

  .why-matters-item + .why-matters-item {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }
}

@media (max-width: 768px) {
  .section-how-we-work-bg {
    height: auto;
    min-height: auto;
    padding: var(--section-y-sm) 0;
    display: block;
  }

  .ai-feature-video-shell {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    padding: 28px 28px;
  }

  .ai-feature-video-content {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  /* Hero v2 */
  .hero-v2 { min-height: auto; padding: 72px 0 48px; }
  .hero-v2-text { max-width: 100%; }
  .hero-v2-text h1 { font-size: clamp(36px, 10vw, 52px); }
  .hero-v2-photo { display: none; }
  .hero-v2-fade  { display: none; }
  .hero-v2-inner { padding: 0 var(--gutter); }

  /* Stats strip */
  .stats-strip { flex-wrap: wrap; }
  .stats-strip-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stats-strip-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stats-strip-item:nth-child(3),
  .stats-strip-item:nth-child(4)    { border-bottom: none; }

  /* Service cards */
  .service-cards-row { grid-template-columns: 1fr; }

  .why-matters-shell {
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .why-matters-pill {
    margin-bottom: 12px;
    padding: 8px 12px;
    letter-spacing: 0.12em;
  }

  .why-matters-heading h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    max-width: none;
  }

  .why-matters-top {
    gap: 14px;
    margin-bottom: 14px;
  }

  .why-matters-intro {
    font-size: 15px;
    line-height: 1.52;
  }

  .why-matters-subcopy {
    font-size: 13px;
    line-height: 1.42;
    margin-top: 10px;
  }

  .why-matters-panel {
    border-radius: 16px;
  }

  .why-matters-item {
    gap: 6px;
    padding: 14px 14px 13px;
  }

  .why-matters-num {
    min-width: 38px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .why-matters-item h4 {
    font-size: 16px;
    margin: 0;
  }

  .why-matters-item p {
    font-size: 13px;
    line-height: 1.42;
  }

  /* Process horizontal → vertical */
  .process-h-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-h-connector { display: none; }
  .process-h-num { font-size: 56px; margin-bottom: -12px; }
  .process-h-step h4 { font-size: 17px; }

  .timeline-flow-grid {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 12px;
    padding: 2px 2px 8px;
    min-width: 1120px;
  }

  .timeline-flow-grid::before {
    content: none;
  }

  .timeline-flow-grid::after,
  .timeline-flow-turn {
    display: none;
  }

  .timeline-flow {
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .timeline-flow-step {
    min-height: auto;
    padding: 0;
  }

  .timeline-flow-title {
    font-size: 16px;
  }

  .timeline-flow-desc {
    margin: 0;
    font-size: 13px;
    padding: 0;
  }

  .website-flow-head {
    display: block;
  }

  .website-flow-map {
    margin-top: 28px;
    padding-top: 0;
  }

  .website-flow-node,
  .website-flow-grid::before,
  .website-flow-card::before {
    display: none;
  }

  .website-flow-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .website-flow-card {
    border-radius: 14px;
    min-height: 0;
    padding: 14px 14px 12px;
  }

  .website-flow-card h4 {
    font-size: 22px;
  }

  .website-flow-card p {
    font-size: 14px;
  }

  .ai-pricing-layout {
    grid-template-columns: 1fr;
  }

  .ai-pricing-factors-grid {
    grid-template-columns: 1fr;
  }

  .ai-pricing-main-card {
    padding: 22px 20px;
  }

  .ai-pricing-price {
    font-size: clamp(36px, 10vw, 46px);
  }

  .ai-meta-row {
    gap: 8px;
    margin-bottom: 20px;
  }

  .ai-meta-item {
    font-size: 13px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .stats-strip-item { flex: 1 1 100%; border-right: none; }
  .stats-strip-item:nth-child(odd) { border-right: none; }
  .stats-strip-item:last-child { border-bottom: none; }
}

/* ============================================================
   Inner page components (audits, service pages, about, etc.)
   ============================================================ */

/* ── Utility ── */
.hidden { display: none !important; }

/* ── Page hero (inner pages - centered, no photo) ── */
.page-hero {
  padding: 96px 0 72px;
  background: var(--white);
}
.page-hero .subheadline {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.65;
}

/* ── AI workflows hero background ── */
.ai-hero {
  position: relative;
  overflow: hidden;
  background: #111;
}

.ai-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("Photos/VHD - AI Flow.png");
  background-position: center;
  background-size: cover;
  transform: scaleX(-1);
  transform-origin: center;
  z-index: 0;
}

.ai-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.64), rgba(0,0,0,0.58));
  z-index: 1;
}

.ai-hero .container {
  position: relative;
  z-index: 2;
}

.ai-hero h1,
.ai-hero .eyebrow {
  color: var(--white);
}

.ai-hero .subheadline,
.ai-hero p {
  color: rgba(255,255,255,0.86);
}

.ai-hero .hero-highlight {
  background: linear-gradient(to bottom, transparent 55%, rgba(214, 239, 244, 0.82) 55%);
}

/* ── Section background helpers ── */
.section-cyan  { background: var(--cyan);   padding: var(--section-y) 0; }
.section-white { background: var(--white);  padding: var(--section-y) 0; }
.section-gray  { background: var(--gray-lt); padding: var(--section-y) 0; }

/* AI workflows: problem section blend background */
.ai-problem-section {
  padding: 68px 0 54px;
  background:
    linear-gradient(rgba(245, 245, 245, 0.86), rgba(245, 245, 245, 0.9)),
    url("Photos/VHD bg 5.jpg") center center / cover no-repeat;
}

/* ── Subtle brand watermark for highlighted blocks ── */
.watermark-bg,
.info-box,
.pricing-box {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.watermark-bg::before,
.info-box::before,
.pricing-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("Assets/VHD - background.png");
  background-repeat: no-repeat;
  background-position: center center;
  opacity: var(--wm-opacity, 0.05);
  pointer-events: none;
  z-index: 0;
}

.watermark-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.92) 8%,
    rgba(255, 255, 255, 0.72) 16%,
    rgba(255, 255, 255, 0.26) 26%,
    rgba(255, 255, 255, 0) 40%
  );
  pointer-events: none;
  z-index: 0;
}

.watermark-bg.watermark-fade-top-bottom::after {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.92) 8%,
    rgba(255, 255, 255, 0.72) 16%,
    rgba(255, 255, 255, 0.26) 26%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.26) 74%,
    rgba(255, 255, 255, 0.72) 84%,
    rgba(255, 255, 255, 0.92) 92%,
    rgba(255, 255, 255, 0.98) 100%
  );
}

.watermark-bg::before {
  background-size: cover;
}

.info-box::before,
.pricing-box::before {
  background-size: 760px auto;
}

.pricing-box-full-bg::before {
  background-size: cover;
  background-position: center center;
}

.watermark-bg > *,
.info-box > *,
.pricing-box > * {
  position: relative;
  z-index: 1;
}

.watermark-bg { --wm-opacity: 0.18; }
.info-box { --wm-opacity: 0.16; }
.pricing-box { --wm-opacity: 0.14; }

.partnerships-bright-section {
  --wm-opacity: 0.2;
}

@media (max-width: 768px) {
  .included-compact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fit-compare-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .info-box::before,
  .pricing-box:not(.pricing-box-full-bg)::before {
    background-size: 520px auto;
    background-position: center 24px;
  }

  .timeline-sleek-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline-sleek-label {
    padding-top: 0;
    font-size: 22px;
  }

  .timeline-sleek-card {
    padding: 20px;
  }

  .timeline-sleek-card::before {
    left: 14px;
    top: -7px;
    box-shadow: 0 0 0 4px var(--cyan);
  }

  .timeline-sleek-card::after {
    display: none;
  }

  .timeline-graph-lane {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 0;
  }

  .timeline-graph-lane::before {
    left: 3px;
    right: auto;
    top: 22px;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .timeline-graph-item {
    padding-left: 22px;
  }

  .timeline-graph-label {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .timeline-graph-node {
    position: absolute;
    left: 0;
    top: 20px;
    margin-bottom: 0;
  }

  .timeline-graph-card {
    padding: 16px;
  }

  .timeline-graph-title {
    font-size: 18px;
  }

  .branding-process-section .timeline-graph-item::after {
    display: none;
  }

  .branding-process-section .timeline-graph-label {
    position: static;
    margin-bottom: 8px;
    display: block;
  }

  .branding-process-section .timeline-graph-card {
    min-height: 0;
    border-radius: 18px;
    padding: 20px 16px 14px;
  }

  .branding-process-stepnum {
    top: 14px;
    left: 12px;
    font-size: 54px;
  }

  .branding-process-section .timeline-graph-title {
    font-size: 22px;
    padding-top: 16px;
  }

  .fit-right-col {
    padding-top: 0;
  }
}

/* ── Audit tab switcher ── */
.audit-tabs {
  display: inline-flex;
  background: var(--gray-lt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px;
  gap: 4px;
}
.audit-tab {
  padding: 10px 28px;
  border-radius: 6px;
  background: transparent;
  color: var(--gray);
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.audit-tab.active {
  background: var(--black);
  color: var(--white);
}
.audit-tab:not(.active):hover {
  background: var(--border);
  color: var(--black);
}

/* ── Audit content panels ── */
.audit-panel {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

/* ── Section label row (heading + pill) ── */
.section-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.section-label-row h2 { margin-bottom: 0; }
.section-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
  white-space: nowrap;
}

/* ── Deliverables grid (3-col check cards) ── */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.deliverable-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--gray-lt);
}
.deliverable-card strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.deliverable-card p { font-size: 14px; color: var(--gray); margin: 0; }
.deliverable-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Arrow check list ── */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.check-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}
.check-list li:first-child { border-top: 1px solid var(--border); }
.check-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gray);
  font-weight: 500;
}
.check-list li strong { color: var(--black); }

/* ── FAQ accordion (native <details>) ── */
.faq-accordion { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  font-family: var(--font);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  color: var(--gray);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] > .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 20px;
}
.faq-a p { font-size: 15px; color: var(--gray); line-height: 1.7; margin: 0; }

/* ── AI workflows page refinements ── */
.ai-what-you-get {
  padding-bottom: 124px;
}

.deliverables-grid.ai-deliverables {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.deliverable-card.ai-card {
  display: block;
  background: var(--white);
  padding: 26px;
}

.deliverable-card.ai-card h4 {
  margin-bottom: 14px;
}

.deliverable-card.ai-card .check-list li {
  font-size: 15px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.use-cases-light {
  background: url("Photos/VHD bg AI2.jpg") center center / cover no-repeat;
}

.glass-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.78), rgba(255,255,255,0.56));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
  backdrop-filter: blur(8px);
}

.use-cases-light .glass-card {
  background: linear-gradient(140deg, rgba(255,255,255,0.74), rgba(255,255,255,0.5));
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.use-cases-light .glass-card p {
  color: #59626d !important;
}

.use-cases-light .glass-card h3 {
  color: var(--black);
}

.use-cases-light .section-intro h2 {
  color: var(--white);
}

/* ── LinkedIn testimonials (index + about) ── */
.linkedin-testimonials-section {
  background: var(--white);
  padding: 68px 0 58px;
}

.linkedin-testimonials-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.linkedin-testimonials-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.linkedin-testimonials-link:hover {
  background: var(--black);
  color: var(--white);
}

.linkedin-testimonials-carousel {
  overflow: hidden;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Shadow bleed: keep enough vertical room so blur fades naturally before next element. */
  padding: 4px 2px 56px;
  margin-bottom: -24px;
}

.linkedin-testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.linkedin-testimonials-track {
  display: flex;
  gap: 12px;
  width: max-content;
  transform: translate3d(0, 0, 0);
}

.linkedin-testimonial-card {
  flex: 0 0 clamp(260px, 28vw, 320px);
  scroll-snap-align: start;
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.86), rgba(255,255,255,0.74));
  border: 1px solid rgba(217, 222, 229, 0.34);
  border-radius: 12px;
  padding: 14px 14px 12px;
  box-shadow:
    0 10px 30px rgba(10, 22, 36, 0.028),
    0 18px 48px rgba(10, 22, 36, 0.02),
    0 2px 8px rgba(10, 22, 36, 0.015);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.linkedin-testimonial-card.has-social-links {
  padding-bottom: 44px;
}

.linkedin-testimonial-name {
  font-size: 17px;
  line-height: 1.2;
  margin: 0 0 4px;
  padding-right: 58px;
}

.linkedin-testimonial-meta {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(26, 39, 51, 0.72);
  padding-right: 58px;
}

.linkedin-testimonial-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(20, 31, 43, 0.86);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.linkedin-testimonial-card.is-expanded .linkedin-testimonial-text {
  display: block;
  overflow: visible;
}

.linkedin-testimonial-more {
  margin-top: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(20, 31, 43, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.55);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.18s ease;
}

.linkedin-testimonial-more:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(20, 31, 43, 0.36);
  transform: scale(var(--btn-grow-scale));
}

.linkedin-testimonial-avatar-wrap {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.96);
  background: rgba(255,255,255,0.92);
  box-shadow:
    0 10px 28px rgba(8, 19, 30, 0.05),
    0 20px 42px rgba(8, 19, 30, 0.028);
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding: 3px;
}

.linkedin-testimonial-avatar {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
}

.linkedin-testimonial-avatar-fallback {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(20, 31, 43, 0.78);
}

.linkedin-testimonial-social {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.linkedin-testimonial-social-link {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(14, 28, 43, 0.2);
  background: rgba(255, 255, 255, 0.76);
  color: rgba(14, 28, 43, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s ease;
}

.linkedin-testimonial-social-link:hover {
  background: rgba(14, 28, 43, 0.94);
  border-color: rgba(14, 28, 43, 0.94);
  color: var(--white);
  transform: scale(1.05);
}

.linkedin-testimonial-social-link svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.linkedin-testimonial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 58px 8px 0;
}

.linkedin-testimonial-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(14, 28, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(14, 28, 43, 0.84);
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.linkedin-testimonials-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
}

.linkedin-testimonials-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.3);
  color: var(--black);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s ease;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.linkedin-testimonials-btn:hover {
  background: var(--black);
  color: var(--white);
  transform: scale(var(--btn-grow-scale));
}

/* ── Instagram carousel (index) ── */
.instagram-connected-section {
  background: var(--white);
  padding: 74px 0;
}

.instagram-connected-intro {
  text-align: center;
  margin-bottom: 28px;
}

.instagram-connected-intro h2 {
  margin-bottom: 0;
}

.instagram-profile-links {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.instagram-profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.instagram-profile-link:hover {
  background: var(--black);
  color: var(--white);
}

.instagram-carousel-shell {
  overflow: hidden;
  min-height: clamp(210px, 26vw, 300px);
}

.instagram-carousel-track {
  --ig-gap: 12px;
  display: flex;
  width: max-content;
  animation: instagram-carousel-loop 78s linear infinite;
  will-change: transform;
}

.instagram-carousel-reel {
  display: flex;
  gap: var(--ig-gap);
  padding-right: var(--ig-gap);
}

.instagram-post-card {
  flex: 0 0 clamp(168px, 18vw, 232px);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}

.instagram-post-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.instagram-post-link:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.32);
  outline-offset: -2px;
}

.instagram-post-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}

.instagram-carousel-shell.is-empty {
  overflow: visible;
  min-height: 0;
}

.instagram-carousel-shell.is-empty .instagram-carousel-track {
  width: 100%;
  animation: none;
}

.instagram-carousel-shell.is-empty .instagram-carousel-reel {
  width: 100%;
  padding-right: 0;
}

.instagram-carousel-empty {
  margin: 0;
  width: 100%;
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 0 2px;
}

@keyframes instagram-carousel-loop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .instagram-carousel-track {
    animation: none;
  }
}

/* ── Responsive: audit page ── */
@media (max-width: 768px) {
  .z2l-edge-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .z2l-edge-section .container {
    max-width: none;
    width: 100%;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .ai-feature-video-section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .z2l-showcase-edge {
    grid-template-columns: 1fr;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    gap: 24px;
  }

  .z2l-showcase-copy {
    padding: 0;
  }

  .z2l-showcase-edge .z2l-showcase-media {
    margin-left: 0;
    border-radius: 0;
  }

  .z2l-showcase-media img {
    min-height: 360px;
  }

  .z2l-showcase-fade {
    display: none;
  }

  .client-logos-marquee {
    height: 84px;
  }

  .client-logos-track {
    gap: 40px;
    padding: 0 18px;
    animation-duration: 34s;
  }

  .client-logo-item {
    min-width: 92px;
  }

  .client-logo-item img {
    max-height: 32px;
    max-width: 148px;
  }

  .ai-workflow-chip-grid {
    grid-template-columns: 1fr;
  }

  .deliverables-grid { grid-template-columns: 1fr; }
  .deliverables-grid.ai-deliverables { grid-template-columns: 1fr; }
  .ai-what-you-get { padding-bottom: 84px; }

  .instagram-connected-section {
    padding: 58px 0;
  }

  .instagram-carousel-track {
    --ig-gap: 10px;
    animation-duration: 66s;
  }

  .instagram-post-card {
    flex-basis: min(44vw, 188px);
    border-radius: 8px;
  }

  .instagram-profile-link {
    font-size: 11px;
    padding: 7px 11px;
  }

  .ai-pricing-main-card .check-list {
    grid-template-columns: 1fr;
  }

  .linkedin-testimonials-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .linkedin-testimonials-link {
    font-size: 11px;
    padding: 8px 12px;
  }

  .linkedin-testimonial-card {
    flex-basis: min(82vw, 320px);
    padding: 14px;
  }

  .linkedin-testimonials-controls {
    justify-content: flex-start;
    margin-top: 8px;
  }

  .linkedin-testimonials-carousel {
    padding-bottom: 46px;
    margin-bottom: -18px;
  }

  .linkedin-testimonials-btn {
    width: 32px;
    height: 32px;
  }

  .audit-tabs { width: 100%; }
  .audit-tab { flex: 1; text-align: center; padding: 10px 16px; }
  .section-label-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .linkedin-testimonial-card {
    flex-basis: calc(100vw - (var(--gutter) * 2));
  }

  .instagram-post-card {
    flex-basis: 46vw;
  }

}

/* ============================================================
   Brand audit checklist page
   ============================================================ */
.audit-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.audit-checklist-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.audit-checklist-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

.audit-checklist-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audit-checklist-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.45;
  color: var(--black);
}

.audit-checklist-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--black);
  cursor: pointer;
}

.audit-score-card {
  border: 2px solid var(--black);
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--white);
}

.audit-score-number {
  display: block;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .audit-checklist-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Testimonial intake page
   ============================================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.testimonial-nav-inner {
  justify-content: space-between;
}

.testimonial-intake-section {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 92px;
  background: #f2f4f7;
}

.testimonial-intake-container {
  max-width: 860px;
  position: relative;
  z-index: 2;
}

.testimonial-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.42) saturate(1.04);
  transform: scale(1.02);
  transform-origin: center;
  z-index: 0;
}

.testimonial-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.74) 54%,
    rgba(255, 255, 255, 0.78) 100%
  );
  z-index: 1;
}

.testimonial-intake-shell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
}

.testimonial-intake-shell h1 {
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.06;
}

.testimonial-intake-lead {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.45;
}

.testimonial-language-switch {
  margin-top: 16px;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.testimonial-lang-btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.testimonial-lang-btn:hover {
  border-color: var(--black);
}

.testimonial-lang-btn.is-active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.testimonial-step-indicator {
  margin-top: 30px;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-step-indicator span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}

.testimonial-progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e8eaed;
  overflow: hidden;
}

#testimonial-progress-value {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: var(--black);
  transition: width 0.2s ease;
}

.testimonial-step-panel {
  display: none;
}

.testimonial-step-panel.is-active {
  display: block;
}

.testimonial-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.testimonial-step-panel textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  resize: vertical;
  min-height: 150px;
  transition: border-color 0.18s;
}

.testimonial-step-panel textarea:focus {
  border-color: var(--black);
}

.testimonial-rating-group {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 14px;
}

.testimonial-rating-group legend {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 14px;
}

.testimonial-rating-group p {
  font-size: 13px;
  color: var(--gray);
  margin-top: 10px;
}

.testimonial-service-group {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 18px;
}

.testimonial-service-group legend {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 8px;
}

.testimonial-service-group p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}

.testimonial-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.testimonial-service-pill {
  position: relative;
  display: inline-flex;
}

.testimonial-service-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.testimonial-service-pill span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s ease;
  line-height: 1;
}

.testimonial-service-pill:hover span {
  border-color: rgba(0, 0, 0, 0.42);
}

.testimonial-service-pill input:checked + span {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.testimonial-service-pill input:focus-visible + span {
  outline: 2px solid rgba(0, 0, 0, 0.2);
  outline-offset: 2px;
}

.testimonial-stars {
  display: flex;
  gap: 10px;
}

.testimonial-stars label {
  position: relative;
  cursor: pointer;
}

.testimonial-stars input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.testimonial-stars span[aria-hidden="true"] {
  display: block;
  font-size: 29px;
  line-height: 1;
  color: #d3d6dc;
  transition: color 0.15s;
}

.testimonial-stars label.is-selected span[aria-hidden="true"],
.testimonial-stars label:hover span[aria-hidden="true"] {
  color: var(--black);
}

.testimonial-step-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.testimonial-note {
  font-size: 14px;
  margin-top: 12px;
}

.testimonial-error {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #d28b93;
  background: #fff1f3;
  color: #8e2935;
  font-size: 14px;
  line-height: 1.45;
}

.testimonial-thank-you h2 {
  margin-bottom: 14px;
}

.testimonial-thank-you p {
  margin-bottom: 12px;
}

@media (min-width: 980px) {
  html,
  body.testimonial-page {
    height: 100%;
  }

  body.testimonial-page {
    overflow: hidden;
  }

  body.testimonial-page .nav-inner {
    height: 58px;
  }

  body.testimonial-page .nav-logo img {
    height: 32px;
  }

  .testimonial-intake-section {
    min-height: calc(100vh - 58px);
    height: calc(100vh - 58px);
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonial-intake-container {
    width: 100%;
    display: block;
    min-height: 0;
  }

  .testimonial-intake-shell {
    width: 100%;
    padding: 22px 26px;
    border-radius: 10px;
    display: block;
    min-height: initial;
  }

  .testimonial-intake-shell .eyebrow {
    margin-bottom: 10px;
  }

  .testimonial-intake-shell h1 {
    font-size: clamp(30px, 3.4vw, 44px);
    margin-bottom: 6px;
  }

  .testimonial-intake-lead {
    max-width: 760px;
    font-size: 14px;
    line-height: 1.35;
  }

  .testimonial-language-switch {
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 6px;
  }

  .testimonial-lang-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .testimonial-step-indicator {
    margin-top: 8px;
    margin-bottom: 18px;
    gap: 6px;
  }

  .testimonial-step-indicator span {
    font-size: 11px;
  }

  #testimonial-intake-form {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .testimonial-step-panel {
    min-height: 0;
  }

  .testimonial-step-panel[data-step="1"].is-active {
    display: flex;
    flex-direction: column;
  }

  .testimonial-step-panel[data-step="1"] .testimonial-form-grid {
    gap: 12px 16px;
  }

  .testimonial-step-panel[data-step="1"] .form-field {
    margin-bottom: 0;
  }

  .testimonial-step-panel[data-step="1"] .form-field label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .testimonial-step-panel[data-step="1"] .form-field input[type="text"],
  .testimonial-step-panel[data-step="1"] .form-field input[type="email"],
  .testimonial-step-panel[data-step="1"] .form-field input[type="url"] {
    padding: 11px 13px;
    font-size: 14px;
  }

  .testimonial-step-panel[data-step="2"].is-active {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-content: start;
  }

  .testimonial-step-panel[data-step="2"] .testimonial-rating-group {
    margin-bottom: 0;
    padding: 12px;
  }

  .testimonial-step-panel[data-step="2"] .testimonial-rating-group legend {
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 10px;
    min-height: 36px;
  }

  .testimonial-step-panel[data-step="2"] .testimonial-stars {
    gap: 5px;
  }

  .testimonial-step-panel[data-step="2"] .testimonial-stars span[aria-hidden="true"] {
    font-size: 24px;
  }

  .testimonial-step-panel[data-step="2"] .testimonial-rating-group p {
    font-size: 11px;
    margin-top: 6px;
  }

  .testimonial-step-panel[data-step="2"] .testimonial-step-actions {
    grid-column: 1 / -1;
    margin-top: 2px;
  }

  .testimonial-step-panel[data-step="3"].is-active {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px 12px;
    align-content: start;
  }

  .testimonial-step-panel[data-step="3"] .testimonial-service-group {
    margin-bottom: 0;
    padding: 12px;
  }

  .testimonial-step-panel[data-step="3"] .testimonial-service-group legend {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .testimonial-step-panel[data-step="3"] .testimonial-service-group p {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .testimonial-step-panel[data-step="3"] .testimonial-service-pills {
    gap: 6px;
  }

  .testimonial-step-panel[data-step="3"] .testimonial-service-pill span {
    padding: 6px 9px;
    font-size: 11px;
  }

  .testimonial-step-panel[data-step="3"] .form-field {
    margin-bottom: 0;
  }

  .testimonial-step-panel[data-step="3"] .form-field label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .testimonial-step-panel[data-step="3"] textarea {
    min-height: 176px;
    max-height: 176px;
    font-size: 14px;
    padding: 11px 13px;
  }

  .testimonial-step-panel[data-step="3"] .testimonial-note {
    grid-column: 1 / -1;
    margin-top: -2px;
    font-size: 12px;
    line-height: 1.35;
  }

  .testimonial-step-panel[data-step="3"] .testimonial-step-actions {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .testimonial-step-panel[data-step="4"].is-active {
    display: flex;
    flex-direction: column;
  }

  .testimonial-step-panel[data-step="4"] h2 {
    font-size: clamp(28px, 3vw, 38px);
    margin-bottom: 8px;
  }

  .testimonial-step-panel[data-step="4"] p {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .testimonial-step-actions {
    margin-top: 10px;
    gap: 8px;
  }

  .testimonial-step-actions .btn-primary,
  .testimonial-step-actions .btn-secondary {
    padding: 11px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .testimonial-back-link {
    padding: 12px 20px;
  }

  .testimonial-intake-section {
    padding-top: 44px;
    padding-bottom: 64px;
  }

  .testimonial-intake-shell {
    padding: 28px 20px;
    border-radius: var(--radius-md);
  }

  .testimonial-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-stars {
    gap: 6px;
  }

  .testimonial-stars span[aria-hidden="true"] {
    font-size: 27px;
  }

  .testimonial-service-pills {
    gap: 8px;
  }

  .testimonial-service-pill span {
    font-size: 11px;
    padding: 7px 10px;
  }

  .testimonial-step-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonial-step-actions .btn-primary,
  .testimonial-step-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media print {
  .site-header,
  .nav-drawer,
  .site-footer,
  .cta-banner,
  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-outline-white,
  .nav-cta,
  .drawer-cta {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section,
  .section-white,
  .section-cyan,
  .section-gray,
  .page-hero {
    padding: 24px 0 !important;
    background: #fff !important;
  }
}

/* ============================================================
   AI Workflows Page - Premium Clean Redesign (scoped)
   ============================================================ */
.page-ai-workflows {
  --aiw-ink: #0d1a2a;
  --aiw-ink-soft: #1f344b;
  --aiw-copy: #5d6b79;
  --aiw-line: rgba(13, 26, 42, 0.14);
  --aiw-line-soft: rgba(13, 26, 42, 0.08);
  --aiw-accent: #d6eff4;
  --aiw-radius: 14px;
  --aiw-radius-lg: 22px;
  --aiw-shadow-soft: 0 22px 54px rgba(8, 20, 34, 0.1);
  --aiw-shadow-card: 0 16px 38px rgba(8, 20, 34, 0.07);
}

.page-ai-workflows main {
  background: #ffffff;
  overflow-x: clip;
}

.page-ai-workflows [hidden] {
  display: none !important;
}

.page-ai-workflows .section {
  padding: 64px 0;
}

.page-ai-workflows .aiw-signal,
.page-ai-workflows .aiw-guide,
.page-ai-workflows .aiw-quiz,
.page-ai-workflows .aiw-what,
.page-ai-workflows .aiw-process,
.page-ai-workflows .aiw-faq {
  position: relative;
  background: #ffffff;
  isolation: isolate;
}

.page-ai-workflows .aiw-guide::before,
.page-ai-workflows .aiw-quiz::before,
.page-ai-workflows .aiw-what::before,
.page-ai-workflows .aiw-process::before,
.page-ai-workflows .aiw-faq::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.page-ai-workflows .aiw-guide::before {
  width: 760px;
  height: 760px;
  right: -280px;
  top: -130px;
  background: radial-gradient(circle, rgba(214, 239, 244, 0.62), rgba(214, 239, 244, 0) 72%);
}

.page-ai-workflows .aiw-quiz::before {
  width: 860px;
  height: 860px;
  left: -380px;
  top: -180px;
  background: radial-gradient(circle, rgba(159, 201, 217, 0.48), rgba(159, 201, 217, 0) 72%);
}

.page-ai-workflows .aiw-what::before {
  width: 720px;
  height: 720px;
  right: -250px;
  top: -220px;
  background: radial-gradient(circle, rgba(214, 239, 244, 0.56), rgba(214, 239, 244, 0) 72%);
}

.page-ai-workflows .aiw-process::before {
  width: 760px;
  height: 760px;
  left: -330px;
  top: -180px;
  background: radial-gradient(circle, rgba(214, 239, 244, 0.38), rgba(214, 239, 244, 0) 72%);
}

.page-ai-workflows .aiw-process::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff 82%);
  pointer-events: none;
  z-index: 0;
}

.page-ai-workflows .aiw-faq::before {
  width: 620px;
  height: 620px;
  right: -230px;
  bottom: -250px;
  background: radial-gradient(circle, rgba(214, 239, 244, 0.42), rgba(214, 239, 244, 0) 72%);
}

.page-ai-workflows .aiw-surface {
  position: relative;
  z-index: 1;
  border: 1px solid var(--aiw-line-soft);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--aiw-shadow-card);
  padding: clamp(22px, 3vw, 36px);
}

.page-ai-workflows .aiw-surface-quiz {
  padding-top: clamp(24px, 3.2vw, 38px);
  padding-bottom: clamp(24px, 3.2vw, 38px);
}

.page-ai-workflows h1,
.page-ai-workflows h2,
.page-ai-workflows h3 {
  color: var(--aiw-ink);
}

.page-ai-workflows p {
  color: var(--aiw-copy);
}

.page-ai-workflows .eyebrow {
  color: #687584;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.page-ai-workflows .aiw-section-head {
  max-width: 920px;
  margin-bottom: 20px;
}

.page-ai-workflows .aiw-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.page-ai-workflows .aiw-section-intro {
  margin: 0;
  max-width: 64ch;
  font-size: 17px;
  line-height: 1.58;
}

/* Hero */
.page-ai-workflows .aiw-hero {
  position: relative;
  min-height: max(82vh, 670px);
  overflow: hidden;
  background: #081322;
}

.page-ai-workflows .aiw-hero-video,
.page-ai-workflows .aiw-final-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-ai-workflows .aiw-hero-video {
  filter: brightness(0.62) contrast(1.08) saturate(0.94);
  transform: scale(1.06);
}

.page-ai-workflows.aiw-motion-ready .aiw-hero-video {
  animation: aiw-video-drift 16s ease-in-out infinite alternate;
}

.page-ai-workflows .aiw-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(113deg, rgba(8, 19, 34, 0.86) 8%, rgba(8, 19, 34, 0.55) 46%, rgba(8, 19, 34, 0.82) 100%),
    radial-gradient(90% 130% at 0% 0%, rgba(214, 239, 244, 0.14), rgba(214, 239, 244, 0) 56%);
}

.page-ai-workflows .aiw-hero-inner {
  position: relative;
  z-index: 1;
  min-height: max(82vh, 670px);
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 76px;
}

.page-ai-workflows .aiw-hero-copy {
  max-width: 760px;
}

.page-ai-workflows .aiw-hero-copy h1 {
  color: #ffffff;
  margin: 10px 0 14px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-ai-workflows .aiw-hero-copy p {
  color: rgba(236, 245, 250, 0.9);
  margin-bottom: 18px;
  max-width: 50ch;
  font-size: 17px;
  line-height: 1.6;
}

.page-ai-workflows .aiw-hero-actions {
  gap: 10px;
}

.page-ai-workflows .aiw-hero .btn-white,
.page-ai-workflows .aiw-final .btn-white {
  color: #091526;
  background: #ffffff;
  border-color: #ffffff;
}

.page-ai-workflows .aiw-hero .btn-outline-white,
.page-ai-workflows .aiw-final .btn-outline-white {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.page-ai-workflows .aiw-hero .btn-outline-white:hover,
.page-ai-workflows .aiw-final .btn-outline-white:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

/* Signal belt */
.page-ai-workflows .aiw-signal {
  padding: 18px 0 8px;
}

.page-ai-workflows .aiw-signal-window {
  overflow: hidden;
  border: 1px solid var(--aiw-line-soft);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fafc 100%);
  box-shadow: 0 10px 26px rgba(8, 20, 34, 0.05);
  padding: 10px 0;
}

.page-ai-workflows .aiw-signal-track {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: #506578;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-left: 22px;
}

.page-ai-workflows .aiw-signal-track span {
  position: relative;
  white-space: nowrap;
}

.page-ai-workflows .aiw-signal-track span::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(91, 119, 139, 0.6);
}

.page-ai-workflows.aiw-motion-ready .aiw-signal-track {
  animation: aiw-marquee 24s linear infinite;
}

/* Guide */
.page-ai-workflows .aiw-guide-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.page-ai-workflows .aiw-guide-flow article {
  border: 1px solid var(--aiw-line-soft);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(8, 20, 34, 0.04);
  padding: 16px 16px 18px;
}

.page-ai-workflows .aiw-guide-step {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a8795;
}

.page-ai-workflows .aiw-guide-flow h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.3;
}

.page-ai-workflows .aiw-guide-flow p {
  margin: 0;
  max-width: 30ch;
  color: #5d6a79;
}

/* Quiz */
.page-ai-workflows .aiw-quiz {
  padding-top: 54px;
  padding-bottom: 62px;
  background: #070f1b;
}

.page-ai-workflows .aiw-quiz .aiw-surface-quiz {
  border-color: rgba(159, 201, 217, 0.28);
  background: linear-gradient(160deg, #061427 0%, #0a1b32 100%);
  box-shadow: 0 20px 52px rgba(2, 8, 16, 0.54);
}

.page-ai-workflows .aiw-quiz .eyebrow {
  color: #9fc9d9;
}

.page-ai-workflows .aiw-quiz .aiw-section-head h2 {
  color: #ffffff;
}

.page-ai-workflows .aiw-section-head-quiz {
  max-width: 100%;
  text-align: center;
  margin-bottom: 22px;
}

.page-ai-workflows .aiw-section-head-quiz h2 {
  font-size: clamp(28px, 4vw, 44px);
  white-space: nowrap;
  line-height: 1.15;
}

.page-ai-workflows .aiw-quiz-shell {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(159, 201, 217, 0.32);
  border-radius: var(--aiw-radius-lg);
  background: linear-gradient(180deg, rgba(5, 18, 34, 0.94) 0%, rgba(7, 23, 44, 0.9) 100%);
  box-shadow: 0 14px 36px rgba(2, 8, 16, 0.46);
  padding: 28px;
}

.page-ai-workflows .aiw-quiz-progress {
  margin-bottom: 16px;
}

.page-ai-workflows .aiw-quiz-progress span {
  display: block;
  margin-bottom: 7px;
  color: #9fc9d9;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-ai-workflows .aiw-progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(159, 201, 217, 0.2);
  overflow: hidden;
}

.page-ai-workflows #aiw-progress-fill {
  display: block;
  width: 16.66%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #7fb3cc, #d6eff4);
  transition: width 0.26s ease;
}

.page-ai-workflows .aiw-step {
  border: none;
  padding: 0;
  margin: 0;
}

.page-ai-workflows .aiw-step.is-active {
  animation: aiw-step-in 0.28s ease;
}

.page-ai-workflows .aiw-step legend {
  margin-bottom: 16px;
  max-width: none;
  white-space: nowrap;
  color: #ffffff;
  font-size: clamp(14px, 2vw, 22px);
  line-height: 1.2;
}

.page-ai-workflows .aiw-step[data-step="6"] legend {
  max-width: none;
  white-space: nowrap;
}

.page-ai-workflows .aiw-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-ai-workflows .aiw-options-multi {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-ai-workflows .aiw-option {
  display: block;
}

.page-ai-workflows .aiw-option-multi span {
  min-height: 50px;
}

.page-ai-workflows .aiw-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-ai-workflows .aiw-option span {
  display: block;
  border: 1px solid rgba(159, 201, 217, 0.36);
  border-radius: 12px;
  background: rgba(6, 21, 38, 0.88);
  color: #e8f2f8;
  padding: 14px 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.34;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.page-ai-workflows .aiw-option:hover span {
  border-color: rgba(214, 239, 244, 0.78);
  background: rgba(7, 27, 50, 0.94);
  transform: translateY(-1px);
}

.page-ai-workflows .aiw-option input:checked + span {
  border-color: rgba(214, 239, 244, 0.88);
  background: linear-gradient(180deg, rgba(127, 179, 204, 0.28) 0%, rgba(159, 201, 217, 0.18) 100%);
  color: #d6eff4;
}

.page-ai-workflows .aiw-option input:focus-visible + span {
  outline: 2px solid #d6eff4;
  outline-offset: 2px;
}

.page-ai-workflows .aiw-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-ai-workflows .aiw-contact-grid .form-field {
  margin-bottom: 0;
}

.page-ai-workflows .aiw-contact-grid label {
  display: block;
  margin-bottom: 7px;
  color: #9fc9d9;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-ai-workflows .aiw-contact-grid input {
  width: 100%;
  border: 1px solid rgba(159, 201, 217, 0.4);
  border-radius: 12px;
  background: rgba(6, 21, 38, 0.9);
  color: #ffffff;
  padding: 13px 12px;
  font-size: 15px;
  font-family: var(--font);
}

.page-ai-workflows .aiw-contact-grid input:focus {
  border-color: rgba(214, 239, 244, 0.9);
  outline: none;
}

.page-ai-workflows .aiw-privacy-note {
  margin-top: 10px;
  margin-bottom: 0;
  color: #b7d0e1;
  font-size: 13px;
}

.page-ai-workflows .aiw-form-error {
  margin-top: 12px;
  margin-bottom: 0;
  color: #ffd3d3;
  font-size: 13px;
}

.page-ai-workflows .aiw-step-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.page-ai-workflows .aiw-quiz .aiw-step-actions .btn-primary {
  background: #d6eff4;
  color: #071322;
  border-color: #d6eff4;
}

.page-ai-workflows .aiw-quiz .aiw-step-actions .btn-primary:hover {
  background: #ffffff;
  color: #071322;
  border-color: #ffffff;
}

.page-ai-workflows .aiw-quiz .aiw-step-actions .btn-secondary {
  background: transparent;
  color: #d6eff4;
  border-color: rgba(214, 239, 244, 0.75);
}

.page-ai-workflows .aiw-quiz .aiw-step-actions .btn-secondary:hover {
  background: rgba(214, 239, 244, 0.12);
  color: #ffffff;
  border-color: #d6eff4;
}

.page-ai-workflows .aiw-step-actions .btn-primary,
.page-ai-workflows .aiw-step-actions .btn-secondary {
  min-width: 152px;
}

.page-ai-workflows .aiw-success {
  border: 1px solid rgba(159, 201, 217, 0.34);
  border-radius: 16px;
  background: rgba(6, 21, 38, 0.9);
  padding: 22px;
}

.page-ai-workflows .aiw-success h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.3;
}

.page-ai-workflows .aiw-success p {
  margin: 0 0 14px;
  color: #b7d0e1;
}

.page-ai-workflows .aiw-quiz .aiw-success .btn-secondary {
  background: #d6eff4;
  color: #071322;
  border-color: #d6eff4;
}

.page-ai-workflows .aiw-quiz .aiw-success .btn-secondary:hover {
  background: #ffffff;
  color: #071322;
  border-color: #ffffff;
}

/* What we optimize */
.page-ai-workflows .aiw-what-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.page-ai-workflows .aiw-what-grid p {
  margin: 0;
  padding: 15px 16px;
  border: 1px solid var(--aiw-line-soft);
  border-radius: 14px;
  background: #ffffff;
  color: var(--aiw-ink-soft);
  font-size: 17px;
  line-height: 1.4;
}

/* Process */
.page-ai-workflows .aiw-process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.page-ai-workflows .aiw-process-line article {
  border: 1px solid var(--aiw-line-soft);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(8, 20, 34, 0.04);
  padding: 16px 14px 18px;
}

.page-ai-workflows .aiw-process-line span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--aiw-line);
  color: #5f6f80;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-ai-workflows .aiw-process-line h3 {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.3;
}

.page-ai-workflows .aiw-process-line p {
  margin: 0;
  color: #5d6b79;
}

/* FAQ */
.page-ai-workflows .aiw-faq-inner {
  max-width: 980px;
}

.page-ai-workflows .aiw-faq .aiw-section-head {
  margin-bottom: 16px;
}

.page-ai-workflows .aiw-faq .faq-accordion {
  border-top: none;
}

.page-ai-workflows .aiw-faq .faq-item {
  border: 1px solid var(--aiw-line-soft);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(8, 20, 34, 0.04);
  margin-bottom: 10px;
}

.page-ai-workflows .aiw-faq .faq-q {
  padding: 16px 18px;
  color: var(--aiw-ink);
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.3;
  font-weight: 600;
}

.page-ai-workflows .aiw-faq .faq-q::after {
  color: #6a7785;
  font-size: 21px;
}

.page-ai-workflows .aiw-faq .faq-a {
  padding: 0 18px 16px;
  color: var(--aiw-copy);
  font-size: 16px;
  line-height: 1.65;
}

/* Final section */
.page-ai-workflows .aiw-final {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
  background: #081322;
}

.page-ai-workflows .aiw-final-video {
  filter: brightness(0.56) contrast(1.08) saturate(1.02);
  transform: scale(1.07);
}

.page-ai-workflows.aiw-motion-ready .aiw-final-video {
  animation: aiw-video-drift 18s ease-in-out infinite alternate-reverse;
}

.page-ai-workflows .aiw-final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 18, 32, 0.86) 8%, rgba(8, 18, 32, 0.56) 48%, rgba(8, 18, 32, 0.9) 100%);
}

.page-ai-workflows .aiw-final-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: center;
}

.page-ai-workflows .aiw-final .eyebrow {
  color: rgba(227, 241, 248, 0.86);
}

.page-ai-workflows .aiw-final-inner h2 {
  margin: 10px 0 18px;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* Motion */
.page-ai-workflows.aiw-motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.64s cubic-bezier(0.2, 0.82, 0.2, 1), transform 0.64s cubic-bezier(0.2, 0.82, 0.2, 1);
  transition-delay: var(--aiw-delay, 0ms);
}

.page-ai-workflows.aiw-motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes aiw-step-in {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes aiw-video-drift {
  0% {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.1) translate3d(-10px, -6px, 0);
  }
}

@keyframes aiw-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .page-ai-workflows .aiw-process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 20px;
  }

  .page-ai-workflows .aiw-guide-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .page-ai-workflows .section {
    padding: 50px 0;
  }

  .page-ai-workflows .aiw-surface {
    border-radius: 18px;
    padding: 24px 20px;
  }

  .page-ai-workflows .aiw-guide-flow,
  .page-ai-workflows .aiw-options,
  .page-ai-workflows .aiw-options-multi,
  .page-ai-workflows .aiw-contact-grid,
  .page-ai-workflows .aiw-what-grid,
  .page-ai-workflows .aiw-process-line {
    grid-template-columns: 1fr;
  }

  .page-ai-workflows .aiw-step-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-ai-workflows .aiw-step-actions .btn-primary,
  .page-ai-workflows .aiw-step-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .page-ai-workflows .aiw-section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
  }
}

@media (max-width: 640px) {
  .page-ai-workflows .aiw-hero {
    min-height: auto;
  }

  .page-ai-workflows .aiw-hero-inner {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 64px;
  }

  .page-ai-workflows .aiw-hero-copy h1 {
    font-size: clamp(40px, 6vw, 68px);
  }

  .page-ai-workflows .aiw-hero-copy p,
  .page-ai-workflows .aiw-section-intro {
    font-size: 16px;
  }

  .page-ai-workflows .aiw-signal {
    padding: 14px 0 6px;
  }

  .page-ai-workflows .aiw-signal-window {
    border-radius: 20px;
  }

  .page-ai-workflows .aiw-signal-track {
    gap: 24px;
    font-size: 10px;
  }

  .page-ai-workflows .aiw-quiz-shell {
    padding: 18px;
    border-radius: 16px;
  }

  .page-ai-workflows .aiw-step legend {
    font-size: clamp(11px, 3.4vw, 16px);
  }

  .page-ai-workflows .aiw-step[data-step="6"] legend {
    font-size: clamp(11px, 3.4vw, 16px);
  }

  .page-ai-workflows .aiw-section-head-quiz h2 {
    font-size: clamp(28px, 4vw, 44px);
    white-space: nowrap;
  }

  .page-ai-workflows .aiw-what-grid p {
    font-size: 17px;
  }

  .page-ai-workflows .aiw-final {
    min-height: 58vh;
    padding: 76px 0;
  }

  .page-ai-workflows .aiw-final-inner h2 {
    font-size: clamp(40px, 6vw, 68px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-ai-workflows.aiw-motion-ready [data-reveal],
  .page-ai-workflows .aiw-hero-video,
  .page-ai-workflows .aiw-final-video,
  .page-ai-workflows .aiw-signal-track,
  .page-ai-workflows .aiw-step.is-active {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
