/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

:root {
  /* Brand — SB Blue / SB Pink / SB Purple */
  --smart-blue: #3d8bff;
  --smart-blue-hover: #2568e6;
  --smart-blue-soft: #8eb9ff;
  --smart-cta-blue: var(--smart-blue);
  --smart-cta-blue-hover: var(--smart-blue-hover);
  --smart-pink: #ff6b6b;
  --smart-purple: #74526c;
  --smart-purple-muted: #a891a4;

  --smart-black: #131313;
  --smart-white: #ffffff;
  --smart-cream: #fafaf7;
  --smart-muted: #2a2a2a;
  --smart-border: rgba(19, 19, 19, 0.12);

  /* Gray scale — body copy, labels, captions */
  --smart-body: #666666;
  --smart-gray: #888888;
  --smart-faint: #aaaaaa;
}

@font-face {
  font-family: 'NeueMontreal';
  src: url('assets/fonts/NeueMontrealBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter18ptRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*
 * Horizontal overflow guard — real phones (often Android Chrome) can allow a few
 * pixels of sideways scroll from subpixel rounding, dynamic viewport vs `100vw`,
 * and full-bleed hacks (`calc(50% - 50vw)`, `.portfolio-marquee-wrap`). Desktop
 * DevTools responsive mode usually does not show this.
 */
html {
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: clip;
  max-width: 100%;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

h1, h2, h3, h4, h5, h6,
.display-title, .section-title, .metric-number, .metric-card-number, .step-number {
  font-family: 'NeueMontreal', 'Inter', system-ui, sans-serif;
}

/* Helpers */
.text-blue { color: var(--smart-blue) !important; }
.text-black { color: var(--smart-black) !important; }

/* Hero headline accent — uses full brand spectrum */
.hero-section .display-title .text-blue {
  background: linear-gradient(
    135deg,
    var(--smart-blue) 0%,
    var(--smart-pink) 52%,
    var(--smart-purple) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.hero-section .display-title span {
  background: linear-gradient(135deg, var(--smart-blue) 0%, var(--smart-pink) 52%, var(--smart-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.text-muted-custom { color: var(--smart-muted) !important; }
.text-white-75 { color: rgba(255, 255, 255, 0.75) !important; }

/* ── Reusable layout & text helpers ──────────────────────────────── */

/* Eyebrow in dark / hero backgrounds */
.hero-eyebrow { color: var(--smart-blue-soft); }

/* Lead paragraph in dark hero sections */
.hero-lead {
  color: rgba(255, 255, 255, 0.7);
  /* max-width: 620px; */
  margin-left: auto;
  margin-right: auto;
}

/* Full-width tagline inside dark heroes (pipe-separated lists, feature lines) */
.hero-tagline {
  color: rgba(255, 255, 255, 0.7);
}

/* Intro paragraph beneath section headings */
.section-lead {
  font-size: 1.125rem;
  line-height: 1.55;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Body text at slightly larger size (used in editorial / two-col sections) */
.body-text-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Centered header block inside dark sections */
.dark-section-header {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Description text inside dark result / case-study cards */
.dark-result-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Small date / version stamp on legal pages */
.legal-date { font-size: 0.9rem; }
.background-white { background-color: var(--smart-white) !important; }
.background-black { background-color: var(--smart-black) !important; }
.background-cream { background-color: var(--smart-cream) !important; }
.background-faint { background-color: var(--smart-faint) !important; }
.border-soft { border: 1px solid var(--smart-border) !important; border-radius: 0.375rem; }
.border-soft-bottom { border-bottom: 1px solid var(--smart-border) !important; }
.border-soft-top { border-top: 1px solid var(--smart-border) !important; }
.section-space { padding-top: 5rem; padding-bottom: 5rem; }
.section-space-lg { padding-top: 7rem; padding-bottom: 7rem; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.display-title {
  font-size: clamp(2.1rem, 4.8vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1.display-title {
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
}

.hero-sub {
  max-width: 35rem;
}

.hero-text-link {
  color: var(--smart-black);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid var(--smart-black);
  padding-bottom: 0.15rem;
}

.hero-text-link:hover,
.hero-text-link:focus {
  color: var(--smart-blue);
  border-color: var(--smart-blue);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: #8a8a8a;
  font-size: 0.95rem;
}

.hero-visual-col {
  display: flex;
  justify-content: center;
  padding-left: 0;
}

.hero-graphic {
  position: relative;
  /* width: min(100%, 380px); */
  width: 100% !important;
  /* aspect-ratio: 1 / 1; */
}

.hero-graphic img {
  border-radius: 10px;
  border: 1px solid #e4e4e4;
}

.hero-pattern-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  opacity: 0.22;
  background-color: #efefef;
  background-image:
    radial-gradient(circle at 14% 14%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 30% 14%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 47% 14%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 64% 14%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 81% 14%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 14% 31%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 30% 31%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 47% 31%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 64% 31%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 81% 31%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 14% 48%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 30% 48%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 47% 48%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 64% 48%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 81% 48%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 14% 65%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 30% 65%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 47% 65%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 64% 65%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 81% 65%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 14% 82%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 30% 82%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 47% 82%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 64% 82%, #d9d9d9 0 8%, transparent 8.5%),
    radial-gradient(circle at 81% 82%, #d9d9d9 0 8%, transparent 8.5%);
}

.hero-metric {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.hero-metric-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a8a8a;
  font-size: 0.86rem;
  margin-top: 0.4rem;
  line-height: 1.25;
}

/* Portfolio marquee section */
.portfolio-marquee-section {
  padding: 2.25rem 0 3rem;
  overflow: hidden;
}

.portfolio-marquee-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.portfolio-marquee {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  will-change: transform;
}

.portfolio-marquee-top {
  animation: portfolio-marquee-left 60s linear infinite;
}

.portfolio-marquee-bottom {
  margin-left: -180px;
  animation: portfolio-marquee-right 66s linear infinite;
}

.portfolio-marquee-track {
  display: flex;
  gap: 1.25rem;
}

.portfolio-marquee-item {
  width: clamp(260px, 30vw, 360px);
  /* Match source assets (1390×952) so previews are not cropped */
  aspect-ratio: 1390 / 952;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(19, 19, 19, 0.16);
  background: #fff;
}

.portfolio-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes portfolio-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes portfolio-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.metric-number {
  font-size: clamp(2.8rem, 8vw, 5.75rem);
  font-weight: 700;
  line-height: 1;
}

.metric-card-number {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.text-link-blue {
  color: var(--smart-blue);
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 0.2em;
}

.text-link-blue:hover,
.text-link-blue:focus {
  color: var(--smart-blue-hover);
}

/* Three doors section (mockup match) */
.doors-header {
  margin-bottom: 4rem;
}

.doors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--smart-black);
}

.door {
  display: flex;
  flex-direction: column;
  padding: 3rem 2.5rem 3.25rem;
  border-right: 1px solid var(--smart-black);
  transition: all .5s;
}

.door:last-child {
  border-right: none;
}

.door:hover {
  background: rgba(19, 19, 19, 0.03);
  transition: all .5s;
}

.door:hover .door-num {
  color: var(--smart-black);
  opacity: initial;
  transition: all .5s;
}

/* Auto-cycle accent (homepage + home-test) — JS adds `.is-cycle-active` */
.three-doors--cycle .door.is-cycle-active {
  background: rgba(19, 19, 19, 0.03);
}

.three-doors--cycle .door.is-cycle-active .door-num {
  color: var(--smart-black);
  opacity: 1;
  -webkit-text-stroke-color: var(--smart-black);
}

/* Cycle section: no manual hover — JS loop owns column / number emphasis */
.three-doors--cycle .door:hover {
  background: transparent;
}

.three-doors--cycle .door:hover .door-num {
  color: transparent;
  opacity: 0.16;
  -webkit-text-stroke: 1.5px var(--smart-black);
}

.three-doors--cycle .door.is-cycle-active:hover {
  background: rgba(19, 19, 19, 0.03);
}

.three-doors--cycle .door.is-cycle-active:hover .door-num {
  color: var(--smart-black);
  opacity: 1;
  -webkit-text-stroke-color: var(--smart-black);
}

.door-num {
  font-family: 'NeueMontreal', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 7.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--smart-black);
  margin-bottom: 2rem;
  opacity: 0.16;
  transition: all .5s;
}

.door-label {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.door p {
  color: var(--smart-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.door .text-link-blue {
  margin-top: auto;
}

@media (prefers-reduced-motion: reduce) {
  .door {
    transition-duration: 0.01ms;
  }
}

/* Why smartboost section (mockup match) */
.why-header {
  max-width: 44rem;
  margin-bottom: 4.5rem;
}

.why-header .text-muted-custom {
  font-size: 1.125rem;
  line-height: 1.55;
  max-width: 720px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.pillar {
  padding: 3rem;
  border: 1px solid var(--smart-border);
}

.pillar-label {
  display: inline-block;
  /* background-color: var(--smart-blue); */
  padding: 6px 15px 6px 0;
  border-radius: 5px;
  color: var(--smart-blue);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pillar h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.pillar p {
  color: var(--smart-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* How section (mockup match) */
.how-header {
  margin-bottom: 4.5rem;
  max-width: 38rem;
}

.how-header .text-muted-custom {
  font-size: 18px;
  line-height: 1.55;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--smart-border);
}

.step {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--smart-border);
}

.step:last-child {
  border-right: none;
}

.step-num {
  font-family: 'NeueMontreal', 'Inter', system-ui, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--smart-black);
  opacity: 0.18;
  margin-bottom: 1.5rem;
}

.step h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
  line-height: 1.2;
}

.step p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--smart-muted);
  margin: 0;
}

.how-cta {
  margin-top: 4rem;
  text-align: center;
}

/* One-time scroll stagger for #how steps (homepage + home-test) — JS adds classes */
@media (prefers-reduced-motion: no-preference) {
  @keyframes how-step-reveal-in {
    from {
      opacity: 0;
      transform: translate3d(0, 22px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  .how--steps-reveal.how--steps-reveal-started .steps > .step:not(.step--revealed) {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  .how--steps-reveal.how--steps-reveal-started .steps > .step.step--revealed {
    animation: how-step-reveal-in 0.92s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-fill-mode: both;
  }
}

/* Proof section (mockup match) */
.proof-header {
  margin-bottom: 4.5rem;
}

.case-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--smart-black);
  margin-bottom: 4.5rem;
}

.case-tile {
  display: flex;
  flex-direction: column;
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--smart-black);
}

.case-tile:last-child {
  border-right: none;
}

.tile-metric {
  font-family: 'NeueMontreal', 'Inter', system-ui, sans-serif;
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

/* ~48px at 88px title size; scales with .tile-metric in responsive rules */
.tile-metric .unit {
  font-size: 0.545em;
  margin-left: 0.12em;
  vertical-align: baseline;
}

.tile-metric--count .tile-metric__value {
  font-variant-numeric: tabular-nums;
}

.tile-metric__prefix {
  font-size: 0.545em;
  margin-right: 0.08em;
  vertical-align: baseline;
  font-weight: 700;
}

/* Word-sized suffix (e.g. “Leads”) — slightly smaller than % so multi-letter reads balanced */
.tile-metric .unit--word {
  font-size: 0.48em;
  margin-left: 0.18em;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 600;
}

.tile-metric--rank {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.tile-metric__rank-label {
  margin-right: 0.06em;
}

.tile-metric__rank-hash {
  font-size: 48px;
  margin-right: 0.06em;
}

.tile-metric--rank .tile-metric__value {
  font-size: 48px;
  margin-left: 0.06em;
  vertical-align: baseline;
}

.how-intro {
  max-width: 500px;
}

.tile-client {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smart-blue);
  margin-bottom: 0.625rem;
  font-weight: 500;
}

.tile-context {
  font-size: 15px;
  line-height: 1.6;
  color: var(--smart-muted);
  margin-bottom: 1.25rem;
}

.case-tile .text-link-blue {
  margin-top: auto;
}

.proof-testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2.5rem;
}

.testimonial-quote {
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--smart-black);
  margin-bottom: 1.5rem;
}

.testimonial-attr {
  font-size: 14px;
  color: var(--smart-gray);
}

.testimonial-attr strong {
  color: var(--smart-black);
}

/* Testimonial fade carousel */
.testimonial-carousel {
  /* No controls or indicators — pure auto-advance fade */
}

.testimonial-carousel .carousel-inner {
  /* Keep the container tall enough during fade so layout doesn't jump.
     The active item is in normal flow; inactive items are position:absolute.
     Using a min-height prevents collapse on short quotes. */
  min-height: 140px;
}

.testimonial-carousel .carousel-item {
  transition: opacity 1.6s ease-in-out !important;
  /* Align absolutely-positioned inactive items to the same top edge */
  top: 0;
}

.testimonial-carousel .carousel-item .testimonial-quote {
  margin-bottom: 1.5rem;
}

@media (max-width: 575.98px) {
  .testimonial-carousel .carousel-inner {
    min-height: 180px;
  }
}

/* Case study single */
.case-study-single {
  min-height: 50vh;
}

.case-study-intro {
  max-width: 760px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.case-study-client-logo {
  max-height: 56px;
  width: auto;
}

.case-study-block {
  border: 1px solid var(--smart-border);
  border-radius: 6px;
  padding: 2rem;
}

.cs-section-title {
  font-family: 'NeueMontreal', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.cs-intro-list {
  margin: 0;
}

.cs-intro-row {
  display: grid;
  grid-template-columns: minmax(8rem, 11rem) 1fr;
  gap: 0.5rem 1.25rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--smart-border);
}

.cs-intro-row:last-child {
  border-bottom: 0;
}

.cs-intro-row dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--smart-muted);
  margin: 0;
}

.cs-intro-row dd {
  margin: 0;
  font-size: 1rem;
  color: var(--smart-black);
}

.cs-hero-image {
  border-radius: 6px;
}

.cs-line {
  width: 3px;
  min-height: 3rem;
  background: var(--smart-blue);
  border-radius: 2px;
}

.cs-narrative-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cs-narrative-body {
  font-size: 1.0625rem;
  line-height: 1.65;
}

.cs-stat-tiles .case-tile {
  padding: 2rem 1.5rem;
}

.cs-stat-label {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--smart-muted);
  line-height: 1.45;
}

.cs-strategy-body {
  font-size: 0.95rem;
  line-height: 1.55;
}

.cs-testimonial-photo {
  max-width: 72px;
  height: auto;
  border-radius: 50%;
  margin: 1rem auto;
  display: block;
}

.cs-tactics-list {
  margin: 0;
  padding-left: 1.25rem;
  max-width: 640px;
}

.cs-tactics-list li {
  margin-bottom: 0.5rem;
  color: var(--smart-muted);
}

.cs-brand-swatch {
  max-height: 120px;
  width: auto;
  margin: 0 auto;
}

.cs-typography-code {
  display: block;
  padding: 0.75rem 1rem;
  background: var(--smart-cream);
  border-radius: 4px;
  font-size: 0.9rem;
}

.cs-body-content {
  max-width: 800px;
  margin: 0 auto;
}

.cs-final-cta {
  margin-top: 0;
}

@media (max-width: 991.98px) {
  .cs-intro-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .cs-line {
    width: 100%;
    height: 3px;
    min-height: 0;
    margin-bottom: 0.5rem;
  }
}

/* Pricing section (mockup match) */
.pricing-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.pricing-header .eyebrow {
  color: var(--smart-blue);
}

.pricing-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--smart-border);
  margin-bottom: 3.5rem;
  justify-content: center;
}

.tab-btn {
  font-family: 'NeueMontreal', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 0.875rem 2rem 0.75rem;
  border: 0;
  background: none;
  color: var(--smart-faint);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  letter-spacing: -0.01em;
}

.tab-btn.active,
.tab-btn[aria-selected="true"] {
  color: var(--smart-black);
  border-bottom-color: var(--smart-black);
}

.tab-btn:hover {
  color: var(--smart-black);
}

.pricing-intro {
  font-size: 17px;
  color: var(--smart-muted);
  max-width: 620px;
  line-height: 1.6;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.pricing-billing-block {
  margin-bottom: 3rem;
  text-align: center;
}

.pricing-billing-toggle {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  padding: 0.25rem;
  margin-bottom: 2.5rem;
  background: var(--smart-white);
  border: 1px solid rgba(19, 19, 19, 0.1);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(19, 19, 19, 0.05);
}

.pricing-billing-toggle__btn {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.6rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--smart-gray);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-billing-toggle__btn.is-active,
.pricing-billing-toggle__btn[aria-pressed="true"] {
  background: var(--smart-black);
  color: var(--smart-white);
  box-shadow: 0 1px 2px rgba(109, 92, 230, 0.35);
}

.pricing-billing-toggle__btn:hover,
.pricing-billing-toggle__btn:focus-visible {
  color: var(--smart-black);
  outline: none;
}

.pricing-billing-toggle__btn.is-active:hover,
.pricing-billing-toggle__btn.is-active:focus-visible,
.pricing-billing-toggle__btn[aria-pressed="true"]:hover,
.pricing-billing-toggle__btn[aria-pressed="true"]:focus-visible {
  color: var(--smart-white);
  background: var(--smart-black);
}

.tier-price-billing-note {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--smart-gray);
  margin-top: 0.35rem;
}

.tier-price-billing-note[hidden] {
  display: none !important;
}

/* Full Pricing page — Websites / SEO / Bundles stacked (no tabs) */
.pricing-page-hero .section-title {
  margin-bottom: 0;
}

.pricing--stack .pricing-stack-title {
  font-family: 'NeueMontreal', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 auto 1.75rem;
  max-width: fit-content;
  padding: 0 0.35rem 0.65rem;
  border-bottom: 2px solid var(--smart-black);
}

.pricing--stack .pricing-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing--stack .pricing-billing-toggle {
  display: inline-flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--smart-black);
  text-align: left;
}

.tier {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--smart-black);
}

.tier:last-child {
  border-right: none;
}

.tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.badge-blue {
  background: var(--smart-blue);
  color: #fff;
}

.badge-pink {
  background: var(--smart-pink);
  color: var(--smart-white);
}

.badge-amber {
  background: #E8A53A;
  color: var(--smart-black);
}

.badge-purple {
  background: var(--smart-purple);
  color: #fff;
}

.tier-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}

.tier-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.tier-price-prefix {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--smart-gray);
}

.tier-price-main {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.1em;
}

.tier-price-amount {
  font-family: 'NeueMontreal', 'Inter', system-ui, sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--smart-black);
  line-height: 1;
}

.tier-price-suffix {
  font-size: 18px;
  color: var(--smart-gray);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
}

@media (max-width: 575.98px) {
  .tier-price-amount {
    font-size: 34px;
  }
}

.tier-badge-spacer {
  visibility: hidden;
}

.tier-for {
  font-size: 15px;
  color: var(--smart-gray);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.tier-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
}

.tier-items li {
  font-size: 15px;
  color: var(--smart-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.4;
}

.tier-items li::before {
  content: '—';
  color: var(--smart-blue);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-footer {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.pricing-footer:not(:has(.btn-cta)) {
  justify-content: center;
}

.pricing-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--smart-blue);
  border-bottom: 1px solid var(--smart-blue);
  padding-bottom: 1px;
  text-decoration: none;
}

.bundle-info {
  background: var(--smart-cream);
  border: 1px solid var(--smart-border);
  border-radius: 4px;
  padding: 3rem;
}

.bundle-info h3 {
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.bundle-info p {
  font-size: 17px;
  color: var(--smart-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  max-width: 580px;
}

.bundle-perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}

.bundle-perk {
  font-size: 15px;
  color: var(--smart-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.bundle-perk::before {
  content: '→';
  color: var(--smart-blue);
  font-weight: 700;
}

/* Dark modern-way section (mockup match) */
.dark-section {
  background: var(--smart-black);
  color: #fff;
  padding: 7.5rem 0;
}

.dark-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.dark-content .eyebrow {
  color: var(--smart-blue-soft);
  margin-bottom: 1.25rem;
}

.dark-content h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #fff;
}

.dark-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
}

.dark-pillars {
  display: flex;
  flex-direction: column;
}

.dark-pillar {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-pillar:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-pillar h4 {
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 0.375rem;
  color: #fff;
}

.dark-pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.dark-quote {
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  border-left: 3px solid var(--smart-purple-muted);
}

.dark-quote blockquote {
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.dashboard-mockup {
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.dash-titlebar {
  background: #111;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FFBD2E; }
.dash-dots span:nth-child(3) { background: #28C840; }
.dash-title { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; margin: 0 auto; }

.dash-body { display: flex; height: 420px; }
.dash-sidebar {
  width: 160px;
  background: #111;
  border-right: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  flex-shrink: 0;
}

.dash-sidebar-logo {
  padding: 0 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.75);
}

.dash-nav-item {
  padding: 9px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-nav-item.active { color: #fff; background: rgba(255,255,255,0.06); }
.dash-nav-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.5; }
.dash-nav-item.active .dash-nav-dot { background: var(--smart-blue); opacity: 1; }

.dash-main { flex: 1; padding: 20px; overflow: hidden; }
.dash-section-label { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.dash-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.dash-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 12px;
}

.dash-metric-val { font-size: 22px; font-weight: 700; color: #fff; line-height: 1; }
.dash-metric-val .up { color: #4ADE80; font-size: 11px; font-family: 'Inter', system-ui, sans-serif; margin-left: 4px; }
.dash-metric-lbl { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 4px; }

.dash-chart-area {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 14px;
  margin-bottom: 10px;
}

.dash-chart-title { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.dash-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.dash-bar { flex: 1; background: rgba(61, 139, 255, 0.32); border-radius: 2px 2px 0 0; }
.dash-bar.highlight { background: var(--smart-blue); }

.dash-tasks { display: flex; flex-direction: column; gap: 6px; }
.dash-task {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
}

.task-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.task-dot.done { background: #4ADE80; }
.task-dot.active { background: var(--smart-blue); }
.task-dot.pending { background: rgba(255,255,255,0.2); }
.task-text { font-size: 11px; color: rgba(255,255,255,0.55); flex: 1; }
.task-date { font-size: 10px; color: rgba(255,255,255,0.2); }

/* CTA buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 0.3125rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.8rem 1.3rem;
  /* padding: 0.5rem 1rem; */
  font-size: 15px;
  text-decoration: none;
  transition: all .5s ease;
}

.btn-cta:hover {
  transition: all .5s ease;
}

.btn-cta-equal {
  min-width: 168px;
}

.btn-cta-blue {
  background-color: var(--smart-cta-blue);
  border-color: var(--smart-cta-blue);
  color: var(--smart-white);
}

.btn-cta-blue:hover,
.btn-cta-blue:focus {
  background-color: var(--smart-cta-blue-hover);
  border-color: var(--smart-cta-blue-hover);
  color: var(--smart-white);
}

.btn-cta-coral {
  background-color: #ff6b5c;
  border-color: #ff6b5c;
  color: var(--smart-white);
}

.btn-cta-coral:hover,
.btn-cta-coral:focus {
  background-color: #e85a4c;
  border-color: #e85a4c;
  color: var(--smart-white);
}

.btn-cta-white {
  background-color: transparent;
  border-color: var(--smart-white);
  color: var(--smart-white);
}

.btn-cta-white:hover,
.btn-cta-white:focus {
  background-color: var(--smart-white);
  color: var(--smart-black);
}

.cta-max-width { max-width: 30rem; }

/* Header/footer */
.smart-announcement-bar {
  background-color: var(--smart-black);
  color: var(--smart-white);
  font-size: 0.8125rem;
  line-height: 1.35;
}

.smart-announcement-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 1.25rem;
  padding-block: 0.4rem;
}

.smart-announcement-text {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.smart-announcement-phone {
  color: var(--smart-white);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.smart-announcement-phone:hover,
.smart-announcement-phone:focus {
  color: var(--smart-blue-soft);
}

.btn-cta.nav-cta {
  padding: 0.5rem 1rem;
}

.btn-cta-blue.nav-cta {
  background-color: #1e54e8;
}

@media (max-width: 575.98px) {
  .smart-announcement-bar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  p.smart-announcement-text {
    display: none !important;
  }
}

.smart-logo {
  max-width: 180px;
  height: auto;
}

.site-header .nav-link {
  color: var(--smart-muted);
  font-weight: 500;
  font-size: 15px;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: var(--smart-black);
}

nav.overflow-x-auto.text-nowrap.mb-4.mt-2.py-2.px-3.bg-body-tertiary.rounded {
  display: none;
}

@media (min-width: 992px) {

  @media (min-width: 992px) {
      .smart-header-inner {
          position: relative;
      }
  }

  .smart-brand {
    position: relative;
    min-height: 36px;
    min-width: 180px;
  }

  .smart-logo-wide,
  .smart-logo-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .smart-logo-wide {
    opacity: 1;
    transform: translateY(-50%);
  }

  .smart-logo-icon {
    max-width: 36px;
    opacity: 0;
    transform: translateY(-40%);
  }

  body.smart-header-scrolled .smart-logo-wide {
    opacity: 0;
    transform: translateY(-60%);
  }

  body.smart-header-scrolled .smart-logo-icon {
    opacity: 1;
    transform: translateY(-50%);
  }

  .smart-header-inner {
    position: relative;
  }

  #smartboost-nav {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
  }

  .nav-center-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    margin: 0;
  }

  .nav-cta-wrap {
    margin-left: auto;
  }
}

@media (max-width: 991.98px) {
  .smart-logo-icon {
    display: none;
  }

  .nav-center-links {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    gap: 0;
  }

  .how .step,
  .proof .case-tile,
  .pricing .tier {
    padding-left: 0;
  }

}

.footer-link {
  color: var(--smart-muted);
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--smart-black);
  text-decoration: underline;
}

/* FAQ section (mockup match) */
.faq-header {
  margin-bottom: 3.5rem;
}

.faq-header .section-title {
  max-width: 560px;
}

.faq-items {
  max-width: 800px;
}

.faq-item {
  border-top: 1px solid var(--smart-black);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--smart-black);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.5rem 0;
  font-family: 'NeueMontreal', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--smart-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.3;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--smart-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  font-size: 14px;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  background: var(--smart-black);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a-inner {
  padding: 0 0 1.75rem;
  font-size: 16px;
  line-height: 1.7;
  color: var(--smart-muted);
  max-width: 680px;
}

/* Final CTA section (mockup match) */
.final-cta {
  background-image: url(https://new.smartboost.dev/wp-content/uploads/2026/05/smartboost-office-01.webp);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: #fff;
  padding: 10rem 0;
  text-align: center;
  border-top: 1px solid var(--smart-border);
  position: relative;
}

/* Fixed attachment is ignored on iOS — fall back to scroll */
@media (hover: none) {
  .final-cta {
    background-attachment: scroll;
  }
}

.final-cta .eyebrow {
  color: var(--smart-pink);
  margin-bottom: 1.75rem;
}

.final-cta h2 {
  font-size: clamp(2.625rem, 5vw, 4.75rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 760px;
  margin: 0 auto 1.5rem;
}

.final-cta p {
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin: 0 auto 2.75rem;
  line-height: 1.55;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Footer (mockup match) */
.site-footer {
  background: var(--smart-white);
  border-top: 1px solid var(--smart-border);
  padding: 4.5rem 0 2.5rem;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.site-footer-logo {
  height: 22px;
  width: auto;
  margin-bottom: 1rem;
}

.site-footer-brand p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--smart-gray);
  max-width: 220px;
  margin: 0;
}

.site-footer-address {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--smart-muted);
  max-width: 240px;
  margin: 0 0 0.75rem;
}

.site-footer-address .site-footer-address-line {
  display: block;
}

.site-footer-address .site-footer-address-line--brand {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--smart-black);
}

.site-footer-address .site-footer-address-line--subtitle {
  font-weight: 500;
  font-size: 13px;
  color: var(--smart-gray);
  margin-top: 0.2rem;
}

.site-footer-address .site-footer-address-line--muted {
  font-weight: 400;
  color: var(--smart-gray);
  font-size: 13px;
}

.site-footer-col h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smart-faint);
  margin-bottom: 1.25rem;
}

.site-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.site-footer-col a {
  font-size: 15px;
  color: var(--smart-muted);
  text-decoration: none;
}

.site-footer-col a:hover,
.site-footer-col a:focus {
  color: var(--smart-blue);
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--smart-border);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-footer-legal a {
  font-size: 13px;
  color: var(--smart-faint);
  text-decoration: none;
}

.site-footer-legal a:hover,
.site-footer-legal a:focus {
  color: var(--smart-muted);
}

.site-footer-copy {
  font-size: 13px;
  color: var(--smart-faint);
}

@media (max-width: 767.98px) {
  .section-space,
  .section-space-lg {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 991.98px) {
  .hero-graphic {
    display: none;
  }

  .doors-grid {
    grid-template-columns: 1fr;
  }

  .door {
    border-right: none;
    border-bottom: 1px solid var(--smart-black);
  }

  .door:last-child {
    border-bottom: none;
  }

  .door-num {
    font-size: 5rem;
    margin-bottom: 1.25rem;
  }

  .portfolio-marquee-section {
    padding: 1.5rem 0 2.25rem;
  }

  .portfolio-marquee-wrap {
    gap: 1rem;
  }

  .portfolio-marquee-item {
    width: clamp(220px, 64vw, 300px);
  }

  .dark-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .dashboard-mockup {
    display: none;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar {
    padding: 2.25rem 1.5rem;
  }

  .why-header {
    margin-bottom: 3rem;
  }

  .why-header .text-muted-custom {
    font-size: 1.15rem;
  }

  .pillar h3 {
    font-size: 1.6rem;
  }

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

  .step {
    border-right: none;
    border-bottom: 1px solid var(--smart-border);
  }

  .step:last-child {
    border-bottom: none;
  }

  .case-tiles {
    grid-template-columns: 1fr;
  }

  .case-tile {
    border-right: none;
    border-bottom: 1px solid var(--smart-black);
  }

  .case-tile:last-child {
    border-bottom: none;
  }

  .tile-metric {
    font-size: 64px;
  }

  .tiers {
    grid-template-columns: 1fr;
  }

  .tier {
    border-right: none;
    border-bottom: 1px solid var(--smart-black);
  }

  .tier:last-child {
    border-bottom: none;
  }

  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 15px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-marquee-top,
  .portfolio-marquee-bottom {
    animation: none;
  }
}

/* ============================================================
   About page
   ============================================================ */

/* Hero */
/* ── Light Page Hero (informational pages: About, Contact, Thank You) ── */
.page-hero .display-title {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .lead {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Tool logos — single block: label above row, centered, one divider above */
.about-tool-stack {
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--smart-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.about-tool-logo-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--smart-faint);
  font-weight: 500;
  white-space: nowrap;
  margin: 0;
}

.about-tool-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 2.25rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}

.about-tool-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 42px;
  min-width: 0;
  line-height: 0;
}

/* Fixed height = consistent cap like a single baseline row (wordmarks + app icons) */
.about-tool-logo-item img {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  object-position: center;
}

/* Who We Are */
.about-origin-text {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--smart-black);
  font-weight: 300;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
  margin-top: 3.5rem;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--smart-cream);
  margin-bottom: 1rem;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  background: #eeece6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--smart-blue);
  letter-spacing: -0.02em;
  user-select: none;
}

.team-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--smart-black);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 13px;
  color: var(--smart-blue);
  margin-bottom: 0;
  line-height: 1.4;
}

/* Why Work With Us — full-width dark content */
.dark-content--full {
  max-width: 100%;
}

.about-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5rem;
  margin-top: 2.5rem;
}

.about-why-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.about-why-cta {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 1199.98px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-tool-stack {
    margin-top: 3.25rem;
    padding-top: 2rem;
    gap: 1.25rem;
  }

  .about-tool-logo-item {
    height: 34px;
  }

  .about-tool-logo-item img {
    height: 34px;
    max-width: min(170px, 46vw);
  }
}

@media (max-width: 575.98px) {
  .team-grid {
    gap: 2rem 1rem;
  }
}

/* ============================================================
   Growth Driven Design page
   ============================================================ */

/* GDD vs Traditional comparison — lives inside dark-section */
.gdd-comparison {
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.gdd-comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.06);
  margin-left: calc(140px + 2rem); /* offset to align with data columns */
}

.gdd-comparison-col-label {
  padding: 1rem 1.5rem;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gdd-col-traditional {
  color: rgba(255, 255, 255, 0.4);
}

.gdd-col-gdd {
  color: var(--smart-blue-soft);
}

.gdd-comparison-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}

.gdd-comparison-row:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.gdd-comparison-aspect {
  padding: 1.25rem 1.5rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.35);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.gdd-comparison-row .gdd-col-traditional,
.gdd-comparison-row .gdd-col-gdd {
  padding: 1.25rem 1.5rem;
  font-size: 15px;
  line-height: 1.5;
}

.gdd-comparison-row .gdd-col-traditional {
  color: rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.gdd-comparison-row .gdd-col-gdd {
  color: rgba(255, 255, 255, 0.9);
}

/* Phases */
.gdd-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--smart-border);
}

.gdd-phase {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid var(--smart-border);
}

.gdd-phase:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 2rem;
}

.gdd-phase:not(:first-child):not(:last-child) {
  padding-left: 2rem;
}

.gdd-phase-time {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--smart-blue);
  background: rgba(61, 139, 255, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.gdd-phase .step-num {
  /* reuse step-num styling */
  margin-bottom: 1rem;
}

.gdd-phase h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--smart-black);
}

.gdd-phase p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--smart-body);
  margin-bottom: 0.5rem;
}

.gdd-phase-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.gdd-phase-list li {
  font-size: 14px;
  color: var(--smart-body);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-top: 1px solid var(--smart-border);
}

.gdd-phase-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--smart-blue);
  font-size: 12px;
}

/* Benefits grid */
.gdd-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--smart-border);
  border-left: 1px solid var(--smart-border);
}

.gdd-benefit {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--smart-border);
  border-bottom: 1px solid var(--smart-border);
}

.gdd-benefit-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--smart-blue);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gdd-benefit h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--smart-black);
}

.gdd-benefit p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--smart-body);
  margin: 0;
}

/* Responsive — GDD */
@media (max-width: 991.98px) {
  .gdd-comparison-header {
    display: none; /* collapsed on mobile — labels move into rows */
  }

  .gdd-comparison-row {
    grid-template-columns: 1fr;
    padding: 1rem 1.25rem;
    gap: 0.5rem;
  }

  .gdd-comparison-aspect {
    padding: 0;
    border-right: none;
  }

  .gdd-comparison-row .gdd-col-traditional,
  .gdd-comparison-row .gdd-col-gdd {
    padding: 0.35rem 0;
    font-size: 14px;
  }

  .gdd-comparison-row .gdd-col-traditional::before {
    content: 'Traditional: ';
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.3);
    display: block;
  }

  .gdd-comparison-row .gdd-col-gdd::before {
    content: 'GDD: ';
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--smart-blue-soft);
    display: block;
  }

  .gdd-comparison-row .gdd-col-traditional {
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
  }

  .gdd-phases {
    grid-template-columns: 1fr;
  }

  .gdd-phase,
  .gdd-phase:last-child,
  .gdd-phase:not(:first-child):not(:last-child) {
    padding: 2rem 0;
    border-right: none;
    border-bottom: 1px solid var(--smart-border);
  }

  .gdd-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .gdd-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Website Design page
   ============================================================ */

/* Services grid — 3 × 2 */
.wd-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--smart-border);
  border-left: 1px solid var(--smart-border);
}

.wd-service-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--smart-border);
  border-bottom: 1px solid var(--smart-border);
}

.wd-service-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--smart-blue);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.wd-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--smart-black);
}

.wd-service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--smart-body);
  margin-bottom: 1.25rem;
}

.wd-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wd-service-list li {
  font-size: 14px;
  color: #555;
  padding: 0.4rem 0 0.4rem 1.25rem;
  border-top: 1px solid var(--smart-border);
  position: relative;
  line-height: 1.5;
}

.wd-service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--smart-blue);
  font-size: 12px;
}

/* Process track — 5-step horizontal */
.wd-process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 3px solid var(--smart-border);
  position: relative;
}

.wd-process-track::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--smart-blue) 0%, var(--smart-blue-soft) 100%);
}

.wd-process-step {
  padding: 2rem 1.5rem 2rem 0;
  border-right: 1px solid var(--smart-border);
  position: relative;
}

.wd-process-step:last-child {
  border-right: none;
  padding-right: 0;
}

.wd-process-step:not(:first-child) {
  padding-left: 1.5rem;
}

.wd-process-step::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--smart-blue);
  border: 3px solid var(--smart-cream);
}

.wd-process-week {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--smart-blue);
  background: rgba(61, 139, 255, 0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.wd-process-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #bbb;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.wd-process-step h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--smart-black);
}

.wd-process-step p {
  font-size: 14px;
  line-height: 1.6;
  color: #777;
  margin-bottom: 1rem;
}

.wd-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wd-process-list li {
  font-size: 13px;
  color: var(--smart-gray);
  padding: 0.3rem 0 0.3rem 1rem;
  border-top: 1px solid var(--smart-border);
  position: relative;
}

.wd-process-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--smart-blue);
  font-weight: 900;
}

/* Case studies */
.wd-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.wd-case-card {
  border: 1px solid var(--smart-border);
  border-radius: 4px;
  padding: 2.5rem;
  background: var(--smart-cream);
}

.wd-case-metric {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--smart-black);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wd-case-metric .unit {
  font-size: 0.45em;
  font-weight: 700;
  vertical-align: super;
  color: var(--smart-blue);
}

.wd-case-industry {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--smart-blue);
  margin-bottom: 1.5rem;
}

.wd-case-block {
  padding: 1rem 0;
  border-top: 1px solid var(--smart-border);
}

.wd-case-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--smart-faint);
  margin-bottom: 0.35rem;
}

.wd-case-block p {
  font-size: 15px;
  line-height: 1.55;
  color: #444;
  margin: 0;
}

.wd-case-result {
  font-size: 15px;
  font-weight: 600;
  color: var(--smart-black);
  padding-top: 1rem;
  border-top: 1px solid var(--smart-border);
  margin: 0;
}

/* What makes us different — inside dark-section */
.wd-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.wd-diff-item {
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wd-diff-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--smart-blue-soft);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.wd-diff-item h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.wd-diff-item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Responsive — Website Design */
@media (max-width: 1199.98px) {
  .wd-process-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .wd-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wd-process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .wd-process-track::before,
  .wd-process-step::before {
    display: none;
  }

  .wd-process-step,
  .wd-process-step:not(:first-child) {
    padding: 2rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--smart-border);
  }

  .wd-diff-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .wd-services-grid {
    grid-template-columns: 1fr;
  }

  .wd-process-track {
    grid-template-columns: 1fr;
  }

  .wd-case-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Contact page
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Copy column */
.contact-copy .display-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

/* Trust line — same dash bullets as pricing `.tier-items` (Launch card, etc.) */
.contact-copy-trust.tier-items {
  max-width: 28rem;
}

/* Form box */
.contact-form-box {
  background: var(--smart-cream);
  border: 1px solid var(--smart-border);
  border-radius: 6px;
  padding: 10px;
  background-color: var(--smart-white);
}

.contact-form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--smart-black);
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}

.contact-form-embed-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.contact-form-embed-iframe {
  display: block;
  width: 100% !important;
  height: min(729px, calc(100vh - 12rem));
  min-height: 380px;
  border: none;
  border-radius: 8px;
}

/* Form placeholder fields */
.contact-form-placeholder {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.contact-form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.contact-label {
  font-size: 13px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}

.contact-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 13px;
  font-family: inherit;
  color: var(--smart-black);
  background: var(--smart-white);
  border: 1px solid var(--smart-border);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
}

.contact-input:focus {
  border-color: var(--smart-blue);
}

.contact-input:disabled {
  opacity: 0.6;
  cursor: default;
}

.contact-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-textarea {
  resize: vertical;
  min-height: 130px;
  font-size: 13px;
  padding: 0.75rem 1rem;
}

.contact-form-placeholder .btn-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.contact-form-note {
  font-size: 12px;
  color: var(--smart-faint);
  text-align: center;
  margin: 0;
  padding-top: 0.5rem;
  font-style: italic;
}

/* Client logos */
.client-logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 3rem;
}

.client-logo-item {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ccc;
  text-transform: uppercase;
  transition: color 0.2s;
  line-height: 1;
}

.client-logo-item:hover {
  color: #999;
}

.client-logo-tld {
  font-weight: 400;
  text-transform: lowercase;
}

/* Responsive — Contact */
@media (max-width: 991.98px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 575.98px) {
  .contact-form-box {
    padding: 1.75rem 1.25rem;
  }

  .contact-form-row--2col {
    grid-template-columns: 1fr;
  }

  .client-logo-grid {
    gap: 1rem 2rem;
  }

  .client-logo-item {
    font-size: 16px;
  }
}


/* ==========================================================
   AUDIT MODAL
   ========================================================== */

.audit-modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  max-height: min(90dvh, calc(100dvh - 1.5rem));
  min-height: 0;
}

/* Let the form area scroll on short viewports (iOS); flex child needs min-height: 0 */
#auditModal.modal .modal-dialog-scrollable .audit-modal-content {
  max-height: min(92dvh, calc(100dvh - 1.25rem));
}

#auditModal .modal-body.audit-modal-body--embed {
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

#auditModal .audit-modal-dialog.modal-dialog-scrollable {
  max-height: calc(100dvh - 1rem);
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.audit-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
  background: var(--smart-black);
  padding: 2rem 2rem 1.75rem;
}

.audit-modal-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0.25rem 0 0;
  line-height: 1.3;
}

.audit-modal-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0.75rem 0 0;
  line-height: 1.6;
}

.audit-modal-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin-top: -0.25rem;
  transition: color 0.2s;
}

.audit-modal-close:hover,
.audit-modal-close:focus {
  color: #fff;
  outline: none;
}

.audit-modal-body {
  padding: 2rem;
  background: var(--smart-white);
}

.audit-modal-dialog {
  /* max-width: min(1140px, calc(100vw - 1.5rem)); */
  max-width: 750px;
}

.audit-modal-body--embed {
  padding: 1rem 1.25rem 1.5rem;
}

.audit-form-embed-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: visible;
}

/* Match data-height on iframe; LeadConnector reads data-height — 1120 was forcing a tall empty band */
.audit-form-embed-iframe {
  display: block;
  width: 100%;
  height: min(760px, calc(100vh - 10rem));
  min-height: 360px;
  border: none;
  border-radius: 8px;
}

.audit-form-footer {
  margin-top: 1.5rem;
}

/* Responsive — Audit Modal */
@media (max-width: 575.98px) {
  .audit-modal-header {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .audit-modal-body {
    padding: 1.5rem 1.25rem;
  }

  .audit-modal-body--embed {
    padding: 0.75rem 0.75rem 1rem;
  }
}


/* ==========================================================
   LEGAL / POLICY PROSE
   ========================================================== */

.legal-prose h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--smart-black);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--smart-muted);
  margin-bottom: 1.1rem;
}

.legal-prose a {
  color: var(--smart-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-prose a:hover,
.legal-prose a:focus {
  color: var(--smart-blue-hover);
}

.legal-prose ul {
  padding-left: 1.25rem;
  margin-bottom: 1.1rem;
}

.legal-prose ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--smart-muted);
  margin-bottom: 0.35rem;
}

.legal-address {
  font-style: normal;
  font-size: 1rem;
  line-height: 2;
  color: var(--smart-muted);
}


/* ==========================================================
   THANK YOU PAGE
   ========================================================== */

/* Check mark */
.ty-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--smart-blue);
  color: var(--smart-white);
  font-size: 2rem;
  margin-bottom: 1.75rem;
}

/* Stats grid */
.ty-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.ty-stat {
  background: var(--smart-white);
  border: 1px solid var(--smart-border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.ty-stat-num {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--smart-black);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.ty-stat-num .unit {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--smart-blue);
}

.ty-stat-num .ty-stat-hash {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--smart-blue);
  margin-left: 0.15rem;
}

.ty-stat-label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--smart-muted);
}

/* Header blocks reused from homepage pattern */
.proof-header {
  text-align: center;
  margin-bottom: 0;
}

/* Responsive — Thank You */
@media (max-width: 991.98px) {
  .ty-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .ty-check {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .ty-stats-grid {
    grid-template-columns: 1fr;
  }

  .ty-stat {
    padding: 1.5rem 1.25rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   DATA-DRIVEN MARKETING PAGE
   ───────────────────────────────────────────────────────────────────────────── */

/* Hero — dark full-bleed */
.ddm-hero {
  background-color: var(--smart-black);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.ddm-hero h1 {
  margin-left: auto;
  margin-right: auto;
}

/* Awards grid — 5 columns, wraps on small screens */
.ddm-awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.ddm-award-placeholder {
  width: 110px;
  height: 90px;
  background: var(--smart-cream);
  border: 1px dashed var(--smart-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--smart-faint);
  text-align: center;
}

/* Why Smartboost — 3-column grid using .pillar elements */
.ddm-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--smart-border);
}

.ddm-why-grid .pillar {
  border: none;
  border-right: 1px solid var(--smart-border);
  border-bottom: 1px solid var(--smart-border);
}

.ddm-why-grid .pillar:nth-child(3),
.ddm-why-grid .pillar:nth-child(6) {
  border-right: none;
}

.ddm-why-grid .pillar:nth-child(4),
.ddm-why-grid .pillar:nth-child(5),
.ddm-why-grid .pillar:nth-child(6) {
  border-bottom: none;
}

/* Dark results section — 3-column cards */
.ddm-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ddm-result-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ddm-result-card:last-child {
  border-right: none;
}

/* Large metric number inside dark result cards */
.dma-result-metric {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--smart-blue-soft);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

/* Image placeholder inside dark result cards */
.ddm-result-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Small eyebrow inside dark result cards */
.ddm-result-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smart-blue-soft);
  margin-bottom: 0.5rem;
}

/* 2-column variant (for pages with only 2 case study cards) */
.ddm-results-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 767.98px) {
  .ddm-results-grid--2 {
    grid-template-columns: 1fr;
  }

  .ddm-results-grid--2 .ddm-result-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ddm-results-grid--2 .ddm-result-card:last-child {
    border-bottom: none;
  }
}

.ddm-result-num {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--smart-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.ddm-result-unit {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--smart-blue);
  vertical-align: super;
}

.ddm-result-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--smart-blue-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.ddm-result-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ddm-result-list li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-left: 1.1em;
  position: relative;
  margin-bottom: 0.35rem;
}

.ddm-result-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--smart-blue);
}

/* Technologies grid — text-based tool wordmarks */
.ddm-tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.ddm-tools-grid span {
  background: var(--smart-cream);
  border: 1px solid var(--smart-border);
  border-radius: 40px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--smart-muted);
  white-space: nowrap;
}

/* Responsive — DDM */
@media (max-width: 991.98px) {
  .ddm-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ddm-why-grid .pillar:nth-child(3) {
    border-right: 1px solid var(--smart-border);
  }

  .ddm-why-grid .pillar:nth-child(4),
  .ddm-why-grid .pillar:nth-child(5) {
    border-bottom: 1px solid var(--smart-border);
  }

  .ddm-why-grid .pillar:nth-child(2),
  .ddm-why-grid .pillar:nth-child(4),
  .ddm-why-grid .pillar:nth-child(6) {
    border-right: none;
  }

  .ddm-why-grid .pillar:nth-child(5),
  .ddm-why-grid .pillar:nth-child(6) {
    border-bottom: none;
  }

  .ddm-results-grid {
    grid-template-columns: 1fr;
  }

  .ddm-result-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ddm-result-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767.98px) {
  .ddm-why-grid {
    grid-template-columns: 1fr;
  }

  .ddm-why-grid .pillar {
    border-right: none !important;
    border-bottom: 1px solid var(--smart-border) !important;
  }

  .ddm-why-grid .pillar:last-child {
    border-bottom: none !important;
  }

  .ddm-award-placeholder {
    width: 90px;
    height: 74px;
  }
}

/* ============================================================
   Custom Website LV page
   ============================================================ */

/* 2-column result grid (reuses ddm-result-card) */
.cwlv-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--smart-radius);
  overflow: hidden;
}

.cwlv-results-grid .ddm-result-card {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
}

.cwlv-results-grid .ddm-result-card:last-child {
  border-right: none;
}

/* Tech stack — grouped categories */
.cwlv-stack-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cwlv-stack-group {
  border-top: 1px solid var(--smart-border);
  padding-top: 1.5rem;
}

.cwlv-stack-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smart-blue);
  margin-bottom: 1rem;
  text-align: center;
}

/* Portfolio marquee spacing inside container-less section */
.portfolio-marquee-section .portfolio-marquee-wrap,
.section-space .portfolio-marquee-wrap {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

@media (max-width: 767.98px) {
  .cwlv-results-grid {
    grid-template-columns: 1fr;
  }

  .cwlv-results-grid .ddm-result-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .cwlv-results-grid .ddm-result-card:last-child {
    border-bottom: none;
  }
}

/* ── Branding Page ───────────────────────────────────────────────────────── */

/* 4-step process grid */
.branding-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.branding-step {
  border-left: 3px solid var(--smart-blue);
  padding-left: 1.25rem;
}

.branding-step-num {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--smart-blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.branding-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--smart-black);
}

.branding-step p {
  font-size: 0.95rem;
  color: var(--smart-gray);
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

/* Process tags */
.branding-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.branding-step-tags span {
  font-size: 0.75rem;
  background: var(--smart-faint);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  color: var(--smart-body);
}

/* Services accordion/list */
.branding-services-list {
  margin-top: 1.5rem;
}

.branding-service-row {
  border-top: 1px solid var(--smart-faint);
  padding: 1.75rem 0;
}

.branding-service-row:last-child {
  border-bottom: 1px solid var(--smart-faint);
}

.branding-service-row h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--smart-black);
}

.branding-service-row p {
  font-size: 1rem;
  color: var(--smart-gray);
  margin: 0;
}

.branding-service-detail {
  font-size: 0.9rem;
  color: var(--smart-gray);
  margin-top: 0.5rem !important;
}

/* Why trust grid */
.branding-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  margin-top: 2.5rem;
}

.branding-trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.branding-trust-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--smart-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.branding-trust-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.branding-trust-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

@media (max-width: 991.98px) {
  .branding-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .branding-steps-grid {
    grid-template-columns: 1fr;
  }

  .branding-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Awards strip */
.awards-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.award-badge-placeholder {
  width: 120px;
  height: 80px;
  background: var(--smart-faint);
  border: 1px solid var(--smart-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--smart-gray);
  text-align: center;
  line-height: 1.3;
}

.award-badge-placeholder small {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--smart-muted);
}

/* Branding overview – video/image placeholder */
.branding-video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--smart-faint);
  border: 1px solid var(--smart-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smart-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Branding portfolio grid */
.branding-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.branding-portfolio-item {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--smart-border);
  background: var(--smart-white);
}

.branding-portfolio-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--smart-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smart-muted);
  font-size: 0.85rem;
}

.branding-portfolio-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--smart-border);
}

.branding-portfolio-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--smart-black);
}

.branding-portfolio-tag {
  font-size: 0.78rem;
  color: var(--smart-blue);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 575.98px) {
  .branding-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .awards-strip {
    gap: 1rem 1.5rem;
  }

  .award-badge-placeholder {
    width: 90px;
    height: 68px;
  }
}

/* Creative Eco-System */
.ces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.ces-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ces-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--smart-faint);
  border: 2px solid var(--smart-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin: 0 auto;
}

.ces-circle span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--smart-blue);
}

.ces-label {
  font-size: 1rem;
  margin-top: 1.25rem;
  color: var(--smart-black);
}

/* Branding process image placeholder */
.branding-process-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 5;
  background: var(--smart-faint);
  border: 1px solid var(--smart-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smart-muted);
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .ces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .ces-circle {
    width: 170px;
    height: 170px;
  }
}

/* AI steps – 3-column variant */
.ai-steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991.98px) {
  .ai-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* AI comparison grid (With vs Without) */
.ai-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.ai-comparison-card {
  border-radius: 12px;
  padding: 2.5rem;
}

.ai-comparison-card--with {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(100, 149, 237, 0.35);
}

.ai-comparison-card--without {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-comparison-card-header {
  margin-bottom: 2rem;
}

.ai-comparison-badge {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.4rem 1rem;
  border-radius: 6px;
}

.ai-comparison-badge--with {
  background: var(--smart-blue);
  color: #fff;
}

.ai-comparison-badge--without {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.ai-comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ai-comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.ai-comparison-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

.ai-comparison-icon--check {
  background: var(--smart-blue);
  color: #fff;
}

.ai-comparison-icon--cross {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 767.98px) {
  .ai-comparison-grid {
    grid-template-columns: 1fr;
  }

  .ai-comparison-card {
    padding: 1.75rem 1.25rem;
  }
}

/* ── eCommerce Websites ────────────────────────────────────────────────────── */

.ec-expect-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ec-expect-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--smart-border);
}

.ec-expect-item:first-child {
  border-top: 1px solid var(--smart-border);
}

.ec-expect-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--smart-blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ec-expect-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--smart-black);
  margin: 0;
}

/* ── Custom Website Design Company ────────────────────────────────────────── */

.cwlv-quote {
  border: none;
  padding: 2.5rem 2rem;
  background: var(--smart-faint);
  border-radius: 12px;
  font-style: italic;
}

.cwlv-quote p {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--smart-black);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.cwlv-quote p:last-child {
  margin-bottom: 0;
}

.cwdc-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  max-width: 680px;
  margin: 0 auto;
}

.cwdc-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cwdc-features-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--smart-border);
  font-size: 1rem;
  color: var(--smart-body);
  font-weight: 500;
}

.cwdc-features-list li::before {
  content: "→ ";
  color: var(--smart-blue);
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .cwdc-features-grid {
    grid-template-columns: 1fr;
  }

  .cwlv-quote {
    padding: 1.75rem 1.25rem;
  }
}

/* ── Growth Marketing Stats Card ─────────────────────────────────── */
.gm-stats-card {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 1.5rem;
}

.gm-stat {
  text-align: center;
}

.gm-stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--smart-white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.gm-stat-sup {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--smart-blue);
}

.gm-stat-icon {
  font-size: 2.5rem;
  color: var(--smart-blue);
  margin-bottom: 0.4rem;
}

.gm-stat-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 60%;
  margin: 0 auto;
}

/* ── Local SEO ────────────────────────────────────────────────────── */
.lseo-before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.lseo-ba-item {
  text-align: center;
}

.lseo-ba-label {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--smart-body);
}

.lseo-ba-arrow {
  font-size: 2rem;
  color: var(--smart-blue);
  font-weight: 700;
  text-align: center;
}

/* Pricing */
.lseo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.lseo-pricing-card {
  background: var(--smart-white);
  border: 1px solid var(--smart-faint);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.lseo-pricing-card--featured {
  border-color: var(--smart-blue);
  box-shadow: 0 4px 24px rgba(0, 102, 255, 0.12);
}

.lseo-pricing-badge {
  background: var(--smart-blue);
  color: var(--smart-white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  text-align: center;
}

.lseo-pricing-header {
  padding: 1.5rem 1.5rem 0;
}

.lseo-pricing-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--smart-black);
}

.lseo-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--smart-black);
  line-height: 1;
  margin-bottom: 1rem;
}

.lseo-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--smart-gray);
}

.lseo-pricing-body {
  padding: 1rem 1.5rem 1.5rem;
}

.lseo-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.lseo-feature-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--smart-faint);
  font-size: 0.875rem;
  color: var(--smart-body);
  padding-left: 1.4rem;
  position: relative;
}

.lseo-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--smart-blue);
  font-weight: 700;
}

.lseo-feature-list li:last-child {
  border-bottom: none;
}

.lseo-guarantee {
  font-size: 0.82rem;
  color: var(--smart-blue);
  font-weight: 600;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.lseo-note {
  font-size: 0.78rem;
  color: var(--smart-gray);
  margin-bottom: 0;
}

/* Perfect Fit */
.lseo-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lseo-fit-list li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--smart-body);
  border-bottom: 1px solid var(--smart-faint);
}

.lseo-fit-list li:last-child {
  border-bottom: none;
}

.lseo-fit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--smart-blue);
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .lseo-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .lseo-before-after {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .lseo-ba-arrow {
    transform: rotate(90deg);
  }
}

/* ── Growth Hacking Comparison ────────────────────────────────────── */
.gh-comparison {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-comparison-header,
.gh-comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 2fr;
  gap: 0;
}

.gh-comparison-header {
  background: rgba(255, 255, 255, 0.06);
}

.gh-comparison-col,
.gh-comparison-aspect {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

.gh-comparison-col {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.gh-col-smart {
  color: var(--smart-blue);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.gh-col-traditional {
  color: rgba(255, 255, 255, 0.5);
}

.gh-comparison-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gh-comparison-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.gh-comparison-aspect {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
}

.gh-comparison-row .gh-col-smart {
  color: var(--smart-white);
  font-weight: 500;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 1.25rem;
  font-size: 0.9rem;
}

.gh-comparison-row .gh-col-traditional {
  color: rgba(255, 255, 255, 0.45);
  padding: 1.1rem 1.25rem;
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .gh-comparison-header {
    display: none;
  }

  .gh-comparison-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .gh-comparison-aspect {
    font-weight: 700;
    color: var(--smart-white);
    font-size: 0.85rem;
    padding: 0 0 0.4rem;
    border: none;
  }

  .gh-comparison-row .gh-col-smart,
  .gh-comparison-row .gh-col-traditional {
    border: none;
    padding: 0.25rem 0;
  }

  .gh-comparison-row .gh-col-smart::before {
    content: "Smartboost: ";
    color: var(--smart-blue);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: block;
  }

  .gh-comparison-row .gh-col-traditional::before {
    content: "Traditional: ";
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: block;
  }
}

/* ── Inbound Marketing ────────────────────────────────────────────── */
.ib-step-quote {
  font-style: italic;
  color: var(--smart-blue);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.wd-service-card--dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.wd-service-card--dark h3 {
  color: var(--smart-white);
}

.wd-service-card--dark .wd-service-num {
  color: var(--smart-blue);
}

.gc-tactic-list--dark li {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
}

/* ── Growth Consulting ────────────────────────────────────────────── */
.gc-tactic-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.gc-tactic-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--smart-faint);
  color: var(--smart-body);
  font-size: 0.95rem;
}

.gc-tactic-list li:last-child {
  border-bottom: none;
}

/* ── Digital Agency Las Vegas — Process ──────────────────────────────────── */
.dm-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (max-wedth: 767px) {

  .container {
    max-width: 97.5% !important;
  }

}

@media (min-width: 768px) {

  .dm-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dm-process-grid .dm-process-step:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 600px;
    justify-self: center;
  }
}

@media (min-width: 1200px) {
  .dm-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dm-process-grid .dm-process-step:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }
}

.dm-process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.75rem;
}

.dm-process-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dm-process-num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--smart-blue);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dm-process-week {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--smart-blue);
  margin: 0 0 0.25rem;
}

.dm-process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.dm-process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.dm-process-tags span {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

/* ── Marketing – eCommerce ───────────────────────────────────────────────── */
.ec-platform-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.ec-platform-logo-placeholder {
  height: 56px;
  min-width: 140px;
  padding: 0 1.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ec-cert-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ec-cert-placeholder {
  height: 80px;
  min-width: 160px;
  padding: 0 1.5rem;
  border-radius: 8px;
  background: var(--smart-white);
  border: 1px solid var(--smart-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smart-gray);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ec-agency-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: var(--smart-faint);
  border: 2px dashed var(--smart-gray);
}

/* ── Marketing – SEO Las Vegas ───────────────────────────────────────────── */
.seo-big-stat {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  color: var(--smart-blue);
  line-height: 1;
  margin: 0 0 0.5rem;
}

.seo-big-stat span {
  font-size: 0.5em;
  color: rgba(255, 255, 255, 0.6);
}

.seo-testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

.seo-stars {
  color: #f5c518;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.seo-testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 1rem;
}

.seo-testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.seo-performance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.seo-perf-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

.seo-perf-card--light {
  background: var(--smart-white);
  border-color: var(--smart-faint);
}

.seo-perf-metric {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.seo-perf-metric--dark {
  color: var(--smart-black);
}

.seo-perf-badge {
  display: inline-block;
  background: var(--smart-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.seo-perf-chart-placeholder {
  height: 80px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.seo-perf-chart-placeholder--light {
  background: var(--smart-faint);
}

.seo-perf-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-align: center;
}

.seo-perf-label--dark {
  color: var(--smart-body);
}

.seo-insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.seo-insight-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--smart-faint);
  background: var(--smart-white);
}

.seo-insight-img-placeholder {
  width: 100%;
  height: 220px;
  background: var(--smart-faint);
  border-bottom: 1px solid var(--smart-faint);
}

.seo-insight-content {
  padding: 1.5rem;
}

.seo-insight-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--smart-black);
  margin: 0;
  line-height: 1.4;
}

/* ── Social Media Agency LV ────────────────────────────────── */
.sm-agency-statement {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--smart-black);
}

/* ── Performance Marketing ───────────────────────────────── */
.pm-funnel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pm-funnel-stage {
  border-radius: 12px;
  border: 1px solid var(--smart-faint);
  background: var(--smart-white);
  overflow: hidden;
}

.pm-funnel-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--smart-faint);
}

.pm-funnel-num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--smart-blue);
  background: rgba(0, 112, 243, 0.08);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.5rem;
}

.pm-funnel-stage--mid .pm-funnel-header {
  background: var(--smart-black);
}

.pm-funnel-stage--mid .pm-funnel-num {
  background: rgba(255, 255, 255, 0.12);
  color: var(--smart-white);
}

.pm-funnel-stage--mid .pm-funnel-header h3,
.pm-funnel-stage--mid .pm-funnel-header .pm-funnel-sub {
  color: var(--smart-white);
}

.pm-funnel-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--smart-black);
  margin: 0 0 0.25rem;
}

.pm-funnel-sub {
  font-size: 0.82rem;
  color: var(--smart-gray);
  margin: 0;
}

.pm-funnel-list {
  list-style: none;
  margin: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pm-funnel-list li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--smart-black);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--smart-faint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pm-funnel-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--smart-blue);
  flex-shrink: 0;
}

.pm-funnel-list li:last-child {
  border-bottom: none;
}

.pm-client-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.client-logo-placeholder {
  height: 60px;
  background: var(--smart-faint);
  border-radius: 8px;
}

@media (max-width: 991px) {
  .pm-funnel-grid {
    grid-template-columns: 1fr;
  }
  .pm-client-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .pm-client-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Portfolio Page ──────────────────────────────────────────── */
.portfolio-page-header {
  padding: 4rem 0 2.5rem;
  background: var(--smart-white);
  border-bottom: 1px solid var(--smart-faint);
}

.portfolio-page-header .display-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
}

/* Filter bar */
.portfolio-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.portfolio-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.25rem;
  border-radius: 0;
  border: none;
  border-bottom: 1.75px solid #c2c2c2;
  background-color: #f2f2f2;
  color: var(--smart-black);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.portfolio-filter-btn:hover {
  background: var(--smart-black);
  color: var(--smart-white);
}

.portfolio-filter-btn.active {
  background: var(--smart-black);
  color: var(--smart-white);
}

/* Grid */
.portfolio-grid-section {
  padding: 3rem 0 4rem;
  background: var(--smart-white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
}

/* Card */
.portfolio-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--smart-faint);
  background: var(--smart-white);
  transition: box-shadow 0.25s, transform 0.25s;
}

.portfolio-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* Screenshot */
.portfolio-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--smart-faint);
}

.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-bottom: 1px solid #e1e1e1;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.03);
}

.portfolio-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--smart-faint);
}

/* Card text body */
.portfolio-card-body {
  padding: 1.1rem 1.5rem 1.5rem;
}

/* Category badges — row above the title */
.portfolio-card-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}

.portfolio-card-cat-badge {
  display: inline-block;
  color: var(--smart-black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0;
  text-decoration: underline;
}

.portfolio-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--smart-black);
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.portfolio-card-tagline {
  font-size: 0.9rem;
  color: var(--smart-gray);
  margin: 0;
  line-height: 1.5;
}

/* Empty / no results states */
.portfolio-empty,
.portfolio-no-results {
  text-align: center;
  padding: 4rem 0;
  color: var(--smart-gray);
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .portfolio-page-header {
    padding: 3rem 0 2rem;
  }
}

/* ── Blog index (page-blog) ───────────────────────────────── */

.site-main.blog-single {
  padding-top: 25px;
}

.site-main.blog-single img {
  width: 100%;
}

.blog-page-intro {
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--smart-gray);
}

.blog-post-meta {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--smart-gray);
  margin: 0 0 0.5rem;
}

/* ── Single blog post ───────────────────────────────────────── */
.blog-single .entry-header .entry-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.blog-single .entry-meta {
  margin-bottom: 1.25rem;
}

.blog-single .wp-post-image,
.blog-single img.wp-post-image {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.blog-single-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

.blog-single-content > *:first-child {
  margin-top: 0;
}

.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.blog-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-single-content blockquote {
  border-left: 4px solid var(--smart-blue);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--smart-gray);
}

/* ── Website Design Las Vegas Page ──────────────────────────── */

/* Vertical process layout — Website Design LV */
.wdlv-vprocess {
  border-top: 1px solid var(--smart-border);
}

.wdlv-vprocess-step {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 0 3rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--smart-border);
}

.wdlv-vprocess-step--last {
  border-bottom: none;
}

.wdlv-vprocess-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.wdlv-vprocess-num {
  font-family: 'NeueMontreal', 'Inter', system-ui, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--smart-black);
  opacity: 0.18;
}

.wdlv-vprocess-week {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--smart-blue);
}

.wdlv-vprocess-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--smart-black);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.wdlv-vprocess-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--smart-muted);
  margin: 0;
}

.wdlv-vprocess-tags {
  padding-top: 0.15rem;
}

@media (max-width: 991px) {
  .wdlv-vprocess-step {
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
  }
  .wdlv-vprocess-tags {
    grid-column: 2 / 3;
    margin-top: 1rem;
  }
}

@media (max-width: 575px) {
  .wdlv-vprocess-step {
    grid-template-columns: 1fr;
    gap: 0.75rem 0;
    padding: 1.75rem 0;
  }
  .wdlv-vprocess-left {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .wdlv-vprocess-num {
    font-size: 40px;
    opacity: 0.25;
  }
  .wdlv-vprocess-tags {
    grid-column: 1;
    margin-top: 0;
  }
}

/* 2-tile variant for case-tiles — reuses homepage .case-tiles / .case-tile */
.case-tiles--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .case-tiles--2 {
    grid-template-columns: 1fr;
  }
}

/* 3-tile variant for case-tiles */
.case-tiles--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
  .case-tiles--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .case-tiles--3 {
    grid-template-columns: 1fr;
  }
}

/* 4-tile variant for case-tiles */
.case-tiles--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
  .case-tiles--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .case-tiles--4 {
    grid-template-columns: 1fr;
  }
}

/* 4-column variant for the why-choose grid */
.wd-services-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
  .wd-services-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .wd-services-grid--4 {
    grid-template-columns: 1fr;
  }
}

.wdlv-reason-icon {
  width: 44px;
  height: 44px;
  background: var(--smart-faint);
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Services accordion-style list */
.wdlv-services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--smart-faint);
  border-radius: 14px;
  overflow: hidden;
}

.wdlv-service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 2.5rem;
  background: var(--smart-white);
  border-bottom: 1.5px solid var(--smart-faint);
  transition: background 0.2s;
}

.wdlv-service-row:last-child {
  border-bottom: none;
}

.wdlv-service-row:hover {
  background: var(--smart-faint);
}

.wdlv-services-list--single-col .wdlv-service-row {
  grid-template-columns: 1fr;
}

.wdlv-service-row h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--smart-black);
  margin-bottom: 0.5rem;
}

.wdlv-service-row p {
  font-size: 0.95rem;
  color: var(--smart-body);
  margin: 0;
  line-height: 1.6;
}

.wdlv-service-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wdlv-service-features li {
  font-size: 0.9rem;
  color: var(--smart-body);
  padding-left: 1.25rem;
  position: relative;
}

.wdlv-service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--smart-blue);
  font-size: 0.85rem;
}

@media (max-width: 767px) {
  .wdlv-service-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
}

/* Web design services Las Vegas — portfolio highlight cards */
.wdslv-portfolio-block {
  margin-bottom: 3rem;
}

.wdslv-portfolio-block:last-child {
  margin-bottom: 0;
}

.wdslv-portfolio-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--smart-blue);
  margin-bottom: 1.25rem;
}

.wdslv-portfolio-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--smart-black);
  margin: 0.75rem 0 0.35rem;
}

.wdslv-portfolio-card p {
  font-size: 0.95rem;
  color: var(--smart-body);
  margin: 0;
  line-height: 1.55;
}

.wdslv-portfolio-card img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.wdslv-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin-bottom: 2.5rem;
}

.wdslv-anchor-nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--smart-black);
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--smart-border);
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.wdslv-anchor-nav a:hover,
.wdslv-anchor-nav a:focus-visible {
  border-color: var(--smart-blue);
  color: var(--smart-blue);
  background: rgba(30, 136, 229, 0.06);
  outline: none;
}

/* Process work tags — shared by steps--5 */
.wdlv-work-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--smart-gray);
  margin-top: 1rem;
  margin-bottom: 0.5rem !important;
}

.wdlv-work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.wdlv-work-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--smart-blue);
  background: rgba(0, 112, 243, 0.07);
  border-radius: 20px;
  padding: 0.18rem 0.55rem;
}

/* What makes us different */
.wdlv-diff-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--smart-faint);
  border-radius: 14px;
  overflow: hidden;
}

.wdlv-diff-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--smart-white);
  border-bottom: 1.5px solid var(--smart-faint);
}

.wdlv-diff-item:last-child {
  border-bottom: none;
}

.wdlv-diff-icon {
  width: 40px;
  height: 40px;
  background: var(--smart-faint);
  border-radius: 10px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.wdlv-diff-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--smart-black);
  margin-bottom: 0.35rem;
}

.wdlv-diff-item p {
  font-size: 0.92rem;
  color: var(--smart-body);
  margin: 0;
  line-height: 1.6;
}

/* ── Web Development Agency Page ────────────────────────────── */
.wda-tech-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wda-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.wda-tech-logo-placeholder {
  width: 80px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.wda-tech-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* 11-item industry grid variant */
.seo-industry-grid--wide {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 991px) {
  .seo-industry-grid--wide {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 575px) {
  .seo-industry-grid--wide {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Trusted By Page ─────────────────────────────────────────── */
.trusted-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.trusted-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 14px;
  border: 1.5px solid var(--smart-faint);
  background: var(--smart-white);
  transition: box-shadow 0.2s, transform 0.2s;
  gap: 1rem;
}

.trusted-badge-item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
  text-decoration: none;
}

.trusted-badge-img-wrap {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-badge-img-wrap img {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.trusted-badge-item p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--smart-body);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .trusted-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .trusted-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* ── Strategy Page ───────────────────────────────────────────── */
.strategy-expect-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-expect-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1.5px solid var(--smart-faint);
  background: var(--smart-white);
}

.strategy-expect-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--smart-blue);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}

.strategy-expect-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--smart-black);
  margin-bottom: 0.35rem;
}

.strategy-expect-item p {
  font-size: 0.9rem;
  color: var(--smart-body);
  margin: 0;
  line-height: 1.55;
}

.strategy-logos-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  align-items: center;
}

@media (max-width: 991px) {
  .strategy-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 575px) {
  .strategy-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Services Page ───────────────────────────────────────────── */
.services-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services-process-step {
  padding: 2rem 1.75rem;
  border-radius: 14px;
  border: 1.5px solid var(--smart-faint);
  background: var(--smart-white);
}

.services-process-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.services-process-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--smart-blue);
  line-height: 1;
  flex-shrink: 0;
}

.services-process-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--smart-blue);
  margin-bottom: 0.25rem;
}

.services-process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--smart-black);
  margin: 0;
  line-height: 1.3;
}

.services-process-step p,
.services-process-step li {
  font-size: 0.95rem;
  color: var(--smart-body);
  line-height: 1.6;
}

.services-process-list {
  padding-left: 1.25rem;
  margin: 0.5rem 0 0;
}

.services-process-list li {
  margin-bottom: 0.4rem;
}

/* Linked service cards */
a.wd-service-card--linked {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}

a.wd-service-card--linked:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

/* Channel management grid */
.services-channels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.services-channel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1.5px solid var(--smart-faint);
  background: var(--smart-white);
}

.services-channel-icon {
  width: 44px;
  height: 44px;
  background: var(--smart-faint);
  border-radius: 10px;
}

.services-channel-item p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--smart-black);
  margin: 0;
  line-height: 1.3;
}

/* Industries grid */
.services-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.services-industry-col {
  padding: 2rem 1.5rem;
  border-radius: 14px;
  border: 1.5px solid var(--smart-faint);
  background: var(--smart-white);
}

.services-industry-label {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--smart-blue);
  margin-bottom: 1.25rem;
}

.services-industry-logos {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.services-industry-logo-placeholder {
  width: 100%;
  height: 36px;
  background: var(--smart-faint);
  border-radius: 6px;
}

@media (max-width: 1199px) {
  .services-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-channels-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .services-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-channels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .services-process-grid {
    grid-template-columns: 1fr;
  }
  .services-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-industries-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── SEO Growth Services ─────────────────────────────────────── */
.seo-growth-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.seo-growth-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--smart-black);
}

.seo-growth-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--smart-blue);
  flex-shrink: 0;
}

.seo-growth-chart-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--smart-faint);
  border-radius: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.seo-growth-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.seo-growth-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1.5px solid var(--smart-faint);
  background: var(--smart-white);
  transition: box-shadow 0.2s, transform 0.2s;
}

.seo-growth-service-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.seo-growth-service-icon {
  width: 56px;
  height: 56px;
  background: var(--smart-faint);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.seo-growth-service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--smart-black);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .seo-growth-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .seo-growth-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── SEO Page ────────────────────────────────────────────────── */
.seo-industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.seo-industry-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--smart-faint);
  background: var(--smart-white);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--smart-black);
  line-height: 1.3;
}

@media (max-width: 991px) {
  .seo-industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .seo-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── San Diego Digital Marketing ────────────────────────────── */
.sd-hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--smart-faint);
  border-radius: 16px;
}

/* ── Product Market Fit ──────────────────────────────────────── */
.pmf-hero-quote {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: italic;
  font-weight: 500;
  color: var(--smart-black);
  border-left: 3px solid var(--smart-blue);
  padding-left: 1.25rem;
  margin: 1.5rem 0 2.5rem;
  max-width: 640px;
}

/* 2-col layout: content blocks left, pyramid right */
.pmf-content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

/* Content blocks */
.pmf-content-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pmf-content-block {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--smart-faint);
}

.pmf-content-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pmf-content-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--smart-black);
  margin-bottom: 0.5rem;
}

.pmf-content-block p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--smart-body);
  margin: 0;
}

/* Sticky pyramid on scroll */
.pmf-pyramid-wrap {
  position: sticky;
  top: 100px;
  text-align: center;
}

.pmf-pyramid-axis-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smart-gray);
  margin: 0.6rem 0;
}

.pmf-pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0.25rem 0;
}

/* Rows — diamond shape (widths taper from middle out) */
.pmf-row {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--smart-black);
  background: rgba(0, 0, 0, 0.06);
  transition: background 0.2s;
}

.pmf-row--1 { width: 28%; }
.pmf-row--2 { width: 54%; }
.pmf-row--3 { width: 80%; }

.pmf-row--fit {
  width: 100%;
  height: 54px;
  background: var(--smart-black);
  color: var(--smart-white);
  font-size: 0.88rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

@media (max-width: 991px) {
  .pmf-content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pmf-pyramid-wrap {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ── Home test template (`page-home-test.php`, body.smartboost-home-test) ── */
.smartboost-home-test .home-test-main {
  --smart-cta-blue: #1e54e8;
  --smart-cta-blue-hover: #1744c4;
}

.smartboost-home-test .tier-price-prefix {
  font-size: 13px;
}

.smartboost-home-test .home-test-main .text-blue,
.smartboost-home-test .home-test-main .eyebrow.text-blue {
  color: var(--smart-cta-blue) !important;
}

.smartboost-home-test .home-test-main .text-link-blue {
  color: var(--smart-cta-blue);
}

.smartboost-home-test .home-test-main .text-link-blue:hover,
.smartboost-home-test .home-test-main .text-link-blue:focus {
  color: var(--smart-cta-blue-hover);
}

.smartboost-home-test .btn-cta-home-test-secondary,
.about-page-main .btn-cta-home-test-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #131313;
  color: #131313;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.smartboost-home-test .btn-cta-home-test-secondary:hover,
.smartboost-home-test .btn-cta-home-test-secondary:focus-visible,
.about-page-main .btn-cta-home-test-secondary:hover,
.about-page-main .btn-cta-home-test-secondary:focus-visible {
  background: #131313;
  color: #fff;
  outline: none;
}

.hero-trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.hero-trust-dot {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #1e54e8;
  flex-shrink: 0;
}

.trust-badge-strip {
  padding: 2.25rem 0;
}

/* White inset on cream — badge art with baked-in white blends cleanly without losing the cream band. */
.trust-badge-strip-panel {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  display: inline-block;
  /* background: #ffffff;
  border: 1px solid rgba(19, 19, 19, 0.08); */
  border-radius: 12px;
  padding: 1.35rem 1.25rem 1.5rem;
}

.trust-badge-strip-eyebrow {
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.trust-badge-strip-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1.75rem;
  align-items: center;
}

.trust-badge-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.trust-badge-img-wrap img {
  /* Size is driven mainly by height; max-width is a ceiling so wide badges don’t dominate. */
  height: clamp(64px, 11vw, 112px);
  width: auto;
  max-width: min(220px, 28vw);
  object-fit: contain;
  opacity: 0.92;
}

.smartboost-home-test .door-num--home-test {
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  margin-bottom: 1.25rem;
}

.smartboost-home-test .step-num--home-test {
  font-size: clamp(3.25rem, 10vw, 6rem);
}

.smartboost-home-test .how--home-test.section-space {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.smartboost-home-test .how-cta--home-test {
  margin-top: 2rem;
}

.smartboost-home-test .portfolio-marquee-item--labeled {
  width: clamp(260px, 30vw, 360px);
  aspect-ratio: auto;
  box-shadow: none;
  background: transparent;
  overflow: visible;
  border-radius: 0;
}

.smartboost-home-test .portfolio-marquee-thumb-wrap {
  aspect-ratio: 1390 / 952;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(19, 19, 19, 0.08);
}

.smartboost-home-test .portfolio-marquee-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.smartboost-home-test .portfolio-marquee-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--smart-muted);
  margin: 0.45rem 0 0;
  text-align: center;
  line-height: 1.25;
  max-width: 100%;
}

.smartboost-home-test .badge-amber-home-test {
  background: #e8a53a;
  color: #131313;
  border-radius: 6px;
}

.smartboost-home-test .proof-testimonial--diana {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.site-footer-trust {
  padding: 2rem 0 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-badge-strip-logos--footer .trust-badge-img-wrap img {
  height: clamp(52px, 8vw, 88px);
  max-width: min(180px, 24vw);
  opacity: 0.88;
}

.nav-phone {
  color: var(--smart-black);
  white-space: nowrap;
}

.nav-phone:hover,
.nav-phone:focus-visible {
  color: #1e54e8;
  outline: none;
}

@media (min-width: 1921px) {
  .container {
    max-width: 1920px !important;
  }
}