/* Pine Point Digital — Global Styles */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-card: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --accent: #00D4FF;
  --accent-dim: rgba(0, 212, 255, 0.15);
  --accent-glow: transparent;
  --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --nav-height: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --container-max: 1400px;
  --container-pad-x: 1.25rem;
  --section-pad-y: 40px;
  --font-size-body: 16px;
  --hero-h1-size: 36px;
  --page-hero-h1-size: 36px;
  --section-heading-size: clamp(1.75rem, 5vw, 2.25rem);
  --btn-min-height: 48px;
  --btn-pad-x: 1.25rem;
  --hero-to-ticker-gap: min(40px, 5vw);
}

@media (min-width: 768px) {
  :root {
    --container-pad-x: 32px;
    --section-pad-y: 60px;
    --hero-h1-size: 48px;
    --page-hero-h1-size: 48px;
    --section-heading-size: clamp(2rem, 4vw, 2.75rem);
    --btn-min-height: 52px;
    --btn-pad-x: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-pad-x: 40px;
    --section-pad-y: 100px;
    --font-size-body: 18px;
    --hero-h1-size: 72px;
    --page-hero-h1-size: max(48px, 3rem);
    --section-heading-size: max(48px, 3rem);
    --btn-min-height: 56px;
    --btn-pad-x: 32px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.35rem, 2.75vw, 1.65rem);
}

.section-head h2,
.cta-band h2,
.service-block h2,
.section .container.text-center > h2 {
  font-size: var(--section-heading-size);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
}

.section {
  padding: var(--section-pad-y) 0;
}

.section--tight {
  padding: var(--section-pad-y) 0;
}

.contact-hero-premium + .section--tight {
  margin-top: 0;
  padding-top: 40px;
}

#services-preview .text-center {
  margin-top: 40px;
}

body[data-page="portfolio"] .section--tight > .container > p.text-center {
  margin-top: 40px;
}

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition),
    box-shadow var(--transition);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.25),
    transparent
  );
  opacity: 0;
  transition: opacity var(--transition);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.site-header:not(.is-scrolled) {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  z-index: 1002;
}

.logo__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: none;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition), opacity var(--transition);
  margin-left: auto;
  margin-right: auto;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.nav-links a.is-active {
  color: var(--accent);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-min-height);
  padding: 0.5rem var(--btn-pad-x);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: #000000;
  background: #00d4ff;
  border: 2px solid #00d4ff;
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

@media (max-width: 767px) {
  body.nav-open .site-header {
    z-index: 10000;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    z-index: 9999;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0 0 8px;
    max-height: calc(100vh - var(--nav-height));
    max-height: calc(100dvh - var(--nav-height));
    overflow-y: auto;
    background: #0a0a0a;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links > li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.25);
  }

  .nav-links > li:last-child {
    border-bottom: none;
    border-top: 1px solid rgba(0, 212, 255, 0.25);
    padding: 20px 20px 24px;
  }

  .nav-links > li > a:not(.btn-nav) {
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px 16px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
  }

  .nav-links > li > a:not(.btn-nav):hover,
  .nav-links > li > a:not(.btn-nav):focus-visible {
    color: var(--accent);
  }

  .nav-links .btn-nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
  }
}

/* Get Started — default text black (overrides .nav-links a gray) */
.btn-primary,
.get-started-btn,
nav .btn,
.cta-btn,
a[href*="contact"].btn,
.nav-links .btn-nav,
a.btn-nav {
  color: #000000 !important;
}

a.btn.btn--outline[href*="contact"] {
  color: var(--text-primary) !important;
}

a.btn.btn--outline[href*="contact"]:hover,
a.btn.btn--outline[href*="contact"]:focus-visible {
  color: var(--accent) !important;
}

/* Get Started (.btn-nav) hover — must follow black-text rules; higher specificity + !important */
.nav-links .btn-nav:hover,
.nav-links .btn-nav:focus-visible,
a.btn-nav:hover,
a.btn-nav:focus-visible {
  background: transparent !important;
  color: #00d4ff !important;
  border: 2px solid #00d4ff !important;
  box-shadow: none !important;
  transform: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-min-height);
  padding: 0.65rem var(--btn-pad-x);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition);
}

.btn--primary {
  color: var(--bg-primary);
  background: var(--accent);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.25);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.35);
}

.btn--outline {
  color: var(--text-primary);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: translate(var(--mag-x, 0px), var(--mag-y, 0px));
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Hero (home) */
.hero {
  position: relative;
  min-height: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: calc(var(--nav-height) + 0.5rem) 0 0;
  padding-bottom: 0px;
  margin-bottom: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  display: none;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, -3%) scale(1.05);
  }
  66% {
    transform: translate(-3%, 4%) scale(0.95);
  }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Dot grid on inner + case heroes — matches home .hero__grid; ::after sits above glow, below copy */
.page-hero-premium::after,
.case-v2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  pointer-events: none;
}

.page-hero-premium .hero-premium__bg,
.case-v2-hero .hero-premium__bg {
  z-index: 0;
}

.hero .container.hero__shell {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 0;
  padding-top: clamp(0.35rem, 2.5vh, 1.5rem);
  padding-bottom: 0.5rem;
}

.hero__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__row {
    grid-template-columns: 60% 40%;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
  }

  .hero__col--visual {
    justify-self: stretch;
    max-width: 100%;
  }
}

.hero__col--text {
  min-width: 0;
}

.hero__col--visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .hero__col--visual {
    order: 2;
    margin-top: 0.5rem;
  }

  .hero__col--text {
    order: 1;
  }
}

.hero-dashboard {
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  background: #1a1a1a;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 212, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.06) inset;
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .hero-dashboard {
    margin-right: 0;
    margin-left: auto;
  }
}

.hero-dashboard__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-dashboard__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-dashboard__dot--red {
  background: #ff5f57;
  box-shadow: 0 0 6px rgba(255, 95, 87, 0.5);
}

.hero-dashboard__dot--yellow {
  background: #febc2e;
  box-shadow: 0 0 6px rgba(254, 188, 46, 0.45);
}

.hero-dashboard__dot--green {
  background: #28c840;
  box-shadow: 0 0 6px rgba(40, 200, 64, 0.45);
}

.hero-dashboard__body {
  padding: 1.25rem 1.25rem 1.35rem;
}

.hero-dashboard__bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.1rem;
}

.hero-dashboard__bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(0, 212, 255, 0.35);
  max-width: 100%;
}

.hero-dashboard__bar--a {
  width: 88%;
  background: rgba(0, 212, 255, 0.55);
}

.hero-dashboard__bar--b {
  width: 62%;
  background: rgba(0, 212, 255, 0.35);
}

.hero-dashboard__bar--c {
  width: 96%;
  background: rgba(0, 212, 255, 0.22);
}

.hero-dashboard__chart {
  margin-bottom: 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.25);
  padding: 10px 8px 6px;
  border: 1px solid rgba(0, 212, 255, 0.08);
}

.hero-dashboard__chart svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72px;
}

.hero-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.hero-dashboard__stat {
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.12);
  text-align: center;
}

.hero-dashboard__stat-val {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.hero-dashboard__stat-lbl {
  display: block;
  margin-top: 4px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.hero-dashboard__stat--live .hero-dashboard__stat-val {
  color: var(--accent);
}

.hero-dashboard__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5);
  animation: hero-pulse 2s ease-out infinite;
}

@keyframes hero-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.55);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    opacity: 0.85;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: var(--hero-h1-size);
  line-height: 1.08;
  max-width: 100%;
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .hero h1 {
    max-width: min(20ch, 100%);
  }
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 42rem;
  color: var(--text-secondary);
}

/* Ticker */
.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  background: #111111;
  padding: 14px 0;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  margin-top: 70px;
}

.ticker-track {
  display: flex;
  flex-wrap: nowrap;
  width: fit-content;
  will-change: transform;
}

.ticker-item {
  white-space: nowrap;
  font-size: 14px;
  color: #A0A0A0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--nav-height) + 2rem) 0 var(--section-pad-y);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.page-hero::before {
  display: none;
}

.page-hero h1 {
  font-size: var(--page-hero-h1-size);
  line-height: 1.12;
  max-width: min(24ch, 100%);
}

.page-hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 48rem;
  margin-top: 1rem;
}

/* Social proof bar */
.social-proof {
  padding: 80px 0;
}

.social-proof__text {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2.25rem;
}

.social-proof__text::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  margin: 0.9rem auto 0;
  background: rgba(0, 212, 255, 0.85);
  box-shadow: none;
}

@media (min-width: 768px) {
  .social-proof__text {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .social-proof__text {
    font-size: 36px;
  }
}

.social-proof__icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .social-proof__icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .social-proof__icons {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.social-proof__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(0, 212, 255, 0.05);
  padding: 1.25rem;
}

.social-proof__item svg {
  width: 56px;
  height: 56px;
  stroke: #00D4FF;
  fill: none;
  stroke-width: 1.5;
}

.social-proof__item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.social-proof__item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition),
    transform var(--transition);
  box-shadow: inset 0 1px 0 rgba(0, 212, 255, 0.04);
}

.service-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.08),
    inset 0 0 60px rgba(0, 212, 255, 0.03);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
}

.service-card__link:hover {
  text-decoration: underline;
}

/* Section titles */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  color: var(--text-primary);
}

.section-head p {
  margin-top: 0.75rem;
}

.bg-secondary {
  background: var(--bg-secondary);
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-primary);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.why-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.why-item p {
  font-size: 0.9375rem;
  margin: 0;
}

/* How it works flow */
.flow {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.flow__step {
  flex: 1 1 200px;
  max-width: 280px;
  text-align: center;
  padding: 1rem;
  position: relative;
}

.flow__connector {
  display: none;
}

@media (min-width: 1024px) {
  .flow {
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .flow__connector {
    display: flex;
    align-items: center;
    flex: 0 0 60px;
    min-width: 40px;
    position: relative;
    top: 3rem;
  }

  .flow__connector::after {
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--accent),
      rgba(0, 212, 255, 0.3)
    );
    box-shadow: none;
  }
}

.flow__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--bg-primary);
  background: var(--accent);
  border-radius: 50%;
  box-shadow: none;
}

.flow__step h3 {
  color: var(--text-primary);
  font-size: 1.05rem;
}

.flow__step p {
  font-size: 0.9rem;
  margin: 0;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial__quote {
  font-size: 2.5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.testimonial__stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial blockquote {
  margin: 0 0 1.25rem;
  font-size: var(--font-size-body);
  color: var(--text-secondary);
  font-style: normal;
  line-height: 1.65;
}

.testimonial__meta {
  font-size: 0.875rem;
}

.testimonial__name {
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.testimonial__biz {
  color: var(--text-secondary);
}

/* CTA band */
.cta-band {
  position: relative;
  padding: var(--section-pad-y) 0;
  text-align: center;
  overflow: hidden;
}

.cta-band::before {
  display: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  max-width: 36rem;
  margin: 1rem auto 2rem;
  font-size: 1.1rem;
}

.home-punch .home-punch__statement {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 4.2vw, 2.35rem);
  line-height: 1.25;
  margin: 0 auto;
  max-width: 24ch;
}

.home-punch .home-punch__subtitle {
  max-width: 36rem;
  margin: 1rem auto 2rem;
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  background: #060608;
  border-top: 1px solid rgba(0, 212, 255, 0.08);
  padding: 60px 0;
  text-align: center;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.site-footer .logo {
  justify-content: center;
  margin: 0 auto 1rem;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  max-width: none;
  margin: 0 auto 1.5rem;
}

.footer-nav {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-nav a.is-active {
  color: var(--accent);
}

.footer-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 1.5rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-email svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-align: center;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-block--reverse .service-block__content {
  order: 2;
}

.service-block--reverse .service-block__visual {
  order: 1;
}

@media (max-width: 1023px) {
  .service-block {
    grid-template-columns: 1fr;
  }

  .service-block--reverse .service-block__visual {
    order: -1;
  }

  .service-block--reverse .service-block__content {
    order: 1;
  }
}

.service-block__icon-lg {
  width: 64px;
  height: 64px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-block__icon-lg svg {
  width: 100%;
  height: 100%;
}

.service-block h2 {
  margin-bottom: 1rem;
}

.service-block__list {
  margin: 1.25rem 0;
  padding-left: 1.25rem;
  color: var(--text-secondary);
}

.service-block__list li {
  margin-bottom: 0.5rem;
}

.service-block__perfect {
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin: 1rem 0;
}

.service-block__perfect strong {
  color: var(--accent);
}

.service-block__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  margin: 1rem 0 1.5rem;
}

.service-block__visual {
  min-height: 280px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.15);
  background: var(--bg-card);
}

.abstract-art {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
}

.abstract-art::before,
.abstract-art::after {
  display: none;
}

.abstract-art--a::before {
  width: 70%;
  height: 70%;
  background: rgba(0, 212, 255, 0.2);
  top: -10%;
  right: -10%;
}

.abstract-art--a::after {
  width: 50%;
  height: 50%;
  background: rgba(100, 200, 255, 0.08);
  bottom: 10%;
  left: 10%;
}

.abstract-art--b::before {
  width: 60%;
  height: 80%;
  background: rgba(0, 212, 255, 0.15);
  bottom: -20%;
  left: -10%;
  border-radius: 40%;
}

.abstract-art--b::after {
  width: 40%;
  height: 40%;
  background: rgba(180, 100, 255, 0.12);
  top: 15%;
  right: 15%;
}

.abstract-art--c::before {
  width: 55%;
  height: 55%;
  background: rgba(0, 212, 255, 0.18);
  top: 20%;
  left: 15%;
}

.abstract-art--c::after {
  width: 65%;
  height: 40%;
  background: rgba(0, 150, 200, 0.1);
  bottom: 15%;
  right: 5%;
  border-radius: 30%;
}

.abstract-art .geo-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.4),
    transparent
  );
  height: 1px;
  width: 80%;
  left: 10%;
  top: 45%;
}

.abstract-art .geo-square {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  transform: rotate(12deg);
  top: 30%;
  right: 20%;
}

/* Comparison table */
.compare-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  background: var(--bg-card);
  color: var(--text-primary);
}

.compare-table th.highlight {
  background: rgba(0, 212, 255, 0.12);
  color: var(--accent);
  box-shadow: inset 0 -1px 0 rgba(0, 212, 255, 0.3);
}

.compare-table td {
  color: var(--text-secondary);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td.highlight {
  background: rgba(0, 212, 255, 0.06);
  color: var(--text-primary);
  font-weight: 500;
}

.compare-table .row-label {
  font-weight: 600;
  color: var(--text-primary);
  width: 22%;
}

/* Process steps (how it works) */
.process-list {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step__num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--bg-primary);
  background: var(--accent);
  border-radius: var(--radius-sm);
  box-shadow: none;
  flex-shrink: 0;
}

.process-step__icon {
  width: 28px;
  height: 28px;
  margin-top: 0.35rem;
  color: var(--accent);
}

.process-step h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.process-step p {
  margin: 0;
  font-size: 0.95rem;
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  background: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

.faq-item__btn:hover {
  color: var(--accent);
}

.faq-item__chev {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.faq-item__chev::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-2px);
}

.faq-item.is-open .faq-item__chev {
  transform: rotate(180deg);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__panel-inner {
  padding-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item--enhanced .faq-item__panel-inner {
  padding: 20px 32px 28px 32px;
  line-height: 1.8;
  color: #a0a0a0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition),
    transform var(--transition);
}

.portfolio-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
  transform: translateY(-4px);
}

.portfolio-card__thumb {
  height: auto;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.portfolio-card .mockup-browser {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-card:hover .mockup-browser {
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(0, 212, 255, 0.22);
}

.portfolio-card__body {
  padding: 1.5rem;
}

.portfolio-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.portfolio-card h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.portfolio-card p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* Portfolio / case study — CSS browser mockups */
.mockup-browser {
  width: 100%;
  height: 220px;
  background: #1a1a1a;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  position: relative;
}

.mockup-browser--hero {
  height: 328px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px 12px 0 0;
}

.case-v2-hero__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-v2-hero__mockup .mockup-browser--hero {
  animation: float 4s ease-in-out infinite;
}

.mockup-bar {
  height: 32px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-dot--red {
  background: #ff5f57;
}

.mockup-dot--yellow {
  background: #ffbd2e;
}

.mockup-dot--green {
  background: #28ca41;
}

.mockup-url {
  flex: 1;
  height: 16px;
  background: #2a2a2a;
  border-radius: 4px;
  margin: 0 8px;
}

.mockup-content {
  padding: 0;
  height: calc(100% - 32px);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  background: #1a1a1a;
}

.mockup-browser--hero .mockup-content {
  padding: 0;
}

.mockup-scale {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.mockup-page {
  width: 360px;
  height: 302px;
  flex-shrink: 0;
  transform-origin: top center;
  transform: scale(0.622);
  box-sizing: border-box;
  overflow: hidden;
  font-family: Inter, system-ui, sans-serif;
}

.mockup-browser--hero .mockup-page {
  transform: scale(0.96);
}

/* ─── Mockup 1 — Magnolia Events (wedding planner site) ─── */
.mockup-page--mag {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.mp-mag-nav {
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background: #faf7f2;
  border-bottom: 1px solid #ebe4dc;
}

.mp-mag-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #3d2b2b;
  white-space: nowrap;
}

.mp-mag-navlinks {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 6px;
  font-weight: 500;
  color: #7a6565;
  text-transform: capitalize;
}

.mp-mag-hero {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 10px;
  background: #f5e6e0;
}

.mp-mag-hero__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  min-width: 0;
}

.mp-mag-lbl {
  margin: 0;
  font-size: 5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #8b7373;
  text-transform: uppercase;
}

.mp-mag-line {
  display: block;
  height: 7px;
  border-radius: 2px;
  background: #3d2b2b;
}

.mp-mag-line--h1 {
  width: 96%;
}

.mp-mag-line--h2 {
  width: 72%;
  height: 6px;
}

.mp-mag-deco {
  width: 28px;
  height: 2px;
  background: #d4a5a5;
  border-radius: 1px;
  margin: 1px 0;
}

.mp-mag-line--body {
  height: 3px;
  width: 88%;
  background: #9a8585;
  border-radius: 2px;
}

.mp-mag-line--body2 {
  width: 64%;
}

.mp-btn-mag {
  margin-top: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #3d2b2b;
  color: #fff;
  font-size: 6px;
  font-weight: 600;
}

.mp-mag-hero__photo {
  width: 38%;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(145deg, #d4a5a5 0%, #c49090 100%);
  box-shadow: 0 2px 8px rgba(61, 43, 43, 0.12);
}

.mp-mag-strip {
  flex-shrink: 0;
  display: flex;
  border-top: 1px solid #e5e0db;
  border-bottom: 1px solid #e5e0db;
  background: #fff;
  padding: 8px 6px;
  gap: 4px;
}

.mp-mag-svc {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.mp-mag-ico {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e8c4c4;
}

.mp-mag-cap {
  height: 3px;
  width: 70%;
  background: #3d2b2b;
  border-radius: 2px;
  opacity: 0.85;
}

.mp-mag-sub {
  height: 2px;
  width: 85%;
  background: #c4b8b8;
  border-radius: 2px;
}

/* ─── Mockup 2 — BlueRidge HVAC (marketing site) ─── */
.mockup-page--hvac {
  background: #0d1b2a;
  display: flex;
  flex-direction: column;
}

.mp-hvac-nav {
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  gap: 6px;
  background: #0d1b2a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mp-hvac-logo {
  font-size: 8px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.mp-hvac-links {
  display: flex;
  gap: 6px;
  font-size: 5px;
  color: #94a3b8;
  flex: 1;
  justify-content: center;
}

.mp-btn-hvac-nav {
  padding: 4px 7px;
  border-radius: 4px;
  background: #0ea5e9;
  color: #fff;
  font-size: 5px;
  font-weight: 700;
  flex-shrink: 0;
}

.mp-hvac-hero {
  flex: 1;
  min-height: 0;
  display: flex;
  gap: 8px;
  padding: 10px 8px;
  background: linear-gradient(180deg, #0d1b2a 0%, #0f2135 100%);
}

.mp-hvac-hero__txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.mp-hvac-tag {
  margin: 0;
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0ea5e9;
  text-transform: uppercase;
}

.mp-line-w {
  display: block;
  height: 6px;
  border-radius: 2px;
  background: #fff;
}

.mp-line-w--1 {
  width: 92%;
}

.mp-line-w--2 {
  width: 78%;
  height: 5px;
}

.mp-line-w--3 {
  width: 65%;
  height: 5px;
}

.mp-line-g {
  height: 3px;
  width: 88%;
  background: rgba(148, 163, 184, 0.5);
  border-radius: 2px;
}

.mp-line-g--2 {
  width: 70%;
}

.mp-stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}

.mp-stars span {
  width: 6px;
  height: 6px;
  background: #facc15;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.mp-hvac-btns {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.mp-btn-sched {
  padding: 4px 7px;
  border-radius: 4px;
  background: #0ea5e9;
  color: #fff;
  font-size: 5px;
  font-weight: 700;
}

.mp-btn-hvac-out {
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #e2e8f0;
  font-size: 5px;
  font-weight: 600;
}

.mp-hvac-hero__img {
  width: 36%;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(160deg, #1e3a5f 0%, #0f172a 55%, #1a2838 100%);
}

.mp-hvac-stats {
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  background: #142338;
  padding: 8px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mp-hvac-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
}

.mp-hvac-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.mp-line-num {
  height: 8px;
  width: 55%;
  background: #fff;
  border-radius: 2px;
}

.mp-line-lbl {
  height: 2px;
  width: 72%;
  background: rgba(148, 163, 184, 0.45);
  border-radius: 2px;
}

/* ─── Mockup 3 — Petal & Stem Florist ─── */
.mockup-page--fl {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.mp-fl-nav {
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  background: #fff;
  border-bottom: 1px solid #e8ebe6;
}

.mp-fl-logo {
  font-size: 9px;
  font-weight: 700;
  color: #7d9b76;
}

.mp-fl-links {
  display: flex;
  gap: 6px;
  font-size: 5px;
  color: #5c6658;
}

.mp-fl-cart {
  width: 12px;
  height: 11px;
  border: 1.5px solid #7d9b76;
  border-radius: 2px 2px 3px 3px;
  position: relative;
  flex-shrink: 0;
}

.mp-fl-cart::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 2px;
  right: 2px;
  height: 4px;
  border: 1.5px solid #7d9b76;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}

.mp-fl-hero {
  flex: 1;
  min-height: 0;
  display: flex;
}

.mp-fl-hero__left {
  flex: 1;
  background: #7d9b76;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.mp-line-flw {
  display: block;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

.mp-line-flw--cat {
  width: 55%;
  height: 3px;
  opacity: 0.85;
}

.mp-line-flw--h1 {
  width: 88%;
  height: 7px;
}

.mp-line-flw--h2 {
  width: 68%;
  height: 6px;
}

.mp-line-flw--b {
  height: 3px;
  width: 80%;
  opacity: 0.75;
}

.mp-line-flw--b2 {
  width: 62%;
}

.mp-btn-fl {
  margin-top: 4px;
  align-self: flex-start;
  padding: 4px 9px;
  border-radius: 4px;
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 5px;
  font-weight: 700;
}

.mp-fl-hero__right {
  flex: 1;
  background: #fff;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.mp-fl-prod {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 5px;
  padding: 5px 6px;
  border: 1px solid #e8ebe6;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.mp-fl-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mp-fl-dot--1 {
  background: #e8829a;
}

.mp-fl-dot--2 {
  background: #c8a8e9;
}

.mp-fl-dot--3 {
  background: #f4b183;
}

.mp-fl-prod__txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.mp-fl-n {
  height: 3px;
  width: 70%;
  background: #d1d5d0;
  border-radius: 2px;
}

.mp-fl-p {
  height: 3px;
  width: 35%;
  background: #7d9b76;
  border-radius: 2px;
  opacity: 0.8;
}

.mp-fl-tags {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 8px;
  background: #f0f5ee;
  border-top: 1px solid #dfe8db;
}

.mp-fl-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #c5d4c0;
  font-size: 5px;
  font-weight: 600;
  color: #5a6b55;
}

/* ─── Mockup 4 — Coastal Clean Co ─── */
.mockup-page--co {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.mp-co-nav {
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  gap: 4px;
  background: #fff;
  border-bottom: 1px solid #eef2f2;
}

.mp-co-logo {
  font-size: 7px;
  font-weight: 800;
  color: #0cb4c4;
  white-space: nowrap;
}

.mp-co-links {
  display: flex;
  gap: 5px;
  font-size: 4.5px;
  color: #64748b;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.mp-btn-co {
  padding: 4px 6px;
  border-radius: 4px;
  background: #0cb4c4;
  color: #fff;
  font-size: 5px;
  font-weight: 700;
  flex-shrink: 0;
}

.mp-co-hero {
  flex: 1;
  min-height: 0;
  display: flex;
  gap: 8px;
  padding: 10px 8px;
  background: #0cb4c4;
}

.mp-co-hero__txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.mp-co-pill {
  align-self: flex-start;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #0cb4c4;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mp-line-cow {
  display: block;
  height: 6px;
  background: #fff;
  border-radius: 2px;
}

.mp-line-cow--1 {
  width: 94%;
}

.mp-line-cow--2 {
  width: 76%;
}

.mp-line-cow--3 {
  width: 58%;
  height: 5px;
}

.mp-line-cow-sub {
  height: 3px;
  width: 82%;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 2px;
}

.mp-line-cow-sub2 {
  width: 64%;
}

.mp-btn-co2 {
  margin-top: 3px;
  align-self: flex-start;
  padding: 4px 8px;
  border-radius: 4px;
  background: #fff;
  color: #0cb4c4;
  font-size: 5px;
  font-weight: 800;
}

.mp-co-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 4px;
}

.mp-co-trust span {
  padding: 2px 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 3.5px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.mp-co-hero__img {
  width: 34%;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mp-co-services {
  flex-shrink: 0;
  display: flex;
  gap: 5px;
  padding: 8px 6px;
  background: #fff;
  border-top: 1px solid #e8f4f5;
}

.mp-co-card {
  flex: 1;
  border-radius: 4px;
  border: 1px solid #e8ecec;
  border-top: 3px solid #0cb4c4;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #fafcfc;
}

.mp-co-ico {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(12, 180, 196, 0.2);
  border: 2px solid #0cb4c4;
}

.mp-co-nm {
  height: 3px;
  width: 78%;
  background: #0cb4c4;
  border-radius: 2px;
  opacity: 0.85;
}

.mp-co-d {
  height: 2px;
  width: 90%;
  background: #cbd5e1;
  border-radius: 2px;
}

.mp-co-d2 {
  width: 65%;
}

/* ─── Mockup 5 — Iron & Oak Gym ─── */
.mockup-page--gym {
  background: #111;
  display: flex;
  flex-direction: column;
}

.mp-gym-nav {
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  background: #111;
  border-bottom: 1px solid #222;
}

.mp-gym-logo {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
}

.mp-gym-links {
  display: flex;
  gap: 5px;
  font-size: 5px;
  color: #888;
  flex: 1;
  justify-content: center;
}

.mp-btn-gym-nav {
  padding: 4px 7px;
  border-radius: 4px;
  background: #00d4ff;
  color: #0a0a0a;
  font-size: 5px;
  font-weight: 800;
  flex-shrink: 0;
}

.mp-gym-hero {
  flex: 1;
  min-height: 0;
  position: relative;
  background: #0a0a0a;
}

.mp-gym-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, #1a1a1a 0%, #2a1a0a 50%, #1a1512 100%);
  opacity: 0.95;
}

.mp-gym-hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 10px 10px 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.mp-gym-badge {
  align-self: flex-start;
  padding: 3px 7px;
  border-radius: 999px;
  background: #00d4ff;
  color: #0a0a0a;
  font-size: 5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mp-line-gym-h {
  display: block;
  height: 9px;
  background: #fff;
  border-radius: 2px;
}

.mp-line-gym-h--1 {
  width: 88%;
}

.mp-line-gym-h--2 {
  width: 72%;
  height: 8px;
}

.mp-line-gym-h--3 {
  width: 56%;
  height: 8px;
}

.mp-line-gym-sub {
  height: 3px;
  width: 78%;
  background: #666;
  border-radius: 2px;
}

.mp-line-gym-sub2 {
  width: 58%;
}

.mp-gym-btns {
  display: flex;
  gap: 5px;
  margin-top: 4px;
}

.mp-btn-gym-solid {
  padding: 5px 9px;
  border-radius: 4px;
  background: #00d4ff;
  color: #0a0a0a;
  font-size: 5px;
  font-weight: 900;
}

.mp-btn-gym-out {
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 5px;
  font-weight: 700;
}

.mp-gym-hero__accent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #00d4ff;
  z-index: 2;
}

.mp-gym-tiers {
  flex-shrink: 0;
  display: flex;
  gap: 5px;
  padding: 8px 6px;
  background: #141414;
  border-top: 1px solid #222;
}

.mp-gym-tier {
  flex: 1;
  border-radius: 4px;
  background: #1e1e1e;
  padding: 7px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-top: 3px solid #444;
}

.mp-gym-tier--cyan {
  border-top-color: #00d4ff;
}

.mp-gym-tier--gold {
  border-top-color: #d4a853;
}

.mp-gym-tier-lbl {
  font-size: 5px;
  font-weight: 800;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mp-line-price {
  height: 10px;
  width: 60%;
  background: #fff;
  border-radius: 2px;
}

.mp-line-pmo {
  height: 2px;
  width: 50%;
  background: #666;
  border-radius: 2px;
}

.mp-gym-feat {
  height: 2px;
  width: 85%;
  background: #444;
  border-radius: 2px;
}

.mp-gym-feat2 {
  width: 72%;
}

.mp-gym-feat3 {
  width: 68%;
}

/* ─── Mockup 6 — Summit Realty ─── */
.mockup-page--re {
  background: #111;
  display: flex;
  flex-direction: column;
}

.mp-re-nav {
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  background: #1a1a1a;
  border-bottom: 1px solid #2a2a2a;
}

.mp-re-logo {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
}

.mp-re-logo::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e8a838;
  flex-shrink: 0;
}

.mp-re-links {
  display: flex;
  gap: 5px;
  font-size: 5px;
  color: #94a3b8;
  flex: 1;
  justify-content: center;
}

.mp-btn-re {
  padding: 4px 6px;
  border-radius: 4px;
  background: #e8a838;
  color: #1a1a1a;
  font-size: 5px;
  font-weight: 800;
  flex-shrink: 0;
}

.mp-re-hero {
  flex-shrink: 0;
  padding: 10px 8px 8px;
  background: #111;
  position: relative;
  min-height: 118px;
}

.mp-re-hero__bg {
  position: absolute;
  inset: 8px;
  border-radius: 4px;
  background: linear-gradient(160deg, #1a2a1a 0%, #2a2a2a 100%);
  z-index: 0;
}

.mp-re-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  padding: 4px 4px 0;
}

.mp-line-re-h {
  display: block;
  height: 7px;
  background: #fff;
  border-radius: 2px;
}

.mp-line-re-h--1 {
  width: 88%;
}

.mp-line-re-h--2 {
  width: 70%;
}

.mp-line-re-h--3 {
  width: 52%;
  height: 6px;
}

.mp-line-re-s {
  height: 3px;
  width: 72%;
  background: #64748b;
  border-radius: 2px;
}

.mp-line-re-s2 {
  width: 55%;
}

.mp-re-search {
  margin-top: 6px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 6px;
  background: #f1f5f9;
  border-radius: 5px;
  border: 1px solid #e2e8f0;
}

.mp-re-search__in {
  flex: 1;
  height: 14px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 4px;
  gap: 3px;
}

.mp-re-dd {
  width: 28%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 2px;
}

.mp-re-dd2 {
  width: 22%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 2px;
}

.mp-re-search__go {
  padding: 5px 10px;
  border-radius: 4px;
  background: #e8a838;
  color: #1a1a1a;
  font-size: 6px;
  font-weight: 800;
  flex-shrink: 0;
}

.mp-re-listings {
  flex: 1;
  min-height: 0;
  display: flex;
  gap: 5px;
  padding: 6px 6px 8px;
  background: #141414;
}

.mp-re-card {
  flex: 1;
  min-width: 0;
  border-radius: 4px;
  background: #1e1e1e;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #2a2a2a;
}

.mp-re-card__img {
  height: 52px;
  flex-shrink: 0;
  border-radius: 0;
}

.mp-re-card:nth-child(1) .mp-re-card__img {
  background: linear-gradient(145deg, #c4a882 0%, #a68b6a 100%);
}

.mp-re-card:nth-child(2) .mp-re-card__img {
  background: linear-gradient(145deg, #8b6b4a 0%, #6a4f35 100%);
}

.mp-re-card:nth-child(3) .mp-re-card__img {
  background: linear-gradient(145deg, #6b7b8b 0%, #4a5568 100%);
}

.mp-re-card__body {
  padding: 5px 5px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mp-re-price {
  height: 4px;
  width: 55%;
  background: #e8a838;
  border-radius: 2px;
}

.mp-re-addr {
  height: 3px;
  width: 92%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
}

.mp-re-addr2 {
  width: 70%;
}

.mp-re-meta {
  display: flex;
  gap: 3px;
  margin-top: 2px;
}

.mp-re-meta span {
  width: 10px;
  height: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Case study v2 layout */
.case-v2-hero {
  position: relative;
  min-height: 60vh;
  padding: calc(var(--nav-height) + 2.5rem) 0 3rem;
  overflow: hidden;
  background: var(--bg-primary);
}

.case-v2-hero .hero-premium__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.case-v2-hero .hero-premium__glow {
  display: none;
}

.case-v2-hero__inner {
  position: relative;
  z-index: 3;
}

.case-v2-hero .container.case-v2-hero__inner {
  position: relative;
  z-index: 3;
}

.case-v2-back {
  margin-bottom: 1.25rem;
}

.case-v2-back a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.case-v2-back a:hover,
.case-v2-back a:focus-visible {
  text-decoration: underline;
}

.case-v2-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .case-v2-hero__grid {
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
  }
}

.case-v2-hero__tag {
  display: inline-block;
  padding: 0.4rem 0.95rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.case-v2-hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--text-primary);
  text-shadow: none;
}

.case-v2-hero__lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 38rem;
  margin: 0;
}

.case-v2-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.case-v2-chip {
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.case-v2-results-bar {
  padding: 3rem 0;
}

.case-v2-results-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .case-v2-results-bar__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.case-v2-stat-lg__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 4.5vw, 3rem);
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  word-break: break-word;
}

.case-v2-stat-lg__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.case-v2-stat-lg__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 16rem;
  margin: 0 auto;
}

.case-v2-section {
  padding: var(--section-pad-y) 0;
}

.case-v2-section__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--section-heading-size);
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.case-v2-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .case-v2-split {
    grid-template-columns: 0.45fr 0.55fr;
    gap: 3rem;
  }

  .case-v2-split--flip {
    grid-template-columns: 0.55fr 0.45fr;
  }

  .case-v2-split--flip .case-v2-split__col--quote {
    order: -1;
  }
}

.case-v2-prose p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.case-v2-prose p:last-child {
  margin-bottom: 0;
}

.case-v2-quote {
  background: #141414;
  border-left: 4px solid var(--accent);
  padding: 1.75rem 1.5rem 1.75rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}

.case-v2-quote__mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  line-height: 0.85;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 0.25rem;
}

.case-v2-quote blockquote {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-primary);
  font-style: italic;
}

.case-v2-quote__cite {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: normal;
}

.case-v2-quote--gold {
  border-left-color: #e8a838;
}

.case-v2-quote--gold .case-v2-quote__mark {
  color: #e8a838;
}

.case-v2-deliverables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .case-v2-deliverables {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .case-v2-deliverables {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-v2-deliverable {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.case-v2-deliverable:hover {
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.06);
}

.case-v2-deliverable__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}

.case-v2-deliverable__icon svg {
  width: 20px;
  height: 20px;
}

.case-v2-deliverable h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.case-v2-deliverable p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.case-v2-process-wrap {
  position: relative;
  padding-top: 0.5rem;
}

.case-v2-process-line {
  display: none;
}

@media (min-width: 900px) {
  .case-v2-process-line {
    display: block;
    position: absolute;
    top: 2.75rem;
    left: 8%;
    right: 8%;
    height: 0;
    border-top: 2px dotted rgba(0, 212, 255, 0.35);
    pointer-events: none;
    z-index: 0;
  }
}

.case-v2-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .case-v2-process {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.case-v2-process__step {
  position: relative;
}

.case-v2-process__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  line-height: 1;
  color: rgba(0, 212, 255, 0.08);
  margin-bottom: 0.35rem;
}

.case-v2-process__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.case-v2-process__desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.case-v2-cta {
  position: relative;
  padding: var(--section-pad-y) 0;
  text-align: center;
  overflow: hidden;
}

.case-v2-cta::before {
  display: none;
}

.case-v2-cta .container {
  position: relative;
  z-index: 1;
}

.case-v2-cta h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.case-v2-cta p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  padding: var(--section-pad-y) var(--container-pad-x);
  margin: 3rem 0;
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--accent);
  line-height: 1;
  text-shadow: none;
}

.stat__label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 4rem;
}

@media (max-width: 1023px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-group label .req {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  padding: 1.25rem;
  margin-top: 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-success.is-visible {
  display: block;
}

.contact-aside {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-aside h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-aside__email-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-aside__email-row svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent);
  margin-top: 2px;
}

.contact-aside__email-row a {
  color: var(--accent);
  font-weight: 500;
  word-break: break-all;
}

.contact-aside__note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.contact-aside__divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 212, 255, 0.3),
    transparent
  );
  margin: 1.75rem 0;
}

.contact-aside h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.next-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.next-steps li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.next-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--bg-primary);
  background: var(--accent);
  border-radius: 6px;
}

.contact-aside__reassure {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Scroll animations */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade"] {
  transform: none;
}

[data-animate="fade"].in-view {
  transform: none;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-section {
  margin-bottom: 2rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

/* Premium UI: scroll progress, load sweep, cursor (elements injected by JS) */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 100001;
  background: linear-gradient(90deg, #00d4ff, rgba(0, 212, 255, 0.6));
  pointer-events: none;
  transition: width 0.08s ease-out;
}

#page-load-sweep {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 100002;
  background: #00d4ff;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
  pointer-events: none;
  animation: page-load-sweep 0.9s ease-out forwards;
}

@keyframes page-load-sweep {
  0% {
    width: 0;
    opacity: 1;
  }
  70% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 100003;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

body.has-premium-cursor .cursor-dot,
body.has-premium-cursor .cursor-ring {
  opacity: 1;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #00d4ff;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.85), 0 0 24px rgba(0, 212, 255, 0.35);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
}

@media (max-width: 1023px), (pointer: coarse) {
  body.has-premium-cursor {
    cursor: auto;
  }

  body.has-premium-cursor .cursor-dot,
  body.has-premium-cursor .cursor-ring {
    display: none;
  }
}

body.has-premium-cursor:not(.nav-open) a,
body.has-premium-cursor:not(.nav-open) button,
body.has-premium-cursor:not(.nav-open) .btn {
  cursor: none;
}

.btn.is-magnetic {
  --mag-x: 0px;
  --mag-y: 0px;
  transition: transform 0.2s ease, box-shadow var(--transition),
    background var(--transition), color var(--transition), border-color var(--transition);
  transform: translate(var(--mag-x), var(--mag-y));
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translate(var(--mag-x, 0px), var(--mag-y, 0px)) scale(1.02);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  transform: translate(var(--mag-x, 0px), var(--mag-y, 0px));
}

.heading-reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
}

.heading-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Shared premium page hero (services, how it works, portfolio, contact) */
.page-hero-premium {
  position: relative;
  padding: calc(var(--nav-height) + 2.5rem) 0 var(--section-pad-y);
  overflow: hidden;
  width: 100%;
  background: var(--bg-primary);
}

.hero-premium__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-premium__shape {
  position: absolute;
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 12px;
  animation: hero-shape-float 14s ease-in-out infinite;
}

.hero-premium__shape--1 {
  width: 120px;
  height: 120px;
  top: 18%;
  right: 8%;
  transform: rotate(12deg);
}

.hero-premium__shape--2 {
  width: 80px;
  height: 80px;
  bottom: 22%;
  left: 6%;
  transform: rotate(-8deg);
  animation-delay: -4s;
}

.hero-premium__shape--3 {
  width: 60px;
  height: 60px;
  top: 40%;
  left: 18%;
  border-radius: 50%;
  animation-delay: -7s;
}

.hero-premium__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  animation: hero-particle 10s linear infinite;
}

@keyframes hero-shape-float {
  0%,
  100% {
    transform: translateY(0) rotate(12deg);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-16px) rotate(18deg);
    opacity: 0.6;
  }
}

@keyframes hero-particle {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  100% {
    transform: translate(-30vw, 40vh);
    opacity: 0;
  }
}

.hero-premium__glow {
  display: none;
}

.page-hero-premium .container {
  position: relative;
  z-index: 3;
}

.hero-premium__title {
  font-size: var(--page-hero-h1-size);
  line-height: 1.1;
  max-width: 22ch;
  margin-bottom: 1rem;
}

.page-hero-premium .hero-premium__title.heading-reveal {
  filter: none;
}

.hero-premium__underline {
  display: block;
  height: 3px;
  width: 0;
  max-width: 200px;
  margin-top: 0.75rem;
  background: linear-gradient(90deg, #00d4ff, transparent);
  border-radius: 2px;
  animation: hero-underline-grow 1.2s ease 0.4s forwards;
  box-shadow: none;
}

@keyframes hero-underline-grow {
  to {
    width: 100%;
  }
}

.hero-premium__sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  max-width: 40rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.hero-premium__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-premium__stat {
  flex: 1 1 200px;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-align: center;
}

.hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-start;
}

.hero-mini-stats__item {
  padding: 0.85rem 1.25rem;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}

.benefit-pills-strip {
  padding: 1.75rem 0;
}

.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.benefit-pills__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(0, 212, 255, 0.45);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-heading);
  background: transparent;
}

.service-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

@media (min-width: 768px) {
  .service-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-pricing-grid + .btn.btn--primary {
  margin-top: 40px;
}

.pricing-tier {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pricing-tier--featured {
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.12);
}

.pricing-tier:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.08);
}

.pricing-tier__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.pricing-tier__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.pricing-tier__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.pricing-tier__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.pricing-tier-disclaimer {
  font-size: 13px;
  color: #666666;
  text-align: center;
  margin-top: 16px;
  font-style: italic;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

/* How it works - enhanced process */
.process-list--enhanced {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.process-step--enhanced {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 2rem 1.25rem;
  margin-bottom: 0;
  border-bottom: none;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(26, 26, 26, 0.5);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.process-step--enhanced + .process-step--enhanced {
  margin-top: 1.5rem;
}

.process-step--enhanced::before {
  content: "";
  position: absolute;
  left: 2.25rem;
  top: 100%;
  width: 0;
  height: 1.5rem;
  border-left: 2px dotted rgba(0, 212, 255, 0.35);
  margin-top: 0;
  z-index: 0;
}

.process-list--enhanced .process-step--enhanced:last-child::before {
  display: none;
}

.process-step--enhanced:hover {
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.08);
}

.process-step__watermark {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 6rem);
  line-height: 1;
  color: rgba(0, 212, 255, 0.05);
  pointer-events: none;
  user-select: none;
}

.process-step__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step__icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.process-step--enhanced .process-step__num {
  display: none;
}

.process-step--enhanced .process-step__body {
  position: relative;
  z-index: 1;
}

.faq-section__lead {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.faq-section__lead h2 {
  margin-bottom: 0.5rem;
}

.faq-item--enhanced .faq-item__btn {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item--enhanced.is-open {
  background: rgba(0, 212, 255, 0.04);
  border-radius: var(--radius-sm);
}

.faq-item--enhanced.is-open .faq-item__btn {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-left: -1rem;
}

.faq-item__icon-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 6px;
}

.faq-item__icon-toggle::before,
.faq-item__icon-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-item__icon-toggle::before {
  width: 12px;
  height: 2px;
}

.faq-item__icon-toggle::after {
  width: 2px;
  height: 12px;
}

.faq-item--enhanced.is-open .faq-item__icon-toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item--enhanced.is-open .faq-item__icon-toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 1;
}

.faq-item--enhanced .faq-item__chev {
  display: none;
}

/* Portfolio filter */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0 2.5rem;
}

.portfolio-filter__btn {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(0, 212, 255, 0.35);
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.portfolio-filter__btn:hover,
.portfolio-filter__btn:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

.portfolio-filter__btn.is-active {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
}

.portfolio-card.is-hidden {
  display: none;
}

/* Premium stats (portfolio) */
.stats-premium-section {
  padding: var(--section-pad-y) 0;
}

.stats-premium-section .section-head {
  margin-bottom: 2.5rem;
}

.stats-premium-section > .container > h2 {
  margin-bottom: 2.5rem;
}

.stats-premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .stats-premium-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-premium-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 3px solid rgba(0, 212, 255, 0.45);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.stat-premium-card:hover {
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.2);
}

.stat-premium-card__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--accent);
  line-height: 1;
}

.stat-premium-card__label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

.stat-premium-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Contact hero trust list */
.contact-trust-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-trust-list li::before {
  content: "";
  width: 8px;
  height: 14px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: -2px;
  box-shadow: none;
}

/* ─── Section backgrounds — subtle alternating gradients ─── */
.section-dark {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-darker {
  background: linear-gradient(180deg, #0d0d0f 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

main > .hero + .section-dark,
main > .hero + .section-darker,
main > .page-hero-premium + .section-dark,
main > .page-hero-premium + .section-darker,
main > .case-v2-hero + .section-dark,
main > .case-v2-hero + .section-darker {
  border-top: none;
}

/* Flat hero layers — no atmospheric fills behind dot grid */
.hero__bg {
  background: transparent !important;
}

.hero-premium__bg {
  background: transparent !important;
}

.hero-premium__shape,
.hero-premium__particle {
  display: none !important;
}

/* --- Services page: full-width blocks, horizontal pricing, no side graphics --- */
body[data-page="services"] .services-page__service {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

body[data-page="services"] .services-page__service + .services-page__service {
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  padding-top: 4.5rem;
}

body[data-page="services"] .service-block {
  display: block;
  padding: 0;
  border-bottom: none;
}

body[data-page="services"] .service-block__content {
  width: 100%;
  max-width: 100%;
}

body[data-page="services"] .service-block__prose {
  max-width: 800px;
}

body[data-page="services"] .tier-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0.35rem 0 0.25rem;
}

body[data-page="services"] .tier-label {
  color: var(--text-primary);
  font-size: 1rem;
}

body[data-page="services"] .tier-price-start {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}

body[data-page="services"] .service-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  align-items: stretch;
  margin: 0.75rem 0 0;
}

@media (min-width: 768px) {
  body[data-page="services"] .service-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  body[data-page="services"] .service-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body[data-page="services"] .pricing-tier {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1rem 1.15rem;
  box-sizing: border-box;
}

body[data-page="services"] .pricing-tier .pricing-tier__desc {
  flex: 1 1 auto;
}

body[data-page="services"] .pricing-tier .service-block__list {
  flex: 1 1 auto;
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  line-height: 1.45;
}

body[data-page="services"] .pricing-tier .service-block__list li {
  margin-bottom: 0.35rem;
}

body[data-page="services"] .service-block__price {
  margin-top: 1.5rem;
  margin-bottom: 0.35rem;
}

body[data-page="services"] .service-pricing-grid + .service-block__perfect {
  margin-top: 1.5rem;
}

body[data-page="services"] .pricing-tier-disclaimer {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

body[data-page="services"] .service-block__content > .btn.btn--primary {
  margin-top: 1.75rem;
}

